diff --git a/.gitignore b/.gitignore index 606e522a3..b4dfddcac 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ Thumbs.db !supportlibs/libsam3/Makefile # QtCreator cruft -*CMakeLists.txt.user* +*CMakeLists.txt.user # Build artifacts /jsonapi-generator/src/jsonapi-generator diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45fed1bb2..c91f867a5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ -image: docker:latest +image: docker:stable services: - - docker:dind + - docker:stable-dind stages: - build @@ -18,7 +18,6 @@ variables: build-ubuntu-test-image: stage: build script: - - docker --version - > docker login "$CI_REGISTRY" --username "$CI_REGISTRY_USER" @@ -36,7 +35,6 @@ build-ubuntu-test-image: test-ubuntu: stage: test script: - - docker --version - > docker login "$CI_REGISTRY" --username "$CI_REGISTRY_USER" diff --git a/.gitmodules b/.gitmodules index 273336f84..3c767cf19 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,8 +10,7 @@ [submodule "supportlibs/udp-discovery-cpp"] path = supportlibs/udp-discovery-cpp url = https://github.com/truvorskameikin/udp-discovery-cpp.git - branch = master -# develop branch was removed we were using it at commit f3a3103a6c52e5707629e8d0a7e279a7758fe845 + branch = develop [submodule "supportlibs/rapidjson"] path = supportlibs/rapidjson url = https://github.com/Tencent/rapidjson.git @@ -31,13 +30,8 @@ branch = master [submodule "libretroshare"] path = libretroshare - url = https://github.com/RetroShare/libretroshare.git + url = ../libretroshare branch = master [submodule "retroshare-webui"] path = retroshare-webui - url = https://github.com/RetroShare/RSNewWebUI.git - branch = master -[submodule "supportlibs/librnp"] - path = supportlibs/librnp - url = https://github.com/rnpgp/rnp.git - branch = main + url = ../RSNewWebUI diff --git a/README.asciidoc b/README.asciidoc index 6e5c52ce9..e1f41e74d 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -7,9 +7,6 @@ RetroShare is a decentralized, private, secure, cross-platform, communication toolkit. RetroShare provides file sharing, chat, messages, forums, channels and more. -|=============================================================================== -| Developer Documentation | image:https://deepwiki.com/badge.svg[link="https://deepwiki.com/RetroShare/RetroShare",title="Ask DeepWiki"] -|=============================================================================== .Build Status |=============================================================================== |GNU/Linux (via Gitlab CI) | image:https://gitlab.com/RetroShare/RetroShare/badges/master/pipeline.svg[link="https://gitlab.com/RetroShare/RetroShare/-/commits/master",title="pipeline status"] diff --git a/RetroShare.pro b/RetroShare.pro index 4972fe2ab..944e8204e 100644 --- a/RetroShare.pro +++ b/RetroShare.pro @@ -25,6 +25,9 @@ CONFIG += c++14 TEMPLATE = subdirs +SUBDIRS += openpgpsdk +openpgpsdk.file = openpgpsdk/src/openpgpsdk.pro + rs_jsonapi:isEmpty(JSONAPI_GENERATOR_EXE) { SUBDIRS += jsonapi-generator jsonapi-generator.file = jsonapi-generator/src/jsonapi-generator.pro @@ -33,7 +36,7 @@ rs_jsonapi:isEmpty(JSONAPI_GENERATOR_EXE) { SUBDIRS += libbitdht libbitdht.file = libbitdht/src/libbitdht.pro -libretroshare.depends += libbitdht +libretroshare.depends += openpgpsdk libbitdht SUBDIRS += libretroshare libretroshare.file = libretroshare/src/libretroshare.pro diff --git a/build_scripts/GitlabCI/base.Dockerfile b/build_scripts/GitlabCI/base.Dockerfile index 5fd1bd81d..13097f58d 100644 --- a/build_scripts/GitlabCI/base.Dockerfile +++ b/build_scripts/GitlabCI/base.Dockerfile @@ -40,23 +40,18 @@ RUN git clone --depth 1 https://github.com/aetilius/pHash.git && \ rm -rf pHash-build pHash ARG FRESHCLONE=0 -ARG REPO_URL=https://github.com/RetroShare/RetroShare.git +ARG REPO_URL=https://gitlab.com/RetroShare/RetroShare.git ARG REPO_BRANCH=master ARG REPO_DEPTH="--depth 2000" -RUN git clone $REPO_DEPTH $REPO_URL -b $REPO_BRANCH && \ - cd RetroShare && \ +RUN git clone $REPO_DEPTH $REPO_URL -b $REPO_BRANCH && cd RetroShare && \ git fetch --tags && \ - git submodule update --init \ - libbitdht/ libretroshare/ openpgpsdk/ retroshare-webui/ \ - supportlibs/restbed/ && \ - cd supportlibs/restbed/ && \ - git submodule update --init \ - dependency/asio/ dependency/kashmir/ && \ - cd ../../../ + git submodule update --init --remote --force \ + libbitdht/ libretroshare/ openpgpsdk/ && \ + cd .. RUN \ mkdir RetroShare-build && cd RetroShare-build && \ cmake -B. -S../RetroShare/retroshare-service \ - -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON -DRS_WEBUI=ON && \ + -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON && \ make -j$(nproc) && make install && \ cd .. && rm -rf RetroShare-build diff --git a/build_scripts/GitlabCI/gitlabCI.Dockerfile b/build_scripts/GitlabCI/gitlabCI.Dockerfile index 5ae3f4ed3..c62c4d198 100644 --- a/build_scripts/GitlabCI/gitlabCI.Dockerfile +++ b/build_scripts/GitlabCI/gitlabCI.Dockerfile @@ -2,19 +2,19 @@ FROM registry.gitlab.com/retroshare/retroshare:base RUN apt-get update -y && apt-get upgrade -y -ARG REPO_URL=https://github.com/RetroShare/RetroShare.git +ARG REPO_URL=https://gitlab.com/RetroShare/RetroShare.git ARG REPO_BRANCH=master RUN \ cd RetroShare && git remote add testing $REPO_URL && \ git fetch --tags testing $REPO_BRANCH && \ git reset --hard testing/$REPO_BRANCH && \ - git submodule update --init \ - libbitdht/ libretroshare/ openpgpsdk/ retroshare-webui/ && \ + git submodule update --init --remote --force \ + libbitdht/ libretroshare/ openpgpsdk/ && \ git --no-pager log --max-count 1 RUN \ mkdir RetroShare-build && cd RetroShare-build && \ cmake -B. -S../RetroShare/retroshare-service \ - -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON -DRS_WEBUI=ON \ + -DRS_FORUM_DEEP_INDEX=ON -DRS_JSON_API=ON \ -DRS_WARN_DEPRECATED=OFF -DRS_WARN_LESS=ON && \ make -j$(nproc) && make install && \ cd .. && rm -rf RetroShare-build diff --git a/build_scripts/OBS b/build_scripts/OBS index 0a3997cc1..df16cb915 160000 --- a/build_scripts/OBS +++ b/build_scripts/OBS @@ -1 +1 @@ -Subproject commit 0a3997cc1355b2c848161dca015b7e2df039707b +Subproject commit df16cb915465d058c75277678799ce4dadeae287 diff --git a/build_scripts/OSX/MacOS_X_InstallGuide.md b/build_scripts/OSX/MacOS_X_InstallGuide.md index b63b12185..6dafd63c0 100644 --- a/build_scripts/OSX/MacOS_X_InstallGuide.md +++ b/build_scripts/OSX/MacOS_X_InstallGuide.md @@ -2,15 +2,13 @@ ## Qt Installation -Qt 5.15 is not available as install package. +Install Qt via: [Qt Download](http://www.qt.io/download/) -Download Qt 5.15.x from here: [Qt 5.15.17](https://download.qt.io/archive/qt/5.15/5.15.17/single/qt-everywhere-opensource-src-5.15.17.tar.xz) +Use default options. And add Qt Script support. -Instruction howto Build Qt 5.15.x on macOS: [macOS Building](https://doc.qt.io/archives/qt-5.15/macos-building.html) -## Set the Environment Variables Add to the PATH environment variable by editing your *~/.profile* file. - export PATH="/users/$USER/Qt/5.15.17/clang_64/bin:$PATH" + export PATH="/users/$USER/Qt/5.14.1/clang_64/bin:$PATH" Depends on which version of Qt you use. @@ -32,20 +30,32 @@ In GitHub Desktop -> Clone Repository -> URL Add Repository URL: https://github.com/RetroShare/RetroShare.git and Clone -## ***Get XCode & MacOSX SDK*** +## ***Choose if you use MacPort or HomeBrew*** -To identify the correct version of Xcode to install, you need to know which OS you are running. Go to the [x] menu -> "About This Mac" and read the macOS version number. +### MacPort Installation -If you are running macOS Ventura 13.5 or later, you can install Xcode directly from App Store using the instructions below. +Install MacPort and XCode following this guide: [MacPort and XCode](http://guide.macports.org/#installing.xcode) -You can find older versions of Xcode at [Apple Developer Downloads](https://developer.apple.com/downloads/). Find the appropriate .xip file for your macOS version +Start XCode to get it updated and to able C compiler to create executables. -To install from App Store: +#### Install libraries -Select [x] menu - > "App Store…". -Search for Xcode. Download and install. + $ sudo port -v selfupdate + $ sudo port install openssl + $ sudo port install miniupnpc + $ sudo port install libmicrohttpd + +For VOIP Plugin: -Once Xcode has installed, you must drag the XCode icon into your Applications folder. After you have done this, open Xcode from the Applications folder by double-clicking on the icon and then follow the remaining instructions below. + $ sudo port install speex-devel + $ sudo port install opencv + $ sudo port install ffmpeg + +Get Your OSX SDK if missing: [MacOSX-SDKs](https://github.com/phracker/MacOSX-SDKs) + +### HOMEBREW Installation + +Install HomeBrew following this guide: [HomeBrew](http://brew.sh/) Install XCode command line developer tools: @@ -53,33 +63,13 @@ Install XCode command line developer tools: Start XCode to get it updated and to able C compiler to create executables. -Older MacOSX SDK is available from here: [MacOSX-SDKs](https://github.com/phracker/MacOSX-SDKs) - -### MacPort Installation - -Install MacPort following this guide: [MacPort](http://guide.macports.org/#installing.xcode) - -### HOMEBREW Installation - -Install HomeBrew following this guide: [HomeBrew](http://brew.sh/) - #### Install libraries $ brew install openssl $ brew install miniupnpc + $ brew install libmicrohttpd $ brew install rapidjson $ brew install sqlcipher - -For RNP lib: - - $ brew install bzip2 - $ brew install zlib - $ brew install json-c - $ brew install botan@2 - -#### Install CMake - - $ brew install cmake If you have error in linking, run this: @@ -95,7 +85,8 @@ For VOIP Plugin: For FeedReader Plugin: $ brew install libxslt - $ brew install libxml2 + +Get Your OSX SDK if missing: [MacOSX-SDKs](https://github.com/phracker/MacOSX-SDKs) ## Last Settings @@ -113,8 +104,11 @@ In QtCreator Projects -> Build -> Build Settings -> Build Steps -> Add Additiona ## Set your Mac OS SDK version +Edit RetroShare.pro -Edit retroshare.pri and set your installed sdk version example for 11.1 -> rs_macos11.1 (line 135:) + CONFIG += c++14 rs_macos11.1 + +and then retroshare.pri macx:CONFIG *= rs_macos11.1 rs_macos10.8:CONFIG -= rs_macos11.1 @@ -128,7 +122,7 @@ Edit retroshare.pri and set your installed sdk version example for 11.1 -> rs_ma ## Link Include & Libraries -When required edit your retroshare.pri macx-* section, check if the Include and Lib path are correct (macx-* section) +Edit your retroshare.pri and add to macx-* section INCLUDEPATH += "/usr/local/opt/openssl/include" QMAKE_LIBDIR += "/usr/local/opt/openssl/lib" @@ -137,21 +131,13 @@ When required edit your retroshare.pri macx-* section, check if the Include and alternative via Terminal - $ qmake - INCLUDEPATH+="/usr/local/opt/openssl/include" \ - QMAKE_LIBDIR+="/usr/local/opt/openssl/lib" \ - QMAKE_LIBDIR+="/usr/local/opt/sqlcipher/lib" \ - QMAKE_LIBDIR+="/usr/local/opt/miniupnpc/lib" \ - CONFIG+=rs_autologin \ - CONFIG+=rs_use_native_dialogs \ - CONFIG+=release \ - .. + $ qmake INCLUDEPATH+="/usr/local/opt/openssl/include" QMAKE_LIBDIR+="/usr/local/opt/openssl/lib" QMAKE_LIBDIR+="/usr/local/opt/sqlcipher/lib" QMAKE_LIBDIR+="/usr/local/opt/miniupnpc/lib" For FeedReader Plugin: INCLUDEPATH += "/usr/local/opt/libxml2/include/libxml2" -With plugins: +For building RetroShare with plugins: $ qmake \ INCLUDEPATH+="/usr/local/opt/openssl/include" QMAKE_LIBDIR+="/usr/local/opt/openssl/lib" \ @@ -173,30 +159,13 @@ With plugins: You can now compile RetroShare into Qt Creator or with Terminal - $ cd /path/to/retroshare - $ qmake .. - $ make + cd retroshare + qmake; make You can change Target and SDK in *./retroshare.pri:82* changing value of QMAKE_MACOSX_DEPLOYMENT_TARGET and QMAKE_MAC_SDK You can find the compiled application at *./retroshare/retroshare-gui/src/retroshare.app* -## Issues - -If you have issues with openssl (Undefined symbols for architecture x86_64) try to add to *~/.profile* file this or via Terminal - - export PATH="/usr/local/opt/openssl/bin:$PATH" - export LDFLAGS="-L/usr/local/opt/openssl/lib" - export CPPFLAGS="-I/usr/local/opt/openssl/include" - export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig" - -For Qt Creator -> QtCreator Projects -> Build -> Build Settings -> Build Steps -> Add Additional arguments: - - LDFLAGS="-L/usr/local/opt/openssl/lib" - CPPFLAGS="-I/usr/local/opt/openssl/include" - - - ## Copy Plugins $ cp \ @@ -204,13 +173,3 @@ For Qt Creator -> QtCreator Projects -> Build -> Build Settings -> Build Steps - ./plugins/VOIP/lib/libVOIP.dylib \ ./plugins/RetroChess/lib/libRetroChess.dylib \ ./retroshare-gui/src/RetroShare.app/Contents/Resources/ - -### Compile Retroshare-Service & Webui with CMake -before you can compile overwrite the file "asio/include/asio/detail/config.hpp" here is a fix for macos [ -asio fix](https://github.com/chriskohlhoff/asio/commit/68df16d560c68944809bb2947360fe8035e9ae0a) - - $ cd retroshare-service - $ mkdir build-dir - $ cd build-dir - $ cmake -DRS_WEBUI=ON -DCMAKE_BUILD_TYPE=Release .. - $ make diff --git a/build_scripts/OSX/makeOSXPackage.sh b/build_scripts/OSX/makeOSXPackage.sh deleted file mode 100644 index 8f9700ed0..000000000 --- a/build_scripts/OSX/makeOSXPackage.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -APP="RetroShare" -RSVERSION="0.6.7a" -QTVERSION="Qt-5.15.11" - -# Install the 7z to create dmg archives. -#brew list p7zip || brew install p7zip - -# Package your app -echo "Packaging retroshare..." -#cd ${project_dir}/build/macOS/clang/x86_64/release/ -cd retroshare-gui/src/ - -# Remove build directories that you don't want to deploy -rm -rf moc -rm -rf obj -rm -rf qrc - -# This sets the CFBundleVersion & CFBundleShortVersionString string -/usr/libexec/PlistBuddy -c "Delete :CFBundleGetInfoString" retroshare.app/Contents/Info.plist -/usr/libexec/PlistBuddy -c "Add :CFBundleVersion string $RSVERSION" retroshare.app/Contents/Info.plist -/usr/libexec/PlistBuddy -c "Add :CFBundleShortVersionString string $RSVERSION" retroshare.app/Contents/Info.plist -/usr/libexec/PlistBuddy -c "Delete :NSRequiresAquaSystemAppearance" retroshare.app/Contents/Info.plist - -# This automatically creates retroshare.dmg - -echo "Creating dmg archive..." -macdeployqt retroshare.app -dmg - -DATE=`date +"%m-%d-%Y"` -MACVERSION=`sw_vers -productVersion` -#RSVERSION=`git describe --abbrev=0 --tags` -GITHEAD=`git rev-parse --short HEAD` - -mv $APP.dmg "$APP-$RSVERSION-$GITHEAD-$DATE-MacOS-$MACVERSION-$QTVERSION.dmg" - -# You can use the appdmg command line app to create your dmg file if -# you want to use a custom background and icon arrangement. I'm still -# working on this for my apps, myself. If you want to do this, you'll -# remove the -dmg option above. -# appdmg json-path YourApp_${TRAVIS_TAG}.dmg - -# Copy other project files -cp "../../libbitdht/src/bitdht/bdboot.txt" "retroshare.app/Contents/Resources/" -cp "../../plugins/FeedReader/lib/libFeedReader.dylib" "retroshare.app/Contents/Resources/" -cp -R "sounds" "retroshare.app/Contents/Resources/sounds" - -# cp "${project_dir}/README.md" "README.md" -# cp "${project_dir}/LICENSE" "LICENSE" -# cp "${project_dir}/Qt License" "Qt License" diff --git a/build_scripts/RedHat+Fedora/data/retroshare.desktop b/build_scripts/RedHat+Fedora/data/retroshare.desktop index 95056d54a..7b93b4fa5 100644 --- a/build_scripts/RedHat+Fedora/data/retroshare.desktop +++ b/build_scripts/RedHat+Fedora/data/retroshare.desktop @@ -1,11 +1,10 @@ [Desktop Entry] -Encoding=UTF-8 Version=1.0 Name=RetroShare -Comment=Securely communicate with your friends +Comment=Securely share files with your friends Exec=/usr/bin/retroshare %U Icon=/usr/share/pixmaps/retroshare.xpm Terminal=false Type=Application -Categories=Network;Email;InstantMessaging;Chat;Feed;FileTransfer;P2P +Categories=Network;P2P; MimeType=x-scheme-handler/retroshare; diff --git a/build_scripts/Windows-msys2/build/build.bat b/build_scripts/Windows-msys2/build/build.bat index bf68f3e20..4fdaff09f 100644 --- a/build_scripts/Windows-msys2/build/build.bat +++ b/build_scripts/Windows-msys2/build/build.bat @@ -18,8 +18,6 @@ if errorlevel 1 goto error_env if not "%ParamNoupdate%"=="1" ( :: Install needed things %EnvMSYS2Cmd% "pacman --noconfirm --needed -S make git mingw-w64-%RsMSYS2Architecture%-toolchain mingw-w64-%RsMSYS2Architecture%-qt5 mingw-w64-%RsMSYS2Architecture%-miniupnpc mingw-w64-%RsMSYS2Architecture%-sqlcipher mingw-w64-%RsMSYS2Architecture%-cmake mingw-w64-%RsMSYS2Architecture%-rapidjson" - :: rnp - %EnvMSYS2Cmd% "pacman --noconfirm --needed -S mingw-w64-%RsMSYS2Architecture%-json-c mingw-w64-%RsMSYS2Architecture%-libbotan" :: Webui if "%ParamWebui%"=="1" %EnvMSYS2Cmd% "pacman --noconfirm --needed -S mingw-w64-%RsMSYS2Architecture%-doxygen" diff --git a/build_scripts/Windows-msys2/build/pack.bat b/build_scripts/Windows-msys2/build/pack.bat index a898832f7..313da7479 100644 --- a/build_scripts/Windows-msys2/build/pack.bat +++ b/build_scripts/Windows-msys2/build/pack.bat @@ -105,7 +105,6 @@ copy "%RsBuildPath%\retroshare-nogui\src\%RsBuildConfig%\retroshare*-nogui.exe" copy "%RsBuildPath%\retroshare-service\src\%RsBuildConfig%\retroshare*-service.exe" "%RsDeployPath%" %Quite% copy "%RsBuildPath%\supportlibs\cmark\build\src\libcmark.dll" "%RsDeployPath%" %Quite% if exist "%RsBuildPath%\libretroshare\src\lib\retroshare.dll" copy "%RsBuildPath%\libretroshare\src\lib\retroshare.dll" "%RsDeployPath%" %Quite% -if exist "%RsBuildPath%\supportlibs\librnp\Build\src\lib\librnp.dll" copy "%RsBuildPath%\supportlibs\librnp\Build\src\lib\librnp.dll" "%RsDeployPath%" %Quite% if exist "%RsBuildPath%\retroshare-friendserver\src\%RsBuildConfig%\retroshare-friendserver.exe" ( copy "%RsBuildPath%\retroshare-friendserver\src\%RsBuildConfig%\retroshare-friendserver.exe" "%RsDeployPath%" %Quite% ) diff --git a/build_scripts/Windows-msys2/env/tools/prepare-msys2.bat b/build_scripts/Windows-msys2/env/tools/prepare-msys2.bat index cea1df073..d07c7a058 100644 --- a/build_scripts/Windows-msys2/env/tools/prepare-msys2.bat +++ b/build_scripts/Windows-msys2/env/tools/prepare-msys2.bat @@ -16,13 +16,7 @@ if "%~1"=="clean" ( goto exit ) -set MSYS2Version=20241208 - -set MSYS2Install=msys2-base-x86_64-%MSYS2Version%.sfx.exe -set MSYS2Url=https://github.com/msys2/msys2-installer/releases/download/%MSYS2Version:~0,4%-%MSYS2Version:~4,2%-%MSYS2Version:~6,2%/%MSYS2Install% -set MSYS2UnpackPath=%EnvMSYS2Path%\msys64 - -if exist "%MSYS2UnpackPath%\usr\bin\pacman.exe" ( +if exist "%EnvMSYS2Path%\msys%MSYS2Base%\usr\bin\pacman.exe" ( if "%~1"=="reinstall" ( choice /M "Found existing MSYS2 version. Do you want to proceed?" if !ERRORLEVEL!==2 goto exit @@ -31,26 +25,30 @@ if exist "%MSYS2UnpackPath%\usr\bin\pacman.exe" ( ) ) -if exist "%MSYS2UnpackPath%" ( - %cecho% info "Remove previous MSYS2 version" - call "%ToolsPath%\remove-dir.bat" "%MSYS2UnpackPath%" -) +if "%MSYS2Architecture%"=="i686" set MSYS2Version=20210705 +if "%MSYS2Architecture%"=="x86_64" set MSYS2Version=20210725 -%cecho% info "Download MSYS2 installation files" +set MSYS2Install=msys2-base-%MSYS2Architecture%-%MSYS2Version%.tar.xz +set MSYS2Url=https://repo.msys2.org/distrib/%MSYS2Architecture%/%MSYS2Install% + +%cecho% info "Remove previous MSYS2 version" +call "%ToolsPath%\remove-dir.bat" "%EnvMSYS2Path%" + +%cecho% info "Download installation files" if not exist "%EnvDownloadPath%\%MSYS2Install%" call "%ToolsPath%\download-file.bat" "%MSYS2Url%" "%EnvDownloadPath%\%MSYS2Install%" if not exist "%EnvDownloadPath%\%MSYS2Install%" %cecho% error "Cannot download MSYS" & goto error %cecho% info "Unpack MSYS2" -"%EnvDownloadPath%\%MSYS2Install%" -y -o"%EnvMSYS2Path%" +"%EnvSevenZipExe%" x -so "%EnvDownloadPath%\%MSYS2Install%" | "%EnvSevenZipExe%" x -y -si -ttar -o"%EnvMSYS2Path%" -set MSYS2SH=%MSYS2UnpackPath%\usr\bin\sh +set MSYS2SH=%EnvMSYS2Path%\msys%MSYS2Base%\usr\bin\sh %cecho% info "Initialize MSYS2" "%MSYS2SH%" -lc "yes | pacman --noconfirm -Syuu msys2-keyring" "%MSYS2SH%" -lc "pacman --noconfirm -Sy" "%MSYS2SH%" -lc "pacman --noconfirm -Su" -call "%MSYS2UnpackPath%\autorebase.bat" +call "%EnvMSYS2Path%\msys%MSYS2Base%\autorebase.bat" :exit endlocal diff --git a/build_scripts/Windows-msys2/env/tools/prepare-tools.bat b/build_scripts/Windows-msys2/env/tools/prepare-tools.bat index 66f5f9120..c6b14a787 100644 --- a/build_scripts/Windows-msys2/env/tools/prepare-tools.bat +++ b/build_scripts/Windows-msys2/env/tools/prepare-tools.bat @@ -34,7 +34,7 @@ if not exist "%EnvToolsPath%\cecho.exe" ( if not exist "%EnvDownloadPath%\%cCEhoInstall%" echo Cannot download cecho installation& goto error echo Unpack cecho - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CEchoInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CEchoInstall%" copy "%EnvTempPath%\cecho.exe" "%EnvToolsPath%" call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" diff --git a/build_scripts/Windows-msys2/env/tools/root/update-msys2.bat b/build_scripts/Windows-msys2/env/tools/root/update-msys2.bat index ddd5bdd0f..a3d2398cd 100644 --- a/build_scripts/Windows-msys2/env/tools/root/update-msys2.bat +++ b/build_scripts/Windows-msys2/env/tools/root/update-msys2.bat @@ -2,13 +2,18 @@ setlocal -if not exist "%~dp0msys2\msys64" goto :EOF +if exist "%~dp0msys2\msys32" call :update 32 +if exist "%~dp0msys2\msys64" call :update 64 -set MSYS2SH=%~dp0msys2\msys64\usr\bin\sh +goto :EOF -echo Update MSYS2 +:update +set MSYS2SH=%~dp0msys2\msys%~1\usr\bin\sh + +echo Update MSYS2 %~1 "%MSYS2SH%" -lc "yes | pacman --noconfirm -Syuu msys2-keyring" "%MSYS2SH%" -lc "pacman --noconfirm -Su" +:exit endlocal goto :EOF diff --git a/build_scripts/Windows/build-libs/Makefile b/build_scripts/Windows/build-libs/Makefile index 534356914..b7efeaa37 100644 --- a/build_scripts/Windows/build-libs/Makefile +++ b/build_scripts/Windows/build-libs/Makefile @@ -1,7 +1,7 @@ ZLIB_VERSION=1.2.11 BZIP2_VERSION=1.0.8 MINIUPNPC_VERSION=2.2.3 -OPENSSL_VERSION=1.1.1w +OPENSSL_VERSION=1.1.1p SPEEX_VERSION=1.2.0 SPEEXDSP_VERSION=1.2.0 LIBXML2_VERSION=2.9.12 @@ -13,18 +13,12 @@ LIBMICROHTTPD_VERSION=0.9.75 FFMPEG_VERSION=4.4 RAPIDJSON_VERSION=1.1.0 XAPIAN_VERSION=1.4.19 -#RNP_VERSION=0.17.1 - -# libaries for rnp -JSON_C_VERSION=0.18 -BOTAN_VERSION=2.19.5 DOWNLOAD_PATH?=download BUILD_PATH=build LIBS_PATH?=libs -all: dirs zlib bzip2 miniupnpc openssl speex speexdsp libxml2 libxslt curl sqlcipher libmicrohttpd ffmpeg rapidjson xapian jsonc botan copylibs -#rnp +all: dirs zlib bzip2 miniupnpc openssl speex speexdsp libxml2 libxslt curl sqlcipher libmicrohttpd ffmpeg rapidjson xapian copylibs download: \ $(DOWNLOAD_PATH)/zlib-$(ZLIB_VERSION).tar.gz \ @@ -369,57 +363,6 @@ $(BUILD_PATH)/xapian-core-$(XAPIAN_VERSION): $(DOWNLOAD_PATH)/xapian-core-$(XAPI rm -r -f xapian-core-$(XAPIAN_VERSION) mv $(BUILD_PATH)/xapian-core-$(XAPIAN_VERSION).tmp $(BUILD_PATH)/xapian-core-$(XAPIAN_VERSION) -jsonc: $(BUILD_PATH)/json-c-$(JSON_C_VERSION) - -$(BUILD_PATH)/json-c-$(JSON_C_VERSION): - # prepare - rm -r -f $(BUILD_PATH)/json-c-* - [ -d "json-c-$(JSON_C_VERSION)" ] || git clone https://github.com/json-c/json-c.git --depth=1 --branch json-c-$(JSON_C_VERSION) "json-c-$(JSON_C_VERSION)" - # build - mkdir -p json-c-$(JSON_C_VERSION)/build - cd json-c-$(JSON_C_VERSION)/build && cmake .. -G"MSYS Makefiles" -Wno-dev -DCMAKE_BUILD_TYPE="release" -DBUILD_SHARED_LIBS=off -DBUILD_STATIC_LIBS=on -DBUILD_TESTING=off -DCMAKE_CXX_FLAGS="-D__MINGW_USE_VC2005_COMPAT" -DCMAKE_INSTALL_PREFIX="`pwd`/install" -DCMAKE_INSTALL_PREFIX="`pwd`/../../$(BUILD_PATH)/json-c-$(JSON_C_VERSION).tmp" - cd json-c-$(JSON_C_VERSION)/build && make install - # cleanup - rm -r -f json-c-$(JSON_C_VERSION) - mv $(BUILD_PATH)/json-c-$(JSON_C_VERSION).tmp $(BUILD_PATH)/json-c-$(JSON_C_VERSION) - -botan: $(BUILD_PATH)/botan-$(BOTAN_VERSION) - -$(BUILD_PATH)/botan-$(BOTAN_VERSION): - # prepare - pacman --needed --noconfirm -S python3 - rm -r -f $(BUILD_PATH)/botan-* - [ -d "botan-$(BOTAN_VERSION)" ] || git clone https://github.com/randombit/botan.git --depth=1 --branch $(BOTAN_VERSION) "botan-$(BOTAN_VERSION)" - # build - if [ $(MSYSTEM) = "MINGW32" ] ; then cd botan-$(BOTAN_VERSION) && ./configure.py --os=mingw --cpu=x86_32 --disable-shared-library --enable-static-library --extra-cxxflags="-D__MINGW_USE_VC2005_COMPAT" --prefix="`pwd`/../$(BUILD_PATH)/botan-$(BOTAN_VERSION).tmp" ; fi - if [ $(MSYSTEM) = "MINGW64" ] ; then cd botan-$(BOTAN_VERSION) && ./configure.py --os=mingw --cpu=x86_64 --disable-shared-library --enable-static-library --prefix="`pwd`/../$(BUILD_PATH)/botan-$(BOTAN_VERSION).tmp" ; fi - cd botan-$(BOTAN_VERSION) && make install - # cleanup - rm -r -f botan-$(BOTAN_VERSION) - mv $(BUILD_PATH)/botan-$(BOTAN_VERSION).tmp $(BUILD_PATH)/botan-$(BOTAN_VERSION) - -rnp: $(BUILD_PATH)/rnp-$(RNP_VERSION) - -$(BUILD_PATH)/rnp-$(RNP_VERSION): - # prepare - rm -r -f $(BUILD_PATH)/rnp-* - [ -d "rnp-$(RNP_VERSION)" ] || git clone https://github.com/rnpgp/rnp.git --depth=1 --branch v$(RNP_VERSION) --recurse-submodules --shallow-submodules "rnp-$(RNP_VERSION)" - # build - mkdir -p rnp-$(RNP_VERSION)/build - cd rnp-$(RNP_VERSION)/build && cmake .. -G"MSYS Makefiles" -Wno-dev -DCMAKE_INSTALL_PREFIX="`pwd`/install" -DBUILD_SHARED_LIBS=yes -DBUILD_TESTING=off -DCMAKE_CXX_FLAGS="-D__MINGW_USE_VC2005_COMPAT -D__STDC_FORMAT_MACROS" -DBZIP2_INCLUDE_DIR="`pwd`/../../$(BUILD_PATH)/bzip2-$(BZIP2_VERSION)/include" -DBZIP2_LIBRARY_RELEASE="`pwd`/../../$(BUILD_PATH)/bzip2-$(BZIP2_VERSION)/lib/libbz2.a" -DBZIP2_LIBRARIES="`pwd`/../../$(BUILD_PATH)/bzip2-$(BZIP2_VERSION)/lib/libbz2.a" -DZLIB_INCLUDE_DIR="`pwd`/../../$(BUILD_PATH)/zlib-$(ZLIB_VERSION)/include" -DZLIB_LIBRARY="`pwd`/../../$(BUILD_PATH)/zlib-$(ZLIB_VERSION)/lib/libz.a" -DJSON-C_INCLUDE_DIR="`pwd`/../../$(BUILD_PATH)/json-c-$(JSON_C_VERSION)/include/json-c" -DJSON-C_LIBRARY="`pwd`/../../$(BUILD_PATH)/json-c-$(JSON_C_VERSION)/lib/libjson-c.a" -DBOTAN_INCLUDE_DIR="`pwd`/../../$(BUILD_PATH)/botan-$(BOTAN_VERSION)/include/botan-`echo $(BOTAN_VERSION) | cut -c1-1`" -DBOTAN_LIBRARY="`pwd`/../../$(BUILD_PATH)/botan-$(BOTAN_VERSION)/lib/libbotan-`echo $(BOTAN_VERSION) | cut -c1-1`.a" - cmake --build rnp-$(RNP_VERSION)/build - # copy files - mkdir -p $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/include/rnp - cp -r rnp-$(RNP_VERSION)/include/rnp/* $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/include/rnp/ - cp -r rnp-$(RNP_VERSION)/build/src/lib/rnp/* $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/include/rnp/ - mkdir -p $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/lib - cp -r rnp-$(RNP_VERSION)/build/src/lib/librnp.dll.a $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/lib/ - mkdir -p $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/bin - cp -r rnp-$(RNP_VERSION)/build/src/lib/librnp.dll $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp/bin/ - # cleanup - rm -r -f rnp-$(RNP_VERSION) - mv $(BUILD_PATH)/rnp-$(RNP_VERSION).tmp $(BUILD_PATH)/rnp-$(RNP_VERSION) - copylibs: rm -r -f $(LIBS_PATH) ; \ mkdir -p $(LIBS_PATH) ; \ diff --git a/build_scripts/Windows/build/build.bat b/build_scripts/Windows/build/build.bat index 91ff71382..487647568 100644 --- a/build_scripts/Windows/build/build.bat +++ b/build_scripts/Windows/build/build.bat @@ -56,7 +56,7 @@ if "%ParamWebui%"=="1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% rs_webui if "%ParamPlugins%"=="1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% retroshare_plugins if "%ParamUseNativeDialogs%"=="1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% rs_use_native_dialogs if "%ParamService%" NEQ "1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% no_retroshare_service -if "%ParamFriendServer%" NEQ "1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% no_retroshare_friendserver +if "%ParamFriendServer%" NEQ "1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% no_rs_friendserver if "%ParamEmbeddedFriendServer%"=="1" set RS_QMAKE_CONFIG=%RS_QMAKE_CONFIG% rs_efs qmake "%SourcePath%\RetroShare.pro" -r -spec win32-g++ "CONFIG+=%RS_QMAKE_CONFIG%" "EXTERNAL_LIB_DIR=%BuildLibsPath%\libs" diff --git a/build_scripts/Windows/build/pack.bat b/build_scripts/Windows/build/pack.bat index ff347babf..1c844efa0 100644 --- a/build_scripts/Windows/build/pack.bat +++ b/build_scripts/Windows/build/pack.bat @@ -96,7 +96,6 @@ copy nul "%RsDeployPath%\portable" %Quite% echo copy binaries copy "%RsBuildPath%\retroshare-gui\src\%RsBuildConfig%\retroshare*.exe" "%RsDeployPath%" %Quite% if exist "%RsBuildPath%\libretroshare\src\lib\retroshare.dll" copy "%RsBuildPath%\libretroshare\src\lib\retroshare.dll" "%RsDeployPath%" %Quite% -if exist "%RsBuildPath%\supportlibs\librnp\Build\src\lib\librnp.dll" copy "%RsBuildPath%\supportlibs\librnp\Build\src\lib\librnp.dll" "%RsDeployPath%" %Quite% if "%ParamService%"=="1" ( copy "%RsBuildPath%\retroshare-service\src\%RsBuildConfig%\retroshare*-service.exe" "%RsDeployPath%" %Quite% diff --git a/build_scripts/Windows/env/env-msys2.bat b/build_scripts/Windows/env/env-msys2.bat index 47dd8d96a..fee7e46b9 100644 --- a/build_scripts/Windows/env/env-msys2.bat +++ b/build_scripts/Windows/env/env-msys2.bat @@ -22,12 +22,11 @@ if "%GCCArchitecture%"=="x64" ( ) set EnvMSYS2Path=%EnvRootPath%\msys2 -set EnvMSYS2BasePath=%EnvMSYS2Path%\msys64 call "%~dp0tools\prepare-msys2.bat" %1 if errorlevel 1 exit /B %ERRORLEVEL% -set EnvMSYS2SH=%EnvMSYS2BasePath%\usr\bin\sh.exe +set EnvMSYS2SH=%EnvMSYS2Path%\msys64\usr\bin\sh.exe if not exist "%EnvMSYS2SH%" if errorlevel 1 goto error_env set EnvMSYS2Cmd="%EnvMSYS2SH%" -lc diff --git a/build_scripts/Windows/env/tools/prepare-msys2.bat b/build_scripts/Windows/env/tools/prepare-msys2.bat index ba2f12ce6..17fe6c36e 100644 --- a/build_scripts/Windows/env/tools/prepare-msys2.bat +++ b/build_scripts/Windows/env/tools/prepare-msys2.bat @@ -16,15 +16,15 @@ if "%~1"=="clean" ( goto exit ) -set MSYS2Version=20241208 +set MSYS2Version=20230318 set MSYS2Install=msys2-base-x86_64-%MSYS2Version%.sfx.exe set MSYS2Url=https://github.com/msys2/msys2-installer/releases/download/%MSYS2Version:~0,4%-%MSYS2Version:~4,2%-%MSYS2Version:~6,2%/%MSYS2Install% -set MSYS2UnpackPath=%EnvMSYS2Path%\msys64 -set CMakeInstall=cmake-3.31.3-windows-i386.zip -set CMakeUrl=https://github.com/Kitware/CMake/releases/download/v3.31.3/%CMakeInstall% +set CMakeInstall=cmake-3.19.0-win32-x86.zip +set CMakeUrl=https://github.com/Kitware/CMake/releases/download/v3.19.0/%CMakeInstall% +set CMakeUnpackPath=%EnvMSYS2Path%\msys64 -if exist "%MSYS2UnpackPath%\usr\bin\pacman.exe" ( +if exist "%CMakeUnpackPath%\usr\bin\pacman.exe" ( if "%~1"=="reinstall" ( choice /M "Found existing MSYS2 version. Do you want to proceed?" if !ERRORLEVEL!==2 goto exit @@ -33,12 +33,13 @@ if exist "%MSYS2UnpackPath%\usr\bin\pacman.exe" ( ) ) -if exist "%MSYS2UnpackPath%" ( + +if exist "%CMakeUnpackPath%" ( %cecho% info "Remove previous MSYS2 version" - call "%ToolsPath%\remove-dir.bat" "%MSYS2UnpackPath%" + call "%ToolsPath%\remove-dir.bat" "%CMakeUnpackPath%" ) -%cecho% info "Download MSYS2 installation files" +%cecho% info "Download installation files" if not exist "%EnvDownloadPath%\%MSYS2Install%" call "%ToolsPath%\download-file.bat" "%MSYS2Url%" "%EnvDownloadPath%\%MSYS2Install%" if not exist "%EnvDownloadPath%\%MSYS2Install%" %cecho% error "Cannot download MSYS" & goto error @@ -49,29 +50,29 @@ if not exist "%EnvDownloadPath%\%CMakeInstall%" %cecho% error "Cannot download C "%EnvDownloadPath%\%MSYS2Install%" -y -o"%EnvMSYS2Path%" %cecho% info "Unpack CMake" -"%EnvSevenZipExe%" x -o"%MSYS2UnpackPath%" "%EnvDownloadPath%\%CMakeInstall%" -y -bso0 +"%EnvSevenZipExe%" x -o"%CMakeUnpackPath%" "%EnvDownloadPath%\%CMakeInstall%" %cecho% info "Install CMake" set CMakeVersion= -for /D %%F in (%MSYS2UnpackPath%\cmake*) do set CMakeVersion=%%~nxF +for /D %%F in (%CMakeUnpackPath%\cmake*) do set CMakeVersion=%%~nxF if "%CMakeVersion%"=="" %cecho% error "CMake version not found." & goto :exit %cecho% info "Found CMake version %CMakeVersion%" set FoundProfile= -for /f "tokens=3" %%F in ('find /c /i "%CMakeVersion%" "%MSYS2UnpackPath%\etc\profile"') do set FoundProfile=%%F +for /f "tokens=3" %%F in ('find /c /i "%CMakeVersion%" "%CMakeUnpackPath%\etc\profile"') do set FoundProfile=%%F if "%FoundProfile%"=="0" ( - echo export PATH="${PATH}:/%CMakeVersion%/bin">>"%MSYS2UnpackPath%\etc\profile" + echo export PATH="${PATH}:/%CMakeVersion%/bin">>"%CMakeUnpackPath%\etc\profile" ) -set MSYS2SH=%MSYS2UnpackPath%\usr\bin\sh +set MSYS2SH=%CMakeUnpackPath%\usr\bin\sh %cecho% info "Initialize MSYS2" "%MSYS2SH%" -lc "yes | pacman --noconfirm -Syuu msys2-keyring" "%MSYS2SH%" -lc "pacman --noconfirm -Sy" "%MSYS2SH%" -lc "pacman --noconfirm -Su" -call "%MSYS2UnpackPath%\autorebase.bat" +call "%CMakeUnpackPath%\autorebase.bat" :exit endlocal diff --git a/build_scripts/Windows/env/tools/prepare-tools.bat b/build_scripts/Windows/env/tools/prepare-tools.bat index f088acfa8..c2c1e1bdd 100644 --- a/build_scripts/Windows/env/tools/prepare-tools.bat +++ b/build_scripts/Windows/env/tools/prepare-tools.bat @@ -19,9 +19,9 @@ set MinGitInstallPath=%EnvToolsPath%\MinGit set DoxygenInstall=doxygen-1.9.6.windows.x64.bin.zip set DoxygenUrl=https://github.com/doxygen/doxygen/releases/download/Release_1_9_6/%DoxygenInstall% set DoxygenInstallPath=%EnvToolsPath%\doxygen -set CMakeVersion=cmake-3.31.3-windows-i386 +set CMakeVersion=cmake-3.19.0-win32-x86 set CMakeInstall=%CMakeVersion%.zip -set CMakeUrl=https://github.com/Kitware/CMake/releases/download/v3.31.3/%CMakeInstall% +set CMakeUrl=https://github.com/Kitware/CMake/releases/download/v3.19.0/%CMakeInstall% set CMakeInstallPath=%EnvToolsPath%\cmake set TorProjectUrl=https://www.torproject.org set TorDownloadIndexUrl=%TorProjectUrl%/download/tor @@ -53,7 +53,7 @@ if not exist "%EnvToolsPath%\cecho.exe" ( if not exist "%EnvDownloadPath%\%cCEhoInstall%" echo Cannot download cecho installation& goto error echo Unpack cecho - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CEchoInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CEchoInstall%" copy "%EnvTempPath%\cecho.exe" "%EnvToolsPath%" call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" @@ -69,7 +69,7 @@ if not exist "%EnvToolsPath%\depends.exe" ( if not exist "%EnvDownloadPath%\%DependsInstall%" %cecho% error "Cannot download Dependendy Walker installation" & goto error %cecho% info "Unpack Dependency Walker" - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%DependsInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%DependsInstall%" copy "%EnvTempPath%\*" "%EnvToolsPath%" call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" @@ -85,7 +85,7 @@ if not exist "%EnvToolsPath%\cut.exe" ( if not exist "%EnvDownloadPath%\%UnixToolsInstall%" %cecho% error "Cannot download Unix Tools installation" & goto error %cecho% info "Unpack Unix Tools" - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%UnixToolsInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%UnixToolsInstall%" copy "%EnvTempPath%\cut.exe" "%EnvToolsPath%" call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" @@ -101,7 +101,7 @@ if not exist "%EnvToolsPath%\sed.exe" ( if not exist "%EnvDownloadPath%\%UnixToolsInstall%" %cecho% error "Cannot download Unix Tools installation" & goto error %cecho% info "Unpack Unix Tools" - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%UnixToolsInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%UnixToolsInstall%" copy "%EnvTempPath%\sed.exe" "%EnvToolsPath%" call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" @@ -121,7 +121,7 @@ if not exist "%NSISInstallPath%\nsis.exe" ( if not exist "%EnvDownloadPath%\%NSISInstall%" %cecho% error "Cannot download NSIS installation" & goto error %cecho% info "Unpack NSIS" - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%NSISInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%NSISInstall%" if not exist "%NSISInstallPath%" mkdir "%NSISInstallPath%" xcopy /s "%EnvTempPath%" "%NSISInstallPath%" @@ -135,7 +135,7 @@ if not exist "%MinGitInstallPath%\cmd\git.exe" ( if not exist "%EnvDownloadPath%\%MinGitInstall%" %cecho% error "Cannot download MinGit installation" & goto error %cecho% info "Unpack MinGit" - "%EnvSevenZipExe%" x -o"%MinGitInstallPath%" "%EnvDownloadPath%\%MinGitInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%MinGitInstallPath%" "%EnvDownloadPath%\%MinGitInstall%" ) if not exist "%EnvDownloadPath%\%DoxygenInstall%" call "%ToolsPath%\remove-dir.bat" "%DoxygenInstallPath%" @@ -148,7 +148,7 @@ if not exist "%DoxygenInstallPath%\doxygen.exe" ( if not exist "%EnvDownloadPath%\%DoxygenInstall%" %cecho% error "Cannot download doxygen installation" & goto error %cecho% info "Unpack Doxygen" - "%EnvSevenZipExe%" x -o"%DoxygenInstallPath%" "%EnvDownloadPath%\%DoxygenInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%DoxygenInstallPath%" "%EnvDownloadPath%\%DoxygenInstall%" ) if not exist "%EnvDownloadPath%\%CMakeInstall%" call "%ToolsPath%\remove-dir.bat" "%CMakeInstallPath%" @@ -163,7 +163,7 @@ if not exist "%CMakeInstallPath%\bin\cmake.exe" ( if not exist "%EnvDownloadPath%\%CMakeInstall%" %cecho% error "Cannot download CMake installation" & goto error %cecho% info "Unpack CMake" - "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CMakeInstall%" -y -bso0 + "%EnvSevenZipExe%" x -o"%EnvTempPath%" "%EnvDownloadPath%\%CMakeInstall%" move "%EnvTempPath%\%CMakeVersion%" "%CMakeInstallPath%" @@ -176,7 +176,7 @@ mkdir "%EnvTempPath%" call "%ToolsPath%\download-file.bat" "%TorDownloadIndexUrl%" "%EnvTempPath%\index.html" if not exist "%EnvTempPath%\index.html" %cecho% error "Cannot download Tor installation" & goto error -for /F "tokens=1,2 delims= " %%A in ('%EnvSedExe% -r -n -e"s/.*href=\"^(.*^)^(tor-.*windows-i686.*\.tar\.gz^)\".*/\2 \1\2/p" "%EnvTempPath%\index.html"') do set TorInstall=%%A& set TorDownloadUrl=%%B +for /F "tokens=1,2 delims= " %%A in ('%EnvSedExe% -r -n -e"s/.*href=\"^(.*^)^(tor-.*windows-i686\.tar\.gz^)\".*/\2 \1\2/p" "%EnvTempPath%\index.html"') do set TorInstall=%%A& set TorDownloadUrl=%%B call "%ToolsPath%\remove-dir.bat" "%EnvTempPath%" if "%TorInstall%"=="" %cecho% error "Cannot download Tor installation" & goto error if "%TorDownloadUrl%"=="" %cecho% error "Cannot download Tor installation" & goto error @@ -189,7 +189,7 @@ if not exist "%EnvTorPath%\Tor\tor.exe" ( if not exist "%EnvDownloadPath%\%TorInstall%" %cecho% error "Cannot download Tor installation" & goto error %cecho% info "Unpack Tor" - "%EnvSevenZipExe%" x -so "%EnvDownloadPath%\%TorInstall%" | "%EnvSevenZipExe%" x -si -ttar -o"%EnvTorPath%" -y -bso0 + "%EnvSevenZipExe%" x -so "%EnvDownloadPath%\%TorInstall%" | "%EnvSevenZipExe%" x -si -ttar -o"%EnvTorPath%" ) :exit diff --git a/build_scripts/Windows/installer/retroshare-Qt5.nsi b/build_scripts/Windows/installer/retroshare-Qt5.nsi index c7a5b9554..3a7fbf37f 100644 --- a/build_scripts/Windows/installer/retroshare-Qt5.nsi +++ b/build_scripts/Windows/installer/retroshare-Qt5.nsi @@ -247,7 +247,6 @@ Section $(Section_Main) Section_Main ; External binaries File "${EXTERNAL_LIB_DIR}\bin\miniupnpc.dll" - File "${RELEASEDIR}\supportlibs\librnp\Build\src\lib\librnp.dll" !if ${ARCHITECTURE} == "x86" File "${EXTERNAL_LIB_DIR}\bin\libcrypto-1_1.dll" File "${EXTERNAL_LIB_DIR}\bin\libssl-1_1.dll" @@ -319,7 +318,7 @@ SectionEnd !ifdef TOR_EXISTS Section /o $(Section_Tor) Section_Tor SetOutPath "$INSTDIR\tor" - File "${TORDIR}\*" + File /r "${TORDIR}\*" SectionEnd !endif diff --git a/build_scripts/git_tag_cleaner.sh b/build_scripts/git_tag_cleaner.sh deleted file mode 100755 index cf7a3ef0c..000000000 --- a/build_scripts/git_tag_cleaner.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -function git_del_tag() -{ - mTag=$1 - - for mRemote in $(git remote); do - echo "Attempting tag $mTag removal from remote $mRemote" - GIT_TERMINAL_PROMPT=0 git push $mRemote :$mTag || true - done - git tag --delete $mTag -} - -for mModule in . build_scripts/OBS/ libbitdht/ libretroshare/ openpgpsdk/ retroshare-webui/ ; do - pushd $mModule - git_del_tag v0.6.7a - git tag --list | grep untagged | while read mTag; do git_del_tag $mTag ; done - popd -done - diff --git a/data/retroshare.desktop b/data/retroshare.desktop index 95056d54a..efc73dd6b 100644 --- a/data/retroshare.desktop +++ b/data/retroshare.desktop @@ -7,5 +7,5 @@ Exec=/usr/bin/retroshare %U Icon=/usr/share/pixmaps/retroshare.xpm Terminal=false Type=Application -Categories=Network;Email;InstantMessaging;Chat;Feed;FileTransfer;P2P +Categories=Application;Network;P2P;Feed;Chat;InstantMessaging MimeType=x-scheme-handler/retroshare; diff --git a/libbitdht b/libbitdht index 2ddc86fb5..659423769 160000 --- a/libbitdht +++ b/libbitdht @@ -1 +1 @@ -Subproject commit 2ddc86fb575a61170f4c06a00152e3e7dc74c8f4 +Subproject commit 659423769541169457c41f71c8a038e2d64ba079 diff --git a/libretroshare b/libretroshare index ac83e00ea..8c02b54e4 160000 --- a/libretroshare +++ b/libretroshare @@ -1 +1 @@ -Subproject commit ac83e00ea7a26cd6cf57cefef745d6dcfd07e5da +Subproject commit 8c02b54e4d16e38b28e77263a0b1570c50df4c99 diff --git a/openpgpsdk b/openpgpsdk index 178aa8ebc..b41667912 160000 --- a/openpgpsdk +++ b/openpgpsdk @@ -1 +1 @@ -Subproject commit 178aa8ebcef47e3271d5a5ca5c07e45d3b71c81d +Subproject commit b41667912751a453e8e5d4733215a0609277a26f diff --git a/plugins/FeedReader/gui/FeedReaderDialog.cpp b/plugins/FeedReader/gui/FeedReaderDialog.cpp index 87db9cf9c..08f390a09 100644 --- a/plugins/FeedReader/gui/FeedReaderDialog.cpp +++ b/plugins/FeedReader/gui/FeedReaderDialog.cpp @@ -129,8 +129,6 @@ FeedReaderDialog::FeedReaderDialog(RsFeedReader *feedReader, FeedReaderNotify *n settingsChanged(); feedTreeItemActivated(NULL); - - mFontSizeHandler.registerFontSize(ui->feedTreeWidget); } FeedReaderDialog::~FeedReaderDialog() diff --git a/plugins/FeedReader/gui/FeedReaderDialog.h b/plugins/FeedReader/gui/FeedReaderDialog.h index a9672bc76..12e11ee7f 100644 --- a/plugins/FeedReader/gui/FeedReaderDialog.h +++ b/plugins/FeedReader/gui/FeedReaderDialog.h @@ -23,7 +23,6 @@ #include #include "interface/rsFeedReader.h" -#include "util/FontSizeHandler.h" namespace Ui { class FeedReaderDialog; @@ -99,8 +98,6 @@ private: RsFeedReader *mFeedReader; FeedReaderNotify *mNotify; - FontSizeHandler mFontSizeHandler; - /** Qt Designer generated object */ Ui::FeedReaderDialog *ui; }; diff --git a/plugins/FeedReader/gui/FeedReaderDialog.ui b/plugins/FeedReader/gui/FeedReaderDialog.ui index 440bb7736..b6b004d69 100644 --- a/plugins/FeedReader/gui/FeedReaderDialog.ui +++ b/plugins/FeedReader/gui/FeedReaderDialog.ui @@ -57,10 +57,10 @@ - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken diff --git a/plugins/FeedReader/gui/FeedReaderMessageWidget.cpp b/plugins/FeedReader/gui/FeedReaderMessageWidget.cpp index ec0e3d0e2..59f72103c 100644 --- a/plugins/FeedReader/gui/FeedReaderMessageWidget.cpp +++ b/plugins/FeedReader/gui/FeedReaderMessageWidget.cpp @@ -154,8 +154,6 @@ FeedReaderMessageWidget::FeedReaderMessageWidget(uint32_t feedId, RsFeedReader * ui->msgTreeWidget->installEventFilter(this); setFeedId(feedId); - - mFontSizeHandler.registerFontSize(ui->msgTreeWidget); } FeedReaderMessageWidget::~FeedReaderMessageWidget() diff --git a/plugins/FeedReader/gui/FeedReaderMessageWidget.h b/plugins/FeedReader/gui/FeedReaderMessageWidget.h index 40f16e29f..1223b3b4e 100644 --- a/plugins/FeedReader/gui/FeedReaderMessageWidget.h +++ b/plugins/FeedReader/gui/FeedReaderMessageWidget.h @@ -24,7 +24,6 @@ #include #include "interface/rsFeedReader.h" -#include "util/FontSizeHandler.h" namespace Ui { class FeedReaderMessageWidget; @@ -108,8 +107,6 @@ private: RsFeedReader *mFeedReader; FeedReaderNotify *mNotify; - FontSizeHandler mFontSizeHandler; - Ui::FeedReaderMessageWidget *ui; }; diff --git a/plugins/FeedReader/services/p3FeedReaderThread.cc b/plugins/FeedReader/services/p3FeedReaderThread.cc index 110d051cf..01e449323 100644 --- a/plugins/FeedReader/services/p3FeedReaderThread.cc +++ b/plugins/FeedReader/services/p3FeedReaderThread.cc @@ -848,22 +848,6 @@ RsFeedReaderErrorState p3FeedReaderThread::process(const RsFeedReaderFeed &feed, RsFeedReaderErrorState result = RS_FEED_ERRORSTATE_OK; - time_t minimumPubDate = 0; - if (feed.lastUpdate == 0) { - // Get all items on first scan - } else { - // Get storage time - uint32_t storageTime = 0; - if (feed.flag & RS_FEED_FLAG_STANDARD_STORAGE_TIME) { - storageTime = mFeedReader->getStandardStorageTime(); - } else { - storageTime = feed.storageTime; - } - if (storageTime > 0) { - minimumPubDate = time(NULL) - storageTime; - } - } - XMLWrapper xml; if (xml.readXML(feed.content.c_str())) { xmlNodePtr root = xml.getRootElement(); @@ -1022,13 +1006,6 @@ RsFeedReaderErrorState p3FeedReaderThread::process(const RsFeedReaderFeed &feed, } } - if (minimumPubDate) { - if (item->pubDate < minimumPubDate) { - // pubDate is less than storage time, don't add as new item - continue; - } - } - entries.push_back(item); } } else { @@ -1120,7 +1097,7 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe std::string url; if (feed.flag & RS_FEED_FLAG_SAVE_COMPLETE_PAGE) { #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") download page " << msg->link << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") download page " << msg->link << std::endl; #endif std::string content; CURLWrapper CURL(proxy); @@ -1157,7 +1134,7 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe if (result != RS_FEED_ERRORSTATE_OK) { #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") cannot download page, CURLCode = " << code << ", error = " << errorString << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") cannot download page, CURLCode = " << code << ", error = " << errorString << std::endl; #endif return result; } @@ -1174,10 +1151,10 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe if (isRunning()) { /* process description */ - bool processPostedFirstImage = (feed.flag & RS_FEED_FLAG_POSTED_FIRST_IMAGE) ? true : false; + bool processPostedFirstImage = (feed.flag & RS_FEED_FLAG_POSTED_FIRST_IMAGE) ? TRUE : FALSE; if (!msg->attachmentBinary.empty()) { /* use attachment as image */ - processPostedFirstImage = false; + processPostedFirstImage = FALSE; } //long todo; // encoding @@ -1303,7 +1280,7 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe if (!src.empty()) { /* download image */ #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") download image " << src << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") download image " << src << std::endl; #endif std::vector data; CURLWrapper CURL(proxy); @@ -1371,7 +1348,7 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe if (!html.saveHTML(msg->postedDescriptionWithoutFirstImage)) { errorString = html.lastError(); #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") cannot dump html" << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") cannot dump html" << std::endl; std::cerr << " Error: " << errorString << std::endl; #endif result = RS_FEED_ERRORSTATE_PROCESS_INTERNAL_ERROR; @@ -1380,7 +1357,7 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe } else { errorString = html.lastError(); #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") cannot dump html" << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") cannot dump html" << std::endl; std::cerr << " Error: " << errorString << std::endl; #endif result = RS_FEED_ERRORSTATE_PROCESS_INTERNAL_ERROR; @@ -1389,14 +1366,14 @@ RsFeedReaderErrorState p3FeedReaderThread::processMsg(const RsFeedReaderFeed &fe } } else { #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") no root element" << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") no root element" << std::endl; #endif result = RS_FEED_ERRORSTATE_PROCESS_HTML_ERROR; } } else { errorString = html.lastError(); #ifdef FEEDREADER_DEBUG - std::cerr << "p3FeedReaderThread::processMsg - feed " << feed.feedId << " (" << feed.name << ") cannot read html" << std::endl; + std::cerr << "p3FeedReaderThread::processHTML - feed " << feed.feedId << " (" << feed.name << ") cannot read html" << std::endl; std::cerr << " Error: " << errorString << std::endl; #endif result = RS_FEED_ERRORSTATE_PROCESS_HTML_ERROR; diff --git a/retroshare-friendserver/src/friendserver.cc b/retroshare-friendserver/src/friendserver.cc index 3c80bba83..19c286256 100644 --- a/retroshare-friendserver/src/friendserver.cc +++ b/retroshare-friendserver/src/friendserver.cc @@ -8,11 +8,7 @@ #include "pgp/pgpkeyutil.h" #include "pgp/rscertificate.h" -#ifdef USE_OPENPGPSDK #include "pgp/openpgpsdkhandler.h" -#else -#include "pgp/rnppgphandler.h" -#endif #include "friendserver.h" #include "friend_server/fsitem.h" @@ -397,11 +393,7 @@ FriendServer::FriendServer(const std::string& base_dir,const std::string& listen std::string pgp_private_keyring_path = RsDirUtil::makePath(base_dir,"pgp_private_keyring") ; // not used. std::string pgp_trustdb_path = RsDirUtil::makePath(base_dir,"pgp_trustdb") ; // not used. -#ifdef USE_OPENPGPSDK mPgpHandler = new OpenPGPSDKHandler(pgp_public_keyring_path,pgp_private_keyring_path,pgp_trustdb_path,pgp_lock_path); -#else - mPgpHandler = new RNPPGPHandler(pgp_public_keyring_path,pgp_private_keyring_path,pgp_trustdb_path,pgp_lock_path); -#endif // Random bias. Should be cryptographically safe. diff --git a/retroshare-gui/src/README.txt b/retroshare-gui/src/README.txt index 231d16b23..7f7f35c8e 100644 --- a/retroshare-gui/src/README.txt +++ b/retroshare-gui/src/README.txt @@ -2,14 +2,17 @@ README for RetroShare ======================================================================================= -RetroShare web site . . . . https://retroshare.cc/ +RetroShare web site . . . . http://retroshare.net/index.html Developer's blog . . . . . https://retroshareteam.wordpress.com -Documentation . . . . . . . https://retrosharedocs.readthedocs.io/en/latest/ +Documentation . . . . . . . https://retroshare.readthedocs.io/en/latest/ +Support . . . . . . . . . . http://retroshare.net/support.html +Forums . . . . . . . . . . http://retroshare.sourceforge.net/forum/ Wiki . . . . . . . . . . . https://github.com/RetroShare/documentation/wiki +Old developers site . . . . http://retroshare.sourceforge.net/wiki/index.php/Developers_Corner Project site . . . . . . . https://github.com/RetroShare/RetroShare -Related projects/plugins . .https://github.com/RetroShare +Relted projects/plugins . . https://github.com/RetroShare -Contact: . . . . . . . . . retroshare.project@gmail.com +Contact: . . . . . . . . . retroshare@lunamutt.com ,defnax@users.sourceforge.net ========================================================================================= Compiling RetroShare @@ -19,9 +22,9 @@ Build Scripts are avaible on GIT: https://github.com/RetroShare/RetroShare/tree/master/build_scripts You can find here instructions howto compile RetroShare: -https://retrosharedocs.readthedocs.io/en/latest/developer/compilation/ +https://retroshare.readthedocs.io/en/latest/developer/compilation/ -You can go on over to our forum or chat room when you have trouble with compiling: +You can go on over to our forum or chat lobby when you have trouble with compiling: retroshare://forum?name=Developers%20Discussions&id=8fd22bd8f99754461e7ba1ca8a727995 retroshare://chat_room?name=Retroshare%20Devel%20%28signed%29&id=L68DB0A1E09BDA3A5 - +http://retroshare.sourceforge.net/forum/ diff --git a/retroshare-gui/src/gui/AboutWidget.cpp b/retroshare-gui/src/gui/AboutWidget.cpp index 1c4ae6827..b468550b1 100644 --- a/retroshare-gui/src/gui/AboutWidget.cpp +++ b/retroshare-gui/src/gui/AboutWidget.cpp @@ -142,7 +142,7 @@ void AboutWidget::updateTitle() { if (tWidget == NULL) { - setWindowTitle(QString("%1 %2").arg(tr("About RetroShare"), RsApplication::retroshareVersion(true))); + setWindowTitle(QString("%1 %2").arg(tr("About RetroShare"), Rshare::retroshareVersion(true))); } else { @@ -228,7 +228,7 @@ void AWidget::initImages() #ifdef RS_ONLYHIDDENNODE p.drawText(QPointF(10, 50), QString("%1 : %2 (With embedded Tor)").arg(tr("Retroshare version"), Rshare::retroshareVersion(true))); #else - p.drawText(QPointF(10, 50), QString("%1 : %2").arg(tr("Retroshare version"), RsApplication::retroshareVersion(true))); + p.drawText(QPointF(10, 50), QString("%1 : %2").arg(tr("Retroshare version"), Rshare::retroshareVersion(true))); #endif /* Draw Qt's version number */ @@ -936,7 +936,7 @@ void AboutWidget::on_copy_button_clicked() { QString verInfo; QString rsVerString = "RetroShare Version: "; - rsVerString+=RsApplication::retroshareVersion(true); + rsVerString+=Rshare::retroshareVersion(true); verInfo+=rsVerString; #ifdef RS_ONLYHIDDENNODE verInfo+=" " + tr("Only Hidden Node"); diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.cpp b/retroshare-gui/src/gui/ChatLobbyWidget.cpp index 60ed255a8..0b5350110 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.cpp +++ b/retroshare-gui/src/gui/ChatLobbyWidget.cpp @@ -143,28 +143,28 @@ ChatLobbyWidget::ChatLobbyWidget(QWidget *parent, Qt::WindowFlags flags) QHeaderView_setSectionResizeModeColumn(header, COLUMN_TOPIC, QHeaderView::Interactive); privateSubLobbyItem = new RSTreeWidgetItem(compareRole, TYPE_FOLDER); - privateSubLobbyItem->setText(COLUMN_NAME, tr("Private Subscribed")); + privateSubLobbyItem->setText(COLUMN_NAME, tr("Private Subscribed chat rooms")); privateSubLobbyItem->setData(COLUMN_NAME, ROLE_SORT, "1"); // privateLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PRIVATE)); privateSubLobbyItem->setData(COLUMN_DATA, ROLE_PRIVACYLEVEL, CHAT_LOBBY_PRIVACY_LEVEL_PRIVATE); ui.lobbyTreeWidget->insertTopLevelItem(0, privateSubLobbyItem); publicSubLobbyItem = new RSTreeWidgetItem(compareRole, TYPE_FOLDER); - publicSubLobbyItem->setText(COLUMN_NAME, tr("Public Subscribed")); + publicSubLobbyItem->setText(COLUMN_NAME, tr("Public Subscribed chat rooms")); publicSubLobbyItem->setData(COLUMN_NAME, ROLE_SORT, "2"); // publicLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PUBLIC)); publicSubLobbyItem->setData(COLUMN_DATA, ROLE_PRIVACYLEVEL, CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC); ui.lobbyTreeWidget->insertTopLevelItem(1, publicSubLobbyItem); privateLobbyItem = new RSTreeWidgetItem(compareRole, TYPE_FOLDER); - privateLobbyItem->setText(COLUMN_NAME, tr("Private")); + privateLobbyItem->setText(COLUMN_NAME, tr("Private chat rooms")); privateLobbyItem->setData(COLUMN_NAME, ROLE_SORT, "3"); // privateLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PRIVATE)); privateLobbyItem->setData(COLUMN_DATA, ROLE_PRIVACYLEVEL, CHAT_LOBBY_PRIVACY_LEVEL_PRIVATE); ui.lobbyTreeWidget->insertTopLevelItem(2, privateLobbyItem); publicLobbyItem = new RSTreeWidgetItem(compareRole, TYPE_FOLDER); - publicLobbyItem->setText(COLUMN_NAME, tr("Public")); + publicLobbyItem->setText(COLUMN_NAME, tr("Public chat rooms")); publicLobbyItem->setData(COLUMN_NAME, ROLE_SORT, "4"); // publicLobbyItem->setIcon(COLUMN_NAME, QIcon(IMAGE_PUBLIC)); publicLobbyItem->setData(COLUMN_DATA, ROLE_PRIVACYLEVEL, CHAT_LOBBY_PRIVACY_LEVEL_PUBLIC); @@ -230,8 +230,6 @@ ChatLobbyWidget::ChatLobbyWidget(QWidget *parent, Qt::WindowFlags flags) int ltwH = misc::getFontSizeFactor("LobbyTreeWidget", 1.5).height(); ui.lobbyTreeWidget->setIconSize(QSize(ltwH,ltwH)); - - mFontSizeHandler.registerFontSize(ui.lobbyTreeWidget); } ChatLobbyWidget::~ChatLobbyWidget() @@ -422,7 +420,7 @@ static void updateItem(QTreeWidget *treeWidget, QTreeWidgetItem *item, ChatLobby if(lobby_flags & RS_CHAT_LOBBY_FLAGS_PGP_SIGNED) { tooltipstr += QObject::tr("\nSecurity: no anonymous IDs") ; - QColor foreground = QColor(16, 157, 0); // green + QColor foreground = QColor(0, 128, 0); // green for (int column = 0; column < COLUMN_COUNT; ++column) item->setData(column, Qt::ForegroundRole, foreground); } @@ -723,9 +721,9 @@ void ChatLobbyWidget::updateDisplay() } } publicSubLobbyItem->setHidden(publicSubLobbyItem->childCount()==0); - publicSubLobbyItem->setText(COLUMN_NAME, tr("Public Subscribed")+ QString(" (") + QString::number(publicSubLobbyItem->childCount())+QString(")")); + publicSubLobbyItem->setText(COLUMN_NAME, tr("Public Subscribed chat rooms")+ QString(" (") + QString::number(publicSubLobbyItem->childCount())+QString(")")); privateSubLobbyItem->setHidden(privateSubLobbyItem->childCount()==0); - publicLobbyItem->setText(COLUMN_NAME, tr("Public")+ " (" + QString::number(publicLobbyItem->childCount())+QString(")")); + publicLobbyItem->setText(COLUMN_NAME, tr("Public chat rooms")+ " (" + QString::number(publicLobbyItem->childCount())+QString(")")); } void ChatLobbyWidget::createChatLobby() diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.h b/retroshare-gui/src/gui/ChatLobbyWidget.h index 424780dac..a5055788e 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.h +++ b/retroshare-gui/src/gui/ChatLobbyWidget.h @@ -25,7 +25,6 @@ #include "chat/ChatLobbyUserNotify.h" #include "gui/gxs/GxsIdChooser.h" -#include "util/FontSizeHandler.h" #include @@ -147,8 +146,6 @@ private: QAbstractButton* myInviteYesButton; GxsIdChooser* myInviteIdChooser; - FontSizeHandler mFontSizeHandler; - /* UI - from Designer */ Ui::ChatLobbyWidget ui; }; diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.ui b/retroshare-gui/src/gui/ChatLobbyWidget.ui index b2f711b72..8f8e8f29d 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.ui +++ b/retroshare-gui/src/gui/ChatLobbyWidget.ui @@ -73,7 +73,7 @@ - 12 + 12 75 true @@ -191,6 +191,11 @@ + + + 11 + + 16 @@ -459,7 +464,7 @@ LineEditClear QLineEdit -
gui/common/LineEditClear.h
+
gui/common/LineEditClear.h
RSTreeWidget diff --git a/retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp b/retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp old mode 100755 new mode 100644 index 319c284d5..3fc982012 --- a/retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp +++ b/retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp @@ -102,7 +102,7 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti multi *= 1024.0; } } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_REMAINING: remaining = index.data().toLongLong(); @@ -121,7 +121,7 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti multi *= 1024.0; } } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_COMPLETED: completed = index.data().toLongLong(); @@ -140,7 +140,7 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti multi *= 1024.0; } } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_DLSPEED: dlspeed = index.data().toDouble(); @@ -151,7 +151,7 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti temp.sprintf("%.2f", dlspeed/1024.); temp += " KB/s"; } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_PROGRESS: { @@ -236,7 +236,7 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti pixmap = qvariant_cast(value).pixmap(option.decorationSize, option.state & QStyle::State_Enabled ? QIcon::Normal : QIcon::Disabled, option.state & QStyle::State_Open ? QIcon::On : QIcon::Off); pixmapRect = (pixmap.isNull() ? QRect(0, 0, 0, 0): QRect(QPoint(0, 0), option.decorationSize)); if (pixmapRect.isValid()){ - QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft | Qt::AlignVCenter, pixmap.size(), option.rect).topLeft(); + QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft, pixmap.size(), option.rect).topLeft(); p.setX( p.x() + pixOffset); painter->drawPixmap(p, pixmap); temp = " " + temp; @@ -247,13 +247,13 @@ void DLListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti pixmap = qvariant_cast(value).pixmap(option.decorationSize, option.state & QStyle::State_Enabled ? QIcon::Normal : QIcon::Disabled, option.state & QStyle::State_Open ? QIcon::On : QIcon::Off); pixmapRect = (pixmap.isNull() ? QRect(0, 0, 0, 0): QRect(QPoint(0, 0), option.decorationSize)); if (pixmapRect.isValid()){ - QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft | Qt::AlignVCenter, pixmap.size(), option.rect).topLeft(); + QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft, pixmap.size(), option.rect).topLeft(); p.setX( p.x() + pixOffset); painter->drawPixmap(p, pixmap); temp = " " + temp; pixOffset += pixmap.size().width(); } - painter->drawText(option.rect.translated(pixOffset, 0), Qt::AlignLeft | Qt::AlignVCenter, temp); + painter->drawText(option.rect.translated(pixOffset, 0), Qt::AlignLeft, temp); } break; case COLUMN_LASTDL: @@ -279,7 +279,7 @@ QSize DLListDelegate::sizeHint(const QStyleOptionViewItem & option, const QModel { float w = QFontMetricsF(option.font).width(index.data(Qt::DisplayRole).toString()); - int S = QFontMetricsF(option.font).height()*1.5 ; + int S = QFontMetricsF(option.font).height() ; return QSize(w,S); } diff --git a/retroshare-gui/src/gui/FileTransfer/SearchDialog.cpp b/retroshare-gui/src/gui/FileTransfer/SearchDialog.cpp index c5b7ba04d..2ecf442e4 100644 --- a/retroshare-gui/src/gui/FileTransfer/SearchDialog.cpp +++ b/retroshare-gui/src/gui/FileTransfer/SearchDialog.cpp @@ -30,7 +30,7 @@ #include "gui/RetroShareLink.h" #include "retroshare-gui/RsAutoUpdatePage.h" #include "gui/msgs/MessageComposer.h" -#include "gui/common/RsCollectionDialog.h" +#include "gui/common/RsCollection.h" #include "gui/common/FilesDefs.h" #include "gui/common/RsUrlHandler.h" #include "gui/settings/rsharesettings.h" @@ -38,7 +38,6 @@ #include "gui/common/RSTreeWidgetItem.h" #include "util/QtVersion.h" #include "util/qtthreadsutils.h" -#include "util/misc.h" #include #include @@ -87,18 +86,6 @@ const int SearchDialog::FILETYPE_IDX_DIRECTORY = 8; QMap * SearchDialog::FileTypeExtensionMap = new QMap(); bool SearchDialog::initialised = false; -struct SearchDialog::FileDetail -{ -public: - RsPeerId id; - std::string name; - RsFileHash hash; - std::string path; - uint64_t size; - uint32_t mtime; - uint32_t rank; -}; - /** Constructor */ SearchDialog::SearchDialog(QWidget *parent) : MainPage(parent), @@ -202,6 +189,10 @@ SearchDialog::SearchDialog(QWidget *parent) ui.searchResultWidget->sortItems(SR_NAME_COL, Qt::AscendingOrder); + QFontMetricsF fontMetrics(ui.searchResultWidget->font()); + int iconHeight = fontMetrics.height() * 1.4; + ui.searchResultWidget->setIconSize(QSize(iconHeight, iconHeight)); + /* Set initial size the splitter */ QList sizes; sizes << 250 << width(); // Qt calculates the right sizes @@ -236,8 +227,6 @@ SearchDialog::SearchDialog(QWidget *parent) RsQThreadUtils::postToObject([=](){ handleEvent_main_thread(event); }, this ); }, mEventHandlerId, RsEventType::FILE_TRANSFER ); - mFontSizeHandler.registerFontSize(ui.searchSummaryWidget); - mFontSizeHandler.registerFontSize(ui.searchResultWidget, 1.4f); } SearchDialog::~SearchDialog() @@ -276,8 +265,6 @@ void SearchDialog::handleEvent_main_thread(std::shared_ptr event) f.hash = fe->mResults[i].fHash; f.name = fe->mResults[i].fName; f.size = fe->mResults[i].fSize; - f.mtime = 0; // zero what's not available, otherwise we'll get some random values displayed. - f.rank = 0; updateFiles(fe->mRequestId,f); } @@ -324,7 +311,7 @@ void SearchDialog::checkText(const QString& txt) ui.searchButton->setDisabled(txt.length() < 3); ui.searchLineFrame->setProperty("valid", (txt.length() >= 3)); ui.searchLineFrame->style()->unpolish(ui.searchLineFrame); - RsApplication::refreshStyleSheet(ui.searchLineFrame, false); + Rshare::refreshStyleSheet(ui.searchLineFrame, false); } void SearchDialog::initialiseFileTypeMappings() @@ -496,23 +483,25 @@ void SearchDialog::collCreate() int selectedCount = selectedItems.size() ; QTreeWidgetItem * item ; - RsFileTree tree; - - for (int i = 0; i < selectedCount; ++i) - { + for (int i = 0; i < selectedCount; ++i) { item = selectedItems.at(i) ; - if (!item->text(SR_HASH_COL).isEmpty()) - { + if (!item->text(SR_HASH_COL).isEmpty()) { std::string name = item->text(SR_NAME_COL).toUtf8().constData(); RsFileHash hash( item->text(SR_HASH_COL).toStdString() ); uint64_t count = item->text(SR_SIZE_COL).toULongLong(); - tree.addFile(tree.root(),name,hash,count); + DirDetails details; + details.name = name; + details.hash = hash; + details.size = count; + details.type = DIR_TYPE_FILE; + + dirVec.push_back(details); } } - RsCollectionDialog::openNewCollection(tree); + RsCollection(dirVec,RS_FILE_HINTS_LOCAL).openNewColl(this); } void SearchDialog::collModif() @@ -539,8 +528,12 @@ void SearchDialog::collModif() /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath()); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath()); + }//if (qinfo.absoluteFilePath().endsWith(RsCollectionFile::ExtensionString)) + }//if (qinfo.exists()) } void SearchDialog::collView() @@ -567,8 +560,12 @@ void SearchDialog::collView() /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath(), true); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath(), true); + }//if (qinfo.absoluteFilePath().endsWith(RsCollectionFile::ExtensionString)) + }//if (qinfo.exists()) } void SearchDialog::collOpen() @@ -586,35 +583,32 @@ void SearchDialog::collOpen() if (rsFiles->FileDetails(hash, RS_FILE_HINTS_EXTRA | RS_FILE_HINTS_LOCAL | RS_FILE_HINTS_BROWSABLE | RS_FILE_HINTS_NETWORK_WIDE - | RS_FILE_HINTS_SPEC_ONLY, info)) - { + | RS_FILE_HINTS_SPEC_ONLY, info)) { + /* make path for downloaded files */ std::string path; path = info.path; /* open file with a suitable application */ QFileInfo qinfo; - RsCollection::RsCollectionErrorCode err; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::downloadFiles(RsCollection(qinfo.absoluteFilePath(),err)); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + if (collection.load(qinfo.absoluteFilePath())) { + collection.downloadFiles(); + return; + } + } + } } } } - QString fileName; - if (!misc::getOpenFileName(nullptr, RshareSettings::LASTDIR_EXTRAFILE, QApplication::translate("RsCollectionFile", "Open collection file"), QApplication::translate("RsCollectionFile", "Collection files") + " (*." + RsCollection::ExtensionString + ")", fileName)) - return ; - - std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - - RsCollection::RsCollectionErrorCode err; - RsCollection collection(fileName, err); - - if(err == RsCollection::RsCollectionErrorCode::COLLECTION_NO_ERROR) - RsCollectionDialog::downloadFiles(collection); - else - QMessageBox::information(nullptr,tr("Error open RsCollection file"),RsCollection::errorString(err)); + RsCollection collection; + if (collection.load(this)) { + collection.downloadFiles(); + }//if (collection.load(this)) } void SearchDialog::downloadDirectory(const QTreeWidgetItem *item, const QString &base) @@ -972,7 +966,7 @@ void SearchDialog::searchKeywords(const QString& keywords) } } -void SearchDialog::updateFiles(qulonglong search_id,const FileDetail& file) +void SearchDialog::updateFiles(qulonglong search_id,FileDetail file) { searchResultsQueue.push_back(std::pair(search_id,file)) ; @@ -1040,7 +1034,7 @@ void SearchDialog::insertDirectory(const QString &txt, qulonglong searchId, cons child->setText(SR_SOURCES_COL, QString::number(1)); child->setData(SR_SOURCES_COL, ROLE_SORT, 1); - child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight | Qt::AlignVCenter ); + child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight ); child->setText(SR_SEARCH_ID_COL, sid_hexa); setIconAndType(child, QString::fromUtf8(dir.name.c_str())); @@ -1065,7 +1059,7 @@ void SearchDialog::insertDirectory(const QString &txt, qulonglong searchId, cons child->setTextAlignment( SR_SIZE_COL, Qt::AlignRight ); child->setText(SR_SOURCES_COL, QString::number(1)); child->setData(SR_SOURCES_COL, ROLE_SORT, 1); - child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight | Qt::AlignVCenter ); + child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight ); child->setText(SR_SEARCH_ID_COL, sid_hexa); child->setText(SR_TYPE_COL, tr("Folder")); @@ -1134,7 +1128,7 @@ void SearchDialog::insertDirectory(const QString &txt, qulonglong searchId, cons child->setTextAlignment( SR_SIZE_COL, Qt::AlignRight ); child->setText(SR_SOURCES_COL, QString::number(1)); child->setData(SR_SOURCES_COL, ROLE_SORT, 1); - child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight | Qt::AlignVCenter ); + child->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight ); child->setText(SR_SEARCH_ID_COL, sid_hexa); child->setText(SR_TYPE_COL, tr("Folder")); @@ -1326,11 +1320,9 @@ void SearchDialog::insertFile(qulonglong searchId, const FileDetail& file, int s item->setText(SR_SIZE_COL, QString::number(file.size)); item->setData(SR_SIZE_COL, ROLE_SORT, (qulonglong) file.size); - item->setText(SR_AGE_COL, QString::number(file.mtime)); - item->setData(SR_AGE_COL, ROLE_SORT, file.mtime); + item->setText(SR_AGE_COL, QString::number(file.age)); + item->setData(SR_AGE_COL, ROLE_SORT, file.age); item->setTextAlignment( SR_SIZE_COL, Qt::AlignRight ); - item->setTextAlignment( SR_AGE_COL, Qt::AlignCenter ); - int friendSource = 0; int anonymousSource = 0; if(searchType == FRIEND_SEARCH) @@ -1349,7 +1341,7 @@ void SearchDialog::insertFile(qulonglong searchId, const FileDetail& file, int s item->setText(SR_SOURCES_COL,modifiedResult); item->setToolTip(SR_SOURCES_COL, tr("Obtained via ")+QString::fromStdString(rsPeers->getPeerName(file.id)) ); item->setData(SR_SOURCES_COL, ROLE_SORT, fltRes); - item->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight | Qt::AlignVCenter ); + item->setTextAlignment( SR_SOURCES_COL, Qt::AlignRight ); item->setText(SR_SEARCH_ID_COL, sid_hexa); QColor foreground; @@ -1404,21 +1396,21 @@ void SearchDialog::resultsToTree(const QString& txt,qulonglong searchId, const s std::list::const_iterator it; for(it = results.begin(); it != results.end(); ++it) - if (it->type == DIR_TYPE_FILE) - { + if (it->type == DIR_TYPE_FILE) { FileDetail fd; fd.id = it->id; fd.name = it->name; fd.hash = it->hash; fd.path = it->path; fd.size = it->size; - fd.mtime= it->mtime; + fd.age = it->mtime; fd.rank = 0; insertFile(searchId,fd, FRIEND_SEARCH); - } - else if (it->type == DIR_TYPE_DIR) + } else if (it->type == DIR_TYPE_DIR) { +// insertDirectory(txt, searchId, *it, NULL); insertDirectory(txt, searchId, *it); + } ui.searchResultWidget->setSortingEnabled(true); } diff --git a/retroshare-gui/src/gui/FileTransfer/SearchDialog.h b/retroshare-gui/src/gui/FileTransfer/SearchDialog.h index 0af53662b..5661f6246 100644 --- a/retroshare-gui/src/gui/FileTransfer/SearchDialog.h +++ b/retroshare-gui/src/gui/FileTransfer/SearchDialog.h @@ -25,7 +25,6 @@ #include "retroshare/rsevents.h" #include "ui_SearchDialog.h" #include "retroshare-gui/mainpage.h" -#include "util/FontSizeHandler.h" class AdvancedSearchDialog; class RSTreeWidgetItemCompareRole; @@ -44,7 +43,6 @@ class SearchDialog : public MainPage Q_PROPERTY(QColor textColorLowSources READ textColorLowSources WRITE setTextColorLowSources) Q_PROPERTY(QColor textColorHighSources READ textColorHighSources WRITE setTextColorHighSources) - struct FileDetail; // useful structure to store search results. public: /** Default Constructor */ SearchDialog(QWidget *parent = 0); @@ -65,7 +63,8 @@ public: void setTextColorLowSources(QColor color) { mTextColorLowSources = color; } void setTextColorHighSources(QColor color) { mTextColorHighSources = color; } - void updateFiles(qulonglong request_id, const FileDetail& file) ; +public slots: + void updateFiles(qulonglong request_id,FileDetail file) ; private slots: @@ -174,8 +173,6 @@ private: QAction *collViewAct; QAction *collOpenAct; - FontSizeHandler mFontSizeHandler; - /** Qt Designer generated object */ Ui::SearchDialog ui; diff --git a/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.cpp b/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.cpp index 8978ccf71..74a7d5744 100644 --- a/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.cpp +++ b/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.cpp @@ -27,7 +27,7 @@ #include "gui/RetroShareLink.h" #include "gui/ShareManager.h" #include "gui/common/PeerDefs.h" -#include "gui/common/RsCollectionDialog.h" +#include "gui/common/RsCollection.h" #include "gui/msgs/MessageComposer.h" #include "gui/gxschannels/GxsChannelDialog.h" #include "gui/gxsforums/GxsForumsDialog.h" @@ -652,7 +652,7 @@ void SharedFilesDialog::copyLinks(const QModelIndexList& lst, bool remote,QList< QString dir_name = QDir(QString::fromUtf8(details.name.c_str())).dirName(); - RetroShareLink link = RetroShareLink::createFileTree(dir_name,ft->totalFileSize(),ft->numFiles(),QString::fromStdString(ft->toRadix64())) ; + RetroShareLink link = RetroShareLink::createFileTree(dir_name,ft->mTotalSize,ft->mTotalFiles,QString::fromStdString(ft->toRadix64())) ; if(link.valid()) urls.push_back(link) ; @@ -734,32 +734,7 @@ void SharedFilesDialog::sendLinkTo() void SharedFilesDialog::collCreate() { QModelIndexList lst = getSelected(); - - std::vector dirVec; - model->getDirDetailsFromSelect(lst, dirVec); - - auto RemoteMode = isRemote(); - FileSearchFlags f = RemoteMode?RS_FILE_HINTS_REMOTE:RS_FILE_HINTS_LOCAL ; - - QString dir_name; - - if(!RemoteMode) - { - if(!dirVec.empty()) - { - const DirDetails& details = dirVec[0]; - dir_name = QDir(QString::fromUtf8(details.name.c_str())).dirName(); - } - } - - RsFileTree tree; - - for(uint32_t i=0;icreateCollectionFile(this, lst); } void SharedFilesDialog::collModif() @@ -784,8 +759,12 @@ void SharedFilesDialog::collModif() /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::editExistingCollection(qinfo.absoluteFilePath()); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath()); + } + } } void SharedFilesDialog::collView() @@ -810,8 +789,12 @@ void SharedFilesDialog::collView() /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath(), true); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath(), true); + } + } } void SharedFilesDialog::collOpen() @@ -838,24 +821,20 @@ void SharedFilesDialog::collOpen() qinfo.setFile(QString::fromUtf8(path.c_str())); if (qinfo.exists()) { if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { - - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath(),true); + RsCollection collection; + if (collection.load(qinfo.absoluteFilePath())) { + collection.downloadFiles(); + return; + } } } } } - QString fileName; - if (!misc::getOpenFileName(nullptr, RshareSettings::LASTDIR_EXTRAFILE, QApplication::translate("RsCollectionFile", "Open collection file"), QApplication::translate("RsCollectionFile", "Collection files") + " (*." + RsCollection::ExtensionString + ")", fileName)) - return ; - - std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - - RsCollection::RsCollectionErrorCode err; - RsCollection collection(fileName,err); - - if(err == RsCollection::RsCollectionErrorCode::COLLECTION_NO_ERROR) - RsCollectionDialog::downloadFiles(collection); + RsCollection collection; + if (collection.load(this)) { + collection.downloadFiles(); + } } void LocalSharedFilesDialog::playselectedfiles() @@ -1166,14 +1145,12 @@ void LocalSharedFilesDialog::spawnCustomPopupMenu( QPoint point ) collViewAct->setEnabled(bIsRsColl); collOpenAct->setEnabled(true); - QMenu collectionMenu(tr("Retroshare Collection"), this); + QMenu collectionMenu(tr("Collection"), this); collectionMenu.setIcon(QIcon(IMAGE_LIBRARY)); collectionMenu.addAction(collCreateAct); - - if(bIsRsColl) - collectionMenu.addAction(collModifAct); - //collectionMenu.addAction(collViewAct); - //collectionMenu.addAction(collOpenAct); + collectionMenu.addAction(collModifAct); + collectionMenu.addAction(collViewAct); + collectionMenu.addAction(collOpenAct); switch (type) { case DIR_TYPE_DIR : @@ -1711,16 +1688,12 @@ bool SharedFilesDialog::tree_FilterItem(const QModelIndex &index, const QString void SharedFilesDialog::updateFontSize() { -#if defined(Q_OS_DARWIN) - int customFontSize = Settings->valueFromGroup("File", "MinimumFontSize", 13).toInt(); -#else int customFontSize = Settings->valueFromGroup("File", "MinimumFontSize", 11).toInt(); -#endif QFont newFont = ui.dirTreeView->font(); if (newFont.pointSize() != customFontSize) { newFont.setPointSize(customFontSize); QFontMetricsF fontMetrics(newFont); - int iconHeight = fontMetrics.height()*1.5; + int iconHeight = fontMetrics.height(); ui.dirTreeView->setFont(newFont); ui.dirTreeView->setIconSize(QSize(iconHeight, iconHeight)); } diff --git a/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.ui b/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.ui index 4c8f8c38b..cd79340dd 100644 --- a/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.ui +++ b/retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.ui @@ -23,10 +23,10 @@
- QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -399,8 +399,8 @@ border-image: url(:/images/closepressed.png) - + diff --git a/retroshare-gui/src/gui/FileTransfer/TransfersDialog.cpp b/retroshare-gui/src/gui/FileTransfer/TransfersDialog.cpp index 3ee120162..d0b4d5fc7 100644 --- a/retroshare-gui/src/gui/FileTransfer/TransfersDialog.cpp +++ b/retroshare-gui/src/gui/FileTransfer/TransfersDialog.cpp @@ -24,7 +24,7 @@ #include "gui/SoundManager.h" #include "gui/RetroShareLink.h" #include "gui/common/FilesDefs.h" -#include "gui/common/RsCollectionDialog.h" +#include "gui/common/RsCollection.h" #include "gui/common/RSTreeView.h" #include "gui/common/RsUrlHandler.h" #include "gui/FileTransfer/DetailsDialog.h" @@ -442,7 +442,7 @@ public: { QString strPath = QString::fromUtf8(fileInfo.path.c_str()); QString strPathAfterDL = strPath; - strPathAfterDL.replace(QString::fromUtf8(rsFiles->getDownloadDirectory().c_str()),"[Download Dir]"); + strPathAfterDL.replace(QString::fromUtf8(rsFiles->getDownloadDirectory().c_str()),""); return QVariant(strPathAfterDL); } @@ -1975,7 +1975,7 @@ void TransfersDialog::pasteLink() for(auto &it : links) col.merge_in(it.name(),it.size(),RsFileHash(it.hash().toStdString())) ; - RsCollectionDialog::downloadFiles(col); + col.downloadFiles(); } void TransfersDialog::getDLSelectedItems(std::set *ids, std::set *rows) @@ -2074,23 +2074,22 @@ void TransfersDialog::dlOpenFolder() break; } - openFolder(info); -} - -void TransfersDialog::openFolder(const FileInfo& info) -{ /* make path for downloaded or downloading files */ - QDir directory; - - if (info.downloadStatus == FT_STATE_COMPLETE) - directory = QFileInfo(QString::fromStdString(info.path)).absoluteDir().path(); - else - directory = QDir(QString::fromStdString(rsFiles->getPartialsDirectory())); + QFileInfo qinfo; + std::string path; + if (info.downloadStatus == FT_STATE_COMPLETE) { + path = info.path; + } else { + path = rsFiles->getPartialsDirectory(); + } /* open folder with a suitable application */ - - if (directory.exists() && !RsUrlHandler::openUrl(QUrl::fromLocalFile(directory.path()))) - std::cerr << "dlOpenFolder(): can't open folder " << directory.path().toStdString() << std::endl; + qinfo.setFile(QString::fromUtf8(path.c_str())); + if (qinfo.exists() && qinfo.isDir()) { + if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) { + std::cerr << "dlOpenFolder(): can't open folder " << path << std::endl; + } + } } void TransfersDialog::ulOpenFolder() @@ -2105,7 +2104,19 @@ void TransfersDialog::ulOpenFolder() break; } - openFolder(info); + /* make path for uploading files */ + QFileInfo qinfo; + std::string path; + path = info.path.substr(0,info.path.length()-info.fname.length()); + + /* open folder with a suitable application */ + qinfo.setFile(QString::fromUtf8(path.c_str())); + if (qinfo.exists() && qinfo.isDir()) { + if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) { + std::cerr << "ulOpenFolder(): can't open folder " << path << std::endl; + } + } + } void TransfersDialog::dlPreviewFile() @@ -2128,7 +2139,7 @@ void TransfersDialog::dlPreviewFile() /* make path for downloaded or downloading files */ QFileInfo fileInfo; if (info.downloadStatus == FT_STATE_COMPLETE) { - fileInfo = QFileInfo(QString::fromUtf8(info.path.c_str())); + fileInfo = QFileInfo(QString::fromUtf8(info.path.c_str()), QString::fromUtf8(info.fname.c_str())); } else { fileInfo = QFileInfo(QString::fromUtf8(rsFiles->getPartialsDirectory().c_str()), QString::fromUtf8(info.hash.toStdString().c_str())); @@ -2193,7 +2204,7 @@ void TransfersDialog::dlOpenFile() /* make path for downloaded or downloading files */ std::string path; if (info.downloadStatus == FT_STATE_COMPLETE) { - path = info.path ; + path = info.path + "/" + info.fname; /* open file with a suitable application */ QFileInfo qinfo; @@ -2233,10 +2244,6 @@ void TransfersDialog::chunkStreaming() } void TransfersDialog::chunkRandom() { -#ifdef WINDOWS_SYS - if(QMessageBox::Yes != QMessageBox::warning(nullptr,tr("Warning"),tr("On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway?"),QMessageBox::Yes,QMessageBox::No)) - return; -#endif setChunkStrategy(FileChunksInfo::CHUNK_STRATEGY_RANDOM) ; } void TransfersDialog::chunkProgressive() @@ -2466,17 +2473,21 @@ void TransfersDialog::collCreate() std::set::iterator it ; getDLSelectedItems(&items, NULL); - RsFileTree tree; - for (it = items.begin(); it != items.end(); ++it) { FileInfo info; if (!rsFiles->FileDetails(*it, RS_FILE_HINTS_DOWNLOAD, info)) continue; - tree.addFile(tree.root(),info.fname,info.hash,info.size); + DirDetails details; + details.name = info.fname; + details.hash = info.hash; + details.size = info.size; + details.type = DIR_TYPE_FILE; + + dirVec.push_back(details); } - RsCollectionDialog::openNewCollection(tree); + RsCollection(dirVec,RS_FILE_HINTS_LOCAL).openNewColl(this); } void TransfersDialog::collModif() @@ -2500,8 +2511,12 @@ void TransfersDialog::collModif() /* open collection */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath()); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath()); + } + } } } @@ -2526,8 +2541,12 @@ void TransfersDialog::collView() /* open collection */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath(), true); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath(), true); + } + } } } @@ -2552,29 +2571,23 @@ void TransfersDialog::collOpen() /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - { - RsCollection::RsCollectionErrorCode code; - RsCollectionDialog::downloadFiles(RsCollection(qinfo.absoluteFilePath(),code)); - return; - } + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + if (collection.load(qinfo.absoluteFilePath())) { + collection.downloadFiles(); + return; + } + } + } } } } - QString fileName; - if (!misc::getOpenFileName(nullptr, RshareSettings::LASTDIR_EXTRAFILE, QApplication::translate("RsCollectionFile", "Open collection file"), QApplication::translate("RsCollectionFile", "Collection files") + " (*." + RsCollection::ExtensionString + ")", fileName)) - return ; - - std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - - RsCollection::RsCollectionErrorCode code; - RsCollection collection(fileName,code); - - if(code == RsCollection::RsCollectionErrorCode::COLLECTION_NO_ERROR) - RsCollectionDialog::downloadFiles(collection); - else - QMessageBox::information(nullptr,tr("Error openning collection file"),RsCollection::errorString(code)); + RsCollection collection; + if (collection.load(this)) { + collection.downloadFiles(); + } } void TransfersDialog::collAutoOpen(const QString &fileHash) @@ -2586,18 +2599,21 @@ void TransfersDialog::collAutoOpen(const QString &fileHash) if (rsFiles->FileDetails(hash, RS_FILE_HINTS_DOWNLOAD, info)) { /* make path for downloaded files */ - if (info.downloadStatus == FT_STATE_COMPLETE) - { + if (info.downloadStatus == FT_STATE_COMPLETE) { std::string path; path = info.path + "/" + info.fname; /* open file with a suitable application */ QFileInfo qinfo; qinfo.setFile(QString::fromUtf8(path.c_str())); - RsCollection::RsCollectionErrorCode err; - - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::downloadFiles(RsCollection(qinfo.absoluteFilePath(),err)); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + if (collection.load(qinfo.absoluteFilePath(), false)) { + collection.autoDownloadFiles(); + } + } + } } } } diff --git a/retroshare-gui/src/gui/FileTransfer/TransfersDialog.h b/retroshare-gui/src/gui/FileTransfer/TransfersDialog.h index 19e2df363..87396fc81 100644 --- a/retroshare-gui/src/gui/FileTransfer/TransfersDialog.h +++ b/retroshare-gui/src/gui/FileTransfer/TransfersDialog.h @@ -173,7 +173,6 @@ signals: void playFiles(QStringList files); private: - void openFolder(const FileInfo& info); RsDownloadListModel *DLListModel; QSortFilterProxyModel *DLLFilterModel; diff --git a/retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp b/retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp old mode 100755 new mode 100644 index 8bddc5017..6bad045e0 --- a/retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp +++ b/retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp @@ -101,7 +101,7 @@ void ULListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti multi *= 1024.0; } } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_UTRANSFERRED: transferred = index.data().toLongLong(); @@ -120,7 +120,7 @@ void ULListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti multi *= 1024.0; } } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_ULSPEED: ulspeed = index.data().toDouble(); @@ -131,7 +131,7 @@ void ULListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti temp.sprintf("%.2f", ulspeed/1024.); temp += " KB/s"; } - painter->drawText(option.rect, Qt::AlignRight | Qt::AlignVCenter, temp); + painter->drawText(option.rect, Qt::AlignRight, temp); break; case COLUMN_UPROGRESS: { @@ -164,10 +164,10 @@ void ULListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opti pixmap = qvariant_cast(value).pixmap(option.decorationSize, option.state & QStyle::State_Enabled ? QIcon::Normal : QIcon::Disabled, option.state & QStyle::State_Open ? QIcon::On : QIcon::Off); pixmapRect = (pixmap.isNull() ? QRect(0, 0, 0, 0): QRect(QPoint(0, 0), option.decorationSize)); if (pixmapRect.isValid()){ - QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft | Qt::AlignVCenter, pixmap.size(), option.rect).topLeft(); + QPoint p = QStyle::alignedRect(option.direction, Qt::AlignLeft, pixmap.size(), option.rect).topLeft(); painter->drawPixmap(p, pixmap); } - painter->drawText(option.rect.translated(pixmap.size().width(), 0), Qt::AlignLeft | Qt::AlignVCenter, index.data().toString()); + painter->drawText(option.rect.translated(pixmap.size().width(), 0), Qt::AlignLeft, index.data().toString()); break; default: painter->drawText(option.rect, Qt::AlignCenter, index.data().toString()); @@ -181,7 +181,7 @@ QSize ULListDelegate::sizeHint(const QStyleOptionViewItem & option, const QModel { float w = QFontMetricsF(option.font).width(index.data(Qt::DisplayRole).toString()); - int S = QFontMetricsF(option.font).height()*1.5 ; + int S = QFontMetricsF(option.font).height() ; return QSize(w,S); } diff --git a/retroshare-gui/src/gui/GenCertDialog.cpp b/retroshare-gui/src/gui/GenCertDialog.cpp index 0f318049d..b71e324c7 100644 --- a/retroshare-gui/src/gui/GenCertDialog.cpp +++ b/retroshare-gui/src/gui/GenCertDialog.cpp @@ -251,7 +251,7 @@ void GenCertDialog::initKeyList() void GenCertDialog::mouseMoveEvent(QMouseEvent *e) { - //std::cerr << "Mouse : " << e->x() << ", " << e->y() << std::endl; + std::cerr << "Mouse : " << e->x() << ", " << e->y() << std::endl; QDialog::mouseMoveEvent(e) ; } @@ -609,9 +609,7 @@ void GenCertDialog::genPerson() QCoreApplication::processEvents(); QAbstractEventDispatcher* ed = QAbstractEventDispatcher::instance(); -#ifdef DEBUG_GENCERTDIALOG - std::cout << "Waiting ed->processEvents()" << std::endl; -#endif + std::cout << "Waiting ed->processEvents()" << std::endl; time_t waitEnd = time(NULL) + 10;//Wait no more than 10 sec to processEvents if (ed->hasPendingEvents()) while(ed->processEvents(QEventLoop::AllEvents) && (time(NULL) < waitEnd)); @@ -649,7 +647,7 @@ void GenCertDialog::genPerson() { /* complete the process */ RsInit::LoadPassword(sslPasswd); - if (RsApplication::loadCertificate(sslId, false)) { + if (Rshare::loadCertificate(sslId, false)) { // Normally we should clear the cached passphrase as soon as possible. However,some other GUI components may still need it at start. // (csoler) This is really bad: we have to guess that 30 secs will be enough. I have no better way to do this. diff --git a/retroshare-gui/src/gui/GetStartedDialog.cpp b/retroshare-gui/src/gui/GetStartedDialog.cpp index 399cc36d7..e3bbd7170 100644 --- a/retroshare-gui/src/gui/GetStartedDialog.cpp +++ b/retroshare-gui/src/gui/GetStartedDialog.cpp @@ -421,7 +421,7 @@ void GetStartedDialog::emailSupport() sysVersion = "Linux"; #endif #endif - text += QString("My RetroShare Configuration is: (%1, %2, %3)").arg(RsApplication::retroshareVersion(true) + text += QString("My RetroShare Configuration is: (%1, %2, %3)").arg(Rshare::retroshareVersion(true) , sysVersion ).arg(static_cast::type>(userLevel)) + "\n"; text += "\n"; diff --git a/retroshare-gui/src/gui/HelpDialog.cpp b/retroshare-gui/src/gui/HelpDialog.cpp index ddaf925d4..cc3f1d407 100644 --- a/retroshare-gui/src/gui/HelpDialog.cpp +++ b/retroshare-gui/src/gui/HelpDialog.cpp @@ -80,7 +80,7 @@ HelpDialog::HelpDialog(QWidget *parent) : ui->thanks->setHtml(in.readAll()); } - ui->version->setText(RsApplication::retroshareVersion(true)); + ui->version->setText(Rshare::retroshareVersion(true)); /* Add version numbers of libretroshare */ std::list libraries; diff --git a/retroshare-gui/src/gui/HomePage.cpp b/retroshare-gui/src/gui/HomePage.cpp index 0f153c8a6..ff7622b4b 100644 --- a/retroshare-gui/src/gui/HomePage.cpp +++ b/retroshare-gui/src/gui/HomePage.cpp @@ -27,13 +27,11 @@ #include "util/misc.h" #include "gui/notifyqt.h" -#include "gui/common/FilesDefs.h" #include "gui/msgs/MessageComposer.h" #include "gui/connect/ConnectFriendWizard.h" #include "gui/connect/ConfCertDialog.h" #include #include "gui/connect/FriendRecommendDialog.h" -#include "settings/rsharesettings.h" #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) #include @@ -137,8 +135,6 @@ HomePage::HomePage(QWidget *parent) : rsEvents->registerEventsHandler( [this](std::shared_ptr event) { handleEvent(event); }, mEventHandlerId, RsEventType::NETWORK ); updateOwnCert(); - - updateHomeLogo(); } void HomePage::handleEvent(std::shared_ptr e) @@ -381,11 +377,3 @@ void HomePage::openWebHelp() { QDesktopServices::openUrl(QUrl(QString("https://retrosharedocs.readthedocs.io/en/latest/"))); } - -void HomePage::updateHomeLogo() -{ - if (Settings->getSheetName() == ":Standard_Dark") - ui->label->setPixmap(FilesDefs::getPixmapFromQtResourcePath(":images/logo/logo_web_nobackground_black.png")); - else - ui->label->setPixmap(FilesDefs::getPixmapFromQtResourcePath(":images/logo/logo_web_nobackground.png")); -} diff --git a/retroshare-gui/src/gui/HomePage.h b/retroshare-gui/src/gui/HomePage.h index 3660bdbe7..aa77ed1a3 100644 --- a/retroshare-gui/src/gui/HomePage.h +++ b/retroshare-gui/src/gui/HomePage.h @@ -63,8 +63,7 @@ private slots: void addFriend(); void webMail(); void openWebHelp() ; - void recommendFriends(); - void updateHomeLogo(); + void recommendFriends(); private: Ui::HomePage *ui; diff --git a/retroshare-gui/src/gui/HomePage.ui b/retroshare-gui/src/gui/HomePage.ui index e716577b8..5de0fa6fe 100644 --- a/retroshare-gui/src/gui/HomePage.ui +++ b/retroshare-gui/src/gui/HomePage.ui @@ -43,6 +43,7 @@ Courier New + 10 75 true @@ -87,6 +88,7 @@ + 11 75 true @@ -105,7 +107,7 @@ ... - + :/icons/help_64.png:/icons/help_64.png @@ -231,6 +233,11 @@
+ + + 12 + + Open Source cross-platform, private and secure decentralized communication platform. @@ -310,6 +317,11 @@ private and secure decentralized communication platform. + + + 11 + + @@ -393,6 +405,11 @@ private and secure decentralized communication platform. + + + 11 + + Do you need help with Retroshare? @@ -407,8 +424,8 @@ private and secure decentralized communication platform. - + diff --git a/retroshare-gui/src/gui/Identity/IdDialog.cpp b/retroshare-gui/src/gui/Identity/IdDialog.cpp index a2d588d3e..5397f6300 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.cpp +++ b/retroshare-gui/src/gui/Identity/IdDialog.cpp @@ -31,8 +31,6 @@ #include "IdDialog.h" #include "ui_IdDialog.h" #include "IdEditDialog.h" -#include "IdentityListModel.h" - #include "gui/RetroShareLink.h" #include "gui/chat/ChatDialog.h" #include "gui/Circles/CreateCircleDialog.h" @@ -52,7 +50,7 @@ #include "util/rsdebug.h" #include "retroshare/rsgxsflags.h" -#include "retroshare/rsmsgs.h" +#include "retroshare/rsmsgs.h" #include "retroshare/rspeers.h" #include "retroshare/rsservicecontrol.h" @@ -94,6 +92,11 @@ /**************************************************************** */ +#define RSID_COL_NICKNAME 0 +#define RSID_COL_KEYID 1 +#define RSID_COL_IDTYPE 2 +#define RSID_COL_VOTES 3 + #define RSIDREP_COL_NAME 0 #define RSIDREP_COL_OPINION 1 #define RSIDREP_COL_COMMENT 2 @@ -120,7 +123,6 @@ static const uint32_t SortRole = Qt::UserRole+1 ; -#ifdef TO_REMOVE // quick solution for RSID_COL_VOTES sorting class TreeWidgetItem : public QTreeWidgetItem { @@ -144,60 +146,6 @@ class TreeWidgetItem : public QTreeWidgetItem return data(column,Qt::DisplayRole).toString().toUpper() < other.data(column,Qt::DisplayRole).toString().toUpper(); } }; -#endif - -std::ostream& operator<<(std::ostream& o, const QModelIndex& i);// defined elsewhere - -class IdListSortFilterProxyModel: public QSortFilterProxyModel -{ -public: - explicit IdListSortFilterProxyModel(const QHeaderView *header,QObject *parent = NULL) - : QSortFilterProxyModel(parent) - , m_header(header) - , m_sortingEnabled(false), m_sortByState(false) - { - setDynamicSortFilter(false); // causes crashes when true. - } - - bool lessThan(const QModelIndex& left, const QModelIndex& right) const override - { -// bool online1 = (left .data(RsFriendListModel::OnlineRole).toInt() != RS_STATUS_OFFLINE); -// bool online2 = (right.data(RsFriendListModel::OnlineRole).toInt() != RS_STATUS_OFFLINE); -// -// if((online1 != online2) && m_sortByState) -// return (m_header->sortIndicatorOrder()==Qt::AscendingOrder)?online1:online2 ; // always put online nodes first - -#ifdef DEBUG_NEW_FRIEND_LIST - std::cerr << "Comparing index " << left << " with index " << right << std::endl; -#endif - return QSortFilterProxyModel::lessThan(left,right); - } - - bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override - { - // do not show empty groups - - QModelIndex index = sourceModel()->index(source_row,0,source_parent); - - return index.data(RsIdentityListModel::FilterRole).toString() == RsIdentityListModel::FilterString ; - } - - void sort( int column, Qt::SortOrder order = Qt::AscendingOrder ) override - { - if(m_sortingEnabled) - return QSortFilterProxyModel::sort(column,order) ; - } - - void setSortingEnabled(bool b) { m_sortingEnabled = b ; } - void setSortByState(bool b) { m_sortByState = b ; } - bool sortByState() const { return m_sortByState ; } - -private: - const QHeaderView *m_header ; - bool m_sortingEnabled; - bool m_sortByState; -}; - /** Constructor */ IdDialog::IdDialog(QWidget *parent) @@ -205,8 +153,6 @@ IdDialog::IdDialog(QWidget *parent) , mExternalBelongingCircleItem(NULL) , mExternalOtherCircleItem(NULL ) , mMyCircleItem(NULL) - , mLastSortColumn(RsIdentityListModel::COLUMN_THREAD_NAME) - , mLastSortOrder(Qt::SortOrder::AscendingOrder) , needUpdateIdsOnNextShow(true), needUpdateCirclesOnNextShow(true) // Update Ids and Circles on first show , ui(new Ui::IdDialog) { @@ -221,29 +167,38 @@ IdDialog::IdDialog(QWidget *parent) // This is used to grab the broadcast of changes from p3GxsCircles, which is discarded by the current dialog, since it expects data for p3Identity only. //mCirclesBroadcastBase = new RsGxsUpdateBroadcastBase(rsGxsCircles, this); //connect(mCirclesBroadcastBase, SIGNAL(fillDisplay(bool)), this, SLOT(updateCirclesDisplay(bool))); + + ownItem = new QTreeWidgetItem(); + ownItem->setText(RSID_COL_NICKNAME, tr("My own identities")); + ownItem->setFont(RSID_COL_NICKNAME, ui->idTreeWidget->font()); + ownItem->setData(RSID_COL_VOTES, Qt::DecorationRole,0xff); // this is in order to prevent displaying a reputaiton icon next to these items. - mIdListModel = new RsIdentityListModel(this); + allItem = new QTreeWidgetItem(); + allItem->setText(RSID_COL_NICKNAME, tr("All")); + allItem->setFont(RSID_COL_NICKNAME, ui->idTreeWidget->font()); + allItem->setData(RSID_COL_VOTES, Qt::DecorationRole,0xff); - mProxyModel = new IdListSortFilterProxyModel(ui->idTreeWidget->header(),this); + contactsItem = new QTreeWidgetItem(); + contactsItem->setText(RSID_COL_NICKNAME, tr("My contacts")); + contactsItem->setFont(RSID_COL_NICKNAME, ui->idTreeWidget->font()); + contactsItem->setData(RSID_COL_VOTES, Qt::DecorationRole,0xff); - mProxyModel->setSourceModel(mIdListModel); - mProxyModel->setSortRole(RsIdentityListModel::SortRole); - mProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); - mProxyModel->setFilterRole(RsIdentityListModel::FilterRole); - mProxyModel->setFilterRegExp(QRegExp(RsIdentityListModel::FilterString)); - ui->idTreeWidget->setModel(mProxyModel); - //ui->idTreeWidget->setSelectionModel(new QItemSelectionModel(mProxyModel));// useless in Qt5. + ui->idTreeWidget->insertTopLevelItem(0, ownItem); + ui->idTreeWidget->insertTopLevelItem(0, allItem); + ui->idTreeWidget->insertTopLevelItem(0, contactsItem ); ui->treeWidget_membership->clear(); ui->treeWidget_membership->setItemDelegateForColumn(CIRCLEGROUP_CIRCLE_COL_GROUPNAME,new GxsIdTreeItemDelegate()); + /* Setup UI helper */ mStateHelper = new UIStateHelper(this); +// mStateHelper->addWidget(IDDIALOG_IDLIST, ui->idTreeWidget); + mStateHelper->addLoadPlaceholder(IDDIALOG_IDLIST, ui->idTreeWidget, false); + mStateHelper->addClear(IDDIALOG_IDLIST, ui->idTreeWidget); - connect(ui->idTreeWidget,SIGNAL(expanded(const QModelIndex&)),this,SLOT(trace_expanded(const QModelIndex&)),Qt::DirectConnection); - connect(ui->idTreeWidget,SIGNAL(collapsed(const QModelIndex&)),this,SLOT(trace_collapsed(const QModelIndex&)),Qt::DirectConnection); - + mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->lineEdit_Nickname); mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->lineEdit_PublishTS); mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->lineEdit_KeyId); mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->lineEdit_Type); @@ -259,7 +214,7 @@ IdDialog::IdDialog(QWidget *parent) mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->label_positive); mStateHelper->addWidget(IDDIALOG_IDDETAILS, ui->label_negative); - //mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->lineEdit_Nickname); + mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->lineEdit_Nickname); mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->lineEdit_PublishTS); mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->lineEdit_KeyId); mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->lineEdit_Type); @@ -270,7 +225,7 @@ IdDialog::IdDialog(QWidget *parent) mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->overallOpinion_TF); mStateHelper->addLoadPlaceholder(IDDIALOG_IDDETAILS, ui->usageStatistics_TB); - //mStateHelper->addClear(IDDIALOG_IDDETAILS, ui->lineEdit_Nickname); + mStateHelper->addClear(IDDIALOG_IDDETAILS, ui->lineEdit_Nickname); mStateHelper->addClear(IDDIALOG_IDDETAILS, ui->lineEdit_PublishTS); mStateHelper->addClear(IDDIALOG_IDDETAILS, ui->lineEdit_KeyId); mStateHelper->addClear(IDDIALOG_IDDETAILS, ui->lineEdit_Type); @@ -293,20 +248,17 @@ IdDialog::IdDialog(QWidget *parent) connect(ui->editIdentity, SIGNAL(triggered()), this, SLOT(editIdentity())); connect(ui->chatIdentity, SIGNAL(triggered()), this, SLOT(chatIdentity())); - connect(ui->idTreeWidget->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&,const QItemSelection&)),this,SLOT(updateSelection(const QItemSelection&,const QItemSelection&))); - connect(ui->idTreeWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(IdListCustomPopupMenu(QPoint))); - - ui->idTreeWidget->header()->setContextMenuPolicy(Qt::CustomContextMenu); - connect(ui->idTreeWidget->header(), SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(headerContextMenuRequested(QPoint))); + connect(ui->idTreeWidget, SIGNAL(itemSelectionChanged()), this, SLOT(updateSelection())); + connect(ui->idTreeWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(IdListCustomPopupMenu(QPoint))); connect(ui->filterLineEdit, SIGNAL(textChanged(QString)), this, SLOT(filterChanged(QString))); - connect(ui->ownOpinion_CB, SIGNAL(currentIndexChanged(int)), this, SLOT(modifyReputation())); - + connect(ui->ownOpinion_CB, SIGNAL(currentIndexChanged(int)), this, SLOT(modifyReputation())); + connect(ui->inviteButton, SIGNAL(clicked()), this, SLOT(sendInvite())); connect(ui->editButton, SIGNAL(clicked()), this, SLOT(editIdentity())); - connect(ui->idTreeWidget, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(chatIdentityItem(QModelIndex&)) ); - connect(ui->idTreeWidget->header(),SIGNAL(sortIndicatorChanged(int,Qt::SortOrder)), this, SLOT(sortColumn(int,Qt::SortOrder))); + connect( ui->idTreeWidget, &RSTreeWidget::itemDoubleClicked, + this, &IdDialog::chatIdentityItem ); ui->editButton->hide(); @@ -317,13 +269,12 @@ IdDialog::IdDialog(QWidget *parent) /* Initialize splitter */ ui->mainSplitter->setStretchFactor(0, 0); ui->mainSplitter->setStretchFactor(1, 1); - + clearPerson(); -#ifdef TODO /* Add filter types */ - QMenu *idTWHMenu = new QMenu(tr("Show Items"), this); - ui->idTreeWidget->addContextMenuMenu(idTWHMenu); + QMenu *idTWHMenu = new QMenu(tr("Show Items"), this); + ui->idTreeWidget->addContextMenuMenu(idTWHMenu); QActionGroup *idTWHActionGroup = new QActionGroup(this); QAction *idTWHAction = new QAction(QIcon(),tr("All"), this); @@ -376,51 +327,66 @@ IdDialog::IdDialog(QWidget *parent) idTWHAction->setData(RSID_FILTER_BANNED); connect(idTWHAction, SIGNAL(toggled(bool)), this, SLOT(filterToggled(bool))); idTWHMenu->addAction(idTWHAction); -#endif - + QAction *CreateIDAction = new QAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/person.png"),tr("Create new Identity"), this); connect(CreateIDAction, SIGNAL(triggered()), this, SLOT(addIdentity())); - + QAction *CreateCircleAction = new QAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/circles.png"),tr("Create new circle"), this); connect(CreateCircleAction, SIGNAL(triggered()), this, SLOT(createExternalCircle())); - + QMenu *menu = new QMenu(); menu->addAction(CreateIDAction); menu->addAction(CreateCircleAction); ui->toolButton_New->setMenu(menu); + + /* Add filter actions */ + QTreeWidgetItem *headerItem = ui->idTreeWidget->headerItem(); + QString headerText = headerItem->text(RSID_COL_NICKNAME); + ui->filterLineEdit->addFilter(QIcon(), headerText, RSID_COL_NICKNAME, QString("%1 %2").arg(tr("Search"), headerText)); - QFontMetricsF fm(ui->idTreeWidget->font()) ; + headerItem->setData(RSID_COL_VOTES,Qt::UserRole,tr("Reputation")); /* Set initial section sizes */ - QHeaderView * circlesheader = ui->treeWidget_membership->header () ; - circlesheader->resizeSection (CIRCLEGROUP_CIRCLE_COL_GROUPNAME, fm.width("Circle name")*1.5) ; - ui->treeWidget_membership->setColumnWidth(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, 270); + QHeaderView * circlesheader = ui->treeWidget_membership->header () ; + circlesheader->resizeSection (CIRCLEGROUP_CIRCLE_COL_GROUPNAME, QFontMetricsF(ui->idTreeWidget->font()).width("Circle name")*1.5) ; + ui->treeWidget_membership->setColumnWidth(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, 270); + + ui->filterLineEdit->addFilter(QIcon(), tr("ID"), RSID_COL_KEYID, tr("Search ID")); /* Setup tree */ - //ui->idTreeWidget->sortByColumn(RsIdentityListModel::COLUMN_THREAD_NAME, Qt::AscendingOrder); + ui->idTreeWidget->sortByColumn(RSID_COL_NICKNAME, Qt::AscendingOrder); - ui->idTreeWidget->setColumnHidden(RsIdentityListModel::COLUMN_THREAD_OWNER_ID, true); - ui->idTreeWidget->setColumnHidden(RsIdentityListModel::COLUMN_THREAD_OWNER_NAME, true); - ui->idTreeWidget->setColumnHidden(RsIdentityListModel::COLUMN_THREAD_ID, true); + ui->idTreeWidget->enableColumnCustomize(true); + ui->idTreeWidget->setColumnCustomizable(RSID_COL_NICKNAME, false); + ui->idTreeWidget->setColumnHidden(RSID_COL_IDTYPE, true); + ui->idTreeWidget->setColumnHidden(RSID_COL_KEYID, true); + + /* Set initial column width */ + int fontWidth = QFontMetricsF(ui->idTreeWidget->font()).width("W"); + ui->idTreeWidget->setColumnWidth(RSID_COL_NICKNAME, 14 * fontWidth); + ui->idTreeWidget->setColumnWidth(RSID_COL_KEYID, 20 * fontWidth); + ui->idTreeWidget->setColumnWidth(RSID_COL_IDTYPE, 18 * fontWidth); + ui->idTreeWidget->setColumnWidth(RSID_COL_VOTES, 2 * fontWidth); + ui->idTreeWidget->setItemDelegate(new RSElidedItemDelegate()); - ui->idTreeWidget->setItemDelegateForColumn( RsIdentityListModel::COLUMN_THREAD_REPUTATION, new ReputationItemDelegate(RsReputationLevel(0xff))); + ui->idTreeWidget->setItemDelegateForColumn( + RSID_COL_NICKNAME, + new GxsIdTreeItemDelegate()); + ui->idTreeWidget->setItemDelegateForColumn( + RSID_COL_VOTES, + new ReputationItemDelegate(RsReputationLevel(0xff))); /* Set header resize modes and initial section sizes */ QHeaderView * idheader = ui->idTreeWidget->header(); - QHeaderView_setSectionResizeModeColumn(idheader, RsIdentityListModel::COLUMN_THREAD_NAME, QHeaderView::Stretch); - QHeaderView_setSectionResizeModeColumn(idheader, RsIdentityListModel::COLUMN_THREAD_ID, QHeaderView::Stretch); - QHeaderView_setSectionResizeModeColumn(idheader, RsIdentityListModel::COLUMN_THREAD_OWNER_ID, QHeaderView::Stretch); - QHeaderView_setSectionResizeModeColumn(idheader, RsIdentityListModel::COLUMN_THREAD_OWNER_NAME, QHeaderView::Stretch); - QHeaderView_setSectionResizeModeColumn(idheader, RsIdentityListModel::COLUMN_THREAD_REPUTATION, QHeaderView::Fixed); - ui->idTreeWidget->setColumnWidth(RsIdentityListModel::COLUMN_THREAD_REPUTATION,fm.height()); - idheader->setStretchLastSection(false); + QHeaderView_setSectionResizeModeColumn(idheader, RSID_COL_VOTES, QHeaderView::ResizeToContents); + idheader->setStretchLastSection(true); - mStateHelper->setActive(IDDIALOG_IDDETAILS, false); + mStateHelper->setActive(IDDIALOG_IDDETAILS, false); mStateHelper->setActive(IDDIALOG_REPLIST, false); int H = misc::getFontSizeFactor("HelpButton").height(); - QString hlp_str = tr( + QString hlp_str = tr( "

  Identities

" "

In this tab you can create/edit pseudo-anonymous identities, and circles.

" "

Identities are used to securely identify your data: sign messages in chat lobbies, forum and channel posts," @@ -442,42 +408,13 @@ IdDialog::IdDialog(QWidget *parent) processSettings(true); // circles stuff - + //connect(ui->treeWidget_membership, SIGNAL(itemSelectionChanged()), this, SLOT(circle_selected())); connect(ui->treeWidget_membership, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(CircleListCustomPopupMenu(QPoint))); connect(ui->autoBanIdentities_CB, SIGNAL(toggled(bool)), this, SLOT(toggleAutoBanIdentities(bool))); - updateIdTimer.setSingleShot(true); + updateIdTimer.setSingleShot(true); connect(&updateIdTimer, SIGNAL(timeout()), this, SLOT(updateIdList())); - - mFontSizeHandler.registerFontSize(ui->idTreeWidget, 0, [this] (QAbstractItemView*, int fontSize) { - // Set new font size on all items - - mIdListModel->setFontSize(fontSize); - }); - - mFontSizeHandler.registerFontSize(ui->treeWidget_membership, 0, [this] (QAbstractItemView*, int fontSize) { - // Set new font size on all items - QTreeWidgetItemIterator it(ui->treeWidget_membership); - while (*it) { - QTreeWidgetItem *item = *it; -#ifdef CIRCLE_MEMBERSHIP_CATEGORIES - if (item->parent()) - { -#endif - QFont font = item->font(CIRCLEGROUP_CIRCLE_COL_GROUPNAME); - font.setPointSize(fontSize); - - item->setFont(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, font); - item->setFont(CIRCLEGROUP_CIRCLE_COL_GROUPID, font); - item->setFont(CIRCLEGROUP_CIRCLE_COL_GROUPFLAGS, font); - -#ifdef CIRCLE_MEMBERSHIP_CATEGORIES - } -#endif - ++it; - } - }); } void IdDialog::handleEvent_main_thread(std::shared_ptr event) @@ -492,19 +429,17 @@ void IdDialog::handleEvent_main_thread(std::shared_ptr event) switch(e->mIdentityEventCode) { case RsGxsIdentityEventCode::DELETED_IDENTITY: - if(mId == e->mIdentityId) - { - mId.clear(); - updateIdentity(); - } - updateIdListRequest(); - break; - - case RsGxsIdentityEventCode::NEW_IDENTITY: + case RsGxsIdentityEventCode::NEW_IDENTITY: case RsGxsIdentityEventCode::UPDATED_IDENTITY: if (isVisible()) - updateIdListRequest(); // use a timer for events not generated by local changes which generally - // come in large herds. Allows to group multiple changes into a single UI update. + { + if(rsIdentity->isOwnId(RsGxsId(e->mIdentityId))) + updateIdList(); + else + updateIdTimer.start(3000); // use a timer for events not generated by local changes + } + else + needUpdateIdsOnNextShow = true; if(!mId.isNull() && mId == e->mIdentityId) updateIdentity(); @@ -544,13 +479,13 @@ void IdDialog::handleEvent_main_thread(std::shared_ptr event) void IdDialog::clearPerson() { - //QFontMetricsF f(ui->avLabel_Person->font()) ; + QFontMetricsF f(ui->avLabel_Person->font()) ; + ui->avLabel_Person->setPixmap(FilesDefs::getPixmapFromQtResourcePath(":/icons/png/people.png").scaled(f.height()*4,f.height()*4,Qt::KeepAspectRatio,Qt::SmoothTransformation)); ui->headerTextLabel_Person->setText(tr("People")); ui->info_Frame_Invite->hide(); ui->avatarLabel->clear(); - ui->avatarLabel->setPixmap(FilesDefs::getPixmapFromQtResourcePath(":/icons/png/people.png")); whileBlocking(ui->ownOpinion_CB)->setCurrentIndex(1); whileBlocking(ui->autoBanIdentities_CB)->setChecked(false); @@ -564,7 +499,7 @@ void IdDialog::toggleAutoBanIdentities(bool b) if(!id.isNull()) { rsReputations->banNode(id,b) ; - updateIdListRequest(); + updateIdList(); } } @@ -572,10 +507,10 @@ void IdDialog::updateCirclesDisplay() { if(RsAutoUpdatePage::eventsLocked()) return ; - + if(!isVisible()) return ; - + #ifdef ID_DEBUG std::cerr << "!!Updating circles display!" << std::endl; #endif @@ -720,6 +655,7 @@ void IdDialog::loadCircles(const std::list& groupInfo) { mExternalOtherCircleItem = new QTreeWidgetItem(); mExternalOtherCircleItem->setText(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, tr("Other circles")); + mExternalOtherCircleItem->setFont(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, ui->treeWidget_membership->font()); ui->treeWidget_membership->addTopLevelItem(mExternalOtherCircleItem); } @@ -727,6 +663,7 @@ void IdDialog::loadCircles(const std::list& groupInfo) { mExternalBelongingCircleItem = new QTreeWidgetItem(); mExternalBelongingCircleItem->setText(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, tr("Circles I belong to")); + mExternalBelongingCircleItem->setFont(CIRCLEGROUP_CIRCLE_COL_GROUPNAME, ui->treeWidget_membership->font()); ui->treeWidget_membership->addTopLevelItem(mExternalBelongingCircleItem); } #endif @@ -983,16 +920,16 @@ void IdDialog::loadCircles(const std::list& groupInfo) bool IdDialog::getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) { -#ifdef CIRCLE_MEMBERSHIP_CATEGORIES +#ifdef CIRCLE_MEMBERSHIP_CATEGORIES if ((!item) || (!item->parent())) return false; - + QString coltext = (item->parent()->parent())? (item->parent()->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString()) : (item->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString()); id = RsGxsCircleId( coltext.toStdString()) ; #else if(!item) return false; - + QString coltext = (item->parent())? (item->parent()->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString()) : (item->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString()); id = RsGxsCircleId( coltext.toStdString()) ; #endif @@ -1002,7 +939,7 @@ bool IdDialog::getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) void IdDialog::showEvent(QShowEvent *s) { if (needUpdateIdsOnNextShow) - updateIdListRequest(); + updateIdList(); if (needUpdateCirclesOnNextShow) updateCircles(); @@ -1021,19 +958,19 @@ void IdDialog::createExternalCircle() void IdDialog::showEditExistingCircle() { RsGxsCircleId id ; - + if(!getItemCircleId(ui->treeWidget_membership->currentItem(),id)) return ; - + uint32_t subscribe_flags = ui->treeWidget_membership->currentItem()->data(CIRCLEGROUP_CIRCLE_COL_GROUPFLAGS, Qt::UserRole).toUInt(); - + CreateCircleDialog dlg; - + dlg.editExistingId(RsGxsGroupId(id),true,!(subscribe_flags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN)) ; dlg.exec(); } -void IdDialog::grantCircleMembership() +void IdDialog::grantCircleMembership() { RsGxsCircleId circle_id ; @@ -1050,7 +987,7 @@ void IdDialog::grantCircleMembership() }); } -void IdDialog::revokeCircleMembership() +void IdDialog::revokeCircleMembership() { RsGxsCircleId circle_id ; @@ -1079,22 +1016,22 @@ void IdDialog::revokeCircleMembership() }); } -void IdDialog::acceptCircleSubscription() +void IdDialog::acceptCircleSubscription() { RsGxsCircleId circle_id ; - + if(!getItemCircleId(ui->treeWidget_membership->currentItem(),circle_id)) return; RsGxsId own_id(qobject_cast(sender())->data().toString().toStdString()); - + rsGxsCircles->requestCircleMembership(own_id,circle_id) ; } -void IdDialog::cancelCircleSubscription() -{ +void IdDialog::cancelCircleSubscription() +{ RsGxsCircleId circle_id ; - + if(!getItemCircleId(ui->treeWidget_membership->currentItem(),circle_id)) return; @@ -1102,14 +1039,14 @@ void IdDialog::cancelCircleSubscription() rsGxsCircles->cancelCircleMembership(own_id,circle_id) ; } - + void IdDialog::CircleListCustomPopupMenu( QPoint ) { QMenu contextMnu( this ); RsGxsCircleId circle_id ; QTreeWidgetItem *item = ui->treeWidget_membership->currentItem(); - + if(!getItemCircleId(item,circle_id)) return ; @@ -1117,7 +1054,7 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) RsGxsId item_id(item->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString().toStdString()); bool is_circle ; bool am_I_circle_admin = false ; - + if(item_id == RsGxsId(circle_id)) // is it a circle? { uint32_t group_flags = item->data(CIRCLEGROUP_CIRCLE_COL_GROUPFLAGS, Qt::UserRole).toUInt(); @@ -1136,7 +1073,7 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) #ifdef CIRCLE_MEMBERSHIP_CATEGORIES } #endif - + #ifdef ID_DEBUG std::cerr << " Item is a circle item. Adding Edit/Details menu entry." << std::endl; #endif @@ -1144,7 +1081,7 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) contextMnu.addSeparator() ; } - else + else { current_gxs_id = RsGxsId(item_id); is_circle =false ; @@ -1159,9 +1096,9 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) std::cerr << " Item is a GxsId item. Requesting flags/group id from parent: " << circle_id << std::endl; #endif } - + RsGxsCircleDetails details ; - + if(!rsGxsCircles->getCircleDetails(circle_id,details))// grab real circle ID from parent. Make sure circle id is used correctly afterwards! { std::cerr << " (EE) cannot get circle info for ID " << circle_id << ". Not in cache?" << std::endl; @@ -1198,7 +1135,7 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) ids[REMOVE].push_back(*it) ; else ids[CANCEL].push_back(*it) ; - else + else if(subscribe_flags & GXS_EXTERNAL_CIRCLE_FLAGS_IN_ADMIN_LIST) ids[ACCEPT].push_back(*it) ; else @@ -1259,17 +1196,17 @@ void IdDialog::CircleListCustomPopupMenu( QPoint ) contextMnu.addMenu(menu) ; } } - + if(!is_circle && am_I_circle_admin) // I am circle admin. I can therefore revoke/accept membership { std::map::const_iterator it = details.mSubscriptionFlags.find(current_gxs_id) ; - + if(!current_gxs_id.isNull() && it != details.mSubscriptionFlags.end()) { contextMnu.addSeparator() ; if(it->second & GXS_EXTERNAL_CIRCLE_FLAGS_IN_ADMIN_LIST) - { + { QAction *action = new QAction(tr("Revoke this member"),this) ; action->setData(QString::fromStdString(current_gxs_id.toStdString())); QObject::connect(action,SIGNAL(triggered()), this, SLOT(revokeCircleMembership())); @@ -1297,8 +1234,6 @@ IdDialog::~IdDialog() // save settings processSettings(false); - delete mIdListModel; - delete mProxyModel; delete(ui); } @@ -1316,65 +1251,46 @@ static QString getHumanReadableDuration(uint32_t seconds) return QString(QObject::tr("%1 hours ago")).arg(seconds/3600) ; else if(seconds < 2*24*3600) return QString(QObject::tr("%1 day ago")).arg(seconds/86400) ; - else + else return QString(QObject::tr("%1 days ago")).arg(seconds/86400) ; } void IdDialog::processSettings(bool load) { - Settings->beginGroup("IdDialog"); + Settings->beginGroup("IdDialog"); - if (load) { - // load settings + // state of peer tree + ui->idTreeWidget->processSettings(load); - ui->idTreeWidget->header()->restoreState(Settings->value(objectName()).toByteArray()); - ui->idTreeWidget->header()->setHidden(Settings->value(objectName()+"HiddenHeader", false).toBool()); + if (load) { + // load settings - // filterColumn - //ui->filterLineEdit->setCurrentFilter(Settings->value("filterColumn", RsIdentityListModel::COLUMN_THREAD_NAME).toInt()); + // filterColumn + ui->filterLineEdit->setCurrentFilter(Settings->value("filterColumn", RSID_COL_NICKNAME).toInt()); - // state of splitter - ui->mainSplitter->restoreState(Settings->value("splitter").toByteArray()); + // state of splitter + ui->mainSplitter->restoreState(Settings->value("splitter").toByteArray()); - //Restore expanding - ui->idTreeWidget->setExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_ALL)),Settings->value("ExpandAll", QVariant(true)).toBool()); - ui->idTreeWidget->setExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_OWN)),Settings->value("ExpandOwn", QVariant(true)).toBool()); - ui->idTreeWidget->setExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_CTS)),Settings->value("ExpandContacts", QVariant(true)).toBool()); + //Restore expanding + allItem->setExpanded(Settings->value("ExpandAll", QVariant(true)).toBool()); + ownItem->setExpanded(Settings->value("ExpandOwn", QVariant(true)).toBool()); + contactsItem->setExpanded(Settings->value("ExpandContacts", QVariant(true)).toBool()); + } else { + // save settings - // visible columns + // filterColumn + Settings->setValue("filterColumn", ui->filterLineEdit->currentFilter()); - int v = Settings->value("columnVisibility",(1 << RsIdentityListModel::COLUMN_THREAD_NAME)+(1 << RsIdentityListModel::COLUMN_THREAD_REPUTATION)).toInt(); + // state of splitter + Settings->setValue("splitter", ui->mainSplitter->saveState()); + + //save expanding + Settings->setValue("ExpandAll", allItem->isExpanded()); + Settings->setValue("ExpandContacts", contactsItem->isExpanded()); + Settings->setValue("ExpandOwn", ownItem->isExpanded()); + } - for(int i=0;icolumnCount();++i) - ui->idTreeWidget->setColumnHidden(i,!(v & (1<setValue(objectName(), ui->idTreeWidget->header()->saveState()); - Settings->setValue(objectName()+"HiddenHeader", ui->idTreeWidget->header()->isHidden()); - - // filterColumn - //Settings->setValue("filterColumn", ui->filterLineEdit->currentFilter()); - - // state of splitter - Settings->setValue("splitter", ui->mainSplitter->saveState()); - - //save expanding - Settings->setValue("ExpandAll", ui->idTreeWidget->isExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_ALL)))); - Settings->setValue("ExpandContacts", ui->idTreeWidget->isExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_CTS)))); - Settings->setValue("ExpandOwn", ui->idTreeWidget->isExpanded(mProxyModel->mapFromSource(mIdListModel->getIndexOfCategory(RsIdentityListModel::CATEGORY_OWN)))); - - int v = 0; - for(int i=0;icolumnCount();++i) - if(!ui->idTreeWidget->isColumnHidden(i)) - v += (1 << i); - - Settings->setValue("columnVisibility",v); - } - - Settings->endGroup(); + Settings->endGroup(); } void IdDialog::filterChanged(const QString& /*text*/) @@ -1388,79 +1304,79 @@ void IdDialog::filterToggled(const bool &value) QAction *source = qobject_cast(QObject::sender()); if (source) { filter = source->data().toInt(); - updateIdListRequest(); + updateIdList(); } } } -void IdDialog::updateSelection(const QItemSelection& /* new_sel */,const QItemSelection& /* old_sel */) +void IdDialog::updateSelection() { -#ifdef DEBUG_ID_DIALOG - std::cerr << "Got selectionChanged signal. Old selection is: " << std::endl; - for(auto i:old_sel.indexes()) std::cerr << " " << i << std::endl; - std::cerr << "Got selectionChanged signal. New selection is: " << std::endl; - for(auto i:new_sel.indexes()) std::cerr << " " << i << std::endl; -#endif + QTreeWidgetItem *item = ui->idTreeWidget->currentItem(); + RsGxsGroupId id; - auto id = RsGxsGroupId(getSelectedIdentity()); + if (item) { + id = RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString()); + } -#ifdef DEBUG_ID_DIALOG - std::cerr << "updating selection to id " << id << std::endl; -#endif - if(id != mId) - { + if (id != mId) { mId = id; updateIdentity(); + //updateRepList(); } } -void IdDialog::updateIdListRequest() -{ - if(updateIdTimer.isActive()) - { - std::cerr << "updateIdListRequest(): restarting timer"<< std::endl; - updateIdTimer.stop(); - updateIdTimer.start(1000); - } - else - { - std::cerr << "updateIdListRequest(): starting timer"<< std::endl; - updateIdTimer.start(1000); - } -} + void IdDialog::updateIdList() { - //print_stacktrace(); + //int accept = filter; - RsThread::async([this]() - { - std::list *ids = new std::list(); + RsThread::async([this]() + { + // 1 - get message data from p3GxsForums - if(!rsIdentity->getIdentitiesSummaries(*ids)) - { - std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve identity metadata." << std::endl; - return; - } +#ifdef DEBUG_FORUMS + std::cerr << "Retrieving post data for post " << mThreadId << std::endl; +#endif - RsQThreadUtils::postToObject( [ids,this]() - { + std::list identity_metas ; - std::cerr << "Updating identity list in widget." << std::endl; + if (!rsIdentity->getIdentitiesSummaries(identity_metas)) + { + std::cerr << "IdDialog::insertIdList() Error getting GroupData" << std::endl; + return; + } - applyWhileKeepingTree( [ids,this]() - { - std::cerr << "setting new identity in model." << std::endl; - mIdListModel->setIdentities(*ids) ; - delete ids; + std::set ids; + for(auto it(identity_metas.begin());it!=identity_metas.end();++it) + ids.insert(RsGxsId((*it).mGroupId)); + + std::vector groups; + + if(!rsIdentity->getIdentitiesInfo(ids,groups)) + { + std::cerr << "IdDialog::insertIdList() Error getting identities info" << std::endl; + return; + } + + auto ids_set = new std::map(); + + for(auto it(groups.begin()); it!=groups.end(); ++it) + (*ids_set)[(*it).mMeta.mGroupId] = *it; + + RsQThreadUtils::postToObject( [ids_set, this] () + { + /* Here it goes any code you want to be executed on the Qt Gui + * thread, for example to update the data model with new information + * after a blocking call to RetroShare API complete */ + loadIdentities(*ids_set); + delete ids_set; + + }, this ); - ui->label_count->setText("("+QString::number(mIdListModel->count())+")"); - }); - }); }); } -#ifdef TO_REMOVE bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept) { bool isLinkedToOwnNode = (data.mPgpKnown && (data.mPgpId == ownPgpId)) ; @@ -1560,13 +1476,13 @@ bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, rsPeers->getGPGDetails(data.mPgpId, details); item->setText(RSID_COL_IDTYPE, QString::fromUtf8(details.name.c_str())); item->setToolTip(RSID_COL_IDTYPE,"Verified signature from node "+QString::fromStdString(data.mPgpId.toStdString())) ; - - + + QString tooltip = tr("Node name:")+" " + QString::fromUtf8(details.name.c_str()) + "\n"; tooltip += tr("Node Id :")+" " + QString::fromStdString(data.mPgpId.toStdString()) ; item->setToolTip(RSID_COL_KEYID,tooltip) ; } - else + else { QString txt = tr("[Unknown node]"); item->setText(RSID_COL_IDTYPE, txt); @@ -1592,7 +1508,112 @@ bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, return true; } -#endif +void IdDialog::loadIdentities(const std::map& ids_set_const) +{ + auto ids_set(ids_set_const); + + //First: Get current item to restore after + RsGxsGroupId oldCurrentId = mIdToNavigate; + { + QTreeWidgetItem *oldCurrent = ui->idTreeWidget->currentItem(); + if (oldCurrent) { + oldCurrentId = RsGxsGroupId(oldCurrent->text(RSID_COL_KEYID).toStdString()); + } + } + + //Save expanding + Settings->beginGroup("IdDialog"); + Settings->setValue("ExpandAll", allItem->isExpanded()); + Settings->setValue("ExpandContacts", contactsItem->isExpanded()); + Settings->setValue("ExpandOwn", ownItem->isExpanded()); + Settings->endGroup(); + + + int accept = filter; + + mStateHelper->setActive(IDDIALOG_IDLIST, true); + + RsPgpId ownPgpId = rsPeers->getGPGOwnId(); + + // Update existing and remove not existing items + // Also remove items that do not have the correct parent + + QTreeWidgetItemIterator itemIterator(ui->idTreeWidget); + QTreeWidgetItem *item = NULL; + + while ((item = *itemIterator) != NULL) + { + ++itemIterator; + auto it = ids_set.find(RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString())) ; + + if(it == ids_set.end()) + { + if(item != allItem && item != contactsItem && item != ownItem) + delete(item); + + continue ; + } + + QTreeWidgetItem *parent_item = item->parent() ; + +// if(it->second.mMeta.mPublishTs > time(NULL) - 20 || it->second.mMeta.mGroupId == RsGxsGroupId("3de2172503675206b3a23c997e5ee688")) +// std::cerr << "Captured ID " <second.mMeta.mGroupId << std::endl; + + if( (parent_item == allItem && it->second.mIsAContact) || (parent_item == contactsItem && !it->second.mIsAContact)) + { + delete item ; // do not remove from the list, so that it is added again in the correct place. + continue ; + } + + if (!fillIdListItem(it->second, item, ownPgpId, accept)) + delete(item); + + ids_set.erase(it); // erase, so it is not considered to be a new item + } + + /* Insert new items */ + for (std::map::const_iterator vit = ids_set.begin(); vit != ids_set.end(); ++vit) + { + RsGxsIdGroup data = vit->second ; + + item = NULL; + + if (fillIdListItem(data, item, ownPgpId, accept)) + { + if(data.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN) + ownItem->addChild(item); + else if(data.mIsAContact) + contactsItem->addChild(item); + else + allItem->addChild(item); + + } + } + + /* count items */ + int itemCount = contactsItem->childCount() + allItem->childCount() + ownItem->childCount(); + ui->label_count->setText( "(" + QString::number( itemCount ) + ")" ); + + int contactsCount = contactsItem->childCount() ; + int allCount = allItem->childCount() ; + int ownCount = ownItem->childCount(); + + contactsItem->setText(0, tr("My contacts") + " (" + QString::number( contactsCount ) + ")" ); + allItem->setText(0, tr("All") + " (" + QString::number( allCount ) + ")" ); + ownItem->setText(0, tr("My own identities") + " (" + QString::number( ownCount ) + ")" ); + + + //Restore expanding + Settings->beginGroup("IdDialog"); + allItem->setExpanded(Settings->value("ExpandAll", QVariant(true)).toBool()); + ownItem->setExpanded(Settings->value("ExpandOwn", QVariant(true)).toBool()); + contactsItem->setExpanded(Settings->value("ExpandContacts", QVariant(true)).toBool()); + Settings->endGroup(); + + navigate(RsGxsId(oldCurrentId)); + filterIds(); + updateSelection(); +} void IdDialog::updateIdentity() { @@ -1638,7 +1659,7 @@ void IdDialog::updateIdentity() loadIdentity(group); - }, this ); + }, this ); }); } @@ -1654,7 +1675,7 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) RsPgpId ownPgpId = rsPeers->getGPGOwnId(); ui->lineEdit_PublishTS->setText(QDateTime::fromMSecsSinceEpoch(qint64(1000)*data.mMeta.mPublishTs).toString(Qt::SystemLocaleShortDate)); - //ui->lineEdit_Nickname->setText(QString::fromUtf8(data.mMeta.mGroupName.c_str()).left(RSID_MAXIMUM_NICKNAME_SIZE)); + ui->lineEdit_Nickname->setText(QString::fromUtf8(data.mMeta.mGroupName.c_str()).left(RSID_MAXIMUM_NICKNAME_SIZE)); ui->lineEdit_KeyId->setText(QString::fromStdString(data.mMeta.mGroupId.toStdString())); //ui->lineEdit_GpgHash->setText(QString::fromStdString(data.mPgpIdHash.toStdString())); if(data.mPgpKnown) @@ -1680,8 +1701,8 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) //ui->avLabel_Person->setPixmap(pixmap); //ui->avatarLabel->setPixmap(pixmap); - //QFontMetricsF f(ui->avLabel_Person->font()) ; - //ui->avLabel_Person->setPixmap(pixmap.scaled(f.height()*4,f.height()*4,Qt::KeepAspectRatio,Qt::SmoothTransformation)); + QFontMetricsF f(ui->avLabel_Person->font()) ; + ui->avLabel_Person->setPixmap(pixmap.scaled(f.height()*4,f.height()*4,Qt::KeepAspectRatio,Qt::SmoothTransformation)); ui->avatarLabel->setPixmap(pixmap.scaled(ui->inviteButton->width(),ui->inviteButton->width(),Qt::IgnoreAspectRatio,Qt::SmoothTransformation)); ui->avatarLabel->setScaledContents(true); @@ -1710,7 +1731,7 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) ui->lineEdit_GpgId->show() ; ui->label_GpgId->show() ; } - + if(data.mPgpKnown) { ui->lineEdit_GpgName->show() ; @@ -1750,6 +1771,7 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) if (isOwnId) { + mStateHelper->setWidgetEnabled(ui->ownOpinion_CB, false); mStateHelper->setWidgetEnabled(ui->autoBanIdentities_CB, false); // ui->editIdentity->setEnabled(true); // ui->removeIdentity->setEnabled(true); @@ -1759,6 +1781,8 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) } else { + // No Reputation yet! + mStateHelper->setWidgetEnabled(ui->ownOpinion_CB, true); mStateHelper->setWidgetEnabled(ui->autoBanIdentities_CB, true); // ui->editIdentity->setEnabled(false); // ui->removeIdentity->setEnabled(false); @@ -1802,7 +1826,7 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) frep_string = tr("No votes from friends") ; ui->neighborNodesOpinion_TF->setText(frep_string) ; - + ui->label_positive->setText(QString::number(info.mFriendsPositiveVotes)); ui->label_negative->setText(QString::number(info.mFriendsNegativeVotes)); @@ -1825,9 +1849,9 @@ void IdDialog::loadIdentity(RsGxsIdGroup data) switch(info.mOwnOpinion) { - case RsOpinion::NEGATIVE: whileBlocking(ui->ownOpinion_CB)->setCurrentIndex(0); break; - case RsOpinion::NEUTRAL : whileBlocking(ui->ownOpinion_CB)->setCurrentIndex(1); break; - case RsOpinion::POSITIVE: whileBlocking(ui->ownOpinion_CB)->setCurrentIndex(2); break; + case RsOpinion::NEGATIVE: ui->ownOpinion_CB->setCurrentIndex(0); break; + case RsOpinion::NEUTRAL : ui->ownOpinion_CB->setCurrentIndex(1); break; + case RsOpinion::POSITIVE: ui->ownOpinion_CB->setCurrentIndex(2); break; default: std::cerr << "Unexpected value in own opinion: " << static_cast(info.mOwnOpinion) << std::endl; @@ -1999,62 +2023,33 @@ void IdDialog::modifyReputation() // trigger refresh when finished. // basic / anstype are not needed. - //updateIdentity(); - //updateIdList(); + updateIdentity(); + updateIdList(); return; } - + void IdDialog::navigate(const RsGxsId& gxs_id) { - mIdListModel->debug_dump(); -#ifndef ID_DEBUG +#ifdef ID_DEBUG std::cerr << "IdDialog::navigate to " << gxs_id.toStdString() << std::endl; #endif - if(gxs_id.isNull()) - return; - - auto indx = mIdListModel->getIndexOfIdentity(gxs_id); - - if(!indx.isValid()) - { - RsErr() << "Invalid index found for identity " << gxs_id << std::endl; - return; - } - std::cerr << "Obtained index " << indx << ": id of that index is " << mIdListModel->getIdentity(indx) << std::endl; - - QModelIndex proxy_indx = mProxyModel->mapFromSource(indx); - - std::cerr << "Obtained proxy index " << proxy_indx << std::endl; - // in order to do this, we just select the correct ID in the ID list - Q_ASSERT(ui->idTreeWidget->model() == mProxyModel); + if (!gxs_id.isNull()) + { + QList select = ui->idTreeWidget->findItems(QString::fromStdString(gxs_id.toStdString()),Qt::MatchExactly | Qt::MatchRecursive | Qt::MatchWrap,RSID_COL_KEYID) ; - if(!proxy_indx.isValid()) - { - std::cerr << "Cannot find item with ID " << gxs_id << " in ID list." << std::endl; - return; - } - std::cerr << "Row hidden? " << ui->idTreeWidget->isRowHidden(proxy_indx.row(),proxy_indx.parent()) << std::endl; + if(select.empty()) + { + mIdToNavigate = RsGxsGroupId(gxs_id); + std::cerr << "Cannot find item with ID " << gxs_id << " in ID list." << std::endl; + return; + } + ui->idTreeWidget->setCurrentItem(*select.begin(),true); + } - { - auto ii = mProxyModel->mapToSource(proxy_indx); - std::cerr << "Remapping index to source: " << ii << std::endl; - } - ui->idTreeWidget->selectionModel()->select(proxy_indx,QItemSelectionModel::Current|QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); - { - auto lst = ui->idTreeWidget->selectionModel()->selectedIndexes(); - std::cerr << "Just after calling select(), the selected index list has size " << lst.size() << std::endl; - } - ui->idTreeWidget->scrollTo(proxy_indx);//May change if model reloaded - ui->idTreeWidget->setFocus(); - - // This has to be done manually because for some reason the proxy model doesn't work with the selection model - // No signal is emitted when calling setCurrentIndex() above. - - //mId = RsGxsGroupId(gxs_id); - //updateIdentity(); + mIdToNavigate = RsGxsGroupId(); } void IdDialog::updateDisplay(bool complete) @@ -2072,49 +2067,6 @@ void IdDialog::updateDisplay(bool complete) } } -std::list IdDialog::getSelectedIdentities() const -{ - QModelIndexList selectedIndexes_proxy = ui->idTreeWidget->selectionModel()->selectedIndexes(); - std::list res; - -#ifdef DEBUG_ID_DIALOG - std::cerr << "Parsing selected index list: " << std::endl; -#endif - for(auto indx_proxy:selectedIndexes_proxy) - { - RsGxsId id; - - if(indx_proxy.column() == RsIdentityListModel::COLUMN_THREAD_ID) // this removes duplicates - { - auto indx = mProxyModel->mapToSource(indx_proxy); - auto id = mIdListModel->getIdentity(indx); - -#ifdef DEBUG_ID_DIALOG - std::cerr << " indx: " << indx_proxy << " original indx: " << indx << " identity: " << id << std::endl; -#endif - - if( !id.isNull() ) - res.push_back(id); - } - } - - return res; -} - -RsGxsId IdDialog::getSelectedIdentity() const -{ - auto lst = getSelectedIdentities(); - -#ifdef DEBUG_ID_DIALOG - std::cerr << "Selected identities has size " << lst.size() << std::endl; -#endif - - if(lst.size() != 1) - return RsGxsId(); - else - return lst.front(); -} - void IdDialog::addIdentity() { IdEditDialog dlg(this); @@ -2124,248 +2076,240 @@ void IdDialog::addIdentity() void IdDialog::removeIdentity() { - RsGxsId id = getSelectedIdentity(); + QTreeWidgetItem *item = ui->idTreeWidget->currentItem(); + if (!item) + { +#ifdef ID_DEBUG + std::cerr << "IdDialog::editIdentity() Invalid item"; + std::cerr << std::endl; +#endif + return; + } - if(id.isNull()) - return; + if ((QMessageBox::question(this, tr("Really delete?"), tr("Do you really want to delete this identity?"), QMessageBox::Yes|QMessageBox::No, QMessageBox::No))== QMessageBox::Yes) + { + std::string keyId = item->text(RSID_COL_KEYID).toStdString(); - if ((QMessageBox::question(this, tr("Really delete?"), tr("Do you really want to delete this identity?\nThis cannot be undone."), QMessageBox::Yes|QMessageBox::No, QMessageBox::No))== QMessageBox::Yes) - rsIdentity->deleteIdentity(id); + uint32_t dummyToken = 0; + RsGxsIdGroup group; + group.mMeta.mGroupId=RsGxsGroupId(keyId); + rsIdentity->deleteIdentity(dummyToken, group); + } } void IdDialog::editIdentity() { - RsGxsId id = getSelectedIdentity(); + QTreeWidgetItem *item = ui->idTreeWidget->currentItem(); + if (!item) + { +#ifdef ID_DEBUG + std::cerr << "IdDialog::editIdentity() Invalid item"; + std::cerr << std::endl; +#endif + return; + } - if(id.isNull()) - return; + RsGxsGroupId keyId = RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString()); + if (keyId.isNull()) { + return; + } - IdEditDialog dlg(this); - dlg.setupExistingId(RsGxsGroupId(id)); - dlg.exec(); + IdEditDialog dlg(this); + dlg.setupExistingId(keyId); + dlg.exec(); } void IdDialog::filterIds() { + int filterColumn = ui->filterLineEdit->currentFilter(); QString text = ui->filterLineEdit->text(); - int8_t ft=0; - - if(!ui->idTreeWidget->isColumnHidden(RsIdentityListModel::COLUMN_THREAD_ID)) ft |= RsIdentityListModel::FILTER_TYPE_ID; - if(!ui->idTreeWidget->isColumnHidden(RsIdentityListModel::COLUMN_THREAD_NAME)) ft |= RsIdentityListModel::FILTER_TYPE_NAME; - if(!ui->idTreeWidget->isColumnHidden(RsIdentityListModel::COLUMN_THREAD_OWNER_NAME)) ft |= RsIdentityListModel::FILTER_TYPE_OWNER_NAME; - if(!ui->idTreeWidget->isColumnHidden(RsIdentityListModel::COLUMN_THREAD_OWNER_ID)) ft |= RsIdentityListModel::FILTER_TYPE_OWNER_ID; - - mIdListModel->setFilter(ft,{ text }); + ui->idTreeWidget->filterItems(filterColumn, text); } -void IdDialog::headerContextMenuRequested(QPoint) -{ - QMenu displayMenu(this); - - // create menu header - //QHBoxLayout *hbox = new QHBoxLayout(widget); - //hbox->setMargin(0); - //hbox->setSpacing(6); - - auto addEntry = [&](const QString& name,RsIdentityListModel::Columns col) - { - QAction *action = displayMenu.addAction(QIcon(), name, this, SLOT(toggleColumnVisible())); - action->setCheckable(true); - action->setData(static_cast(col)); - action->setChecked(!ui->idTreeWidget->header()->isSectionHidden(col)); - }; - - addEntry(tr("Id"),RsIdentityListModel::COLUMN_THREAD_ID); - addEntry(tr("Owner Id"),RsIdentityListModel::COLUMN_THREAD_OWNER_ID); - addEntry(tr("Owner Name"),RsIdentityListModel::COLUMN_THREAD_OWNER_NAME); - addEntry(tr("Reputation"),RsIdentityListModel::COLUMN_THREAD_REPUTATION); - - //addEntry(tr("Name"),RsIdentityListModel::COLUMN_THREAD_NAME); - - displayMenu.exec(QCursor::pos()); -} - -void IdDialog::toggleColumnVisible() -{ - QAction *action = dynamic_cast(sender()); - - std::cerr << "Aciton = " << (void*)action << std::endl; - if (!action) - return; - - int column = action->data().toInt(); - bool visible = action->isChecked(); - - ui->idTreeWidget->setColumnHidden(column, !visible); -} void IdDialog::IdListCustomPopupMenu( QPoint ) { - QMenu contextMenu(this); + QMenu *contextMenu = new QMenu(this); - std::list own_identities; - rsIdentity->getOwnIds(own_identities); - // make some stats about what's selected. If the same value is used for all selected items, it can be switched. + std::list own_identities; + rsIdentity->getOwnIds(own_identities); - auto lst = getSelectedIdentities(); + // make some stats about what's selected. If the same value is used for all selected items, it can be switched. - if(lst.empty()) - return ; + QList selected_items = ui->idTreeWidget->selectedItems(); - //bool root_node_present = false ; - bool one_item_owned_by_you = false ; - uint32_t n_positive_reputations = 0 ; - uint32_t n_negative_reputations = 0 ; - uint32_t n_neutral_reputations = 0 ; - uint32_t n_is_a_contact = 0 ; - uint32_t n_is_not_a_contact = 0 ; - uint32_t n_selected_items =0 ; + bool root_node_present = false ; + bool one_item_owned_by_you = false ; + uint32_t n_positive_reputations = 0 ; + uint32_t n_negative_reputations = 0 ; + uint32_t n_neutral_reputations = 0 ; + uint32_t n_is_a_contact = 0 ; + uint32_t n_is_not_a_contact = 0 ; + uint32_t n_selected_items =0 ; - for(auto& keyId :lst) - { - //if(it == allItem || it == contactsItem || it == ownItem) - //{ - // root_node_present = true ; - // continue ; - //} + for(auto& it :selected_items) + { + if(it == allItem || it == contactsItem || it == ownItem) + { + root_node_present = true ; + continue ; + } - //uint32_t item_flags = mIdListModel->data(RSID_COL_KEYID,Qt::UserRole).toUInt() ; + uint32_t item_flags = it->data(RSID_COL_KEYID,Qt::UserRole).toUInt() ; - if(rsIdentity->isOwnId(keyId)) - one_item_owned_by_you = true ; + if(item_flags & RSID_FILTER_OWNED_BY_YOU) + one_item_owned_by_you = true ; #ifdef ID_DEBUG - std::cerr << " item flags = " << item_flags << std::endl; + std::cerr << " item flags = " << item_flags << std::endl; #endif - RsIdentityDetails det ; - rsIdentity->getIdDetails(keyId,det) ; + RsGxsId keyId(it->text(RSID_COL_KEYID).toStdString()); - switch(det.mReputation.mOwnOpinion) - { - case RsOpinion::NEGATIVE: ++n_negative_reputations; break; - case RsOpinion::POSITIVE: ++n_positive_reputations; break; - case RsOpinion::NEUTRAL: ++n_neutral_reputations; break; - } + RsIdentityDetails det ; + rsIdentity->getIdDetails(keyId,det) ; - ++n_selected_items; + switch(det.mReputation.mOwnOpinion) + { + case RsOpinion::NEGATIVE: ++n_negative_reputations; break; + case RsOpinion::POSITIVE: ++n_positive_reputations; break; + case RsOpinion::NEUTRAL: ++n_neutral_reputations; break; + } - if(rsIdentity->isARegularContact(keyId)) - ++n_is_a_contact ; - else - ++n_is_not_a_contact ; - } + ++n_selected_items; - if(!one_item_owned_by_you) - { - QFrame *widget = new QFrame(&contextMenu); - widget->setObjectName("gradFrame"); //Use qss - //widget->setStyleSheet( ".QWidget{background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 #FEFEFE, stop:1 #E8E8E8); border: 1px solid #CCCCCC;}"); + if(rsIdentity->isARegularContact(keyId)) + ++n_is_a_contact ; + else + ++n_is_not_a_contact ; + } - // create menu header - QHBoxLayout *hbox = new QHBoxLayout(widget); - hbox->setMargin(0); - hbox->setSpacing(6); + if(!root_node_present) // don't show menu if some of the root nodes are present + { - QLabel *iconLabel = new QLabel(widget); - iconLabel->setObjectName("trans_Icon"); - QPixmap pix = FilesDefs::getPixmapFromQtResourcePath(":/images/user/friends24.png").scaledToHeight(QFontMetricsF(iconLabel->font()).height()*1.5); - iconLabel->setPixmap(pix); - iconLabel->setMaximumSize(iconLabel->frameSize().height() + pix.height(), pix.width()); - hbox->addWidget(iconLabel); + if(!one_item_owned_by_you) + { + QFrame *widget = new QFrame(contextMenu); + widget->setObjectName("gradFrame"); //Use qss + //widget->setStyleSheet( ".QWidget{background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 #FEFEFE, stop:1 #E8E8E8); border: 1px solid #CCCCCC;}"); - QLabel *textLabel = new QLabel("" + ui->titleBarLabel->text() + "", widget); - textLabel->setObjectName("trans_Text"); - hbox->addWidget(textLabel); + // create menu header + QHBoxLayout *hbox = new QHBoxLayout(widget); + hbox->setMargin(0); + hbox->setSpacing(6); - QSpacerItem *spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); - hbox->addItem(spacerItem); + QLabel *iconLabel = new QLabel(widget); + iconLabel->setObjectName("trans_Icon"); + QPixmap pix = FilesDefs::getPixmapFromQtResourcePath(":/images/user/friends24.png").scaledToHeight(QFontMetricsF(iconLabel->font()).height()*1.5); + iconLabel->setPixmap(pix); + iconLabel->setMaximumSize(iconLabel->frameSize().height() + pix.height(), pix.width()); + hbox->addWidget(iconLabel); - widget->setLayout(hbox); + QLabel *textLabel = new QLabel("" + ui->titleBarLabel->text() + "", widget); + textLabel->setObjectName("trans_Text"); + hbox->addWidget(textLabel); - QWidgetAction *widgetAction = new QWidgetAction(this); - widgetAction->setDefaultWidget(widget); - contextMenu.addAction(widgetAction); + QSpacerItem *spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + hbox->addItem(spacerItem); - if(n_selected_items == 1) // if only one item is selected, allow to chat with this item - { - if(own_identities.size() <= 1) - { - QAction *action = contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/chats.png"), tr("Chat with this person"), this, SLOT(chatIdentity())); + widget->setLayout(hbox); - if(own_identities.empty()) - action->setEnabled(false) ; - else - action->setData(QString::fromStdString((own_identities.front()).toStdString())) ; - } - else - { - QMenu *mnu = contextMenu.addMenu(FilesDefs::getIconFromQtResourcePath(":/icons/png/chats.png"),tr("Chat with this person as...")) ; + QWidgetAction *widgetAction = new QWidgetAction(this); + widgetAction->setDefaultWidget(widget); + contextMenu->addAction(widgetAction); - for(std::list::const_iterator it=own_identities.begin();it!=own_identities.end();++it) - { - RsIdentityDetails idd ; - rsIdentity->getIdDetails(*it,idd) ; + if(n_selected_items == 1) // if only one item is selected, allow to chat with this item + { + if(own_identities.size() <= 1) + { + QAction *action = contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/chats.png"), tr("Chat with this person"), this, SLOT(chatIdentity())); - QPixmap pixmap ; + if(own_identities.empty()) + action->setEnabled(false) ; + else + action->setData(QString::fromStdString((own_identities.front()).toStdString())) ; + } + else + { + QMenu *mnu = contextMenu->addMenu(FilesDefs::getIconFromQtResourcePath(":/icons/png/chats.png"),tr("Chat with this person as...")) ; - if(idd.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(idd.mAvatar.mData, idd.mAvatar.mSize, pixmap,GxsIdDetails::SMALL)) - pixmap = GxsIdDetails::makeDefaultIcon(*it,GxsIdDetails::SMALL) ; + for(std::list::const_iterator it=own_identities.begin();it!=own_identities.end();++it) + { + RsIdentityDetails idd ; + rsIdentity->getIdDetails(*it,idd) ; - QAction *action = mnu->addAction(QIcon(pixmap), QString("%1 (%2)").arg(QString::fromUtf8(idd.mNickname.c_str()), QString::fromStdString((*it).toStdString())), this, SLOT(chatIdentity())); - action->setData(QString::fromStdString((*it).toStdString())) ; - } - } - } - // always allow to send messages - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/mail/write-mail.png"), tr("Send message"), this, SLOT(sendMsg())); + QPixmap pixmap ; - contextMenu.addSeparator(); + if(idd.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(idd.mAvatar.mData, idd.mAvatar.mSize, pixmap,GxsIdDetails::SMALL)) + pixmap = GxsIdDetails::makeDefaultIcon(*it,GxsIdDetails::SMALL) ; - if(n_is_a_contact == 0) - contextMenu.addAction(QIcon(), tr("Add to Contacts"), this, SLOT(addtoContacts())); + QAction *action = mnu->addAction(QIcon(pixmap), QString("%1 (%2)").arg(QString::fromUtf8(idd.mNickname.c_str()), QString::fromStdString((*it).toStdString())), this, SLOT(chatIdentity())); + action->setData(QString::fromStdString((*it).toStdString())) ; + } + } + } + // always allow to send messages + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/mail/write-mail.png"), tr("Send message"), this, SLOT(sendMsg())); - if(n_is_not_a_contact == 0) - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"), tr("Remove from Contacts"), this, SLOT(removefromContacts())); - } - if (n_selected_items==1) - contextMenu.addAction(QIcon(""),tr("Copy identity to clipboard"),this,SLOT(copyRetroshareLink())) ; + contextMenu->addSeparator(); - contextMenu.addSeparator(); + if(n_is_a_contact == 0) + contextMenu->addAction(QIcon(), tr("Add to Contacts"), this, SLOT(addtoContacts())); - if(n_positive_reputations == 0) // only unban when all items are banned - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-up.png"), tr("Set positive opinion"), this, SLOT(positivePerson())); + if (n_selected_items==1) + contextMenu->addAction(QIcon(""),tr("Copy identity to clipboard"),this,SLOT(copyRetroshareLink())) ; - if(n_neutral_reputations == 0) // only unban when all items are banned - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-neutral.png"), tr("Set neutral opinion"), this, SLOT(neutralPerson())); + if(n_is_not_a_contact == 0) + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"), tr("Remove from Contacts"), this, SLOT(removefromContacts())); - if(n_negative_reputations == 0) - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-down.png"), tr("Set negative opinion"), this, SLOT(negativePerson())); + contextMenu->addSeparator(); - if(one_item_owned_by_you && n_selected_items==1) - { - contextMenu.addSeparator(); + if(n_positive_reputations == 0) // only unban when all items are banned + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-up.png"), tr("Set positive opinion"), this, SLOT(positivePerson())); - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_EDIT),tr("Edit identity"),this,SLOT(editIdentity())) ; - contextMenu.addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"),tr("Delete identity"),this,SLOT(removeIdentity())) ; - } + if(n_neutral_reputations == 0) // only unban when all items are banned + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-neutral.png"), tr("Set neutral opinion"), this, SLOT(neutralPerson())); - //contextMenu = ui->idTreeWidget->createStandardContextMenu(contextMenu); + if(n_negative_reputations == 0) + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/png/thumbs-down.png"), tr("Set negative opinion"), this, SLOT(negativePerson())); + } - contextMenu.exec(QCursor::pos()); + if(one_item_owned_by_you && n_selected_items==1) + { + contextMenu->addSeparator(); + + contextMenu->addAction(QIcon(""),tr("Copy identity to clipboard"),this,SLOT(copyRetroshareLink())) ; + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_EDIT),tr("Edit identity"),this,SLOT(editIdentity())) ; + contextMenu->addAction(FilesDefs::getIconFromQtResourcePath(":/icons/cancel.svg"),tr("Delete identity"),this,SLOT(removeIdentity())) ; + } + + } + + contextMenu = ui->idTreeWidget->createStandardContextMenu(contextMenu); + + contextMenu->exec(QCursor::pos()); + delete contextMenu; } void IdDialog::copyRetroshareLink() { - auto gxs_id = getSelectedIdentity(); + QTreeWidgetItem *item = ui->idTreeWidget->currentItem(); - if (gxs_id.isNull()) + if (!item) { std::cerr << "IdDialog::editIdentity() Invalid item"; std::cerr << std::endl; return; } + RsGxsId gxs_id(item->text(RSID_COL_KEYID).toStdString()); + + if(gxs_id.isNull()) + { + std::cerr << "Null GXS id. Something went wrong." << std::endl; + return ; + } + RsIdentityDetails details ; if(! rsIdentity->getIdDetails(gxs_id,details)) @@ -2403,33 +2347,35 @@ void IdDialog::copyRetroshareLink() }); } -void IdDialog::chatIdentityItem(const QModelIndex& indx) +void IdDialog::chatIdentity() { - auto toGxsId = mIdListModel->getIdentity(indx); + QTreeWidgetItem* item = ui->idTreeWidget->currentItem(); + if (!item) + { + std::cerr << __PRETTY_FUNCTION__ << " Error. Invalid item!" << std::endl; + return; + } - if(toGxsId.isNull()) + chatIdentityItem(item); +} + +void IdDialog::chatIdentityItem(QTreeWidgetItem* item) +{ + if(!item) { std::cerr << __PRETTY_FUNCTION__ << " Error. Invalid item." << std::endl; return; } - chatIdentity(toGxsId); -} -void IdDialog::chatIdentity() -{ - auto id = getSelectedIdentity(); + std::string&& toIdString(item->text(RSID_COL_KEYID).toStdString()); + RsGxsId toGxsId(toIdString); + if(toGxsId.isNull()) + { + std::cerr << __PRETTY_FUNCTION__ << " Error. Invalid destination id: " + << toIdString << std::endl; + return; + } - if(id.isNull()) - { - std::cerr << __PRETTY_FUNCTION__ << " Error. Invalid item!" << std::endl; - return; - } - - chatIdentity(id); -} - -void IdDialog::chatIdentity(const RsGxsId& toGxsId) -{ RsGxsId fromGxsId; QAction* action = qobject_cast(QObject::sender()); if(!action) @@ -2448,7 +2394,8 @@ void IdDialog::chatIdentity(const RsGxsId& toGxsId) if(fromGxsId.isNull()) { - std::cerr << __PRETTY_FUNCTION__ << " Error. Could not determine sender identity to open chat toward: " << toGxsId << std::endl; + std::cerr << __PRETTY_FUNCTION__ << " Error. Could not determine sender" + << " identity to open chat toward: " << toIdString << std::endl; return; } @@ -2465,12 +2412,12 @@ void IdDialog::chatIdentity(const RsGxsId& toGxsId) void IdDialog::sendMsg() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); - if(lst.empty()) + if(selected_items.empty()) return ; - if(lst.size() > 20) + if(selected_items.size() > 20) if(QMessageBox::warning(nullptr,tr("Too many identities"),tr("

It is not recommended to send a message to more than 20 persons at once. Large scale diffusion of data (including friend invitations) are much more efficiently handled by forums. Click ok to proceed anyway.

"),QMessageBox::Ok|QMessageBox::Cancel,QMessageBox::Cancel)==QMessageBox::Cancel) return; @@ -2478,10 +2425,15 @@ void IdDialog::sendMsg() if (nMsgDialog == NULL) return; - for(const auto& id : lst) - nMsgDialog->addRecipient(MessageComposer::TO, id); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; - nMsgDialog->show(); + std::string keyId = item->text(RSID_COL_KEYID).toStdString(); + + nMsgDialog->addRecipient(MessageComposer::TO, RsGxsId(keyId)); + } + nMsgDialog->show(); nMsgDialog->activateWindow(); /* window will destroy itself! */ @@ -2494,11 +2446,14 @@ QString IdDialog::inviteMessage() void IdDialog::sendInvite() { - auto id = getSelectedIdentity(); - - if(id.isNull()) + QTreeWidgetItem *item = ui->idTreeWidget->currentItem(); + if (!item) + { return; + } + RsGxsId id(ui->lineEdit_KeyId->text().toStdString()); + //if ((QMessageBox::question(this, tr("Send invite?"),tr("Do you really want send a invite with your Certificate?"),QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes))== QMessageBox::Yes) { MessageComposer::sendInvite(id,false); @@ -2506,60 +2461,83 @@ void IdDialog::sendInvite() ui->info_Frame_Invite->show(); ui->inviteButton->setEnabled(false); } - + } void IdDialog::negativePerson() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; - for(const auto& id : lst) - rsReputations->setOwnOpinion(id, RsOpinion::NEGATIVE); + std::string Id = item->text(RSID_COL_KEYID).toStdString(); - updateIdentity(); - updateIdListRequest(); + rsReputations->setOwnOpinion(RsGxsId(Id), RsOpinion::NEGATIVE); + } + + updateIdentity(); + updateIdList(); } void IdDialog::neutralPerson() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; - for(const auto& id : lst) - rsReputations->setOwnOpinion(id, RsOpinion::NEUTRAL); + std::string Id = item->text(RSID_COL_KEYID).toStdString(); - updateIdentity(); - updateIdListRequest(); + rsReputations->setOwnOpinion(RsGxsId(Id), RsOpinion::NEUTRAL); + } + + updateIdentity(); + updateIdList(); } void IdDialog::positivePerson() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; - for(const auto& id : lst) - rsReputations->setOwnOpinion(id, RsOpinion::POSITIVE); + std::string Id = item->text(RSID_COL_KEYID).toStdString(); - updateIdentity(); - updateIdListRequest(); + rsReputations->setOwnOpinion(RsGxsId(Id), RsOpinion::POSITIVE); + } + + updateIdentity(); + updateIdList(); } void IdDialog::addtoContacts() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; + std::string Id = item->text(RSID_COL_KEYID).toStdString(); - for(const auto& id : lst) - rsIdentity->setAsRegularContact(id,true); + rsIdentity->setAsRegularContact(RsGxsId(Id),true); + } - updateIdListRequest(); + updateIdList(); } void IdDialog::removefromContacts() { - auto lst = getSelectedIdentities(); + QList selected_items = ui->idTreeWidget->selectedItems(); + for(auto& it : selected_items) + { + QTreeWidgetItem *item = it ; + std::string Id = item->text(RSID_COL_KEYID).toStdString(); - for(const auto& id : lst) - rsIdentity->setAsRegularContact(id,false); + rsIdentity->setAsRegularContact(RsGxsId(Id),false); + } - updateIdListRequest(); + updateIdList(); } void IdDialog::on_closeInfoFrameButton_Invite_clicked() @@ -2615,174 +2593,3 @@ void IdDialog::restoreExpandedCircleItems(const std::vector& expanded_root restoreTopLevel(mMyCircleItem,2); } -void IdDialog::applyWhileKeepingTree(std::function predicate) -{ - std::set expanded,selected; - - saveExpandedPathsAndSelection_idTreeView(expanded, selected); -#ifdef DEBUG_NEW_FRIEND_LIST - std::cerr << "After collecting selection, selected paths is: \"" << selected.toStdString() << "\", " ; - std::cerr << "expanded paths are: " << std::endl; - for(auto path:expanded) - std::cerr << " \"" << path.toStdString() << "\"" << std::endl; - std::cerr << "Current sort column is: " << mLastSortColumn << " and order is " << mLastSortOrder << std::endl; -#endif - - // This is a hack to avoid crashes on windows while calling endInsertRows(). I'm not sure wether these crashes are - // due to a Qt bug, or a misuse of the proxy model on my side. Anyway, this solves them for good. - // As a side effect we need to save/restore hidden columns because setSourceModel() resets this setting. - - // save hidden columns and sizes - std::vector col_visible(RsIdentityListModel::COLUMN_THREAD_NB_COLUMNS); - std::vector col_sizes(RsIdentityListModel::COLUMN_THREAD_NB_COLUMNS); - - for(int i=0;iidTreeWidget->isColumnHidden(i); - col_sizes[i] = ui->idTreeWidget->columnWidth(i); - } - -#ifdef SUSPENDED -#ifdef DEBUG_NEW_FRIEND_LIST - std::cerr << "Applying predicate..." << std::endl; -#endif -#endif - mProxyModel->setSourceModel(nullptr); - predicate(); - mProxyModel->setSourceModel(mIdListModel); - - restoreExpandedPathsAndSelection_idTreeView(expanded,selected); - // restore hidden columns - for(uint32_t i=0;iidTreeWidget->setColumnHidden(i,!col_visible[i]); - ui->idTreeWidget->setColumnWidth(i,col_sizes[i]); - } - - mProxyModel->setSortingEnabled(true); - mProxyModel->sort(mLastSortColumn,mLastSortOrder); - mProxyModel->setSortingEnabled(false); -#ifdef SUSPENDED - // restore sorting - // sortColumn(mLastSortColumn,mLastSortOrder); -#ifdef DEBUG_NEW_FRIEND_LIST - std::cerr << "Sorting again with sort column: " << mLastSortColumn << " and order " << mLastSortOrder << std::endl; -#endif - -// if(selected_index.isValid()) -// ui->idTreeWidget->scrollTo(selected_index); -#endif -} - -void IdDialog::saveExpandedPathsAndSelection_idTreeView(std::set& expanded, std::set& selected) -{ -#ifdef DEBUG_ID_DIALOG - std::cerr << "Saving expended paths and selection..." << std::endl; -#endif - - for(int row = 0; row < mProxyModel->rowCount(); ++row) - recursSaveExpandedItems_idTreeView(mProxyModel->index(row,0),QStringList(),expanded,selected); -} - -void IdDialog::restoreExpandedPathsAndSelection_idTreeView(const std::set& expanded, const std::set& selected) -{ -#ifdef DEBUG_ID_DIALOG - std::cerr << "Restoring expanded paths and selection..." << std::endl; - std::cerr << " expanded: " << expanded.size() << " items" << std::endl; - std::cerr << " selected: " << selected.size() << " items" << std::endl; -#endif - ui->idTreeWidget->blockSignals(true) ; - ui->idTreeWidget->selectionModel()->blockSignals(true) ; - - ui->idTreeWidget->clearSelection(); - - for(int row = 0; row < mProxyModel->rowCount(); ++row) - recursRestoreExpandedItems_idTreeView(mProxyModel->index(row,0),QStringList(),expanded,selected); - - ui->idTreeWidget->selectionModel()->blockSignals(false) ; - ui->idTreeWidget->blockSignals(false) ; -} - -void IdDialog::recursSaveExpandedItems_idTreeView(const QModelIndex& proxy_index,const QStringList& parent_path,std::set& expanded,std::set& selected) -{ - QStringList local_path = parent_path; - - local_path.push_back(mIdListModel->indexIdentifier(mProxyModel->mapToSource(proxy_index))); - - if(ui->idTreeWidget->isExpanded(proxy_index)) - { -#ifdef DEBUG_ID_DIALOG - std::cerr << "Adding expanded path "; - for(auto L:local_path) std::cerr << "\"" << L.toStdString() << "\" " ; std::cerr << std::endl; -#endif - if(proxy_index.isValid()) - expanded.insert(local_path) ; - - for(int row=0;rowrowCount(proxy_index);++row) - recursSaveExpandedItems_idTreeView(proxy_index.child(row,0),local_path,expanded,selected) ; - } - - if(ui->idTreeWidget->selectionModel()->isSelected(proxy_index)) - { -#ifdef DEBUG_ID_DIALOG - std::cerr << "Adding selected path "; - for(auto L:local_path) std::cerr << "\"" << L.toStdString() << "\" " ; std::cerr << std::endl; -#endif - selected.insert(local_path); - } -} - -void IdDialog::recursRestoreExpandedItems_idTreeView(const QModelIndex& proxy_index,const QStringList& parent_path,const std::set& expanded,const std::set& selected) -{ - QStringList local_path = parent_path; - local_path.push_back(mIdListModel->indexIdentifier(mProxyModel->mapToSource(proxy_index))); - -#ifdef DEBUG_ID_DIALOG - std::cerr << "Local path = " ; for(auto L:local_path) std::cerr << "\"" << L.toStdString() << "\" " ; std::cerr << std::endl; -#endif - - if(expanded.find(local_path) != expanded.end()) - { -#ifdef DEBUG_ID_DIALOG - std::cerr << " re expanding " ; - for(auto L:local_path) std::cerr << "\"" << L.toStdString() << "\" " ; std::cerr << std::endl; -#endif - - ui->idTreeWidget->setExpanded(proxy_index,true) ; - - for(int row=0;rowrowCount(proxy_index);++row) - recursRestoreExpandedItems_idTreeView(proxy_index.child(row,0),local_path,expanded,selected) ; - } - - if(selected.find(local_path) != selected.end()) - { -#ifdef DEBUG_ID_DIALOG - std::cerr << "Restoring selected path "; - for(auto L:local_path) std::cerr << "\"" << L.toStdString() << "\" " ; std::cerr << std::endl; -#endif - ui->idTreeWidget->selectionModel()->select(proxy_index, QItemSelectionModel::Current|QItemSelectionModel::Select | QItemSelectionModel::Rows); - } -} - -void IdDialog::sortColumn(int col,Qt::SortOrder so) -{ -#ifdef DEBUG_NEW_FRIEND_LIST - std::cerr << "Sorting with column=" << col << " and order=" << so << std::endl; -#endif - std::set expanded_indexes,selected_indexes; - - saveExpandedPathsAndSelection_idTreeView(expanded_indexes, selected_indexes); - whileBlocking(ui->idTreeWidget)->clearSelection(); - - mProxyModel->setSortingEnabled(true); - mProxyModel->sort(col,so); - mProxyModel->setSortingEnabled(false); - - restoreExpandedPathsAndSelection_idTreeView(expanded_indexes,selected_indexes); - - //if(selected_index.isValid()) - // ui->peerTreeWidget->scrollTo(selected_index); - - mLastSortColumn = col; - mLastSortOrder = so; -} diff --git a/retroshare-gui/src/gui/Identity/IdDialog.h b/retroshare-gui/src/gui/Identity/IdDialog.h index d4629a5af..403b3a437 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.h +++ b/retroshare-gui/src/gui/Identity/IdDialog.h @@ -22,10 +22,8 @@ #define IDENTITYDIALOG_H #include "gui/gxs/RsGxsUpdateBroadcastPage.h" -#include "util/FontSizeHandler.h" -#include "retroshare/rsidentity.h" -#include "IdentityListModel.h" +#include #include @@ -36,11 +34,7 @@ class IdDialog; } class UIStateHelper; -class QStyledItemDelegate; class QTreeWidgetItem; -class RsIdentityListModel; -class IdListSortFilterProxyModel; -class QItemSelection; class IdDialog : public MainPage { @@ -64,7 +58,6 @@ protected: void loadIdentity(RsGxsIdGroup id_data); void loadCircles(const std::list& circle_metas); - void updateIdListRequest(); //void requestCircleGroupData(const RsGxsCircleId& circle_id); bool getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) ; @@ -73,13 +66,13 @@ protected: private slots: - void updateIdList(); - void updateCircles(); - void createExternalCircle(); + void updateIdList(); + void updateCircles(); + + void createExternalCircle(); void showEditExistingCircle(); void updateCirclesDisplay(); void toggleAutoBanIdentities(bool b); - void sortColumn(int col,Qt::SortOrder so); void acceptCircleSubscription() ; void cancelCircleSubscription() ; @@ -93,20 +86,17 @@ private slots: void removeIdentity(); void editIdentity(); void chatIdentity(); - void chatIdentityItem(const QModelIndex &indx); - void chatIdentity(const RsGxsId& toGxsId); - void sendMsg(); + void chatIdentityItem(QTreeWidgetItem* item); + void sendMsg(); void copyRetroshareLink(); void on_closeInfoFrameButton_Invite_clicked(); - void updateSelection(const QItemSelection &new_sel, const QItemSelection &old_sel); + void updateSelection(); void modifyReputation(); /** Create the context popup menu and it's submenus */ void IdListCustomPopupMenu( QPoint point ); - void headerContextMenuRequested(QPoint); - void toggleColumnVisible(); void CircleListCustomPopupMenu(QPoint point) ; #ifdef SUSPENDED @@ -127,12 +117,7 @@ private: void processSettings(bool load); QString createUsageString(const RsIdentityUsage& u) const; - void saveExpandedPathsAndSelection_idTreeView(std::set &expanded, std::set &selected); - void restoreExpandedPathsAndSelection_idTreeView(const std::set& expanded, const std::set& selelected); - void recursSaveExpandedItems_idTreeView(const QModelIndex& index, const QStringList& parent_path, std::set& expanded, std::set& selected); - void recursRestoreExpandedItems_idTreeView(const QModelIndex& index,const QStringList& parent_path,const std::set& expanded,const std::set& selected); - - void requestIdData(std::list &ids); + void requestIdData(std::list &ids); bool fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept); void insertIdList(uint32_t token); void filterIds(); @@ -149,32 +134,20 @@ private: private: UIStateHelper *mStateHelper; + QTreeWidgetItem *contactsItem; + QTreeWidgetItem *allItem; + QTreeWidgetItem *ownItem; QTreeWidgetItem *mExternalBelongingCircleItem; QTreeWidgetItem *mExternalOtherCircleItem; QTreeWidgetItem *mMyCircleItem; RsGxsUpdateBroadcastBase *mCirclesBroadcastBase ; - int mLastSortColumn; - Qt::SortOrder mLastSortOrder; - - void saveExpandedCircleItems(std::vector &expanded_root_items, std::set& expanded_circle_items) const; + void saveExpandedCircleItems(std::vector &expanded_root_items, std::set& expanded_circle_items) const; void restoreExpandedCircleItems(const std::vector& expanded_root_items,const std::set& expanded_circle_items); - void applyWhileKeepingTree(std::function predicate); - - RsGxsId getSelectedIdentity() const; - std::list getSelectedIdentities() const; - - RsGxsGroupId mId; + RsGxsGroupId mId; RsGxsGroupId mIdToNavigate; int filter; - bool mColumnSizeAlreadySet; // remembers if we already did some size set. If not, automatically stretch to content. - - QStyledItemDelegate *mElidedLabelDelegate; - QStyledItemDelegate *mReputationDelegate; - - RsIdentityListModel *mIdListModel; - IdListSortFilterProxyModel *mProxyModel; void handleEvent_main_thread(std::shared_ptr event); RsEventsHandlerId_t mEventHandlerId_identity; @@ -184,8 +157,6 @@ private: bool needUpdateIdsOnNextShow; bool needUpdateCirclesOnNextShow; - FontSizeHandler mFontSizeHandler; - /* UI - Designer */ Ui::IdDialog *ui; }; diff --git a/retroshare-gui/src/gui/Identity/IdDialog.ui b/retroshare-gui/src/gui/Identity/IdDialog.ui index 37522524e..ff3775aee 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.ui +++ b/retroshare-gui/src/gui/Identity/IdDialog.ui @@ -6,7 +6,7 @@ 0 0 - 878 + 800 584 @@ -127,7 +127,7 @@ Qt::NoFocus - + :/icons/help_64.png:/icons/help_64.png @@ -154,10 +154,10 @@ - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -173,11 +173,7 @@ 1 - - - Search... - - + @@ -215,13 +211,18 @@ - + 0 0 + + + 11 + + Qt::CustomContextMenu @@ -240,9 +241,39 @@ true - - true + + false + + + Persons + + + + + Identity ID + + + + + Owned by + + + + + + + + Votes + + + AlignLeading|AlignVCenter + + + + :/icons/flag-green.png:/icons/flag-green.png + + @@ -270,206 +301,268 @@ 0 0 - 535 - 784 + 456 + 731 - - - - - 3 - - - - - - - - 0 - 0 - - - - - 128 - 128 - - - - - 128 - 128 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - Your Avatar - - - true - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Edit Identity - - - - - - - - 0 - 0 - - - - Send Invite - - - - - - - - - 6 - - - 2 - - - - - - 34 - 34 - - - - - - - :/icons/png/thumbs-up.png - - - true - - - - - - - - 16 - - - - Positive votes - - - 0 - - - - - - - Qt::Vertical - - - - - - - - 34 - 34 - - - - - - - :/icons/png/thumbs-down.png - - - true - - - - - - - - 16 - - - - Negative votes - - - 0 - - - - - - - - - Qt::Vertical - - - - 118 - 17 - - - - - - - - - - - 22 - - - - People - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - + + + - + 0 0 + + QFrame::StyledPanel + + + QFrame::Raised + + + + 12 + + + + + + + + 22 + + + + People + + + + + + + + 0 + 0 + + + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 255 + 255 + 178 + + + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 255 + 255 + 178 + + + + + + + + + 154 + 154 + 154 + + + + + + + 255 + 255 + 178 + + + + + + + 255 + 255 + 178 + + + + + + + + true + + + + + + QFrame::Box + + + + 6 + + + 6 + + + 6 + + + 6 + + + + + + 16 + 16 + + + + + + + :/images/info16.png + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + Invite messages stay into your Outbox until an acknowledgement of receipt has been received. + + + true + + + + + + + + 16 + 16 + + + + Qt::NoFocus + + + Close + + + QToolButton +{ + border-image: url(:/images/closenormal.png) +} + +QToolButton:hover +{ +border-image: url(:/images/closehover.png) +} + +QToolButton:pressed { +border-image: url(:/images/closepressed.png) +} + + + true + + + + + + + + + + + + + 0 + 0 + + + + + 64 + 64 + + + + + 1000 + 1000 + + + + + + + + + + true + + + + + + + + 0 @@ -477,136 +570,27 @@ - + Identity info - - 9 - - - - - Auto-Ban all identities signed by the same node - - - Auto-Ban profile - - - - - - - <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> - - - true - - - - - - - Ban-option: - - - - - - - true - - - - - - - true - - - - - - - Identity ID : - - - - - - - Last used: - - - - - - - Qt::Horizontal - - - - + Owner node ID : - - - - Created on : - - - - - - - Friend votes: - - - true - - - - - - - Type: - - - - - - - true + + + + <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> true - - - - Your opinion: - - - - - - - Qt::Vertical - - - - 20 - 1 - - - - - + true @@ -616,7 +600,249 @@ - + + + + 0 + + + + + + 0 + 0 + + + + + 128 + 128 + + + + + 128 + 128 + + + + QFrame::Box + + + QFrame::Sunken + + + Your Avatar + + + true + + + Qt::AlignCenter + + + + + + + Send Invite + + + + + + + Edit Identity + + + + + + + 6 + + + 2 + + + + + + 34 + 34 + + + + + + + :/icons/png/thumbs-up.png + + + true + + + + + + + + 16 + + + + Positive votes + + + 0 + + + + + + + Qt::Vertical + + + + + + + + 34 + 34 + + + + + + + :/icons/png/thumbs-down.png + + + true + + + + + + + + 16 + + + + Negative votes + + + 0 + + + + + + + + + Qt::Vertical + + + + 118 + 17 + + + + + + + + + + true + + + + + + + Type: + + + + + + + + 75 + true + + + + Overall: + + + + + + + Last used: + + + + + + + Identity ID : + + + + + + + Created on : + + + + + + + Owner node name : + + + + + + + Ban-option: + + + + + + + Your opinion: + + + + + + + <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> + + + true + + + + + + + true + + + + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> @@ -656,24 +882,24 @@ - - - - <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> - - - true - - - - - + + - Owner node name : + Identity name : - + + + + Auto-Ban all identities signed by the same node + + + Auto-Ban profile + + + + true @@ -683,209 +909,43 @@ - + true - - - - - 75 - true - - + + - Overall: + Friend votes: - - - - - - - - 0 - 0 - - - - - - - - - 0 - 0 - 0 - - - - - - - 255 - 255 - 255 - - - - - - - 255 - 255 - 178 - - - - - - - - - 0 - 0 - 0 - - - - - - - 255 - 255 - 255 - - - - - - - 255 - 255 - 178 - - - - - - - - - 154 - 154 - 154 - - - - - - - 255 - 255 - 178 - - - - - - - 255 - 255 - 178 - - - - - - - - true - - - - - - QFrame::Box - - - - 6 - - - 6 - - - 6 - - - 6 - - - - - - 16 - 16 - + + + + true - - - - - :/images/info16.png - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - - - - Invite messages stay into your Outbox until an acknowledgement of receipt has been received. - - + true - - - - - 16 - 16 - + + + + Qt::Horizontal - - Qt::NoFocus + + + + + + true - - Close - - - QToolButton -{ - border-image: url(:/images/closenormal.png) -} - -QToolButton:hover -{ -border-image: url(:/images/closehover.png) -} - -QToolButton:pressed { -border-image: url(:/images/closepressed.png) -} - - + true @@ -893,7 +953,7 @@ border-image: url(:/images/closepressed.png) - + Usage statistics @@ -905,7 +965,7 @@ border-image: url(:/images/closepressed.png) - + Qt::Vertical @@ -919,6 +979,9 @@ border-image: url(:/images/closepressed.png) + detailsGroupBox + usageStatisticsGBox + headerBFramePerson
@@ -987,6 +1050,11 @@ border-image: url(:/images/closepressed.png) + + + 11 + + Qt::CustomContextMenu @@ -1047,18 +1115,22 @@ border-image: url(:/images/closepressed.png) LineEditClear QLineEdit -
gui/common/LineEditClear.h
+
gui/common/LineEditClear.h
- RSComboBox - QComboBox -
gui/common/RSComboBox.h
+ RSTreeWidget + QTreeWidget +
gui/common/RSTreeWidget.h
ElidedLabel QLabel
gui/common/ElidedLabel.h
- 1 +
+ + RSComboBox + QComboBox +
gui/common/RSComboBox.h
RSTextBrowser @@ -1070,8 +1142,8 @@ border-image: url(:/images/closepressed.png) idTreeWidget - + diff --git a/retroshare-gui/src/gui/Identity/IdEditDialog.cpp b/retroshare-gui/src/gui/Identity/IdEditDialog.cpp index 7e5544413..ac9965d2a 100644 --- a/retroshare-gui/src/gui/Identity/IdEditDialog.cpp +++ b/retroshare-gui/src/gui/Identity/IdEditDialog.cpp @@ -703,7 +703,7 @@ void IdEditDialog::updateInterface() const QPixmap *pixmap = ui->avatarLabel->pixmap(); if (pixmap && !pixmap->isNull()) { ui->removeButton->setEnabled(true); - } else if (mEditGroup.mImage.mSize > 0) { + } else if (mEditGroup.mImage.mSize != NULL) { ui->removeButton->setEnabled(true); } else { ui->removeButton->setEnabled(false); diff --git a/retroshare-gui/src/gui/Identity/IdentityListModel.cpp b/retroshare-gui/src/gui/Identity/IdentityListModel.cpp deleted file mode 100644 index b55d9c160..000000000 --- a/retroshare-gui/src/gui/Identity/IdentityListModel.cpp +++ /dev/null @@ -1,968 +0,0 @@ -/******************************************************************************* - * retroshare-gui/src/gui/msgs/RsFriendListModel.cpp * - * * - * Copyright 2019 by Cyril Soler * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#include - -#include -#include -#include -#include -#include -#include -#include - -#include "gui/common/AvatarDefs.h" -#include "util/qtthreadsutils.h" -#include "util/HandleRichText.h" -#include "util/DateTime.h" -#include "gui/gxs/GxsIdDetails.h" -#include "retroshare/rsexpr.h" - -#include "IdentityListModel.h" - -//#define DEBUG_MODEL -//#define DEBUG_MODEL_INDEX - -std::ostream& operator<<(std::ostream& o, const QModelIndex& i);// defined elsewhere - -const QString RsIdentityListModel::FilterString("filtered"); - -const uint32_t MAX_INTERNAL_DATA_UPDATE_DELAY = 300 ; // re-update the internal data every 5 mins. Should properly cover sleep/wake-up changes. -const uint32_t MAX_NODE_UPDATE_DELAY = 10 ; // re-update the internal data every 5 mins. Should properly cover sleep/wake-up changes. - -static const uint32_t ID_DETAILS_UPDATE_DELAY = 5; // update each node every 5 secs. - -RsIdentityListModel::RsIdentityListModel(QObject *parent) - : QAbstractItemModel(parent) - , mLastInternalDataUpdate(0), mLastNodeUpdate(0) -{ - mFontSize = QApplication::font().pointSize(); - - mFilterStrings.clear(); - mIdentityUpdateTimer = new QTimer(); - connect(mIdentityUpdateTimer,SIGNAL(timeout()),this,SLOT(timerUpdate())); -} - -void RsIdentityListModel::timerUpdate() -{ - emit dataChanged(index(0,0,QModelIndex()),index(2,0,QModelIndex())); -} -RsIdentityListModel::EntryIndex::EntryIndex() - : type(ENTRY_TYPE_INVALID),category_index(0),identity_index(0) -{ -} - -// The index encodes the whole hierarchy of parents. This allows to very efficiently compute indices of the parent of an index. -// -// On 32 bits and 64 bits architectures the format is the following: -// -// 0x [2 bits] 00000 [24 bits] [2 bits] -// | | | -// | | +-------------- type (0=top level, 1=category, 2=identity) -// | +----------------------- identity index -// +-------------------------------------- category index -// - -bool RsIdentityListModel::convertIndexToInternalId(const EntryIndex& e,quintptr& id) -{ - // the internal id is set to the place in the table of items. We simply shift to allow 0 to mean something special. - - if(e.type == ENTRY_TYPE_INVALID) - { - RsErr() << "ERROR: asked for the internal id of an invalid EntryIndex" ; - id = 0; - return true; - } - if(bool(e.identity_index >> 24)) - { - RsErr() << "Cannot encode more than 2^24 identities. Somthing's wrong. e.identity_index = " << std::hex << e.identity_index << std::dec ; - id = 0; - return false; - } - - id = ((0x3 & (uint32_t)e.category_index) << 30) + ((uint32_t)e.identity_index << 2) + (0x3 & (uint32_t)e.type); - - return true; -} -bool RsIdentityListModel::convertInternalIdToIndex(quintptr ref,EntryIndex& e) -{ - // Compatible with ref=0 since it will cause type=TOP_LEVEL - - e.type = static_cast((ref >> 0) & 0x3) ;// 2 bits - e.identity_index = (ref >> 2) & 0xffffff;// 24 bits - e.category_index = (ref >> 30) & 0x3 ;// 2 bits - - return true; -} - -static QIcon createAvatar(const QPixmap &avatar, const QPixmap &overlay) -{ - int avatarWidth = avatar.width(); - int avatarHeight = avatar.height(); - - QPixmap pixmap(avatar); - - int overlaySize = (avatarWidth > avatarHeight) ? (avatarWidth/2.5) : (avatarHeight/2.5); - int overlayX = avatarWidth - overlaySize; - int overlayY = avatarHeight - overlaySize; - - QPainter painter(&pixmap); - painter.drawPixmap(overlayX, overlayY, overlaySize, overlaySize, overlay); - - QIcon icon; - icon.addPixmap(pixmap); - return icon; -} - -void RsIdentityListModel::preMods() -{ - emit layoutAboutToBeChanged(); -} -void RsIdentityListModel::postMods() -{ - emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(rowCount()-1,columnCount()-1,(void*)NULL)); - emit layoutChanged(); -} - -int RsIdentityListModel::rowCount(const QModelIndex& parent) const -{ - if(parent.column() >= COLUMN_THREAD_NB_COLUMNS) - return 0; - - EntryIndex index; - - if(!parent.isValid() || !convertInternalIdToIndex(parent.internalId(),index)) - return mCategories.size(); - - switch(index.type) - { - case ENTRY_TYPE_CATEGORY: return mCategories[index.category_index].child_identity_indices.size(); - case ENTRY_TYPE_TOP_LEVEL: return mCategories.size(); - default: - return 0; - } -} - -int RsIdentityListModel::columnCount(const QModelIndex &/*parent*/) const -{ - return COLUMN_THREAD_NB_COLUMNS ; -} - -bool RsIdentityListModel::hasChildren(const QModelIndex &parent) const -{ - if(!parent.isValid()) - return true; - - EntryIndex parent_index ; - convertInternalIdToIndex(parent.internalId(),parent_index); - - if(parent_index.type == ENTRY_TYPE_TOP_LEVEL) - return true; - - if(parent_index.type == ENTRY_TYPE_IDENTITY) - return false; - - if(parent_index.type == ENTRY_TYPE_CATEGORY) - return !mCategories[parent_index.category_index].child_identity_indices.empty(); - - return false; -} - -RsIdentityListModel::EntryIndex RsIdentityListModel::EntryIndex::parent() const -{ - EntryIndex i(*this); - - switch(type) - { - case ENTRY_TYPE_CATEGORY: i.type = ENTRY_TYPE_TOP_LEVEL; - i.category_index = 0; - i.identity_index = 0; - break; - - case ENTRY_TYPE_IDENTITY: i.type = ENTRY_TYPE_CATEGORY; - i.identity_index = 0; - break; - case ENTRY_TYPE_TOP_LEVEL: - std::cerr << "ERROR: calling parent() on entryindex with no parent!" << std::endl; - - default: - //Can be when request root index. - break; - } - - return i; -} - -RsIdentityListModel::EntryIndex RsIdentityListModel::EntryIndex::child(int row) const -{ - EntryIndex i; - - switch(type) - { - case ENTRY_TYPE_TOP_LEVEL: - i.type = ENTRY_TYPE_CATEGORY; - i.category_index = row; - i.identity_index = 0; - - break; - - case ENTRY_TYPE_CATEGORY: i.type = ENTRY_TYPE_IDENTITY; - i.category_index = category_index; - i.identity_index = row; - break; - - case ENTRY_TYPE_IDENTITY: i = EntryIndex(); - std::cerr << "ERROR: calling child() on entryindex with no children!" << std::endl; - default: - break; - } - - return i; - -} -uint32_t RsIdentityListModel::EntryIndex::parentRow() const -{ - switch(type) - { - default: - case ENTRY_TYPE_TOP_LEVEL: return -1; - case ENTRY_TYPE_CATEGORY : return -1; - case ENTRY_TYPE_IDENTITY : return category_index; - } -} - -QModelIndex RsIdentityListModel::index(int row, int column, const QModelIndex& parent) const -{ - if(row < 0 || column < 0 || column >= columnCount(parent) || row >= rowCount(parent)) - return QModelIndex(); - - EntryIndex parent_index ; - convertInternalIdToIndex(parent.internalId(),parent_index); -#ifdef DEBUG_MODEL_INDEX - RsDbg() << "Index row=" << row << " col=" << column << " parent=" << parent << std::endl; -#endif - - quintptr ref; - EntryIndex new_index = parent_index.child(row); - convertIndexToInternalId(new_index,ref); - -#ifdef DEBUG_MODEL_INDEX - RsDbg() << " returning " << createIndex(row,column,ref) << std::endl; -#endif - - return createIndex(row,column,ref); -} - -QModelIndex RsIdentityListModel::parent(const QModelIndex& index) const -{ - if(!index.isValid()) - return QModelIndex(); - - EntryIndex I ; - convertInternalIdToIndex(index.internalId(),I); - - EntryIndex p = I.parent(); - - if(p.type == ENTRY_TYPE_TOP_LEVEL) - return QModelIndex(); - - quintptr i; - convertIndexToInternalId(p,i); - - return createIndex(I.parentRow(),0,i); -} - -Qt::ItemFlags RsIdentityListModel::flags(const QModelIndex& index) const -{ - if (!index.isValid()) - return Qt::ItemFlags(); - - return QAbstractItemModel::flags(index); -} - -QVariant RsIdentityListModel::headerData(int section, Qt::Orientation /*orientation*/, int role) const -{ - if(role == Qt::DisplayRole) - switch(section) - { - case COLUMN_THREAD_NAME: return tr("Name"); - case COLUMN_THREAD_ID: return tr("Id"); - case COLUMN_THREAD_REPUTATION: return QVariant(); - case COLUMN_THREAD_OWNER_ID: return tr("Owner Id"); - case COLUMN_THREAD_OWNER_NAME: return tr("Owner"); - default: - return QVariant(); - } - if(role == Qt::DecorationRole && section == COLUMN_THREAD_REPUTATION) - return QIcon(":/icons/flag-green.png"); - - return QVariant(); -} - -QVariant RsIdentityListModel::data(const QModelIndex &index, int role) const -{ -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << "calling data(" << index << ") role=" << role << std::endl; -#endif - - if(!index.isValid()) - return QVariant(); - - quintptr ref = (index.isValid())?index.internalId():0 ; - -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << "data(" << index << ")" ; -#endif - - if(!ref) - { -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << " [empty]" << std::endl; -#endif - return QVariant() ; - } - - EntryIndex entry; - - if(!convertInternalIdToIndex(ref,entry)) - { -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << "Bad pointer: " << (void*)ref << std::endl; -#endif - return QVariant() ; - } - - switch(role) - { - case Qt::SizeHintRole: return sizeHintRole(entry,index.column()) ; - case Qt::DisplayRole: return displayRole(entry,index.column()) ; - case Qt::FontRole: return fontRole(entry,index.column()) ; - case Qt::ForegroundRole: return foregroundRole(entry,index.column()) ; - case Qt::DecorationRole: return decorationRole(entry,index.column()) ; - - case FilterRole: return filterRole(entry,index.column()) ; - case SortRole: return sortRole(entry,index.column()) ; - case TreePathRole: return treePathRole(entry,index.column()) ; - - default: - return QVariant(); - } -} - -bool RsIdentityListModel::passesFilter(const EntryIndex& e,int /*column*/) const -{ - QString s ; - - if(mFilterStrings.empty() || e.type != ENTRY_TYPE_IDENTITY) - return true; - - auto passes_strings = [&](const QString& s) -> bool { - bool res = true; - - for(auto iter(mFilterStrings.begin()); iter != mFilterStrings.end(); ++iter) - res = res && s.contains(*iter,Qt::CaseInsensitive); - - return res; - }; - - if((mFilterType & FilterType::FILTER_TYPE_ID) && passes_strings(displayRole(e,COLUMN_THREAD_ID ).toString())) return true; - if((mFilterType & FilterType::FILTER_TYPE_NAME) && passes_strings(displayRole(e,COLUMN_THREAD_NAME ).toString())) return true; - if((mFilterType & FilterType::FILTER_TYPE_OWNER_ID) && passes_strings(displayRole(e,COLUMN_THREAD_OWNER_ID ).toString())) return true; - if((mFilterType & FilterType::FILTER_TYPE_OWNER_NAME) && passes_strings(displayRole(e,COLUMN_THREAD_OWNER_NAME).toString())) return true; - - return false; -} - -QVariant RsIdentityListModel::filterRole(const EntryIndex& e,int column) const -{ - if(passesFilter(e,column)) - return QVariant(FilterString); - - return QVariant(QString()); -} - -uint32_t RsIdentityListModel::updateFilterStatus(ForumModelIndex /*i*/,int /*column*/,const QStringList& /*strings*/) -{ - return 0; -} - - -void RsIdentityListModel::setFilter(uint8_t filter_type, const QStringList& strings) -{ -#ifdef DEBUG_MODEL - std::cerr << "Setting filter to filter_type=" << int(filter_type) << " and strings to " ; - foreach(const QString& str,strings) - std::cerr << "\"" << str.toStdString() << "\" " ; - std::cerr << std::endl; -#endif - - preMods(); - - mFilterType = filter_type; - mFilterStrings = strings; - - postMods(); -} - -QVariant RsIdentityListModel::toolTipRole(const EntryIndex& fmpe,int /*column*/) const -{ - switch(fmpe.type) - { - case ENTRY_TYPE_IDENTITY: - { - auto id_info = getIdentityInfo(fmpe); - - if(!id_info) - return QVariant(); - - if(id_info->flags & RS_IDENTITY_FLAGS_IS_DEPRECATED) - return QVariant( tr("\nThis identity has a insecure fingerprint (It's probably quite old).\nYou should get rid of it now and use a new one.\nThese identities are not supported anymore.") ) ; - - if(rsIdentity->isOwnId(id_info->id)) - return QVariant(tr("This identity is owned by you")); - - if(id_info->owner.isNull()) - return QVariant("Anonymous identity"); - else - { - RsPeerDetails dd; - if(rsPeers->getGPGDetails(id_info->owner,dd)) - return QVariant(tr("Identity owned by profile")+" \""+ QString::fromUtf8(dd.name.c_str()) +"\" ("+QString::fromStdString(id_info->owner.toStdString())); - else - return QVariant(tr("Identity possibly owned by unknown profile")+" \""+ QString::fromUtf8(dd.name.c_str()) +"\" ("+QString::fromStdString(id_info->owner.toStdString())); - } - } - - break; - case ENTRY_TYPE_CATEGORY: ; // fallthrough - default: - return QVariant(); - } -} - -QVariant RsIdentityListModel::sizeHintRole(const EntryIndex& e,int col) const -{ - float x_factor = QFontMetricsF(QApplication::font()).height()/14.0f ; - float y_factor = QFontMetricsF(QApplication::font()).height()/14.0f ; - - if(e.type == ENTRY_TYPE_IDENTITY) - y_factor *= 1.0; - - if(e.type == ENTRY_TYPE_CATEGORY) - y_factor *= 1.5; - - std::cerr << "sizeHintRole()" << std::endl; - switch(col) - { - default: - case COLUMN_THREAD_REPUTATION: return QVariant( QSize(x_factor * 14 , y_factor*14*1.1f )); - - case COLUMN_THREAD_NAME: - case COLUMN_THREAD_ID: - case COLUMN_THREAD_OWNER_NAME: - case COLUMN_THREAD_OWNER_ID: return QFontMetricsF(QApplication::font()).boundingRect(displayRole(e,col).toString()).size(); - } -} - -QString RsIdentityListModel::indexIdentifier(QModelIndex index) -{ - quintptr ref = (index.isValid())?index.internalId():0 ; - -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << "data(" << index << ")" ; -#endif - - if(!ref) - { -#ifdef DEBUG_MESSAGE_MODEL - std::cerr << " [empty]" << std::endl; -#endif - return QString(); - } - - EntryIndex entry; - if(!convertInternalIdToIndex(ref,entry)) - return QString(); - - return treePathRole(entry,0).toString(); -} -QVariant RsIdentityListModel::treePathRole(const EntryIndex& entry,int /*column*/) const -{ - if(entry.type == ENTRY_TYPE_CATEGORY) - return QString::number((int)entry.category_index); - else - return QString::fromStdString(mIdentities[mCategories[entry.category_index].child_identity_indices[entry.identity_index]].id.toStdString()); -} -QVariant RsIdentityListModel::sortRole(const EntryIndex& entry,int column) const -{ - switch(column) - { - case COLUMN_THREAD_REPUTATION: return decorationRole(entry,column); - - case COLUMN_THREAD_ID: - case COLUMN_THREAD_OWNER_ID: - case COLUMN_THREAD_OWNER_NAME: - case COLUMN_THREAD_NAME: [[__fallthrough__]]; - default: - return displayRole(entry,column); - } -} - -QModelIndex RsIdentityListModel::getIndexOfIdentity(const RsGxsId& id) const -{ - for(uint i=0;iflags & RS_IDENTITY_FLAGS_IS_DEPRECATED) - return QVariant(QColor(Qt::red)); - - return QVariant(); -} -QVariant RsIdentityListModel::fontRole(const EntryIndex& e, int /*col*/) const -{ - QFont f; - f.setPointSize(mFontSize); - - auto it = getIdentityInfo(e); - - if(it) - { - RsGxsId id(it->id); - - if(rsIdentity->isOwnId(id)) - f.setBold(true); - } - - return QVariant(f); -} -void RsIdentityListModel::setFontSize(int s) -{ - if(s != mFontSize) - { - mFontSize = s; - emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL)); - } -} - -#ifdef DEBUG_MODEL_INDEX - std::cerr << " font role " << e.type << ", (" << (int)e.group_index << ","<< (int)e.profile_index << ","<< (int)e.node_index << ") col="<< col<<": " << std::endl; -#endif - -#ifdef TODO - int status = onlineRole(e,col).toInt(); - - switch (status) - { - case RS_STATUS_INACTIVE: - { - QFont font ; - QTreeView* myParent = dynamic_cast(QAbstractItemModel::parent()); - if (myParent) - font = myParent->font(); - - font.setBold(true); - - return QVariant(font); - } - default: - return QVariant(); - } -#endif - -QVariant RsIdentityListModel::displayRole(const EntryIndex& e, int col) const -{ -#ifdef DEBUG_MODEL_INDEX - std::cerr << " Display role " << e.type << ", (" << (int)e.group_index << ","<< (int)e.profile_index << ","<< (int)e.node_index << ") col="<< col<<": "; -#endif - - switch(e.type) - { - case ENTRY_TYPE_CATEGORY: - { - const HierarchicalCategoryInformation *cat = getCategoryInfo(e); - - if(!cat) - return QVariant(); - - switch(col) - { - case COLUMN_THREAD_NAME: -#ifdef DEBUG_MODEL_INDEX - std::cerr << group->group_info.name.c_str() ; -#endif - - if(!cat->child_identity_indices.empty()) - return QVariant(cat->category_name+" (" + QString::number(cat->child_identity_indices.size()) + ")"); - else - return QVariant(cat->category_name); - - default: - return QVariant(); - } - } - break; - - case ENTRY_TYPE_IDENTITY: - { - const HierarchicalIdentityInformation *idinfo = getIdentityInfo(e); - const QString loading_string = "["+tr("Loading...")+"]"; - -#ifdef DEBUG_MODEL_INDEX - std::cerr << profile->profile_info.name.c_str() ; -#endif - if(col == COLUMN_THREAD_ID) return QVariant(QString::fromStdString(idinfo->id.toStdString()) ); - if(col == COLUMN_THREAD_REPUTATION) return QVariant(); - - if(idinfo->nickname.empty()) - return loading_string; - - switch(col) - { - case COLUMN_THREAD_NAME: return QVariant(QString::fromUtf8(idinfo->nickname.c_str())); - case COLUMN_THREAD_OWNER_NAME: if(idinfo->owner.isNull()) - return QVariant(); - else - return QVariant(QString::fromStdString(rsPeers->getGPGName(idinfo->owner)) ); - - case COLUMN_THREAD_OWNER_ID: if(idinfo->owner.isNull()) - return QVariant(); - else - return QVariant(QString::fromStdString(idinfo->owner.toStdString()) ); - default: - return QVariant(); - } - } - break; - - default: //ENTRY_TYPE - return QVariant(); - } -} - -// This function makes sure that the internal data gets updated. They are situations where the notification system cannot -// send the information about changes, such as when the computer is put on sleep. - -void RsIdentityListModel::checkInternalData(bool force) -{ - rstime_t now = time(NULL); - - if( (mLastInternalDataUpdate + MAX_INTERNAL_DATA_UPDATE_DELAY < now) || force) - updateIdentityList(); -} - -const RsIdentityListModel::HierarchicalCategoryInformation *RsIdentityListModel::getCategoryInfo(const EntryIndex& e) const -{ - if(e.category_index >= mCategories.size()) - return NULL ; - else - return &mCategories[e.category_index]; -} - -const RsIdentityListModel::HierarchicalIdentityInformation *RsIdentityListModel::getIdentityInfo(const EntryIndex& e) const -{ - // First look into the relevant group, then for the correct profile in this group. - - if(e.type != ENTRY_TYPE_IDENTITY) - return nullptr ; - - if(e.category_index >= mCategories.size()) - return nullptr ; - - if(e.identity_index < mCategories[e.category_index].child_identity_indices.size()) - { - auto& it(mIdentities[mCategories[e.category_index].child_identity_indices[e.identity_index]]); - rstime_t now = time(nullptr); - - if(now > it.last_update_TS + ID_DETAILS_UPDATE_DELAY) - { - RsIdentityDetails det; - if(rsIdentity->getIdDetails(it.id,det)) - { - it.nickname = det.mNickname; - it.owner = det.mPgpId; - it.flags = det.mFlags; - it.last_update_TS = now; - } - } - return ⁢ - } - else - { - RsErr() << "Inconsistent identity index!" ; - return nullptr; - } -} - -QVariant RsIdentityListModel::decorationRole(const EntryIndex& entry,int col) const -{ - switch(entry.type) - { - case ENTRY_TYPE_CATEGORY: - return QVariant(); - - case ENTRY_TYPE_IDENTITY: - { - const HierarchicalIdentityInformation *hn = getIdentityInfo(entry); - - if(!hn) - return QVariant(); - - if(col == COLUMN_THREAD_REPUTATION) - return QVariant( static_cast(rsReputations->overallReputationLevel(hn->id)) ); - else if(col == COLUMN_THREAD_NAME) - { - QPixmap sslAvatar; - RsIdentityDetails details ; - - if(!rsIdentity->getIdDetails(hn->id, details)) - { - mIdentityUpdateTimer->stop(); - mIdentityUpdateTimer->setSingleShot(true); - mIdentityUpdateTimer->start(500); - return QVariant(); - } - else if(details.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(details.mAvatar.mData, details.mAvatar.mSize, sslAvatar,GxsIdDetails::LARGE)) - return QVariant(QIcon(GxsIdDetails::makeDefaultIcon(hn->id,GxsIdDetails::SMALL))); - else - return QVariant(QIcon(sslAvatar)); - } - else - return QVariant(); - } - break; - - default: - return QVariant(); - } -} - -void RsIdentityListModel::clear() -{ - preMods(); - - mIdentities.clear(); - mCategories.clear(); - - mCategories.resize(3); - mCategories[0].category_name = tr("My own identities"); - mCategories[1].category_name = tr("My contacts"); - mCategories[2].category_name = tr("All"); - - postMods(); - - emit friendListChanged(); -} - - -void RsIdentityListModel::debug_dump() const -{ - std::cerr << "==== IdentityListModel Debug dump ====" << std::endl; - - std::cerr << "Invalid index : " << QModelIndex() << std::endl; - - EntryIndex top_level; - top_level.type = ENTRY_TYPE_TOP_LEVEL; - quintptr id; - convertIndexToInternalId(top_level,id); - - std::cerr << "Top level index: " << createIndex(0,0,id) << std::endl; - EntryIndex tei; - convertInternalIdToIndex(0,tei); - std::cerr << "Top level entry index: " << tei << std::endl; - - for(uint32_t j=0;jid; - else - return RsGxsId(); -} - -RsIdentityListModel::EntryType RsIdentityListModel::getType(const QModelIndex& i) const -{ - if(!i.isValid()) - return ENTRY_TYPE_TOP_LEVEL; - - EntryIndex e; - if(!convertInternalIdToIndex(i.internalId(),e)) - return ENTRY_TYPE_TOP_LEVEL; - - return e.type; -} - -int RsIdentityListModel::getCategory(const QModelIndex& i) const -{ - if(!i.isValid()) - return CATEGORY_ALL; - - EntryIndex e; - if(!convertInternalIdToIndex(i.internalId(),e)) - return CATEGORY_ALL; - - return e.category_index; -} -void RsIdentityListModel::setIdentities(const std::list& identities_meta) -{ - preMods(); - beginResetModel(); - clear(); - - for(auto id:identities_meta) - { - HierarchicalIdentityInformation idinfo; - idinfo.id = RsGxsId(id.mGroupId); - idinfo.last_update_TS = 0;// forces update - - if(rsIdentity->isOwnId(idinfo.id)) - mCategories[CATEGORY_OWN].child_identity_indices.push_back(mIdentities.size()); - else if(rsIdentity->isARegularContact(RsGxsId(id.mGroupId))) - mCategories[CATEGORY_CTS].child_identity_indices.push_back(mIdentities.size()); - else - mCategories[CATEGORY_ALL].child_identity_indices.push_back(mIdentities.size()); - - mIdentities.push_back(idinfo); - } - - if (mCategories.size()>0) - { - beginInsertRows(QModelIndex(),0,mCategories.size()-1); - endInsertRows(); - } - - endResetModel(); - postMods(); - - mLastInternalDataUpdate = time(NULL); - -} - -void RsIdentityListModel::updateIdentityList() -{ - std::cerr << "Updating identity list" << std::endl; - - std::list ids ; - - if(!rsIdentity->getIdentitiesSummaries(ids)) - { - std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve identity metadata." << std::endl; - return; - } - - setIdentities(ids) ; - - debug_dump(); -} - - - -void RsIdentityListModel::collapseItem(const QModelIndex& index) -{ - if(getType(index) != ENTRY_TYPE_CATEGORY) - return; - - EntryIndex entry; - - if(!convertInternalIdToIndex(index.internalId(),entry)) - return; - - mExpandedCategories[entry.category_index] = false; - - // apparently we cannot be subtle here. - emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL)); -} - -void RsIdentityListModel::expandItem(const QModelIndex& index) -{ - if(getType(index) != ENTRY_TYPE_CATEGORY) - return; - - EntryIndex entry; - - if(!convertInternalIdToIndex(index.internalId(),entry)) - return; - - mExpandedCategories[entry.category_index] = true; - - // apparently we cannot be subtle here. - emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL)); -} - - - diff --git a/retroshare-gui/src/gui/Identity/IdentityListModel.h b/retroshare-gui/src/gui/Identity/IdentityListModel.h deleted file mode 100644 index 4c3cb43e2..000000000 --- a/retroshare-gui/src/gui/Identity/IdentityListModel.h +++ /dev/null @@ -1,252 +0,0 @@ -/******************************************************************************* - * retroshare-gui/src/gui/msgs/RsFriendListModel.h * - * * - * Copyright 2019 by Cyril Soler * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#pragma once - -#include -#include - -#include "retroshare/rsstatus.h" -#include "retroshare/rsmsgs.h" -#include "retroshare/rspeers.h" -#include "retroshare/rsidentity.h" - -typedef uint32_t ForumModelIndex; - -// This class is the item model used by Qt to display the information - -class QTimer; - -class RsIdentityListModel : public QAbstractItemModel -{ - Q_OBJECT - -public: - explicit RsIdentityListModel(QObject *parent = NULL); - ~RsIdentityListModel(){} - - enum Columns { - COLUMN_THREAD_NAME = 0x00, - COLUMN_THREAD_ID = 0x01, - COLUMN_THREAD_OWNER_NAME = 0x02, - COLUMN_THREAD_OWNER_ID = 0x03, - COLUMN_THREAD_REPUTATION = 0x04, - COLUMN_THREAD_NB_COLUMNS = 0x05 - }; - - enum Roles{ SortRole = Qt::UserRole+1, - StatusRole = Qt::UserRole+2, - UnreadRole = Qt::UserRole+3, - FilterRole = Qt::UserRole+4, - TreePathRole = Qt::UserRole+5, - }; - - enum FilterType{ FILTER_TYPE_NONE = 0x00, - FILTER_TYPE_ID = 0x01, - FILTER_TYPE_NAME = 0x02, - FILTER_TYPE_OWNER_NAME = 0x04, - FILTER_TYPE_OWNER_ID = 0x08 - }; - - enum EntryType{ ENTRY_TYPE_TOP_LEVEL = 0x00, - ENTRY_TYPE_CATEGORY = 0x01, - ENTRY_TYPE_IDENTITY = 0x02, - ENTRY_TYPE_INVALID = 0x03 - }; - - enum Category{ CATEGORY_OWN = 0x00, - CATEGORY_CTS = 0x01, - CATEGORY_ALL = 0x02 - }; - - struct HierarchicalCategoryInformation - { - QString category_name; - std::vector child_identity_indices; // index in the array of hierarchical profiles - }; - - // This stores all the info that is useful avoiding a call to the more expensive getIdDetails() - // - struct HierarchicalIdentityInformation - { - rstime_t last_update_TS; - RsGxsId id; - RsPgpId owner; - uint32_t flags; - std::string nickname; - }; - - // This structure encodes the position of a node in the hierarchy. The type tells which of the index fields are valid. - - struct EntryIndex - { - public: - EntryIndex(); - - EntryType type; // type of the entry (group,profile,location) - - friend std::ostream& operator<<(std::ostream& o, const EntryIndex& e) - { - o << "[" ; - switch(e.type) - { - case RsIdentityListModel::ENTRY_TYPE_INVALID: o << "Invalid," ; break; - case RsIdentityListModel::ENTRY_TYPE_CATEGORY: o << "Category," ; break; - case RsIdentityListModel::ENTRY_TYPE_IDENTITY: o << "Identity," ; break; - case RsIdentityListModel::ENTRY_TYPE_TOP_LEVEL: o << "Toplevel," ; break; - } - o << " CI: " << e.category_index << ", "; - o << " II: " << e.identity_index << "]"; - return o; - } - - // Indices w.r.t. parent. The set of indices entirely determines the position of the entry in the hierarchy. - // An index of 0xff means "undefined" - - uint16_t category_index; // index of the category in the mCategory array - uint16_t identity_index; // index of the identity in its own category - - EntryIndex parent() const; - EntryIndex child(int row) const; - uint32_t parentRow() const; - }; - - QModelIndex root() const{ return createIndex(0,0,(void*)NULL) ;} - QModelIndex getIndexOfIdentity(const RsGxsId& id) const; - QModelIndex getIndexOfCategory(Category id) const; - - void updateIdentityList(); - - int count() const { return mIdentities.size() ; } // total number of identities - - static const QString FilterString ; - - // This method will asynchroneously update the data - - EntryType getType(const QModelIndex&) const; - RsGxsId getIdentity(const QModelIndex&) const; - int getCategory(const QModelIndex&) const; - void setFontSize(int s); - - void setFilter(uint8_t filter_type, const QStringList& strings) ; - - void expandItem(const QModelIndex&) ; - void collapseItem(const QModelIndex&) ; - - // Overloaded methods from QAbstractItemModel - - int rowCount(const QModelIndex& parent = QModelIndex()) const override; - int columnCount(const QModelIndex &parent = QModelIndex()) const override; - bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; - - QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const override; - QModelIndex parent(const QModelIndex& child) const override; - Qt::ItemFlags flags(const QModelIndex& index) const override; - - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - - void clear() ; - QString indexIdentifier(QModelIndex i); - - /* Color definitions (for standard see default.qss) */ - QColor mTextColorGroup; - QColor mTextColorStatus[RS_STATUS_COUNT]; - - void setIdentities(const std::list& identities_meta); - -private: - const HierarchicalCategoryInformation *getCategoryInfo (const EntryIndex&) const; - const HierarchicalIdentityInformation *getIdentityInfo(const EntryIndex&) const; - - void checkIdentity(HierarchicalIdentityInformation& node); - - QVariant sizeHintRole (const EntryIndex& e, int col) const; - QVariant displayRole (const EntryIndex& e, int col) const; - QVariant decorationRole(const EntryIndex& e, int col) const; - QVariant toolTipRole (const EntryIndex& e, int col) const; - QVariant statusRole (const EntryIndex& e, int col) const; - QVariant sortRole (const EntryIndex& e, int col) const; - QVariant fontRole (const EntryIndex& e, int col) const; - QVariant foregroundRole(const EntryIndex& e, int col) const; - QVariant textColorRole (const EntryIndex& e, int col) const; - QVariant filterRole (const EntryIndex& e, int col) const; - QVariant treePathRole (const EntryIndex& entry,int column) const; - - /*! - * \brief debug_dump - * Dumps the hierarchy of posts in the terminal, to allow checking whether the internal representation is correct. - */ - -public slots: - void checkInternalData(bool force); - void debug_dump() const; - void timerUpdate(); - -signals: - void dataLoaded(); // emitted after the messages have been set. Can be used to updated the UI. - void friendListChanged(); // emitted after the messages have been set. Can be used to updated the UI. - void dataAboutToLoad(); - -private: - bool passesFilter(const EntryIndex &e, int column) const; - - void preMods() ; - void postMods() ; - - void *getParentRef(void *ref,int& row) const; - void *getChildRef(void *ref,int row) const; - int getChildrenCount(void *ref) const; - - static bool convertIndexToInternalId(const EntryIndex& e,quintptr& ref); - static bool convertInternalIdToIndex(quintptr ref, EntryIndex& e); - - uint32_t updateFilterStatus(ForumModelIndex i,int column,const QStringList& strings); - - QStringList mFilterStrings; - uint8_t mFilterType; - int mFontSize; - - rstime_t mLastInternalDataUpdate; - rstime_t mLastNodeUpdate;; - - // The 3 vectors below store thehierarchical information for groups, profiles and locations, - // meaning which is the child/parent of which. The actual group/profile/node data are also stored in the - // structure. - - mutable std::vector mCategories; - mutable std::vector mIdentities; - - // The top level list contains all nodes to display, which type depends on the option to display groups or not. - // Idices in the list may be profile indices or group indices. In the former case the profile child index refers to - // the inde in the mProfiles tab, whereas in the the later case, the child index refers to the index of the profile in the - // group it belows to. - - std::vector mTopLevel; - - // keeps track of expanded/collapsed items, so as to only show icon for collapsed profiles - - std::vector mExpandedCategories; - - // List of identities for which getIdDetails() failed, to be requested again. - mutable QTimer *mIdentityUpdateTimer; -}; - - diff --git a/retroshare-gui/src/gui/MainWindow.cpp b/retroshare-gui/src/gui/MainWindow.cpp index da25bc2c6..a59d76dfb 100644 --- a/retroshare-gui/src/gui/MainWindow.cpp +++ b/retroshare-gui/src/gui/MainWindow.cpp @@ -28,15 +28,9 @@ #include #include #include -#include #include #include -#include - -#if defined(Q_OS_DARWIN) -#include "gui/common/MacDockIconHandler.h" -#endif #ifdef MESSENGER_WINDOW #include "MessengerWindow.h" @@ -120,7 +114,7 @@ #include "gui/statistics/StatisticsWindow.h" #include "gui/connect/ConnectFriendWizard.h" -#include "gui/common/RsCollectionDialog.h" +#include "gui/common/RsCollection.h" #include "settings/rsettingswin.h" #include "settings/rsharesettings.h" #include "common/StatusDefs.h" @@ -212,7 +206,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags) hiddenmode = true; } - setWindowTitle(tr("RetroShare %1 a secure decentralized communication platform").arg(RsApplication::retroshareVersion(true)) + " - " + nameAndLocation); + setWindowTitle(tr("RetroShare %1 a secure decentralized communication platform").arg(Rshare::retroshareVersion(true)) + " - " + nameAndLocation); connect(rApp, SIGNAL(newArgsReceived(QStringList)), this, SLOT(receiveNewArgs(QStringList))); /* add url handler for RetroShare links */ @@ -360,8 +354,6 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags) connect(NotifyQt::getInstance(), SIGNAL(settingsChanged()), this, SLOT(settingsChanged())); settingsChanged(); - - mFontSizeHandler.registerFontSize(ui->listWidget, 1.5f); } /** Destructor. */ @@ -385,11 +377,6 @@ MainWindow::~MainWindow() delete sysTrayStatus; delete trayIcon; delete trayMenu; -#if defined(Q_OS_DARWIN) - delete menuBar; - delete dockMenu; - MacDockIconHandler::cleanup(); -#endif // delete notifyMenu; // already deleted by the deletion of trayMenu StatisticsWindow::releaseInstance(); @@ -566,11 +553,6 @@ void MainWindow::addPage(MainPage *page, QActionGroup *grp, QListiconPixmap()),page->pageName()) ; ui->listWidget->addItem(item) ; -#if defined(Q_OS_DARWIN) - QFont f = ui->toolBarPage->font(); - action->setFont(f); -#endif - if (notify) { QPair pair = QPair( action, item); @@ -669,75 +651,10 @@ void MainWindow::createTrayIcon() trayIcon->setContextMenu(trayMenu); trayIcon->setIcon(QIcon(IMAGE_NOONLINE)); -#if defined(Q_OS_DARWIN) - // Note: On macOS, the Dock icon is used to provide the tray's functionality. - MacDockIconHandler* dockIconHandler = MacDockIconHandler::instance(); - connect(dockIconHandler, &MacDockIconHandler::dockIconClicked, [this] { - show(); - activateWindow(); - }); -#endif - -#if defined(Q_OS_DARWIN) - createMenuBar(); -#endif - connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(toggleVisibility(QSystemTrayIcon::ActivationReason))); trayIcon->show(); } -#if defined(Q_OS_DARWIN) -/** Creates a new menubar for macOS */ -void MainWindow::createMenuBar() -{ - /* Mac users sure like their shortcuts. */ - actionMinimize = new QAction(tr("Minimize"),this); - actionMinimize->setShortcutContext(Qt::ApplicationShortcut); - actionMinimize->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_M)); - actionMinimize->setShortcutVisibleInContextMenu(true); - connect(actionMinimize,SIGNAL(triggered()),this,SLOT(minimizeWindow())) ; - - actionCloseWindow = new QAction(tr("Close window"),this); - actionCloseWindow->setShortcutContext(Qt::ApplicationShortcut); - actionCloseWindow->setShortcut(QKeySequence::Close); - actionCloseWindow->setShortcutVisibleInContextMenu(true); - connect(actionCloseWindow,SIGNAL(triggered()),this,SLOT(closeWindow())) ; - - menuBar = new QMenuBar(this); - QMenu *fileMenu = menuBar->addMenu(""); - fileMenu->addAction(actionMinimize); - fileMenu->addAction(actionCloseWindow); - - dockMenu = new QMenu(this); - dockMenu->setAsDockMenu(); - dockMenu->addAction(tr("Open Messages"), this, SLOT(showMess())); - dockMenu->addAction(tr("Bandwidth Graph"), this, SLOT(showBandwidthGraph())); - dockMenu->addAction(tr("Statistics"), this, SLOT(showStatisticsWindow())); - dockMenu->addAction(tr("Options"), this, SLOT(showSettings())); - dockMenu->addAction(tr("Help"), this, SLOT(showHelpDialog())); - - dockMenu->addSeparator(); - QMenu *statusMenu = dockMenu->addMenu(tr("Status")); - initializeStatusObject(statusMenu, true); - -} -#endif - -#if defined(Q_OS_DARWIN) -void MainWindow::minimizeWindow() -{ - setWindowState(windowState() | Qt::WindowMinimized); -} -#endif - -#if defined(Q_OS_DARWIN) -void MainWindow::closeWindow() -{ - // On macOS window close is basically equivalent to window hide. - close(); -} -#endif - void MainWindow::showBandwidthGraph() { if(_bandwidthGraph == NULL) @@ -1029,7 +946,6 @@ void SetForegroundWindowInternal(HWND hWnd) /* Show the dialog. */ raiseWindow(); - /* Set the focus to the specified page. */ _instance->ui->stackPages->setCurrentPage(page); } @@ -1262,91 +1178,10 @@ void MainWindow::doQuit() rApp->quit(); } -// This method parses arguments passed by the operating system. All arguments -// except -r, -f, -o and lists of rscollection files and rslinks are discarded. -// void MainWindow::receiveNewArgs(QStringList args) { - RsInfo() << "Received new arguments from operating system call."; - - std::string argstring = RsApplication::applicationFilePath().toStdString() ; - - for(auto l:args) - argstring += " " + l.toStdString(); - - // This class does all the job at once: validate arguments, and parses them. - - std::vector links_and_files; - - argstream as(argstring.c_str()); - - QString omValues = QString(";full;noturtle;gaming;minimal;"); - std::string opModeStr; - std::string retroshare_link_url; - std::string rscollection_file; - - as >> parameter('r',"rslink",retroshare_link_url,"Retroshare:// link","Retroshare link to open in Downloads " ,false) - >> parameter('f',"rsfile",rscollection_file,"file","File to open " ,false) - >> parameter('o',"opmode",opModeStr,"opmode","Set mode (Full, NoTurtle, Gaming, Minimal) " ,false) - >> values(back_inserter(links_and_files),"links and files"); - - if(!as.isOk()) - { - RsErr() << "Error while parsing arguments:" ; - RsErr() << as.errorLog() ; - return; - } - if(!opModeStr.empty() && omValues.contains(";"+QString::fromStdString(opModeStr).toLower()+";")) - { - QString opmode = QString::fromStdString(opModeStr).toLower(); - //RsApplication::setOpMode(opModeStr.toLower()); // Do we need this?? - - RsInfo() << "Setting new operating mode to \"" << opmode.toStdString() << "\""; - - if (opmode == "noturtle") - opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::NOTURTLE) - 1); - else if (opmode == "gaming") - opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::GAMING) - 1); - else if (opmode == "minimal") - opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::MINIMAL) - 1); - else if (opmode != "") - opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::FULL) - 1); - - opModeStatus->setOpMode(); - } - - // Sort all collected arguments into rscollection files and retroshare links, accordingly - - QStringList rscollection_files; - QList rslinks; - - auto sort = [&](const QString s) { - - if(QFile(s).exists() && s.endsWith(".rscollection")) - rscollection_files.append(QString::fromUtf8(rscollection_file.c_str())); - else if(s.startsWith("retroshare://")) - { - RetroShareLink link(s); - - if(link.valid()) - rslinks.push_back(link); - } - }; - - sort(QString::fromUtf8(rscollection_file.c_str())); - sort(QString::fromUtf8(retroshare_link_url.c_str())); - - for(auto s:links_and_files) - sort(QString::fromUtf8(s.c_str())); - - // Now handle links and rscollection files. - - for(auto file:rscollection_files) - if(file.endsWith(".rscollection")) - openRsCollection(file); - - for(auto link:rslinks) - retroshareLinkActivated(link.toUrl()); + Rshare::parseArguments(args, false); + processLastArgs(); } void MainWindow::displayErrorMessage(int /*a*/,int /*b*/,const QString& error_msg) @@ -1385,11 +1220,7 @@ void MainWindow::updateMenu() void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e) { -#if defined(Q_OS_DARWIN) - if (e == QSystemTrayIcon::DoubleClick) { -#else if (e == QSystemTrayIcon::Trigger || e == QSystemTrayIcon::DoubleClick) { -#endif if (isHidden() || isMinimized()) { show(); if (isMinimized()) { @@ -1713,9 +1544,45 @@ void MainWindow::retroshareLinkActivated(const QUrl &url) void MainWindow::openRsCollection(const QString &filename) { QFileInfo qinfo(filename); + if (qinfo.exists()) { + if (qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) { + RsCollection collection; + collection.openColl(qinfo.absoluteFilePath()); + } + } +} + +void MainWindow::processLastArgs() +{ + while (!Rshare::links()->isEmpty()) { + std::cerr << "MainWindow::processLastArgs() : " << Rshare::links()->count() << std::endl; + /* Now use links from the command line, because no RetroShare was running */ + RetroShareLink link(Rshare::links()->takeFirst()); + if (link.valid()) { + retroshareLinkActivated(link.toUrl()); + } + } + while (!Rshare::files()->isEmpty()) { + /* Now use files from the command line, because no RetroShare was running */ + openRsCollection(Rshare::files()->takeFirst()); + } + /* Handle the -opmode options. */ + if (opModeStatus) { + QString opmode = Rshare::opmode().toLower(); + if (opmode == "noturtle") { + opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::NOTURTLE) - 1); + } else if (opmode == "gaming") { + opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::GAMING) - 1); + } else if (opmode == "minimal") { + opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::MINIMAL) - 1); + } else if (opmode != "") { + opModeStatus->setCurrentIndex(static_cast::type>(RsOpMode::FULL) - 1); + } + opModeStatus->setOpMode(); + } else { + std::cerr << "ERR: MainWindow::processLastArgs opModeStatus is not initialized."; + } - if (qinfo.exists() && qinfo.absoluteFilePath().endsWith(RsCollection::ExtensionString)) - RsCollectionDialog::openExistingCollection(qinfo.absoluteFilePath()); } void MainWindow::switchVisibilityStatus(StatusElement e,bool b) diff --git a/retroshare-gui/src/gui/MainWindow.h b/retroshare-gui/src/gui/MainWindow.h index b435524f0..bac210f2c 100644 --- a/retroshare-gui/src/gui/MainWindow.h +++ b/retroshare-gui/src/gui/MainWindow.h @@ -27,7 +27,6 @@ #include "gui/common/rwindow.h" #include "gui/common/RSComboBox.h" -#include "util/FontSizeHandler.h" namespace Ui { class MainWindow; @@ -215,6 +214,7 @@ public slots: void externalLinkActivated(const QUrl &url); void retroshareLinkActivated(const QUrl &url); void openRsCollection(const QString &filename); + void processLastArgs(); //! Go to a specific part of the control panel. void setNewPage(int page); void setCompactStatusMode(bool compact); @@ -265,11 +265,6 @@ private slots: void toggleVisibility(QSystemTrayIcon::ActivationReason e); void toggleVisibilitycontextmenu(); -#if defined(Q_OS_DARWIN) - void minimizeWindow(); - void closeWindow(); -#endif - /** Toolbar fns. */ void addFriend(); //void newRsCollection(); @@ -313,10 +308,6 @@ private: void initStackedPage(); void addPage(MainPage *page, QActionGroup *grp, QList > > *notify); void createTrayIcon(); -#if defined(Q_OS_DARWIN) - /** Creates a default menubar on Mac */ - void createMenuBar(); -#endif void createNotifyIcons(); static MainWindow *_instance; @@ -333,14 +324,6 @@ private: QString nameAndLocation; -#if defined(Q_OS_DARWIN) - /** The menubar (Mac OS X only). */ - QMenuBar *menuBar; - QMenu *dockMenu; - QAction* actionMinimize; - QAction* actionCloseWindow; -#endif - QSystemTrayIcon *trayIcon; QMenu *notifyMenu; QMenu *trayMenu; @@ -372,8 +355,6 @@ private: void setIdle(bool Idle); bool isIdle; - FontSizeHandler mFontSizeHandler; - Ui::MainWindow *ui ; }; diff --git a/retroshare-gui/src/gui/MainWindow.ui b/retroshare-gui/src/gui/MainWindow.ui index 796593dfd..55a7145e0 100644 --- a/retroshare-gui/src/gui/MainWindow.ui +++ b/retroshare-gui/src/gui/MainWindow.ui @@ -33,6 +33,11 @@ 0 + + + 12 + + QFrame::NoFrame @@ -152,7 +157,7 @@ - + :/images/kcmsystem24.png:/images/kcmsystem24.png diff --git a/retroshare-gui/src/gui/NetworkDialog.cpp b/retroshare-gui/src/gui/NetworkDialog.cpp index 7c2b3fd14..216117f67 100644 --- a/retroshare-gui/src/gui/NetworkDialog.cpp +++ b/retroshare-gui/src/gui/NetworkDialog.cpp @@ -83,7 +83,7 @@ NetworkDialog::NetworkDialog(QWidget */*parent*/) ui.connectTreeWidget->setUpdatesEnabled(true); ui.connectTreeWidget->setSortingEnabled(true); ui.connectTreeWidget->setSelectionBehavior(QAbstractItemView::SelectRows); - ui.connectTreeWidget->setSelectionMode(QAbstractItemView::ExtendedSelection); + ui.connectTreeWidget->setSelectionMode(QAbstractItemView::SingleSelection); connect(ui.connectTreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( connectTreeWidgetCostumPopupMenu( QPoint ) ) ); connect(ui.connectTreeWidget, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(peerdetails())); @@ -117,12 +117,24 @@ void NetworkDialog::connectTreeWidgetCostumPopupMenu( QPoint /*point*/ ) { return; } + QMenu *contextMnu = new QMenu; + RsPgpId peer_id(ui.connectTreeWidget->model()->data(ui.connectTreeWidget->model()->index(l.begin()->row(), pgpid_item_model::PGP_ITEM_MODEL_COLUMN_PEERID)).toString().toStdString()) ; + + // That's what context menus are made for + RsPeerDetails detail; + if(!rsPeers->getGPGDetails(peer_id, detail)) // that is not suppose to fail. + return ; + + if(peer_id == rsPeers->getGPGOwnId()) + contextMnu->addAction(QIcon(), tr("Export/create a new node"), this, SLOT(on_actionExportKey_activated())); + contextMnu->addAction(QIcon(IMAGE_PEERDETAILS), tr("Profile details..."), this, SLOT(peerdetails())); contextMnu->addSeparator() ; contextMnu->addAction(QIcon(), tr("Remove unused keys..."), this, SLOT(removeUnusedKeys())); contextMnu->addAction(QIcon(), tr("Remove this key"), this, SLOT(removeSelectedKeys())); + contextMnu->exec(QCursor::pos()); } @@ -165,34 +177,11 @@ void NetworkDialog::removeSelectedKeys() QModelIndexList l = ui.connectTreeWidget->selectionModel()->selection().indexes(); if(l.empty()) return; - std::set selected; - std::set friends; - for (int i = 0; i < l.size(); i++) - { - RsPgpId peer_id = RsPgpId(ui.connectTreeWidget->model()->data(ui.connectTreeWidget->model()->index(l[i].row(), pgpid_item_model::PGP_ITEM_MODEL_COLUMN_PEERID)).toString().toStdString()); - RsPeerDetails details ; - if(rsPeers->getGPGDetails(peer_id,details)) - { - if(details.accept_connection) - friends.insert(peer_id); - else - selected.insert(peer_id); - } - } - if(!friends.empty()) - { - if ((QMessageBox::question(this, "RetroShare", tr("You have selected %1 accepted peers among others,\n Are you sure you want to un-friend them?").arg(friends.size()), QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes)) == QMessageBox::Yes) - { - for(std::set::const_iterator it(friends.begin());it!=friends.end();++it) - rsPeers->removeFriend(*it); - selected.insert(friends.begin(),friends.end()); - } - } - if(!selected.empty()) - removeKeys(selected); - - updateDisplay(); + std::set selected; + selected.insert(RsPgpId(ui.connectTreeWidget->model()->data(ui.connectTreeWidget->model()->index(l.begin()->row(), pgpid_item_model::PGP_ITEM_MODEL_COLUMN_PEERID)).toString().toStdString())); + + removeKeys(selected); } void NetworkDialog::removeKeys(std::set selected) diff --git a/retroshare-gui/src/gui/NewsFeed.cpp b/retroshare-gui/src/gui/NewsFeed.cpp index dc0834e71..c73f834fb 100644 --- a/retroshare-gui/src/gui/NewsFeed.cpp +++ b/retroshare-gui/src/gui/NewsFeed.cpp @@ -299,7 +299,7 @@ void NewsFeed::handleChannelEvent(std::shared_ptr event) addFeedItem(new GxsChannelPostItem(this, NEWSFEED_CHANNELNEWLIST, pe->mChannelGroupId, pe->mChannelMsgId, false, true)); break; case RsChannelEventCode::NEW_COMMENT: - addFeedItem(new ChannelsCommentsItem(this, NEWSFEED_CHANNELNEWLIST, pe->mChannelGroupId, pe->mChannelMsgId,pe->mChannelThreadId, false, true)); + addFeedItem(new ChannelsCommentsItem(this, NEWSFEED_CHANNELNEWLIST, pe->mChannelGroupId, pe->mChannelMsgId, false, true)); break; case RsChannelEventCode::RECEIVED_PUBLISH_KEY: addFeedItem(new GxsChannelGroupItem(this, NEWSFEED_CHANNELPUBKEYLIST, pe->mChannelGroupId, false, true)); diff --git a/retroshare-gui/src/gui/NewsFeed.ui b/retroshare-gui/src/gui/NewsFeed.ui index ff8c17f5e..32a679a74 100644 --- a/retroshare-gui/src/gui/NewsFeed.ui +++ b/retroshare-gui/src/gui/NewsFeed.ui @@ -70,8 +70,8 @@ - 12 - 75 + 12 + 75 true diff --git a/retroshare-gui/src/gui/PluginManager.cpp b/retroshare-gui/src/gui/PluginManager.cpp index e5ac7f7d5..2b6fa01a6 100644 --- a/retroshare-gui/src/gui/PluginManager.cpp +++ b/retroshare-gui/src/gui/PluginManager.cpp @@ -41,7 +41,7 @@ PluginManager::PluginManager() { baseFolder = //qApp->applicationDirPath()+"///plugins" ; -RsApplication::dataDirectory() + "/plugins" ; +Rshare::dataDirectory() + "/plugins" ; lastError = "No error."; viewWidget = 0; diff --git a/retroshare-gui/src/gui/Posted/PhotoView.ui b/retroshare-gui/src/gui/Posted/PhotoView.ui index 31db767c9..e1e7a21e5 100644 --- a/retroshare-gui/src/gui/Posted/PhotoView.ui +++ b/retroshare-gui/src/gui/Posted/PhotoView.ui @@ -22,6 +22,7 @@ MS Sans Serif + 11 75 true true @@ -102,6 +103,7 @@ MS Sans Serif + 9 50 false @@ -112,7 +114,7 @@
- + 24 @@ -132,6 +134,7 @@ MS Sans Serif + 11 75 true true @@ -147,6 +150,7 @@ MS Sans Serif + 9 @@ -159,6 +163,7 @@ MS Sans Serif + 9 @@ -204,17 +209,17 @@ - - AvatarWidget - QLabel -
gui/common/AvatarWidget.h
- 1 -
GxsIdLabel QLabel
gui/gxs/GxsIdLabel.h
+ + AvatarWidget + QWidget +
gui/common/AvatarWidget.h
+ 1 +
AspectRatioPixmapLabel QLabel diff --git a/retroshare-gui/src/gui/Posted/PostedItem.cpp b/retroshare-gui/src/gui/Posted/PostedItem.cpp index 8f1cddf7d..06b585614 100644 --- a/retroshare-gui/src/gui/Posted/PostedItem.cpp +++ b/retroshare-gui/src/gui/Posted/PostedItem.cpp @@ -74,7 +74,7 @@ BasePostedItem::BasePostedItem( FeedHolder *feedHolder, uint32_t feedId BasePostedItem::~BasePostedItem() { - auto timeout = std::chrono::steady_clock::now() + std::chrono::milliseconds(200); + auto timeout = std::chrono::steady_clock::now() + std::chrono::milliseconds(200); while( (mIsLoadingGroup || mIsLoadingMessage || mIsLoadingComment) && std::chrono::steady_clock::now() < timeout) { diff --git a/retroshare-gui/src/gui/Posted/PostedItem.ui b/retroshare-gui/src/gui/Posted/PostedItem.ui index cbf5ae7f4..24d570b16 100644 --- a/retroshare-gui/src/gui/Posted/PostedItem.ui +++ b/retroshare-gui/src/gui/Posted/PostedItem.ui @@ -262,6 +262,7 @@ + 11 75 true true @@ -725,17 +726,17 @@
+ + GxsIdLabel + QLabel +
gui/gxs/GxsIdLabel.h
+
ElidedLabel QLabel
gui/common/ElidedLabel.h
1
- - GxsIdLabel - QLabel -
gui/gxs/GxsIdLabel.h
-
ZoomableLabel QLabel @@ -743,9 +744,9 @@
- - + + diff --git a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.cpp b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.cpp index 9245706d1..5c63ce2e9 100644 --- a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.cpp +++ b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.cpp @@ -22,7 +22,6 @@ #include #include #include -#include #include #include "retroshare/rsgxscircles.h" @@ -73,7 +72,6 @@ static const int POSTED_TABS_POSTS = 1; // #define IMAGE_COPYLINK ":/images/copyrslink.png" #define IMAGE_AUTHOR ":/images/user/personal64.png" -#define IMAGE_COPYHTTP ":/images/emblem-web.png" Q_DECLARE_METATYPE(RsPostedPost); @@ -342,18 +340,7 @@ void PostedListWidgetWithModel::postContextMenu(const QPoint& point) // 2 - generate the menu for that post. - RsPostedPost post = index.data(Qt::UserRole).value() ; - menu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_COPYLINK), tr("Copy RetroShare Link"), this, SLOT(copyMessageLink()))->setData(index); - - QByteArray urlarray(post.mLink.c_str()); - QUrl url = QUrl::fromEncoded(urlarray.trimmed()); - - std::cerr << "Using link: \"" << post.mLink << "\"" << std::endl; - - if(url.scheme()=="http" || url.scheme()=="https") - menu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_COPYHTTP), tr("Copy http Link"), this, SLOT(copyHttpLink()))->setData(index); - menu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_AUTHOR), tr("Show author in People tab"), this, SLOT(showAuthorInPeople()))->setData(index); #ifdef TODO @@ -469,31 +456,6 @@ void PostedListWidgetWithModel::showAuthorInPeople() MainWindow::showWindow(MainWindow::People); idDialog->navigate(RsGxsId(post.mMeta.mAuthorId)); } -void PostedListWidgetWithModel::copyHttpLink() -{ - try - { - if (groupId().isNull()) - throw std::runtime_error("No channel currently selected!"); - - QModelIndex index = qobject_cast(QObject::sender())->data().toModelIndex(); - - if(!index.isValid()) - throw std::runtime_error("No post under mouse!"); - - RsPostedPost post = index.data(Qt::UserRole).value() ; - - if(post.mMeta.mMsgId.isNull()) - throw std::runtime_error("Post has empty MsgId!"); - - QApplication::clipboard()->setText(QString::fromStdString(post.mLink)) ; - QMessageBox::information(NULL,tr("information"),tr("The Retrohare link was copied to your clipboard.")) ; - } - catch(std::exception& e) - { - QMessageBox::critical(NULL,tr("Link creation error"),tr("Link could not be created: ")+e.what()); - } -} void PostedListWidgetWithModel::copyMessageLink() { try @@ -619,13 +581,12 @@ void PostedListWidgetWithModel::updateGroupData() void PostedListWidgetWithModel::postPostLoad() { -#ifdef DEBUG_POSTED std::cerr << "Post channel load..." << std::endl; -#endif whileBlocking(ui->filter_LE)->setText(QString()); //Clear it before navigate, as it will update it. if (!mNavigatePendingMsgId.isNull()) navigate(mNavigatePendingMsgId); + #ifdef TO_REMOVE else if( (mLastSelectedPosts.count(groupId()) > 0) && !mLastSelectedPosts[groupId()].isNull()) @@ -640,10 +601,8 @@ void PostedListWidgetWithModel::postPostLoad() ui->postsTree->setFocus(); } #endif -#ifdef DEBUG_POSTED else std::cerr << "No pre-selected channel post." << std::endl; -#endif updateShowLabel(); } @@ -864,7 +823,6 @@ void PostedListWidgetWithModel::insertBoardDetails(const RsPostedGroup& group) ui->subscribeToolButton->setText(tr("Subscribe")); ui->infoPosts->setText(QString::number(group.mMeta.mVisibleMsgCount)); - ui->poplabel->setText(QString::number(group.mMeta.mPop)); if(group.mMeta.mLastPost==0) ui->infoLastPost->setText(tr("Never")); diff --git a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.h b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.h index cb7dcfd39..e6b98120a 100644 --- a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.h +++ b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.h @@ -147,7 +147,6 @@ private slots: void settingsChanged(); void postPostLoad(); void copyMessageLink(); - void copyHttpLink(); void nextPosts(); void prevPosts(); void filterItems(QString s); diff --git a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.ui b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.ui index 734c4a233..2bafbc8a2 100644 --- a/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.ui +++ b/retroshare-gui/src/gui/Posted/PostedListWidgetWithModel.ui @@ -54,7 +54,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:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Sans Serif'; 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;">Description</span></p></body></html> @@ -84,11 +84,8 @@ p, li { white-space: pre-wrap; } true
- - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - Items (at friends): + Contributions:
@@ -182,9 +179,6 @@ p, li { white-space: pre-wrap; } true - - Number of subscribed friend nodes - Popularity: @@ -355,10 +349,10 @@ p, li { white-space: pre-wrap; } - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -576,10 +570,37 @@ p, li { white-space: pre-wrap; } + + ElidedLabel + QLabel +
gui/common/ElidedLabel.h
+ 1 +
+ + GxsIdChooser + QComboBox +
gui/gxs/GxsIdChooser.h
+
+ + GxsIdLabel + QLabel +
gui/gxs/GxsIdLabel.h
+
LineEditClear QLineEdit -
gui/common/LineEditClear.h
+
gui/common/LineEditClear.h
+
+ + RSComboBox + QComboBox +
gui/common/RSComboBox.h
+
+ + RSTabWidget + QTabWidget +
gui/common/RSTabWidget.h
+ 1
RSTreeView @@ -587,38 +608,11 @@ p, li { white-space: pre-wrap; }
gui/common/RSTreeView.h
1
- - GxsIdLabel - QLabel -
gui/gxs/GxsIdLabel.h
-
- - ElidedLabel - QLabel -
gui/common/ElidedLabel.h
- 1 -
SubscribeToolButton QToolButton
gui/common/SubscribeToolButton.h
- - RSComboBox - QComboBox -
gui/common/RSComboBox.h
-
- - GxsIdChooser - QComboBox -
gui/gxs/GxsIdChooser.h
-
- - RSTabWidget - QTabWidget -
gui/common/RSTabWidget.h
- 1 -
diff --git a/retroshare-gui/src/gui/RSHumanReadableDelegate.h b/retroshare-gui/src/gui/RSHumanReadableDelegate.h index 1b3995cd7..3e9a3e412 100644 --- a/retroshare-gui/src/gui/RSHumanReadableDelegate.h +++ b/retroshare-gui/src/gui/RSHumanReadableDelegate.h @@ -88,16 +88,10 @@ class RSHumanReadableAgeDelegate: public RSHumanReadableDelegate public: virtual void paint(QPainter *painter,const QStyleOptionViewItem & option, const QModelIndex & index) const { - painter->save(); QStyleOptionViewItem opt(option) ; setPainterOptions(painter,opt,index) ; - if(index.data().toLongLong() > 0) { // no date is present. - painter->setFont(opt.font); - painter->drawText(opt.rect, opt.displayAlignment, misc::timeRelativeToNow(index.data().toLongLong())) ; - } - - painter->restore(); + painter->drawText(opt.rect, Qt::AlignCenter, misc::timeRelativeToNow(index.data().toLongLong())) ; } }; @@ -106,14 +100,10 @@ class RSHumanReadableSizeDelegate: public RSHumanReadableDelegate public: virtual void paint(QPainter *painter,const QStyleOptionViewItem & option, const QModelIndex & index) const { - painter->save(); QStyleOptionViewItem opt(option) ; setPainterOptions(painter,opt,index) ; - painter->setFont(opt.font); - painter->drawText(opt.rect, opt.displayAlignment, misc::friendlyUnit(index.data().toULongLong())); - - painter->restore(); + painter->drawText(opt.rect, Qt::AlignRight, misc::friendlyUnit(index.data().toULongLong())); } }; diff --git a/retroshare-gui/src/gui/RemoteDirModel.cpp b/retroshare-gui/src/gui/RemoteDirModel.cpp index 962001a76..05e19857f 100644 --- a/retroshare-gui/src/gui/RemoteDirModel.cpp +++ b/retroshare-gui/src/gui/RemoteDirModel.cpp @@ -24,7 +24,7 @@ #include "gui/common/FilesDefs.h" #include "gui/common/GroupDefs.h" -#include "gui/common/RsCollectionDialog.h" +#include "gui/common/RsCollection.h" #include "gui/common/RsUrlHandler.h" #include "gui/gxs/GxsIdDetails.h" #include "retroshare/rsfiles.h" @@ -1233,6 +1233,31 @@ bool RetroshareDirModel::requestDirDetails(void *ref, bool remote,DirDetails& d) return false ; } +void RetroshareDirModel::createCollectionFile(QWidget *parent, const QModelIndexList &list) +{ +/* if(RemoteMode) + { + std::cerr << "Cannot create a collection file from remote" << std::endl; + return ; + }*/ + + std::vector dirVec; + getDirDetailsFromSelect(list, dirVec); + + FileSearchFlags f = RemoteMode?RS_FILE_HINTS_REMOTE:RS_FILE_HINTS_LOCAL ; + + QString dir_name; + if(!RemoteMode) + { + if(!dirVec.empty()) + { + const DirDetails& details = dirVec[0]; + dir_name = QDir(QString::fromUtf8(details.name.c_str())).dirName(); + } + } + RsCollection(dirVec,f).openNewColl(parent,dir_name); +} + void RetroshareDirModel::downloadSelected(const QModelIndexList &list,bool interactive) { if (!RemoteMode) @@ -1253,7 +1278,7 @@ void RetroshareDirModel::downloadSelected(const QModelIndexList &list,bool inter FileSearchFlags f = RemoteMode?RS_FILE_HINTS_REMOTE:RS_FILE_HINTS_LOCAL ; if(interactive) - RsCollectionDialog::downloadFiles(RsCollection(dirVec,f)) ; + RsCollection(dirVec,f).downloadFiles() ; else /* Fire off requests */ for (int i = 0, n = dirVec.size(); i < n; ++i) { diff --git a/retroshare-gui/src/gui/RemoteDirModel.h b/retroshare-gui/src/gui/RemoteDirModel.h index b7811533e..83028dd48 100644 --- a/retroshare-gui/src/gui/RemoteDirModel.h +++ b/retroshare-gui/src/gui/RemoteDirModel.h @@ -68,6 +68,8 @@ class RetroshareDirModel : public QAbstractItemModel /* Callback from GUI */ void downloadSelected(const QModelIndexList &list, bool interactive); + void createCollectionFile(QWidget *parent, const QModelIndexList &list); + void getDirDetailsFromSelect (const QModelIndexList &list, std::vector & dirVec); int getType ( const QModelIndex & index ) const ; diff --git a/retroshare-gui/src/gui/RetroShareLink.cpp b/retroshare-gui/src/gui/RetroShareLink.cpp index 0001cd9bc..6e377f70e 100644 --- a/retroshare-gui/src/gui/RetroShareLink.cpp +++ b/retroshare-gui/src/gui/RetroShareLink.cpp @@ -25,7 +25,7 @@ #include "HomePage.h" #include "chat/ChatDialog.h" #include "common/PeerDefs.h" -#include "common/RsCollectionDialog.h" +#include "common/RsCollection.h" #include "common/RsUrlHandler.h" #include "connect/ConfCertDialog.h" #include "connect/ConnectFriendWizard.h" @@ -1143,13 +1143,11 @@ QString RetroShareLink::toHtmlSize() const if (type() == TYPE_FILE && RsCollection::isCollectionFile(name())) { FileInfo finfo; - if (rsFiles->FileDetails(RsFileHash(hash().toStdString()), RS_FILE_HINTS_EXTRA | RS_FILE_HINTS_LOCAL, finfo)) - { - RsCollection::RsCollectionErrorCode code; - RsCollection collection(QString::fromUtf8(finfo.path.c_str()), code) ; - - if(code == RsCollection::RsCollectionErrorCode::COLLECTION_NO_ERROR) + if (rsFiles->FileDetails(RsFileHash(hash().toStdString()), RS_FILE_HINTS_EXTRA | RS_FILE_HINTS_LOCAL, finfo)) { + RsCollection collection; + if (collection.load(QString::fromUtf8(finfo.path.c_str()), false)) { size += QString(" [%1]").arg(misc::friendlyUnit(collection.size())); + } } } QString link = QString("%2 %3").arg(toString()).arg(name()).arg(size); @@ -1724,9 +1722,10 @@ static void processList(const QStringList &list, const QString &textSingular, co case TYPE_FILE_TREE: { - auto ft = RsFileTree::fromRadix64(link.radix().toStdString() ); - RsCollectionDialog::downloadFiles(RsCollection(*ft)); - break; + auto ft = RsFileTree::fromRadix64( + link.radix().toStdString() ); + RsCollection(*ft).downloadFiles(); + break; } case TYPE_CHAT_ROOM: @@ -1777,7 +1776,7 @@ static void processList(const QStringList &list, const QString &textSingular, co // were single file links found? if (fileLinkFound) - RsCollectionDialog::downloadFiles(col); + col.downloadFiles(); int countProcessed = 0; int countError = 0; @@ -1920,9 +1919,7 @@ static void processList(const QStringList &list, const QString &textSingular, co void RSLinkClipboard::copyLinks(const QList& links) { QString res ; - if(links.size() == 1) - res += links[0].toString(); - else for(int i = 0; i < links.size(); ++i) + for (int i = 0; i < links.size(); ++i) res += links[i].toString() + "\n" ; QApplication::clipboard()->setText(res) ; @@ -2038,3 +2035,4 @@ void RSLinkClipboard::parseText(QString text, QList &links,Retro pos += rx.matchedLength(); } } + diff --git a/retroshare-gui/src/gui/StartDialog.cpp b/retroshare-gui/src/gui/StartDialog.cpp index 237d1bb83..d6f9f707d 100644 --- a/retroshare-gui/src/gui/StartDialog.cpp +++ b/retroshare-gui/src/gui/StartDialog.cpp @@ -123,7 +123,7 @@ void StartDialog::loadPerson() rsNotify->cachePgpPassphrase(ui.password_input->text().toUtf8().constData()) ; rsNotify->setDisableAskPassword(true); - bool res = RsApplication::loadCertificate(accountId, ui.autologin_checkbox->isChecked()) ; + bool res = Rshare::loadCertificate(accountId, ui.autologin_checkbox->isChecked()) ; rsNotify->setDisableAskPassword(false); rsNotify->clearPgpPassphrase(); @@ -161,7 +161,7 @@ void StartDialog::notSecureWarning() QMessageBox::warning ( this, tr("Warning"), tr("The password to your SSL certificate (your node) will be stored encrypted in your Keychain. \n\n Your PGP passwd will not be stored.\n\nThis choice can be reverted in settings."), QMessageBox::Ok); #else // this handles all linux systems at once. - QMessageBox::warning ( this, tr("Warning"), tr("The password to your SSL certificate (your node) will be stored encrypted in your desktop's keyring. \n\n Your PGP passwd will not be stored.\n\nThis choice can be reverted in settings."), QMessageBox::Ok); + QMessageBox::warning ( this, tr("Warning"), tr("The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. \n\n Your PGP passwd will not be stored.\n\nThis choice can be reverted in settings."), QMessageBox::Ok); #endif #endif } diff --git a/retroshare-gui/src/gui/StartDialog.ui b/retroshare-gui/src/gui/StartDialog.ui index 39287a797..8c491caeb 100644 --- a/retroshare-gui/src/gui/StartDialog.ui +++ b/retroshare-gui/src/gui/StartDialog.ui @@ -345,8 +345,8 @@ 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:13pt; font-weight:400; 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:14pt; text-decoration: underline; color:#366fe0;">New Profile/Node</span></a></p></body></html> +</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>
@@ -370,8 +370,8 @@ p, li { white-space: pre-wrap; } - + diff --git a/retroshare-gui/src/gui/TheWire/CustomFrame.cpp b/retroshare-gui/src/gui/TheWire/CustomFrame.cpp deleted file mode 100644 index 4f1308df5..000000000 --- a/retroshare-gui/src/gui/TheWire/CustomFrame.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/******************************************************************************* - * gui/TheWire/CustomFrame.cpp * - * * - * Copyright (c) 2012-2020 Robert Fernie * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#include "CustomFrame.h" -#include - -// Constructor -CustomFrame::CustomFrame(QWidget *parent) : QFrame(parent) -{ - // Any initializations for this frame. -} - -// Overriding the inbuilt paint function -void CustomFrame::paintEvent(QPaintEvent *event) -{ - QFrame::paintEvent(event); - QPainter painter(this); - painter.drawPixmap(rect(), backgroundImage); -} - -// Function to set the member variable 'backgroundImage' -void CustomFrame::setPixmap(QPixmap pixmap){ - backgroundImage = pixmap; -} diff --git a/retroshare-gui/src/gui/TheWire/CustomFrame.h b/retroshare-gui/src/gui/TheWire/CustomFrame.h deleted file mode 100644 index e75a6087a..000000000 --- a/retroshare-gui/src/gui/TheWire/CustomFrame.h +++ /dev/null @@ -1,44 +0,0 @@ -/******************************************************************************* - * gui/TheWire/CustomFrame.h * - * * - * Copyright (c) 2012-2020 Robert Fernie * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#ifndef CUSTOMFRAMEH_H -#define CUSTOMFRAMEH_H - -#include -#include - -// This class is made to implement the background image in a Qframe or any widget - -class CustomFrame : public QFrame -{ - Q_OBJECT - -public: - explicit CustomFrame(QWidget *parent = nullptr); - void setPixmap(QPixmap pixmap); - -protected: - void paintEvent(QPaintEvent *event) override; - -private: - QPixmap backgroundImage; -}; - -#endif //CUSTOMFRAMEH_H diff --git a/retroshare-gui/src/gui/TheWire/PulseAddDialog.cpp b/retroshare-gui/src/gui/TheWire/PulseAddDialog.cpp index d3b666a7e..8877d5cf6 100644 --- a/retroshare-gui/src/gui/TheWire/PulseAddDialog.cpp +++ b/retroshare-gui/src/gui/TheWire/PulseAddDialog.cpp @@ -25,7 +25,6 @@ #include "gui/gxs/GxsIdDetails.h" #include "gui/common/FilesDefs.h" #include "util/misc.h" -#include "util/qtthreadsutils.h" #include "PulseAddDialog.h" @@ -99,31 +98,11 @@ void PulseAddDialog::setGroup(RsWireGroup &group) // set ReplyWith Group. void PulseAddDialog::setGroup(const RsGxsGroupId &grpId) { - if(grpId.isNull()){ - return; - } + /* fetch in the background */ + RsWireGroupSPtr pGroup; + rsWire->getWireGroup(grpId, pGroup); - RsThread::async([this,grpId](){ - - RsWireGroupSPtr pGroup; - if(!rsWire->getWireGroup(grpId,pGroup)) - { - std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve wire group info for wire id: " << grpId << std::endl; - return; - } - - RsQThreadUtils::postToObject( [pGroup,this]() - { - /* Here it goes any code you want to be executed on the Qt Gui - * thread, for example to update the data model with new information - * after a blocking call to RetroShare API complete, note that - * Qt::QueuedConnection is important! - */ - - setGroup(*pGroup); - }, this ); - - }); + setGroup(*pGroup); } void PulseAddDialog::cleanup() @@ -215,7 +194,7 @@ void PulseAddDialog::setReplyTo(const RsWirePulse &pulse, RsWirePulseSPtr pPulse mReplyToPulse = pulse; mReplyType = replyType; ui.frame_reply->setVisible(true); - ui.pushButton_picture->hide(); + ui.pushButton_picture->show(); ui.topheadshot->hide(); { @@ -244,12 +223,10 @@ void PulseAddDialog::setReplyTo(const RsWirePulse &pulse, RsWirePulseSPtr pPulse if (mReplyType & WIRE_PULSE_TYPE_REPUBLISH) { ui.postButton->setText(tr("Republish Pulse")); ui.pushButton_picture->hide(); - ui.pushButton_Browse->hide(); } else if (mReplyType & WIRE_PULSE_TYPE_LIKE) { ui.postButton->setText(tr("Like Pulse")); ui.pushButton_picture->hide(); - ui.pushButton_Browse->hide(); } } @@ -257,46 +234,30 @@ void PulseAddDialog::setReplyTo(const RsWirePulse &pulse, RsWirePulseSPtr pPulse void PulseAddDialog::setReplyTo(const RsGxsGroupId &grpId, const RsGxsMessageId &msgId, uint32_t replyType) { - if(grpId.isNull()){ - return; - } /* fetch in the background */ + RsWireGroupSPtr pGroup; + if (!rsWire->getWireGroup(grpId, pGroup)) + { + std::cerr << "PulseAddDialog::setRplyTo() failed to fetch group"; + std::cerr << std::endl; + return; + } - RsThread::async([this,grpId,msgId,replyType](){ + RsWirePulseSPtr pPulse; + if (!rsWire->getWirePulse(grpId, msgId, pPulse)) + { + std::cerr << "PulseAddDialog::setRplyTo() failed to fetch pulse"; + std::cerr << std::endl; + return; + } - RsWireGroupSPtr pGroup; - RsWirePulseSPtr pPulse; - if(!rsWire->getWireGroup(grpId,pGroup)) - { - std::cerr << __PRETTY_FUNCTION__ << "PulseAddDialog::setRplyTo() failed to fetch group id: " << grpId << std::endl; - return; - } - - if (!rsWire->getWirePulse(grpId, msgId, pPulse)) - { - std::cerr << "PulseAddDialog::setRplyTo() failed to fetch pulse of group id: " << grpId << std::endl; - return; - } - - // update GroupPtr - // TODO - this should be handled in libretroshare if possible. - if (pPulse->mGroupPtr == NULL) { - pPulse->mGroupPtr = pGroup; - } - - RsQThreadUtils::postToObject( [pGroup,this,pPulse,replyType]() - { - /* Here it goes any code you want to be executed on the Qt Gui - * thread, for example to update the data model with new information - * after a blocking call to RetroShare API complete, note that - * Qt::QueuedConnection is important! - */ - - setReplyTo(*pPulse, pPulse, pGroup->mMeta.mGroupName, replyType); - }, this ); - - }); + // update GroupPtr + // TODO - this should be handled in libretroshare if possible. + if (pPulse->mGroupPtr == NULL) { + pPulse->mGroupPtr = pGroup; + } + setReplyTo(*pPulse, pPulse, pGroup->mMeta.mGroupName, replyType); } void PulseAddDialog::addURL() @@ -346,39 +307,26 @@ void PulseAddDialog::postOriginalPulse() std::cerr << "PulseAddDialog::postOriginalPulse()"; std::cerr << std::endl; - RsWirePulseSPtr pPulse(new RsWirePulse()); + RsWirePulseSPtr pPulse(new RsWirePulse()); - pPulse->mSentiment = WIRE_PULSE_SENTIMENT_NO_SENTIMENT; - pPulse->mPulseText = ui.textEdit_Pulse->toPlainText().toStdString(); - // set images here too. - pPulse->mImage1 = mImage1; - pPulse->mImage2 = mImage2; - pPulse->mImage3 = mImage3; - pPulse->mImage4 = mImage4; + pPulse->mSentiment = WIRE_PULSE_SENTIMENT_NO_SENTIMENT; + pPulse->mPulseText = ui.textEdit_Pulse->toPlainText().toStdString(); + // set images here too. + pPulse->mImage1 = mImage1; + pPulse->mImage2 = mImage2; + pPulse->mImage3 = mImage3; + pPulse->mImage4 = mImage4; - RsThread::async([this,pPulse](){ - - if (!rsWire->createOriginalPulse(mGroup.mMeta.mGroupId, pPulse)) - { - std::cerr << "PulseAddDialog::postOriginalPulse() FAILED"; - std::cerr << std::endl; - return; - } - - RsQThreadUtils::postToObject( [this]() - { - /* Here it goes any code you want to be executed on the Qt Gui - * thread, for example to update the data model with new information - * after a blocking call to RetroShare API complete, note that - * Qt::QueuedConnection is important! - */ - - clearDialog(); - hide(); - }, this ); - - }); + // this should be in async thread, so doesn't block UI thread. + if (!rsWire->createOriginalPulse(mGroup.mMeta.mGroupId, pPulse)) + { + std::cerr << "PulseAddDialog::postOriginalPulse() FAILED"; + std::cerr << std::endl; + return; + } + clearDialog(); + hide(); } uint32_t PulseAddDialog::toPulseSentiment(int index) @@ -408,15 +356,15 @@ void PulseAddDialog::postReplyPulse() std::cerr << "PulseAddDialog::postReplyPulse()"; std::cerr << std::endl; - RsWirePulseSPtr pPulse(new RsWirePulse()); + RsWirePulseSPtr pPulse(new RsWirePulse()); - pPulse->mSentiment = toPulseSentiment(ui.comboBox_sentiment->currentIndex()); - pPulse->mPulseText = ui.textEdit_Pulse->toPlainText().toStdString(); - // set images here too. - pPulse->mImage1 = mImage1; - pPulse->mImage2 = mImage2; - pPulse->mImage3 = mImage3; - pPulse->mImage4 = mImage4; + pPulse->mSentiment = toPulseSentiment(ui.comboBox_sentiment->currentIndex()); + pPulse->mPulseText = ui.textEdit_Pulse->toPlainText().toStdString(); + // set images here too. + pPulse->mImage1 = mImage1; + pPulse->mImage2 = mImage2; + pPulse->mImage3 = mImage3; + pPulse->mImage4 = mImage4; if (mReplyType & WIRE_PULSE_TYPE_REPUBLISH) { // Copy details from parent, and override @@ -430,33 +378,20 @@ void PulseAddDialog::postReplyPulse() pPulse->mImage4 = mReplyToPulse.mImage4; } - RsThread::async([this, pPulse](){ - - if (!rsWire->createReplyPulse(mReplyToPulse.mMeta.mGroupId, - mReplyToPulse.mMeta.mOrigMsgId, - mGroup.mMeta.mGroupId, - mReplyType, - pPulse)) - { - std::cerr << "PulseAddDialog::postReplyPulse() FAILED"; - std::cerr << std::endl; - return; - } - - RsQThreadUtils::postToObject( [this]() - { - /* Here it goes any code you want to be executed on the Qt Gui - * thread, for example to update the data model with new information - * after a blocking call to RetroShare API complete, note that - * Qt::QueuedConnection is important! - */ - - clearDialog(); - hide(); - }, this ); - - }); + // this should be in async thread, so doesn't block UI thread. + if (!rsWire->createReplyPulse(mReplyToPulse.mMeta.mGroupId, + mReplyToPulse.mMeta.mOrigMsgId, + mGroup.mMeta.mGroupId, + mReplyType, + pPulse)) + { + std::cerr << "PulseAddDialog::postReplyPulse() FAILED"; + std::cerr << std::endl; + return; + } + clearDialog(); + hide(); } void PulseAddDialog::clearDialog() diff --git a/retroshare-gui/src/gui/TheWire/PulseAddDialog.ui b/retroshare-gui/src/gui/TheWire/PulseAddDialog.ui index bdfda3cc5..c09119a40 100644 --- a/retroshare-gui/src/gui/TheWire/PulseAddDialog.ui +++ b/retroshare-gui/src/gui/TheWire/PulseAddDialog.ui @@ -140,7 +140,7 @@ - 9 + 20 0 diff --git a/retroshare-gui/src/gui/TheWire/PulseReplySeperator.ui b/retroshare-gui/src/gui/TheWire/PulseReplySeperator.ui index 6564fe5e3..4a605a219 100644 --- a/retroshare-gui/src/gui/TheWire/PulseReplySeperator.ui +++ b/retroshare-gui/src/gui/TheWire/PulseReplySeperator.ui @@ -40,7 +40,10 @@ - + QFrame#frame{border: 2px solid #CCCCCC; +background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #EEEEEE, stop: 1 #CCCCCC); +border-radius: 10px} QFrame::StyledPanel diff --git a/retroshare-gui/src/gui/TheWire/PulseTopLevel.ui b/retroshare-gui/src/gui/TheWire/PulseTopLevel.ui index 1959244d3..077b72473 100644 --- a/retroshare-gui/src/gui/TheWire/PulseTopLevel.ui +++ b/retroshare-gui/src/gui/TheWire/PulseTopLevel.ui @@ -767,6 +767,7 @@ 12 + 75 true diff --git a/retroshare-gui/src/gui/TheWire/PulseViewGroup.cpp b/retroshare-gui/src/gui/TheWire/PulseViewGroup.cpp index 475c74034..8707eaf8c 100644 --- a/retroshare-gui/src/gui/TheWire/PulseViewGroup.cpp +++ b/retroshare-gui/src/gui/TheWire/PulseViewGroup.cpp @@ -24,149 +24,86 @@ #include #include "PulseViewGroup.h" -#include "CustomFrame.h" -#include "WireGroupDialog.h" #include "gui/gxs/GxsIdDetails.h" #include "gui/common/FilesDefs.h" #include "util/DateTime.h" -Q_DECLARE_METATYPE(RsWireGroup) - /** Constructor */ PulseViewGroup::PulseViewGroup(PulseViewHolder *holder, RsWireGroupSPtr group) :PulseViewItem(holder), mGroup(group) { - setupUi(this); - setAttribute ( Qt::WA_DeleteOnClose, true ); - setup(); - - connect(editButton, SIGNAL(clicked()), this, SLOT(editProfile())); - + setupUi(this); + setAttribute ( Qt::WA_DeleteOnClose, true ); + setup(); } void PulseViewGroup::setup() { - if (mGroup) { - connect(followButton, SIGNAL(clicked()), this, SLOT(actionFollow())); + if (mGroup) { + connect(followButton, SIGNAL(clicked()), this, SLOT(actionFollow())); - label_groupName->setText("@" + QString::fromStdString(mGroup->mMeta.mGroupName)); - label_authorName->setText(BoldString(QString::fromStdString(mGroup->mMeta.mAuthorId.toStdString()))); - label_date->setText(DateTime::formatDateTime(mGroup->mMeta.mPublishTs)); - label_tagline->setText(QString::fromStdString(mGroup->mTagline)); - label_location->setText(QString::fromStdString(mGroup->mLocation)); + label_groupName->setText("@" + QString::fromStdString(mGroup->mMeta.mGroupName)); + label_authorName->setText(BoldString(QString::fromStdString(mGroup->mMeta.mAuthorId.toStdString()))); + label_date->setText(DateTime::formatDateTime(mGroup->mMeta.mPublishTs)); + label_tagline->setText(QString::fromStdString(mGroup->mTagline)); + label_location->setText(QString::fromStdString(mGroup->mLocation)); + // need to draw mGroup->mMasthead, as background to headshot. + // TODO frame_headerBackground->setBackground() - if (mGroup->mMasthead.mData) - { - QPixmap pixmap; - if (GxsIdDetails::loadPixmapFromData( - mGroup->mMasthead.mData, - mGroup->mMasthead.mSize, - pixmap, GxsIdDetails::ORIGINAL)) - { - QSize frameSize = frame_masthead->size(); - - // Scale the pixmap based on the frame size - pixmap = pixmap.scaledToWidth(frameSize.width(), Qt::SmoothTransformation); - frame_masthead->setPixmap(pixmap); - } - } -// Uncomment the below code for default background -// else -// { -// // Default pixmap -// QPixmap pixmap = FilesDefs::getPixmapFromQtResourcePath(":/icons/png/posted.png"); -// QSize frameSize = frame_masthead->size(); - -// // Scale the pixmap based on the frame size -// pixmap = pixmap.scaled(frameSize, Qt::KeepAspectRatio, Qt::SmoothTransformation); -// frame_masthead->setPixmap(pixmap); -// } - - if (mGroup->mHeadshot.mData) - { - QPixmap pixmap; - if (GxsIdDetails::loadPixmapFromData( - mGroup->mHeadshot.mData, - mGroup->mHeadshot.mSize, - pixmap,GxsIdDetails::ORIGINAL)) - { - pixmap = pixmap.scaled(100,100, Qt::KeepAspectRatio, Qt::SmoothTransformation); - label_headshot->setPixmap(pixmap); - } - } - else - { + if (mGroup->mHeadshot.mData) + { + QPixmap pixmap; + if (GxsIdDetails::loadPixmapFromData( + mGroup->mHeadshot.mData, + mGroup->mHeadshot.mSize, + pixmap,GxsIdDetails::ORIGINAL)) + { + pixmap = pixmap.scaled(50,50); + label_headshot->setPixmap(pixmap); + } + } + else + { // default. - QPixmap pixmap = FilesDefs::getPixmapFromQtResourcePath(":/icons/wire.png").scaled(100,100, Qt::KeepAspectRatio, Qt::SmoothTransformation); - label_headshot->setPixmap(pixmap); - } + QPixmap pixmap = FilesDefs::getPixmapFromQtResourcePath(":/icons/png/posted.png").scaled(50,50); + label_headshot->setPixmap(pixmap); + } - if (mGroup->mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_SUBSCRIBED) - { - uint32_t pulses = mGroup->mGroupPulses + mGroup->mGroupReplies; - uint32_t replies = mGroup->mRefReplies; - uint32_t republishes = mGroup->mRefRepublishes; - uint32_t likes = mGroup->mRefLikes; + if (mGroup->mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_SUBSCRIBED) + { + uint32_t pulses = mGroup->mGroupPulses + mGroup->mGroupReplies; + uint32_t replies = mGroup->mRefReplies; + uint32_t republishes = mGroup->mRefRepublishes; + uint32_t likes = mGroup->mRefLikes; - label_extra_pulses->setText(BoldString(ToNumberUnits(pulses))); - label_extra_replies->setText(BoldString(ToNumberUnits(replies))); - label_extra_republishes->setText(BoldString(ToNumberUnits(republishes))); - label_extra_likes->setText(BoldString(ToNumberUnits(likes))); + label_extra_pulses->setText(BoldString(ToNumberUnits(pulses))); + label_extra_replies->setText(BoldString(ToNumberUnits(replies))); + label_extra_republishes->setText(BoldString(ToNumberUnits(republishes))); + label_extra_likes->setText(BoldString(ToNumberUnits(likes))); - // hide follow. - widget_actions->setVisible(false); - } - else - { - // hide stats. - widget_replies->setVisible(false); - } - } - - setGroupSet(); -} - -void PulseViewGroup::setGroupSet() -{ - if (mGroup->mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN) { - editButton->show(); - } - else if (mGroup->mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_SUBSCRIBED) - { - editButton->hide(); - } - else - { - editButton->hide(); + // hide follow. + widget_actions->setVisible(false); + } + else + { + // hide stats. + widget_replies->setVisible(false); + } } } void PulseViewGroup::actionFollow() -{ - RsGxsGroupId groupId = mGroup->mMeta.mGroupId; - std::cerr << "PulseViewGroup::actionFollow() following "; - std::cerr << groupId; - std::cerr << std::endl; - - if (mHolder) { - mHolder->PVHfollow(groupId); - } -} - -void PulseViewGroup::editProfile() { RsGxsGroupId groupId = mGroup->mMeta.mGroupId; - if (groupId.isNull()) - { - std::cerr << "PulseViewGroup::editProfile() No Group selected"; - std::cerr << std::endl; - return; - } + std::cerr << "PulseViewGroup::actionFollow() following "; + std::cerr << groupId; + std::cerr << std::endl; - WireGroupDialog wireEdit(GxsGroupDialog::MODE_EDIT, groupId, this); - wireEdit.exec (); + if (mHolder) { + mHolder->PVHfollow(groupId); + } } diff --git a/retroshare-gui/src/gui/TheWire/PulseViewGroup.h b/retroshare-gui/src/gui/TheWire/PulseViewGroup.h index 62da0a228..4d00090ca 100644 --- a/retroshare-gui/src/gui/TheWire/PulseViewGroup.h +++ b/retroshare-gui/src/gui/TheWire/PulseViewGroup.h @@ -35,13 +35,10 @@ public: private slots: void actionFollow(); - void editProfile(); protected: void setup(); -private: - void setGroupSet(); protected: RsWireGroupSPtr mGroup; diff --git a/retroshare-gui/src/gui/TheWire/PulseViewGroup.ui b/retroshare-gui/src/gui/TheWire/PulseViewGroup.ui index 79d9964f6..77329e3c2 100644 --- a/retroshare-gui/src/gui/TheWire/PulseViewGroup.ui +++ b/retroshare-gui/src/gui/TheWire/PulseViewGroup.ui @@ -6,7 +6,7 @@ 0 0 - 746 + 745 483 @@ -48,37 +48,19 @@ QFrame::Raised - + - - - - 0 - 0 - - - - - 700 - 135 - - - - - - + + - + Qt::Horizontal - - QSizePolicy::Expanding - - 277 - 17 + 283 + 20 @@ -97,22 +79,19 @@ 100 - - - headshot - + Qt::Horizontal - 281 + 23 20 @@ -136,6 +115,38 @@ + + + + Qt::Horizontal + + + + 518 + 58 + + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> + + + @@ -171,45 +182,6 @@ - - - - - 0 - 0 - - - - - 0 - 20 - - - - <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - - - - - - - Qt::Horizontal - - - - 518 - 58 - - - - - - - - Edit profile - - - @@ -234,44 +206,6 @@ - - - - - 0 - 0 - - - - - 0 - 20 - - - - Location - - - - - - - - 0 - 0 - - - - - 0 - 20 - - - - Tag Line - - - @@ -291,19 +225,6 @@ - - - - Qt::Horizontal - - - - 2000 - 20 - - - - @@ -320,6 +241,57 @@ + + + + + 0 + 0 + + + + + 0 + 20 + + + + Location + + + + + + + Qt::Horizontal + + + + 2000 + 20 + + + + + + + + + 0 + 0 + + + + + 0 + 20 + + + + Tag Line + + + @@ -566,25 +538,10 @@ - widget_header - widget_publish - line_1 - widget_replies - line_2 - widget_actions - frame_masthead - - - CustomFrame - QFrame -
gui/TheWire/CustomFrame.h
- 1 -
-
diff --git a/retroshare-gui/src/gui/TheWire/WireDialog.cpp b/retroshare-gui/src/gui/TheWire/WireDialog.cpp index 36a201a7f..38ea1b398 100644 --- a/retroshare-gui/src/gui/TheWire/WireDialog.cpp +++ b/retroshare-gui/src/gui/TheWire/WireDialog.cpp @@ -140,7 +140,6 @@ WireDialog::~WireDialog() processSettings(false); clearTwitterView(); - std::cerr << "WireDialog::~WireDialog()" << std::endl; delete(mWireQueue); rsEvents->unregisterEventsHandler(mEventHandlerId); @@ -155,16 +154,9 @@ void WireDialog::processSettings(bool load) // state of splitter ui.splitter->restoreState(Settings->value("SplitterWire").toByteArray()); - - // state of filter combobox - int index = Settings->value("ShowGroup", 0).toInt(); - ui.comboBox_groupSet->setCurrentIndex(index); } else { // save settings - // state of filter combobox - Settings->setValue("ShowGroup", ui.comboBox_groupSet->currentIndex()); - // state of splitter Settings->setValue("SplitterWire", ui.splitter->saveState()); } @@ -475,13 +467,13 @@ bool WireDialog::loadGroupData(const uint32_t &token) std::cerr << "WireDialog::loadGroupData()"; std::cerr << std::endl; - std::vector groups; - rsWire->getGroupData(token, groups); + std::vector groups; + rsWire->getGroupData(token, groups); - // save list of groups. - updateGroups(groups); - showGroups(); - return true; + // save list of groups. + updateGroups(groups); + showGroups(); + return true; } rstime_t WireDialog::getFilterTimestamp() @@ -689,7 +681,6 @@ void WireDialog::PVHrate(const RsGxsId &authorId) void WireDialog::postTestTwitterView() { clearTwitterView(); - std::cerr << "WireDialog::postTestTwitterView()" << std::endl; addTwitterView(new PulseTopLevel(NULL,RsWirePulseSPtr())); addTwitterView(new PulseReply(NULL,RsWirePulseSPtr())); @@ -846,7 +837,6 @@ void WireDialog::requestPulseFocus(const RsGxsGroupId groupId, const RsGxsMessag void WireDialog::showPulseFocus(const RsGxsGroupId groupId, const RsGxsMessageId msgId) { clearTwitterView(); - std::cerr << "WireDialog::showPulseFocus()" << std::endl; // background thread for loading. RsThread::async([this, groupId, msgId]() @@ -876,8 +866,6 @@ void WireDialog::showPulseFocus(const RsGxsGroupId groupId, const RsGxsMessageId void WireDialog::postPulseFocus(RsWirePulseSPtr pPulse) { clearTwitterView(); - std::cerr << "WireDialog::postPulseFocus()" << std::endl; - if (!pPulse) { std::cerr << "WireDialog::postPulseFocus() Invalid pulse"; @@ -950,7 +938,7 @@ void WireDialog::requestGroupFocus(const RsGxsGroupId groupId) void WireDialog::showGroupFocus(const RsGxsGroupId groupId) { clearTwitterView(); - std::cerr << "WireDialog::showGroupFocus()" << std::endl; + // background thread for loading. RsThread::async([this, groupId]() { @@ -1027,7 +1015,6 @@ void WireDialog::requestGroupsPulses(const std::list& groupIds) void WireDialog::showGroupsPulses(const std::list& groupIds) { clearTwitterView(); - std::cerr << "WireDialog::showGroupPulses()" << std::endl; // background thread for loading. RsThread::async([this, groupIds]() @@ -1077,3 +1064,4 @@ void WireDialog::postGroupsPulses(std::list pulses) } } + diff --git a/retroshare-gui/src/gui/TheWire/WireDialog.h b/retroshare-gui/src/gui/TheWire/WireDialog.h index fcd33ad37..a55369fc0 100644 --- a/retroshare-gui/src/gui/TheWire/WireDialog.h +++ b/retroshare-gui/src/gui/TheWire/WireDialog.h @@ -150,7 +150,7 @@ private: // Loading Data. void requestGroupData(); - bool loadGroupData(const uint32_t &token); + bool loadGroupData(const uint32_t &token); void acknowledgeGroup(const uint32_t &token, const uint32_t &userType); virtual void loadRequest(const TokenQueue *queue, const TokenRequest &req) override; diff --git a/retroshare-gui/src/gui/TheWire/WireDialog.ui b/retroshare-gui/src/gui/TheWire/WireDialog.ui index 4cdf4a174..b794a96e0 100644 --- a/retroshare-gui/src/gui/TheWire/WireDialog.ui +++ b/retroshare-gui/src/gui/TheWire/WireDialog.ui @@ -434,8 +434,8 @@ - + diff --git a/retroshare-gui/src/gui/TheWire/WireGroupDialog.cpp b/retroshare-gui/src/gui/TheWire/WireGroupDialog.cpp index e832540de..e13cd4f8f 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupDialog.cpp +++ b/retroshare-gui/src/gui/TheWire/WireGroupDialog.cpp @@ -152,7 +152,7 @@ bool WireGroupDialog::service_updateGroup(const RsGroupMetaData &editedMeta) std::cerr << "WireGroupDialog::service_updateGroup() submitting changes"; std::cerr << std::endl; - bool success = rsWire->editWire(grp); + bool success = rsWire->updateGroup(grp); // TODO updateGroup should refresh groupId or Data return success; } diff --git a/retroshare-gui/src/gui/TheWire/WireGroupExtra.cpp b/retroshare-gui/src/gui/TheWire/WireGroupExtra.cpp index 8ed6d4d4b..b6a1c5440 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupExtra.cpp +++ b/retroshare-gui/src/gui/TheWire/WireGroupExtra.cpp @@ -34,19 +34,13 @@ WireGroupExtra::~WireGroupExtra() void WireGroupExtra::setUp() { - connect(ui.pushButton_masthead, SIGNAL(clicked() ), this , SLOT(addMasthead())); - - int desired_height = ui.pushButton_masthead->height() + ui.removeButton->height() + ui.lineEdit_Tagline->height(); - int desired_width = 3/1.0 * desired_height + ui.lineEdit_Tagline->width(); - - ui.label_masthead->setFixedSize(desired_width, desired_height); - - setMasthead(QPixmap()); + connect(ui.pushButton_masthead, SIGNAL(clicked() ), this , SLOT(addMasthead())); } + void WireGroupExtra::addMasthead() { - QPixmap img = misc::getOpenThumbnailedPicture(this, tr("Load Masthead"), 800, 600); + QPixmap img = misc::getOpenThumbnailedPicture(this, tr("Load Masthead"), 400, 100); if (img.isNull()) return; @@ -54,6 +48,7 @@ void WireGroupExtra::addMasthead() setMasthead(img); } + void WireGroupExtra::setTagline(const std::string &str) { ui.lineEdit_Tagline->setText(QString::fromStdString(str)); @@ -66,21 +61,8 @@ void WireGroupExtra::setLocation(const std::string &str) void WireGroupExtra::setMasthead(const QPixmap &pixmap) { - mMasthead = pixmap; - - if (!mMasthead.isNull()) { - ui.label_masthead->setPicture(mMasthead); - ui.label_masthead->setToolTip(tr("Use the mouse to zoom and adjust the image for your background.")); - } else { - ui.label_masthead->setPicture(QPixmap()); - ui.label_masthead->setText(tr("MastHead background Image")); - } -} - -void WireGroupExtra::on_removeButton_clicked() -{ - ui.label_masthead->setPicture(QPixmap()); - ui.label_masthead->setText(tr("MastHead background Image")); + mMasthead = pixmap; + ui.label_masthead->setPixmap(mMasthead); } std::string WireGroupExtra::getTagline() @@ -95,5 +77,7 @@ std::string WireGroupExtra::getLocation() QPixmap WireGroupExtra::getMasthead() { - return ui.label_masthead->extractCroppedScaledPicture(); + return mMasthead; } + + diff --git a/retroshare-gui/src/gui/TheWire/WireGroupExtra.h b/retroshare-gui/src/gui/TheWire/WireGroupExtra.h index 429be088b..ce606feb3 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupExtra.h +++ b/retroshare-gui/src/gui/TheWire/WireGroupExtra.h @@ -34,6 +34,7 @@ public: void setMasthead(const QPixmap &pixmap); QPixmap getMasthead(); + void setTagline(const std::string &str); void setLocation(const std::string &str); @@ -42,7 +43,7 @@ public: private slots: void addMasthead(); - void on_removeButton_clicked(); + private: void setUp(); private: diff --git a/retroshare-gui/src/gui/TheWire/WireGroupExtra.ui b/retroshare-gui/src/gui/TheWire/WireGroupExtra.ui index 4c03b8fe8..fb1da5e73 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupExtra.ui +++ b/retroshare-gui/src/gui/TheWire/WireGroupExtra.ui @@ -7,7 +7,7 @@ 0 0 516 - 133 + 199 @@ -19,127 +19,50 @@ Form - - - 0 - - - 0 - + - - - - - - - - Tagline: - - - - - - - - - - Remove - - - - - - - Location: - - - - - - - Qt::Vertical - - - - 20 - 10 - - - - - - - - Select Image - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - 0 - 0 - - - - QFrame::Plain - - - 1 - - - MastHead background Image - - - Qt::PlainText - - - false - - - Qt::AlignCenter - - - - + + + Masthead + + + + + + + MastHead background Image + + - - - Qt::Vertical + + + Select Image - - - 20 - 10 - + + + + + + Tagline: - + + + + + + + + + Location: + + + + + - - - ZoomableLabel - QLabel -
gui/gxschannels/GxsChannelPostThumbnail.h
-
-
diff --git a/retroshare-gui/src/gui/TheWire/WireGroupItem.cpp b/retroshare-gui/src/gui/TheWire/WireGroupItem.cpp index 1759103f6..8ab62260a 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupItem.cpp +++ b/retroshare-gui/src/gui/TheWire/WireGroupItem.cpp @@ -65,7 +65,8 @@ WireGroupItem::WireGroupItem(WireGroupHolder *holder, const RsWireGroup &grp) setAttribute ( Qt::WA_DeleteOnClose, true ); setup(); - editButton->setEnabled(true); + // disabled, still not yet functional Edit/Update + editButton->setEnabled(false); } RsGxsGroupId &WireGroupItem::groupId() @@ -92,14 +93,14 @@ void WireGroupItem::setup() QImage circleImage = getCirclePhoto(orginalImage,orginalImage.size().width()); pixmap.convertFromImage(circleImage); - pixmap = pixmap.scaled(40,40, Qt::KeepAspectRatio, Qt::SmoothTransformation); + pixmap = pixmap.scaled(40,40); label_headshot->setPixmap(pixmap); } } else { // default. - QPixmap pixmap = FilesDefs::getPixmapFromQtResourcePath(":/icons/wire.png").scaled(32,32, Qt::KeepAspectRatio, Qt::SmoothTransformation); + QPixmap pixmap = FilesDefs::getPixmapFromQtResourcePath(":/icons/wire.png").scaled(32,32); label_headshot->setPixmap(pixmap); } @@ -123,21 +124,21 @@ void WireGroupItem::setup() void WireGroupItem::setGroupSet() { if (mGroup.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN) { - toolButton_type->setText(tr("Own")); - toolButton_subscribe->setText(tr("N/A")); + toolButton_type->setText("Own"); + toolButton_subscribe->setText("N/A"); toolButton_subscribe->setEnabled(false); editButton->show(); } else if (mGroup.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_SUBSCRIBED) { - toolButton_type->setText(tr("Following")); - toolButton_subscribe->setText(tr("Unfollow")); + toolButton_type->setText("Following"); + toolButton_subscribe->setText("Unfollow"); editButton->hide(); } else { - toolButton_type->setText(tr("Other")); - toolButton_subscribe->setText(tr("Follow")); + toolButton_type->setText("Other"); + toolButton_subscribe->setText("Follow"); editButton->hide(); } } diff --git a/retroshare-gui/src/gui/TheWire/WireGroupItem.ui b/retroshare-gui/src/gui/TheWire/WireGroupItem.ui index a53448157..2da79ddc6 100644 --- a/retroshare-gui/src/gui/TheWire/WireGroupItem.ui +++ b/retroshare-gui/src/gui/TheWire/WireGroupItem.ui @@ -6,8 +6,8 @@ 0 0 - 292 - 115 + 276 + 114
diff --git a/retroshare-gui/src/gui/chat/ChatLobbyDialog.cpp b/retroshare-gui/src/gui/chat/ChatLobbyDialog.cpp index dd4a128a4..3b92883e8 100644 --- a/retroshare-gui/src/gui/chat/ChatLobbyDialog.cpp +++ b/retroshare-gui/src/gui/chat/ChatLobbyDialog.cpp @@ -208,8 +208,6 @@ ChatLobbyDialog::ChatLobbyDialog(const ChatLobbyId& lid, QWidget *parent, Qt::Wi connect(unsubscribeButton, SIGNAL(clicked()), this , SLOT(leaveLobby())); getChatWidget()->addTitleBarWidget(unsubscribeButton) ; - - mFontSizeHandler.registerFontSize(ui.participantsList); } void ChatLobbyDialog::leaveLobby() diff --git a/retroshare-gui/src/gui/chat/ChatLobbyDialog.h b/retroshare-gui/src/gui/chat/ChatLobbyDialog.h index c3572cc4b..065abacee 100644 --- a/retroshare-gui/src/gui/chat/ChatLobbyDialog.h +++ b/retroshare-gui/src/gui/chat/ChatLobbyDialog.h @@ -26,7 +26,6 @@ #include "gui/common/RSTreeWidgetItem.h" #include "ChatDialog.h" #include "PopupChatWindow.h" -#include "util/FontSizeHandler.h" // Q_DECLARE_METATYPE(RsGxsId) // Q_DECLARE_METATYPE(QList) @@ -116,8 +115,6 @@ private: bool mWindowedSetted; PopupChatWindow* mPCWindow; - FontSizeHandler mFontSizeHandler; - /** Qt Designer generated object */ Ui::ChatLobbyDialog ui; diff --git a/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.cpp b/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.cpp index 719ad7d2d..4407cc73c 100644 --- a/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.cpp +++ b/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.cpp @@ -146,48 +146,8 @@ QString ChatLobbyUserNotify::getNotifyMessage(bool plural) void ChatLobbyUserNotify::iconClicked() { - #if defined(Q_OS_DARWIN) - std::list lobbies; - rsMsgs->getChatLobbyList(lobbies); - bool doUpdate=false; - - for (lobby_map::iterator itCL=_listMsg.begin(); itCL!=_listMsg.end();) - { - bool bFound=false; - QString strLobbyName=tr("Unknown Lobby"); - QIcon icoLobby=QIcon(); - std::list::const_iterator lobbyIt; - for (lobbyIt = lobbies.begin(); lobbyIt != lobbies.end(); ++lobbyIt) { - ChatLobbyId clId = *lobbyIt; - if (clId==itCL->first) { - ChatLobbyInfo clInfo; - if (rsMsgs->getChatLobbyInfo(clId,clInfo)) - strLobbyName=QString::fromUtf8(clInfo.lobby_name.c_str()) ; - bFound=true; - break; - } - } - - if (bFound) - { - MainWindow::showWindow(MainWindow::ChatLobby); - ChatLobbyWidget *chatLobbyWidget = dynamic_cast(MainWindow::getPage(MainWindow::ChatLobby)); - if (chatLobbyWidget) chatLobbyWidget->showLobbyAnchor(itCL->first,strLobbyName); - ++itCL ; - } - else - { - lobby_map::iterator ittmp(itCL); - ++ittmp ; - _listMsg.erase(itCL); - itCL=ittmp ; - doUpdate=true; - } - } - #else - /// Tray icon Menu /// - QMenu* trayMenu = createMenu(); + QMenu* trayMenu = new QMenu(MainWindow::getInstance()); std::list lobbies; rsMsgs->getChatLobbyList(lobbies); bool doUpdate=false; @@ -226,25 +186,27 @@ void ChatLobbyUserNotify::iconClicked() } } + if (notifyCombined()) { + QSystemTrayIcon* trayIcon=getTrayIcon(); + if (trayIcon!=NULL) trayIcon->setContextMenu(trayMenu); + } else { + QAction* action=getNotifyIcon(); + if (action!=NULL) { + action->setMenu(trayMenu); + } + } + QString strName=tr("Remove All"); QAction *pAction = new QAction( QIcon(), strName, trayMenu); ActionTag actionTag={0x0, "", true}; pAction->setData(qVariantFromValue(actionTag)); + connect(trayMenu, SIGNAL(triggered(QAction*)), this, SLOT(subMenuClicked(QAction*))); + connect(trayMenu, SIGNAL(hovered(QAction*)), this, SLOT(subMenuHovered(QAction*))); trayMenu->addAction(pAction); trayMenu->exec(QCursor::pos()); - delete(trayMenu); if (doUpdate) updateIcon(); - #endif -} - -QMenu* ChatLobbyUserNotify::createMenu() -{ - QMenu* menu = new QMenu(MainWindow::getInstance()); - connect(menu, SIGNAL(triggered(QAction*)), this, SLOT(subMenuClicked(QAction*))); - connect(menu, SIGNAL(hovered(QAction*)), this, SLOT(subMenuHovered(QAction*))); - return menu; } void ChatLobbyUserNotify::makeSubMenu(QMenu* parentMenu, QIcon icoLobby, QString strLobbyName, ChatLobbyId id) @@ -255,7 +217,11 @@ void ChatLobbyUserNotify::makeSubMenu(QMenu* parentMenu, QIcon icoLobby, QString unsigned int msgCount=msgMap.size(); + if(!parentMenu) parentMenu = new QMenu(MainWindow::getInstance()); QMenu *lobbyMenu = parentMenu->addMenu(icoLobby, strLobbyName); + connect(lobbyMenu, SIGNAL(triggered(QAction*)), this, SLOT(subMenuClicked(QAction*))); + connect(lobbyMenu, SIGNAL(hovered(QAction*)), this, SLOT(subMenuHovered(QAction*))); + lobbyMenu->setToolTip(getNotifyMessage(msgCount>1).arg(msgCount)); for (msg_map::iterator itMsg=msgMap.begin(); itMsg!=msgMap.end(); ++itMsg) { @@ -277,6 +243,7 @@ void ChatLobbyUserNotify::makeSubMenu(QMenu* parentMenu, QIcon icoLobby, QString ActionTag actionTag={itCL->first, "", true}; pAction->setData(qVariantFromValue(actionTag)); lobbyMenu->addAction(pAction); + } void ChatLobbyUserNotify::iconHovered() @@ -284,6 +251,7 @@ void ChatLobbyUserNotify::iconHovered() iconClicked(); } + void ChatLobbyUserNotify::chatLobbyNewMessage(ChatLobbyId lobby_id, QDateTime time, QString senderName, QString msg) { diff --git a/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.h b/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.h index 2e49f450f..fd95511b4 100644 --- a/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.h +++ b/retroshare-gui/src/gui/chat/ChatLobbyUserNotify.h @@ -49,7 +49,6 @@ public: ChatLobbyUserNotify(QObject *parent = 0); virtual bool hasSetting(QString *name, QString *group); - QMenu* createMenu(); void makeSubMenu(QMenu* parentMenu, QIcon icoLobby, QString strLobbyName, ChatLobbyId id); void chatLobbyNewMessage(ChatLobbyId lobby_id, QDateTime time, QString senderName, QString msg); void chatLobbyCleared(ChatLobbyId lobby_id, QString anchor, bool onlyUnread=false); diff --git a/retroshare-gui/src/gui/chat/ChatUserNotify.cpp b/retroshare-gui/src/gui/chat/ChatUserNotify.cpp index dcafae59a..5f78739c3 100644 --- a/retroshare-gui/src/gui/chat/ChatUserNotify.cpp +++ b/retroshare-gui/src/gui/chat/ChatUserNotify.cpp @@ -76,7 +76,7 @@ bool ChatUserNotify::hasSetting(QString *name, QString *group) QIcon ChatUserNotify::getIcon() { - return FilesDefs::getIconFromQtResourcePath(":/images/orange-bubble-64.png"); + return FilesDefs::getIconFromQtResourcePath(":/images/chat.png"); } QIcon ChatUserNotify::getMainIcon(bool hasNew) diff --git a/retroshare-gui/src/gui/chat/ChatWidget.cpp b/retroshare-gui/src/gui/chat/ChatWidget.cpp index abab8336a..03f954964 100644 --- a/retroshare-gui/src/gui/chat/ChatWidget.cpp +++ b/retroshare-gui/src/gui/chat/ChatWidget.cpp @@ -982,12 +982,11 @@ void ChatWidget::on_notifyButton_clicked() if(!notify) return; if (chatType() != CHATTYPE_LOBBY) return; - QMenu* menu = notify->createMenu(); + QMenu* menu = new QMenu(MainWindow::getInstance()); QIcon icoLobby=(ui->notifyButton->icon()); notify->makeSubMenu(menu, icoLobby, title, chatId.toLobbyId()); menu->exec(ui->notifyButton->mapToGlobal(QPoint(0,ui->notifyButton->geometry().height()))); - delete(menu); } diff --git a/retroshare-gui/src/gui/common/AvatarDefs.cpp b/retroshare-gui/src/gui/common/AvatarDefs.cpp index 3255501aa..ccca08707 100644 --- a/retroshare-gui/src/gui/common/AvatarDefs.cpp +++ b/retroshare-gui/src/gui/common/AvatarDefs.cpp @@ -54,9 +54,7 @@ bool AvatarDefs::getAvatarFromSslId(const RsPeerId& sslId, QPixmap &avatar, cons /* get avatar */ rsMsgs->getAvatarData(RsPeerId(sslId), data, size); if (size == 0) { - if (!defaultImage.isEmpty()) { - avatar = FilesDefs::getPixmapFromQtResourcePath(defaultImage); - } + avatar = FilesDefs::getPixmapFromQtResourcePath(defaultImage); return false; } diff --git a/retroshare-gui/src/gui/common/AvatarWidget.cpp b/retroshare-gui/src/gui/common/AvatarWidget.cpp index 02151730a..e6d6d03d9 100644 --- a/retroshare-gui/src/gui/common/AvatarWidget.cpp +++ b/retroshare-gui/src/gui/common/AvatarWidget.cpp @@ -121,7 +121,7 @@ void AvatarWidget::setFrameType(FrameType type) //refreshAvatarImage(); refreshStatus(); - RsApplication::refreshStyleSheet(this, false); + Rshare::refreshStyleSheet(this, false); } void AvatarWidget::setId(const ChatId &id) { @@ -174,7 +174,7 @@ void AvatarWidget::refreshStatus() case NO_FRAME: case NORMAL_FRAME: { - RsApplication::refreshStyleSheet(this, false); + Rshare::refreshStyleSheet(this, false); break; } case STATUS_FRAME: @@ -252,7 +252,7 @@ void AvatarWidget::updateStatus(int status) mPeerState = status; setEnabled(((uint32_t) status == RS_STATUS_OFFLINE) ? false : true); - RsApplication::refreshStyleSheet(this, false); + Rshare::refreshStyleSheet(this, false); } void AvatarWidget::updateAvatar(const QString &peerId) diff --git a/retroshare-gui/src/gui/common/ElidedLabel.cpp b/retroshare-gui/src/gui/common/ElidedLabel.cpp index 2486d0cae..31351b08d 100644 --- a/retroshare-gui/src/gui/common/ElidedLabel.cpp +++ b/retroshare-gui/src/gui/common/ElidedLabel.cpp @@ -258,11 +258,7 @@ void ElidedLabel::mousePressEvent(QMouseEvent *ev) return; // eat event } QLabel::mousePressEvent(ev); - - if(ev->buttons()==Qt::LeftButton) - emit clicked(ev->pos()); - else if(ev->buttons()==Qt::RightButton) - emit rightClicked(ev->pos()); + emit clicked(ev->pos()); } void ElidedLabel::setTextColor(const QColor &color) diff --git a/retroshare-gui/src/gui/common/ElidedLabel.h b/retroshare-gui/src/gui/common/ElidedLabel.h index 2faa2f0ef..9290a61d1 100644 --- a/retroshare-gui/src/gui/common/ElidedLabel.h +++ b/retroshare-gui/src/gui/common/ElidedLabel.h @@ -77,8 +77,7 @@ protected: signals: void elisionChanged(bool elided); - void rightClicked(QPoint pos); - void clicked(QPoint pos); + void clicked(QPoint pos); private: bool mElided; diff --git a/retroshare-gui/src/gui/common/FriendListModel.cpp b/retroshare-gui/src/gui/common/FriendListModel.cpp index 45c054698..f8740466d 100644 --- a/retroshare-gui/src/gui/common/FriendListModel.cpp +++ b/retroshare-gui/src/gui/common/FriendListModel.cpp @@ -65,7 +65,7 @@ static const uint32_t NODE_DETAILS_UPDATE_DELAY = 5; // update each node every 5 RsFriendListModel::RsFriendListModel(QObject *parent) : QAbstractItemModel(parent) - , mDisplayGroups(true), mDisplayStatusString(true), mDisplayStatusIcon (false) + , mDisplayGroups(true), mDisplayStatusString(true) , mLastInternalDataUpdate(0), mLastNodeUpdate(0) { mFilterStrings.clear(); @@ -141,39 +141,13 @@ template<> bool RsFriendListModel::convertInternalIdToIndex<8>(quintptr ref,Entr return true; } -static QIcon createAvatar(const QPixmap &avatar, const QPixmap &overlay) -{ - int avatarWidth = avatar.width(); - int avatarHeight = avatar.height(); - - QPixmap pixmap(avatar); - - int overlaySize = (avatarWidth > avatarHeight) ? (avatarWidth/2.5) : (avatarHeight/2.5); - int overlayX = avatarWidth - overlaySize; - int overlayY = avatarHeight - overlaySize; - - QPainter painter(&pixmap); - painter.drawPixmap(overlayX, overlayY, overlaySize, overlaySize, overlay); - - QIcon icon; - icon.addPixmap(pixmap); - return icon; -} void RsFriendListModel::setDisplayStatusString(bool b) { - preMods(); mDisplayStatusString = b; postMods(); } -void RsFriendListModel::setDisplayStatusIcon(bool b) -{ - preMods(); - mDisplayStatusIcon = b; - postMods(); -} - void RsFriendListModel::setDisplayGroups(bool b) { mDisplayGroups = b; @@ -304,16 +278,16 @@ uint32_t RsFriendListModel::EntryIndex::parentRow(uint32_t nb_groups) const switch(type) { default: - case ENTRY_TYPE_UNKNOWN : return -1; - case ENTRY_TYPE_GROUP : return -1; - case ENTRY_TYPE_PROFILE : return (group_index==UNDEFINED_GROUP_INDEX_VALUE)?(-1):group_index; - case ENTRY_TYPE_NODE : return (group_index==UNDEFINED_GROUP_INDEX_VALUE)?(profile_index+nb_groups):profile_index; + case ENTRY_TYPE_UNKNOWN : return 0; + case ENTRY_TYPE_GROUP : return group_index; + case ENTRY_TYPE_PROFILE : return (group_index==UNDEFINED_GROUP_INDEX_VALUE)?(profile_index+nb_groups):profile_index; + case ENTRY_TYPE_NODE : return node_index; } } QModelIndex RsFriendListModel::index(int row, int column, const QModelIndex& parent) const { - if(row < 0 || column < 0 || column >= columnCount(parent) || row >= rowCount(parent)) + if(row < 0 || column < 0 || column >= COLUMN_THREAD_NB_COLUMNS) return QModelIndex(); if(parent.internalId() == 0) @@ -439,28 +413,17 @@ QVariant RsFriendListModel::textColorRole(const EntryIndex& fmpe,int column) con { switch(fmpe.type) { - case ENTRY_TYPE_GROUP: return QVariant(QBrush(mTextColorGroup)); - case ENTRY_TYPE_PROFILE: return QVariant(QBrush(mTextColorStatus[onlineRole(fmpe,column).toInt()])); - case ENTRY_TYPE_NODE: return QVariant(QBrush(mTextColorStatus[statusRole(fmpe,column).toInt()])); + case ENTRY_TYPE_GROUP: return QVariant(QBrush(mTextColorGroup)); + case ENTRY_TYPE_PROFILE: + case ENTRY_TYPE_NODE: return QVariant(QBrush(mTextColorStatus[onlineRole(fmpe,column).toInt()])); default: return QVariant(); } } -// statusRole returns the status (e.g. RS_STATUS_BUSY). It is used only to change the font color - -QVariant RsFriendListModel::statusRole(const EntryIndex& fmpe,int /*column*/) const +QVariant RsFriendListModel::statusRole(const EntryIndex& /*fmpe*/,int /*column*/) const { - const HierarchicalNodeInformation *node = getNodeInfo(fmpe); - - if(node) - { - StatusInfo status; - rsStatus->getStatus(node->node_info.id, status); - - return QVariant(status.status); - } - return QVariant(); + return QVariant();//fmpe.mMsgStatus); } bool RsFriendListModel::passesFilter(const EntryIndex& e,int /*column*/) const @@ -585,9 +548,6 @@ QVariant RsFriendListModel::sortRole(const EntryIndex& entry,int column) const } } -// Only returns two values: RS_STATUS_ONLINE, or RS_STATUS_OFFLINE. This is used to decide on text font (bold) -// and whether profiles have children or not when offline nodes are shown. - QVariant RsFriendListModel::onlineRole(const EntryIndex& e, int /*col*/) const { switch(e.type) @@ -625,10 +585,13 @@ QVariant RsFriendListModel::onlineRole(const EntryIndex& e, int /*col*/) const { const HierarchicalNodeInformation *node = getNodeInfo(e); - if(node && bool(node->node_info.state & RS_PEER_STATE_CONNECTED)) - return QVariant(RS_STATUS_ONLINE); - else - return QVariant(RS_STATUS_OFFLINE); + if(node) + { + StatusInfo status; + rsStatus->getStatus(node->node_info.id, status); + + return QVariant(status.status); + } } } return QVariant(RS_STATUS_OFFLINE); @@ -663,6 +626,12 @@ QVariant RsFriendListModel::fontRole(const EntryIndex& e, int col) const } } +class AutoEndel +{ +public: + ~AutoEndel() { std::cerr << std::endl;} +}; + QVariant RsFriendListModel::displayRole(const EntryIndex& e, int col) const { #ifdef DEBUG_MODEL_INDEX @@ -781,7 +750,7 @@ QVariant RsFriendListModel::displayRole(const EntryIndex& e, int col) const else { return QVariant(QString::fromUtf8(node->node_info.location.c_str())+"\n" - + "(" + StatusDefs::name(statusRole(e,col).toInt()) + ")"); + + "(" + StatusDefs::name(onlineRole(e,col).toInt()) + ")"); } else return QVariant(QString::fromUtf8(node->node_info.location.c_str())); @@ -900,69 +869,6 @@ bool RsFriendListModel::getPeerOnlineStatus(const EntryIndex& e) const return (noded && (noded->node_info.state & RS_PEER_STATE_CONNECTED)); } -const RsFriendListModel::HierarchicalNodeInformation *RsFriendListModel::getBestNodeInformation(const HierarchicalProfileInformation *profileInfo, uint32_t *status) const -{ - if (status) { - *status = RS_STATUS_OFFLINE; - } - - if (!profileInfo) { - return NULL; - } - - const RsFriendListModel::HierarchicalNodeInformation *bestNodeInformation = NULL; - int bestStatusIndex = 0; - - /* Find the best status */ - for (uint32_t i = 0; i < profileInfo->child_node_indices.size(); ++i) { - const RsFriendListModel::HierarchicalNodeInformation &nodeInformation = mLocations[profileInfo->child_node_indices[i]]; - StatusInfo statusInfo; - rsStatus->getStatus(nodeInformation.node_info.id, statusInfo); - - int statusIndex = 0; - switch (statusInfo.status) { - case RS_STATUS_OFFLINE: - statusIndex = 1; - break; - - case RS_STATUS_INACTIVE: - statusIndex = 2; - break; - - case RS_STATUS_AWAY: - statusIndex = 3; - break; - - case RS_STATUS_BUSY: - statusIndex = 4; - break; - - case RS_STATUS_ONLINE: - statusIndex = 5; - break; - - default: - std::cerr << "FriendListModel: Unknown status " << statusInfo.status << std::endl; - } - - if (bestStatusIndex == 0 || statusIndex > bestStatusIndex) { - /* first status or better status */ - bestStatusIndex = statusIndex; - bestNodeInformation = &nodeInformation; - - if (status) { - *status = statusInfo.status; - } - } - } - - if (bestStatusIndex == 0) { - return NULL; - } - - return bestNodeInformation; -} - QVariant RsFriendListModel::decorationRole(const EntryIndex& entry,int col) const { if(col > 0) @@ -996,42 +902,13 @@ QVariant RsFriendListModel::decorationRole(const EntryIndex& entry,int col) cons { if(!isProfileExpanded(entry)) { - QPixmap sslAvatar; - bool foundAvatar = false; + QPixmap sslAvatar = FilesDefs::getPixmapFromQtResourcePath(AVATAR_DEFAULT_IMAGE); + const HierarchicalProfileInformation *hn = getProfileInfo(entry); - uint32_t status = RS_STATUS_OFFLINE; - const HierarchicalNodeInformation *bestNodeInformation = NULL; - if (mDisplayStatusIcon) { - bestNodeInformation = getBestNodeInformation(hn, &status); - if (bestNodeInformation) { - if (AvatarDefs::getAvatarFromSslId(RsPeerId(bestNodeInformation->node_info.id.toStdString()), sslAvatar, "")) { - /* Use avatar from best node */ - foundAvatar = true; - } - } - } - - if (!foundAvatar) { - /* Use first available avatar */ - for(uint32_t i=0;ichild_node_indices.size();++i) { - if(AvatarDefs::getAvatarFromSslId(RsPeerId(mLocations[hn->child_node_indices[i]].node_info.id.toStdString()), sslAvatar, "")) { - foundAvatar = true; - break; - } - } - } - - if (!foundAvatar || sslAvatar.isNull()) { - sslAvatar = FilesDefs::getPixmapFromQtResourcePath(AVATAR_DEFAULT_IMAGE); - } - - if (mDisplayStatusIcon) { - if (bestNodeInformation) { - QPixmap sslOverlayIcon = FilesDefs::getPixmapFromQtResourcePath(StatusDefs::imageStatus(status)); - return QVariant(QIcon(createAvatar(sslAvatar, sslOverlayIcon))); - } - } + for(uint32_t i=0;ichild_node_indices.size();++i) + if(AvatarDefs::getAvatarFromSslId(RsPeerId(mLocations[hn->child_node_indices[i]].node_info.id.toStdString()), sslAvatar)) + return QVariant(QIcon(sslAvatar)); return QVariant(QIcon(sslAvatar)); } @@ -1048,10 +925,6 @@ QVariant RsFriendListModel::decorationRole(const EntryIndex& entry,int col) cons QPixmap sslAvatar; AvatarDefs::getAvatarFromSslId(RsPeerId(hn->node_info.id.toStdString()), sslAvatar); - if (mDisplayStatusIcon) { - QPixmap sslOverlayIcon = FilesDefs::getPixmapFromQtResourcePath(StatusDefs::imageStatus(statusRole(entry, col).toInt())); - return QVariant(QIcon(createAvatar(sslAvatar, sslOverlayIcon))); - } return QVariant(QIcon(sslAvatar)); } @@ -1272,6 +1145,8 @@ void RsFriendListModel::updateInternalData() mLocations.clear(); mTopLevel.clear(); + endResetModel(); + auto TL = mTopLevel ; // This allows to fill TL without touching mTopLevel outside of [begin/end]InsertRows(). // create a map of profiles and groups @@ -1407,8 +1282,7 @@ void RsFriendListModel::updateInternalData() endInsertRows(); } - endResetModel(); - postMods(); + postMods(); mLastInternalDataUpdate = time(NULL); } diff --git a/retroshare-gui/src/gui/common/FriendListModel.h b/retroshare-gui/src/gui/common/FriendListModel.h index e19a84f04..646159377 100644 --- a/retroshare-gui/src/gui/common/FriendListModel.h +++ b/retroshare-gui/src/gui/common/FriendListModel.h @@ -129,10 +129,6 @@ public: void setDisplayStatusString(bool b); bool getDisplayStatusString() const { return mDisplayStatusString; } - void setDisplayStatusIcon(bool b); - bool getDisplayStatusIcon() const { return mDisplayStatusIcon; } - - EntryType getType(const QModelIndex&) const; @@ -223,14 +219,11 @@ private: uint32_t updateFilterStatus(ForumModelIndex i,int column,const QStringList& strings); - const HierarchicalNodeInformation *getBestNodeInformation(const HierarchicalProfileInformation *profileInfo, uint32_t *status = NULL) const; - QStringList mFilterStrings; FilterType mFilterType; bool mDisplayGroups ; bool mDisplayStatusString ; - bool mDisplayStatusIcon ; rstime_t mLastInternalDataUpdate; rstime_t mLastNodeUpdate;; diff --git a/retroshare-gui/src/gui/common/FriendSelectionWidget.cpp b/retroshare-gui/src/gui/common/FriendSelectionWidget.cpp index d9fc4b8dc..2e91ded27 100644 --- a/retroshare-gui/src/gui/common/FriendSelectionWidget.cpp +++ b/retroshare-gui/src/gui/common/FriendSelectionWidget.cpp @@ -127,7 +127,7 @@ FriendSelectionWidget::FriendSelectionWidget(QWidget *parent) ui->filterLineEdit->showFilterIcon(); /* Refresh style to have the correct text color */ - RsApplication::refreshStyleSheet(this, false); + Rshare::refreshStyleSheet(this, false); mEventHandlerId_identities = 0; rsEvents->registerEventsHandler( [this](std::shared_ptr event) { @@ -135,8 +135,6 @@ FriendSelectionWidget::FriendSelectionWidget(QWidget *parent) mEventHandlerId_peers = 0; rsEvents->registerEventsHandler( [this](std::shared_ptr event) { RsQThreadUtils::postToObject( [this,event]() { handleEvent_main_thread(event); }) ;}, mEventHandlerId_peers, RsEventType::PEER_CONNECTION ); - - mFontSizeHandler.registerFontSize(ui->friendList); } void FriendSelectionWidget::handleEvent_main_thread(std::shared_ptr event) @@ -1227,7 +1225,7 @@ std::string FriendSelectionWidget::idFromItem(QTreeWidgetItem *item) return item->data(COLUMN_DATA, ROLE_ID).toString().toStdString(); } -void FriendSelectionWidget::sortByChecked(bool) +void FriendSelectionWidget::sortByChecked(bool sort) { mCompareRole->clear(); mCompareRole->setRole(COLUMN_NAME,ROLE_SORT_SELECTED); diff --git a/retroshare-gui/src/gui/common/FriendSelectionWidget.h b/retroshare-gui/src/gui/common/FriendSelectionWidget.h index 425e16774..f10a748fc 100644 --- a/retroshare-gui/src/gui/common/FriendSelectionWidget.h +++ b/retroshare-gui/src/gui/common/FriendSelectionWidget.h @@ -26,7 +26,6 @@ #include "retroshare/rsevents.h" #include -#include "util/FontSizeHandler.h" namespace Ui { class FriendSelectionWidget; @@ -179,8 +178,6 @@ private: std::set mPreSelectedIds; // because loading of GxsIds is asynchroneous we keep selected Ids from the client in a list here and use it to initialize after loading them. - FontSizeHandler mFontSizeHandler; - RsEventsHandlerId_t mEventHandlerId_identities; RsEventsHandlerId_t mEventHandlerId_peers; }; diff --git a/retroshare-gui/src/gui/common/FriendSelectionWidget.ui b/retroshare-gui/src/gui/common/FriendSelectionWidget.ui index a9bc8b407..065c9013b 100644 --- a/retroshare-gui/src/gui/common/FriendSelectionWidget.ui +++ b/retroshare-gui/src/gui/common/FriendSelectionWidget.ui @@ -38,6 +38,11 @@ 0 + + + 11 + + Qt::CustomContextMenu @@ -66,7 +71,7 @@ LineEditClear QLineEdit -
gui/common/LineEditClear.h
+
gui/common/LineEditClear.h
RSTreeWidget diff --git a/retroshare-gui/src/gui/common/GroupTreeWidget.cpp b/retroshare-gui/src/gui/common/GroupTreeWidget.cpp index 43861c4c6..0597a652c 100644 --- a/retroshare-gui/src/gui/common/GroupTreeWidget.cpp +++ b/retroshare-gui/src/gui/common/GroupTreeWidget.cpp @@ -148,19 +148,7 @@ GroupTreeWidget::GroupTreeWidget(QWidget *parent) : connect(ui->distantSearchLineEdit,SIGNAL(returnPressed()),this,SLOT(distantSearch())) ; - mFontSizeHandler.registerFontSize(ui->treeWidget, 1.8f, [this] (QAbstractItemView*, int fontSize) { - // Set new font size on all items - QTreeWidgetItemIterator it(ui->treeWidget); - while (*it) { - QTreeWidgetItem *item = *it; - - QFont font = item->font(GTW_COLUMN_NAME); - font.setPointSize(fontSize); - item->setFont(GTW_COLUMN_NAME, font); - - ++it; - } - }); + ui->treeWidget->setIconSize(QSize(H*1.8,H*1.8)); } GroupTreeWidget::~GroupTreeWidget() @@ -266,8 +254,8 @@ QTreeWidgetItem *GroupTreeWidget::addCategoryItem(const QString &name, const QIc RSTreeWidgetItem *item = new RSTreeWidgetItem(); ui->treeWidget->addTopLevelItem(item); // To get StyleSheet for Items -// ui->treeWidget->style()->unpolish(ui->treeWidget); -// ui->treeWidget->style()->polish(ui->treeWidget); + ui->treeWidget->style()->unpolish(ui->treeWidget); + ui->treeWidget->style()->polish(ui->treeWidget); item->setText(GTW_COLUMN_NAME, name); item->setData(GTW_COLUMN_DATA, ROLE_NAME, name); @@ -402,7 +390,7 @@ void GroupTreeWidget::fillGroupItems(QTreeWidgetItem *categoryItem, const QList< if (item == NULL) { item = new RSTreeWidgetItem(compareRole); item->setData(GTW_COLUMN_DATA, ROLE_ID, itemInfo.id); - item->setFont(GTW_COLUMN_NAME, ui->treeWidget->font()); + item->setFont(GTW_COLUMN_DATA, ui->treeWidget->font()); //static_cast(item)->setNoDataAsLast(true); //Uncomment this to sort data with QVariant() always at end. categoryItem->addChild(item); } diff --git a/retroshare-gui/src/gui/common/GroupTreeWidget.h b/retroshare-gui/src/gui/common/GroupTreeWidget.h index 4aadb1c51..b27c37014 100644 --- a/retroshare-gui/src/gui/common/GroupTreeWidget.h +++ b/retroshare-gui/src/gui/common/GroupTreeWidget.h @@ -25,7 +25,6 @@ #include #include -#include "util/FontSizeHandler.h" class QToolButton; class RshareSettings; @@ -164,7 +163,6 @@ private: // Compare role used for each column RSTreeWidgetItemCompareRole *compareRole; - FontSizeHandler mFontSizeHandler; Ui::GroupTreeWidget *ui; }; diff --git a/retroshare-gui/src/gui/common/GroupTreeWidget.ui b/retroshare-gui/src/gui/common/GroupTreeWidget.ui index 10b5eb48b..d3e0a14a5 100644 --- a/retroshare-gui/src/gui/common/GroupTreeWidget.ui +++ b/retroshare-gui/src/gui/common/GroupTreeWidget.ui @@ -35,10 +35,10 @@ - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -70,6 +70,11 @@ 0 + + + 11 + + Qt::CustomContextMenu diff --git a/retroshare-gui/src/gui/common/LineEditClear.cpp b/retroshare-gui/src/gui/common/LineEditClear.cpp index a6ba67bfa..c3d68b512 100644 --- a/retroshare-gui/src/gui/common/LineEditClear.cpp +++ b/retroshare-gui/src/gui/common/LineEditClear.cpp @@ -234,10 +234,8 @@ void LineEditClear::setFilterButtonIcon(const QIcon &icon) mFilterButton->setIcon(icon); ensurePolished(); -#if !defined(Q_OS_DARWIN) QFontMetrics fm(this->font()); QSize size(fm.width("___"), fm.height()); mFilterButton->setFixedSize(size); mFilterButton->setIconSize(size); -#endif } diff --git a/retroshare-gui/src/gui/common/MacDockIconHandler.h b/retroshare-gui/src/gui/common/MacDockIconHandler.h deleted file mode 100644 index d9d4d41f5..000000000 --- a/retroshare-gui/src/gui/common/MacDockIconHandler.h +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2011-2018 The Bitcoin Core developers -// Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. - -#ifndef MACDOCKICONHANDLER_H -#define MACDOCKICONHANDLER_H - -#include - -/** macOS-specific Dock icon handler. - */ -class MacDockIconHandler : public QObject -{ - Q_OBJECT - -public: - static MacDockIconHandler *instance(); - static void cleanup(); - -Q_SIGNALS: - void dockIconClicked(); - -private: - MacDockIconHandler(); -}; - -#endif // MACDOCKICONHANDLER_H diff --git a/retroshare-gui/src/gui/common/MacDockIconHandler.mm b/retroshare-gui/src/gui/common/MacDockIconHandler.mm deleted file mode 100644 index 51a26135d..000000000 --- a/retroshare-gui/src/gui/common/MacDockIconHandler.mm +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2011-2019 The Bitcoin Core developers -// Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. - -#include "MacDockIconHandler.h" - -#include -#include - -static MacDockIconHandler *s_instance = nullptr; - -bool dockClickHandler(id self, SEL _cmd, ...) { - Q_UNUSED(self) - Q_UNUSED(_cmd) - - Q_EMIT s_instance->dockIconClicked(); - - // Return NO (false) to suppress the default macOS actions - return false; -} - -void setupDockClickHandler() { - Class delClass = (Class)[[[NSApplication sharedApplication] delegate] class]; - SEL shouldHandle = sel_registerName("applicationShouldHandleReopen:hasVisibleWindows:"); - class_replaceMethod(delClass, shouldHandle, (IMP)dockClickHandler, "B@:"); -} - -MacDockIconHandler::MacDockIconHandler() : QObject() -{ - setupDockClickHandler(); -} - -MacDockIconHandler *MacDockIconHandler::instance() -{ - if (!s_instance) - s_instance = new MacDockIconHandler(); - return s_instance; -} - -void MacDockIconHandler::cleanup() -{ - delete s_instance; -} - -/** - * Force application activation on macOS. With Qt 5.5.1 this is required when - * an action in the Dock menu is triggered. - * TODO: Define a Qt version where it's no-longer necessary. - */ -void ForceActivation() -{ - [[NSApplication sharedApplication] activateIgnoringOtherApps:YES]; -} diff --git a/retroshare-gui/src/gui/common/NewFriendList.cpp b/retroshare-gui/src/gui/common/NewFriendList.cpp index 38e141e86..893433469 100644 --- a/retroshare-gui/src/gui/common/NewFriendList.cpp +++ b/retroshare-gui/src/gui/common/NewFriendList.cpp @@ -54,7 +54,6 @@ #include "gui/chat/ChatUserNotify.h" #include "gui/connect/ConnectProgressDialog.h" #include "gui/common/ElidedLabel.h" -#include "gui/notifyqt.h" #include "NewFriendList.h" #include "ui_NewFriendList.h" @@ -203,9 +202,6 @@ NewFriendList::NewFriendList(QWidget */*parent*/) : /* RsAutoUpdatePage(5000,par rsEvents->registerEventsHandler( [this](std::shared_ptr e) { handleEvent(e); }, mEventHandlerId_peer, RsEventType::PEER_CONNECTION ); rsEvents->registerEventsHandler( [this](std::shared_ptr e) { handleEvent(e); }, mEventHandlerId_gssp, RsEventType::GOSSIP_DISCOVERY ); - connect(NotifyQt::getInstance(), SIGNAL(peerHasNewAvatar(QString)), this, SLOT(forceUpdateDisplay())); - connect(NotifyQt::getInstance(), SIGNAL(peerStatusChanged(QString,int)), this, SLOT(forceUpdateDisplay())); - mModel = new RsFriendListModel(ui->peerTreeWidget); mProxyModel = new FriendListSortFilterProxyModel(ui->peerTreeWidget->header(),this); @@ -265,7 +261,6 @@ NewFriendList::NewFriendList(QWidget */*parent*/) : /* RsAutoUpdatePage(5000,par connect(ui->actionShowOfflineFriends, SIGNAL(triggered(bool)), this, SLOT(setShowUnconnected(bool))); connect(ui->actionShowState, SIGNAL(triggered(bool)), this, SLOT(setShowState(bool)) ); - connect(ui->actionShowStateIcon, SIGNAL(triggered(bool)), this, SLOT(setShowStateIcon(bool)) ); connect(ui->actionShowGroups, SIGNAL(triggered(bool)), this, SLOT(setShowGroups(bool)) ); connect(ui->actionExportFriendlist, SIGNAL(triggered()) , this, SLOT(exportFriendlistClicked())); connect(ui->actionImportFriendlist, SIGNAL(triggered()) , this, SLOT(importFriendlistClicked())); @@ -273,8 +268,6 @@ NewFriendList::NewFriendList(QWidget */*parent*/) : /* RsAutoUpdatePage(5000,par connect(ui->filterLineEdit, SIGNAL(textChanged(QString)), this, SLOT(filterItems(QString)),Qt::QueuedConnection); connect(h, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(headerContextMenuRequested(QPoint))); - mFontSizeHandler.registerFontSize(ui->peerTreeWidget,1.5f); - // #ifdef RS_DIRECT_CHAT // connect(ui->peerTreeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(chatNode())); // #endif @@ -348,12 +341,10 @@ void NewFriendList::headerContextMenuRequested(QPoint /*p*/) displayMenu.addAction(ui->actionShowOfflineFriends); displayMenu.addAction(ui->actionShowState); - displayMenu.addAction(ui->actionShowStateIcon); displayMenu.addAction(ui->actionShowGroups); ui->actionShowOfflineFriends->setChecked(mProxyModel->showOfflineNodes()); ui->actionShowState->setChecked(mModel->getDisplayStatusString()); - ui->actionShowStateIcon->setChecked(mModel->getDisplayStatusIcon()); ui->actionShowGroups->setChecked(mModel->getDisplayGroups()); QHeaderView *header = ui->peerTreeWidget->header(); @@ -514,8 +505,6 @@ void NewFriendList::processSettings(bool load) mModel->setDisplayStatusString(Settings->value("showState", mModel->getDisplayStatusString()).toBool()); mModel->setDisplayGroups(Settings->value("showGroups", mModel->getDisplayGroups()).toBool()); - mModel->setDisplayStatusIcon(Settings->value("showStateIcon", mModel->getDisplayStatusIcon()).toBool()); - setColumnVisible(RsFriendListModel::COLUMN_THREAD_IP,Settings->value("showIP", isColumnVisible(RsFriendListModel::COLUMN_THREAD_IP)).toBool()); setColumnVisible(RsFriendListModel::COLUMN_THREAD_ID,Settings->value("showID", isColumnVisible(RsFriendListModel::COLUMN_THREAD_ID)).toBool()); @@ -539,8 +528,6 @@ void NewFriendList::processSettings(bool load) Settings->setValue("hideUnconnected", !mProxyModel->showOfflineNodes()); Settings->setValue("showState", mModel->getDisplayStatusString()); Settings->setValue("showGroups", mModel->getDisplayGroups()); - Settings->setValue("showStateIcon", mModel->getDisplayStatusIcon()); - Settings->setValue("showIP",isColumnVisible(RsFriendListModel::COLUMN_THREAD_IP)); Settings->setValue("showID",isColumnVisible(RsFriendListModel::COLUMN_THREAD_ID)); @@ -1632,9 +1619,7 @@ bool NewFriendList::isColumnVisible(int col) const } void NewFriendList::setColumnVisible(int col,bool visible) { -#ifdef DEBUG_NEW_FRIEND_LIST std::cerr << "Setting column " << col << " to be visible: " << visible << std::endl; -#endif ui->peerTreeWidget->setColumnHidden(col, !visible); } void NewFriendList::toggleColumnVisible() @@ -1656,12 +1641,6 @@ void NewFriendList::setShowState(bool show) processSettings(false); } -void NewFriendList::setShowStateIcon(bool show) -{ - applyWhileKeepingTree([show,this]() { mModel->setDisplayStatusIcon(show) ; }); - processSettings(false); -} - void NewFriendList::setShowGroups(bool show) { applyWhileKeepingTree([show,this]() { mModel->setDisplayGroups(show) ; }); diff --git a/retroshare-gui/src/gui/common/NewFriendList.h b/retroshare-gui/src/gui/common/NewFriendList.h index cf4c68e6f..cf2e892b3 100644 --- a/retroshare-gui/src/gui/common/NewFriendList.h +++ b/retroshare-gui/src/gui/common/NewFriendList.h @@ -29,7 +29,6 @@ #include "FriendListModel.h" #include "retroshare/rsstatus.h" -#include "util/FontSizeHandler.h" namespace Ui { class NewFriendList; @@ -88,9 +87,7 @@ public slots: void setShowGroups(bool show); void setShowUnconnected(bool hidden); void setShowState(bool show); - void setShowStateIcon(bool show); - void headerContextMenuRequested(QPoint); - void exportFriendlistClicked(); + void headerContextMenuRequested(QPoint); private slots: void sortColumn(int col,Qt::SortOrder so); @@ -105,7 +102,6 @@ private: Ui::NewFriendList *ui; RsFriendListModel *mModel; QAction *mActionSortByState; - FontSizeHandler mFontSizeHandler; void applyWhileKeepingTree(std::function predicate); @@ -168,5 +164,6 @@ private slots: void editGroup(); void removeGroup(); + void exportFriendlistClicked(); void importFriendlistClicked(); }; diff --git a/retroshare-gui/src/gui/common/NewFriendList.ui b/retroshare-gui/src/gui/common/NewFriendList.ui index 286cf4304..20ae02eb2 100644 --- a/retroshare-gui/src/gui/common/NewFriendList.ui +++ b/retroshare-gui/src/gui/common/NewFriendList.ui @@ -29,10 +29,10 @@ - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -58,6 +58,11 @@ + + + 12 + + Qt::CustomContextMenu @@ -119,17 +124,6 @@ import your friendlist including groups - - - true - - - Status icons - - - Show status icons - - diff --git a/retroshare-gui/src/gui/common/RsCollection.cpp b/retroshare-gui/src/gui/common/RsCollection.cpp index e13452038..c49296503 100644 --- a/retroshare-gui/src/gui/common/RsCollection.cpp +++ b/retroshare-gui/src/gui/common/RsCollection.cpp @@ -37,411 +37,534 @@ const QString RsCollection::ExtensionString = QString("rscollection") ; -RsCollection::RsCollection() +RsCollection::RsCollection(QObject *parent) + : QObject(parent), _xml_doc("RsCollection") { - mFileTree = std::unique_ptr(new RsFileTree()); -} -RsCollection::RsCollection(const RsFileTree& ft) -{ - mFileTree = std::unique_ptr(new RsFileTree(ft)); - - for(uint64_t i=0;inumFiles();++i) - mHashes.insert(std::make_pair(mFileTree->fileData(i).hash,i )); + _root = _xml_doc.createElement("RsCollection"); + _xml_doc.appendChild(_root); } -RsCollection::RsCollection(const std::vector& file_infos,FileSearchFlags flags) - : mFileTree(new RsFileTree) +RsCollection::RsCollection(const RsFileTree& fr) + : _xml_doc("RsCollection") { - if(! ( (flags & RS_FILE_HINTS_LOCAL) || (flags & RS_FILE_HINTS_REMOTE))) - { - std::cerr << "(EE) Wrong flags passed to RsCollection constructor. Please fix the code!" << std::endl; - return ; - } + _root = _xml_doc.createElement("RsCollection"); + _xml_doc.appendChild(_root); - for(uint32_t i = 0;iroot(),file_infos[i],flags) ; + recursAddElements(_xml_doc,fr,0,_root) ; +} - for(uint64_t i=0;inumFiles();++i) - mHashes.insert(std::make_pair(mFileTree->fileData(i).hash,i )); +RsCollection::RsCollection(const std::vector& file_infos,FileSearchFlags flags, QObject *parent) + : QObject(parent), _xml_doc("RsCollection") +{ + _root = _xml_doc.createElement("RsCollection"); + _xml_doc.appendChild(_root); + + if(! ( (flags & RS_FILE_HINTS_LOCAL) || (flags & RS_FILE_HINTS_REMOTE))) + { + std::cerr << "(EE) Wrong flags passed to RsCollection constructor. Please fix the code!" << std::endl; + return ; + } + + for(uint32_t i = 0;i colFileInfos ; + + recursCollectColFileInfos(docElem,colFileInfos,QString(),false) ; + + RsCollectionDialog(_fileName, colFileInfos, false).exec() ; +} + +void RsCollection::autoDownloadFiles() const +{ + QDomElement docElem = _xml_doc.documentElement(); + + std::vector colFileInfos; + + recursCollectColFileInfos(docElem,colFileInfos,QString(),false); + + QString dlDir = QString::fromUtf8(rsFiles->getDownloadDirectory().c_str()); + + foreach(ColFileInfo colFileInfo, colFileInfos) + { + autoDownloadFiles(colFileInfo, dlDir); + } +} + void RsCollection::autoDownloadFiles(ColFileInfo colFileInfo, QString dlDir) const { - if (!colFileInfo.filename_has_wrong_characters) - { - QString cleanPath = dlDir + colFileInfo.path ; - std::cout << "making directory " << cleanPath.toStdString() << std::endl; + if (!colFileInfo.filename_has_wrong_characters) + { + QString cleanPath = dlDir + colFileInfo.path ; + std::cout << "making directory " << cleanPath.toStdString() << std::endl; - if(!QDir(QApplication::applicationDirPath()).mkpath(cleanPath)) - std::cerr << "Unable to make path: " + cleanPath.toStdString() << std::endl; + if(!QDir(QApplication::applicationDirPath()).mkpath(cleanPath)) + std::cerr << "Unable to make path: " + cleanPath.toStdString() << std::endl; - if (colFileInfo.type==DIR_TYPE_FILE) - rsFiles->FileRequest(colFileInfo.name.toUtf8().constData(), - RsFileHash(colFileInfo.hash.toStdString()), - colFileInfo.size, - cleanPath.toUtf8().constData(), - RS_FILE_REQ_ANONYMOUS_ROUTING, - std::list()); - } - foreach(ColFileInfo colFileInfoChild, colFileInfo.children) - { - autoDownloadFiles(colFileInfoChild, dlDir); - } + if (colFileInfo.type==DIR_TYPE_FILE) + rsFiles->FileRequest(colFileInfo.name.toUtf8().constData(), + RsFileHash(colFileInfo.hash.toStdString()), + colFileInfo.size, + cleanPath.toUtf8().constData(), + RS_FILE_REQ_ANONYMOUS_ROUTING, + std::list()); + } + foreach(ColFileInfo colFileInfoChild, colFileInfo.children) + { + autoDownloadFiles(colFileInfoChild, dlDir); + } } static QString purifyFileName(const QString& input,bool& bad) { - static const QString bad_chars = "/\\\"*:?<>|" ; - bad = false ; - QString output = input ; + static const QString bad_chars = "/\\\"*:?<>|" ; + bad = false ; + QString output = input ; - for(int i=0;iaddFile(parent_index,fname.toStdString(),hash,size); + ColFileInfo info ; + info.type = DIR_TYPE_FILE ; + info.name = fname ; + info.size = size ; + info.hash = QString::fromStdString(hash.toStdString()) ; + + recursAddElements(_xml_doc,info,_root) ; } -void RsCollection::merge_in(const RsFileTree& tree, RsFileTree::DirIndex parent_index) +void RsCollection::merge_in(const RsFileTree& tree) { - recursMergeTree(mFileTree->root(),tree,tree.directoryData(parent_index)) ; + recursAddElements(_xml_doc,tree,0,_root) ; } -void RsCollection::recursMergeTree(RsFileTree::DirIndex parent,const RsFileTree& tree,const RsFileTree::DirData& dd) +void RsCollection::recursCollectColFileInfos(const QDomElement& e,std::vector& colFileInfos,const QString& current_path, bool bad_chars_in_parent) const { - for(uint32_t i=0;iaddFile(parent,fd.name,fd.hash,fd.size); - } - for(uint32_t i=0;iaddDirectory(parent,ld.name); - recursMergeTree(new_dir_index,tree,ld); - } + while(!n.isNull()) + { + QDomElement ee = n.toElement(); // try to convert the node to an element. + +#ifdef COLLECTION_DEBUG + std::cerr << " Seeing child " << ee.tagName().toStdString() << std::endl; +#endif + + if(ee.tagName() == QString("File")) + { + ColFileInfo newChild ; + newChild.hash = ee.attribute(QString("sha1")) ; + bool bad_chars_detected = false ; + newChild.name = purifyFileName(ee.attribute(QString("name")), bad_chars_detected) ; + newChild.filename_has_wrong_characters = bad_chars_detected || bad_chars_in_parent ; + newChild.size = ee.attribute(QString("size")).toULongLong() ; + newChild.path = current_path ; + newChild.type = DIR_TYPE_FILE ; + + colFileInfos.push_back(newChild) ; + } + else if(ee.tagName() == QString("Directory")) + { + ColFileInfo newParent ; + bool bad_chars_detected = false ; + QString cleanDirName = purifyFileName(ee.attribute(QString("name")),bad_chars_detected) ; + newParent.name=cleanDirName; + newParent.filename_has_wrong_characters = bad_chars_detected || bad_chars_in_parent ; + newParent.size = 0; + newParent.path = current_path ; + newParent.type = DIR_TYPE_DIR ; + + recursCollectColFileInfos(ee,newParent.children,current_path + "/" + cleanDirName, bad_chars_in_parent || bad_chars_detected) ; + uint32_t size = newParent.children.size(); + for(uint32_t i=0;iaddFile(parent,dd.name,dd.hash,dd.size); - else if (dd.type == DIR_TYPE_DIR) - { - RsFileTree::DirIndex new_dir_index = mFileTree->addDirectory(parent,dd.name); + if (details.type == DIR_TYPE_FILE) + { + QDomElement f = doc.createElement("File") ; - for(uint32_t i=0;iRequestDirDetails(dd.children[i].ref, subDirDetails, flags)) - continue; + d.setAttribute(QString("name"),QString::fromUtf8(details.name.c_str())) ; - recursAddElements(new_dir_index,subDirDetails,flags) ; - } - } + for(uint32_t i=0;iRequestDirDetails(details.children[i].ref, subDirDetails, flags)) + continue; + + recursAddElements(doc,subDirDetails,d,flags) ; + } + + e.appendChild(d) ; + } } -QString RsCollection::errorString(RsCollectionErrorCode code) +void RsCollection::recursAddElements(QDomDocument& doc,const ColFileInfo& colFileInfo,QDomElement& e) const { - switch(code) - { - default: [[fallthrough]] ; - case RsCollectionErrorCode::UNKNOWN_ERROR: return QObject::tr("Unknown error"); - case RsCollectionErrorCode::COLLECTION_NO_ERROR: return QObject::tr("No error"); - case RsCollectionErrorCode::FILE_READ_ERROR: return QObject::tr("Error while openning file"); - case RsCollectionErrorCode::FILE_CONTAINS_HARMFUL_STRINGS: return QObject::tr("Collection file contains potentially harmful code"); - case RsCollectionErrorCode::INVALID_ROOT_NODE: return QObject::tr("Invalid root node. RsCollection node was expected."); - case RsCollectionErrorCode::XML_PARSING_ERROR: return QObject::tr("XML parsing error in collection file"); - } + if (colFileInfo.type == DIR_TYPE_FILE) + { + QDomElement f = doc.createElement("File") ; + + f.setAttribute(QString("name"),colFileInfo.name) ; + f.setAttribute(QString("sha1"),colFileInfo.hash) ; + f.setAttribute(QString("size"),QString::number(colFileInfo.size)) ; + + e.appendChild(f) ; + } + else if (colFileInfo.type == DIR_TYPE_DIR) + { + QDomElement d = doc.createElement("Directory") ; + + d.setAttribute(QString("name"),colFileInfo.name) ; + + for (std::vector::const_iterator it = colFileInfo.children.begin(); it != colFileInfo.children.end(); ++it) + recursAddElements(doc,(*it),d) ; + + e.appendChild(d) ; + } } -RsCollection::RsCollection(const RsCollection& col) - : mFileTree(new RsFileTree(*col.mFileTree)),mHashes(col.mHashes) +void RsCollection::recursAddElements( + QDomDocument& doc, const RsFileTree& ft, uint32_t index, + QDomElement& e ) const { + std::vector subdirs; + std::vector subfiles ; + std::string name; + if(!ft.getDirectoryContent(name, subdirs, subfiles, index)) return; + + QDomElement d = doc.createElement("Directory") ; + d.setAttribute(QString("name"),QString::fromUtf8(name.c_str())) ; + e.appendChild(d) ; + + for (uint32_t i=0;i bad_strings ; - bad_strings.push_back(std::string("= 0) - { - if (!file.atEnd()) - file.getChar(&c); - else - c=0; + if (ok) { + _fileName = fileName; + } else { + if (showError) { + showErrorBox(fileName, QApplication::translate("RsCollectionFile", "Error parsing xml file")); + } + } - if(c == '\t' || c == '\n' || c == '\b' || c == '\r') - continue ; + return ok; +} - if (n == max_size || file.atEnd()) - for(int i=0;i= 'A' && c <= 'Z') c += 'a' - 'A' ; + std::vector bad_strings ; + bad_strings.push_back(std::string("= 0) + { + if (!file.atEnd()) + file.getChar(&c); + else + c=0; - //std::cerr << "n==" << n <<" Checking string " << std::string(current,n+1) << " c = " << std::hex << (int)c << std::dec << std::endl; + if(c == '\t' || c == '\n' || c == '\b' || c == '\r') + continue ; - for(uint i=0;i= 'A' && c <= 'Z') c += 'a' - 'A' ; + + if(!file.atEnd()) + current[n] = c ; + else + current[n] = 0 ; + + //std::cerr << "n==" << n <<" Checking string " << std::string(current,n+1) << " c = " << std::hex << (int)c << std::dec << std::endl; + + for(uint i=0;idirectoryData(mFileTree->root())); + stream << _xml_doc.toString() ; - if(!recursExportToXml(xml_doc,root,root_data)) - return false; + file.close(); - xml_doc.appendChild(root); - - QTextStream stream(&file) ; - stream.setCodec("UTF-8") ; - - stream << xml_doc.toString() ; - file.close(); - - return true; + return true; } -bool RsCollection::recursParseXml(QDomDocument& doc,const QDomNode& e,const RsFileTree::DirIndex parent) +bool RsCollection::save(QWidget *parent) const { - mHashes.clear(); - QDomNode n = e.firstChild() ; -#ifdef COLLECTION_DEBUG - std::cerr << "Parsing element " << e.tagName().toStdString() << std::endl; -#endif + QString fileName; + if(!misc::getSaveFileName(parent, RshareSettings::LASTDIR_EXTRAFILE, QApplication::translate("RsCollectionFile", "Create collection file"), QApplication::translate("RsCollectionFile", "Collection files") + " (*." + RsCollection::ExtensionString + ")", fileName)) + return false; - while(!n.isNull()) - { - QDomElement ee = n.toElement(); // try to convert the node to an element. + if (!fileName.endsWith("." + RsCollection::ExtensionString)) + fileName += "." + RsCollection::ExtensionString ; -#ifdef COLLECTION_DEBUG - std::cerr << " Seeing child " << ee.tagName().toStdString() << std::endl; -#endif + std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - if(ee.tagName() == QString("File")) - { - RsFileHash hash(ee.attribute(QString("sha1")).toStdString()) ; - - bool bad_chars_detected = false; - std::string name = purifyFileName(ee.attribute(QString("name")), bad_chars_detected).toUtf8().constData() ; - uint64_t size = ee.attribute(QString("size")).toULongLong() ; - - mHashes[hash] = mFileTree->addFile(parent,name,hash,size); - } - else if(ee.tagName() == QString("Directory")) - { - bool bad_chars_detected = false ; - std::string cleanDirName = purifyFileName(ee.attribute(QString("name")),bad_chars_detected).toUtf8().constData() ; - - RsFileTree::DirIndex new_dir_index = mFileTree->addDirectory(parent,cleanDirName); - - recursParseXml(doc,ee,new_dir_index); - } - - n = n.nextSibling() ; - } - return true; + return save(fileName); } -bool RsCollection::recursExportToXml(QDomDocument& doc,QDomElement& e,const RsFileTree::DirData& dd) const + + +bool RsCollection::openNewColl(QWidget *parent, QString fileName) { - for(uint32_t i=0;ifileData(dd.subfiles[i])); + if (!fileName.endsWith("." + RsCollection::ExtensionString)) + fileName += "." + RsCollection::ExtensionString ; - f.setAttribute(QString("name"),QString::fromUtf8(fd.name.c_str())) ; - f.setAttribute(QString("sha1"),QString::fromStdString(fd.hash.toStdString())) ; - f.setAttribute(QString("size"),QString::number(fd.size)) ; + std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - e.appendChild(f) ; - } + QFile file(fileName) ; - for(uint32_t i=0;idirectoryData(dd.subdirs[i])); + if(file.exists()) + { + if (!checkFile(fileName,true)) return false; - QDomElement d = doc.createElement("Directory") ; - d.setAttribute(QString("name"),QString::fromUtf8(di.name.c_str())) ; + QMessageBox mb; + mb.setText(tr("Save Collection File.")); + mb.setInformativeText(tr("File already exists.")+"\n"+tr("What do you want to do?")); + QAbstractButton *btnOwerWrite = mb.addButton(tr("Overwrite"), QMessageBox::YesRole); + QAbstractButton *btnMerge = mb.addButton(tr("Merge"), QMessageBox::NoRole); + QAbstractButton *btnCancel = mb.addButton(tr("Cancel"), QMessageBox::ResetRole); + mb.setIcon(QMessageBox::Question); + mb.exec(); - if(!recursExportToXml(doc,d,di)) - return false; + if (mb.clickedButton()==btnOwerWrite) { + //Nothing to do _xml_doc already up to date + } else if (mb.clickedButton()==btnMerge) { + //Open old file to merge it with _xml_doc + QDomDocument qddOldFile("RsCollection"); + if (qddOldFile.setContent(&file)) { + QDomElement docOldElem = qddOldFile.elementsByTagName("RsCollection").at(0).toElement(); + std::vector colOldFileInfos; + recursCollectColFileInfos(docOldElem,colOldFileInfos,QString(),false); - e.appendChild(d) ; - } + QDomElement root = _xml_doc.elementsByTagName("RsCollection").at(0).toElement(); + for(uint32_t i = 0;i colFileInfos ; + + recursCollectColFileInfos(_xml_doc.documentElement(),colFileInfos,QString(),false) ; + + RsCollectionDialog* rcd = new RsCollectionDialog(fileName, colFileInfos,true); + connect(rcd,SIGNAL(saveColl(std::vector, QString)),this,SLOT(saveColl(std::vector, QString))) ; + _saved=false; + rcd->exec() ; + delete rcd; + + return _saved; } -qulonglong RsCollection::count() const +bool RsCollection::openColl(const QString& fileName, bool readOnly /* = false */, bool showError /* = true*/) { - return mFileTree->numFiles(); + if (load(fileName, showError)) { + std::vector colFileInfos ; + + recursCollectColFileInfos(_xml_doc.documentElement(),colFileInfos,QString(),false) ; + + RsCollectionDialog* rcd = new RsCollectionDialog(fileName, colFileInfos, true, readOnly); + connect(rcd,SIGNAL(saveColl(std::vector, QString)),this,SLOT(saveColl(std::vector, QString))) ; + _saved=false; + rcd->exec() ; + delete rcd; + + return _saved; + } + return false; } + qulonglong RsCollection::size() { - return mFileTree->totalFileSize(); + QDomElement docElem = _xml_doc.documentElement(); + + std::vector colFileInfos; + recursCollectColFileInfos(docElem, colFileInfos, QString(),false); + + uint64_t size = 0; + + for (uint32_t i = 0; i < colFileInfos.size(); ++i) { + size += colFileInfos[i].size; + } + + return size; } bool RsCollection::isCollectionFile(const QString &fileName) { - QString ext = QFileInfo(fileName).suffix().toLower(); + QString ext = QFileInfo(fileName).suffix().toLower(); - return (ext == RsCollection::ExtensionString); + return (ext == RsCollection::ExtensionString); } -void RsCollection::updateHashes(const std::map& old_to_new_hashes) +void RsCollection::saveColl(std::vector colFileInfos, const QString &fileName) { - for(auto it:old_to_new_hashes) - { - auto fit = mHashes.find(it.first); - if(fit == mHashes.end()) - { - RsErr() << "Could not find hash " << it.first << " in RsCollection list of hashes. This is a bug." ; - return ; - } - const auto& fd(mFileTree->fileData(fit->second)); + QDomElement root = _xml_doc.elementsByTagName("RsCollection").at(0).toElement(); + while (root.childNodes().count()>0) root.removeChild(root.firstChild()); + for(uint32_t i = 0;iupdateFile(fit->second,fd.name,it.second,fd.size); - } -} - -bool RsCollection::removeFile(RsFileTree::FileIndex index_to_remove,RsFileTree::DirIndex parent_index) -{ - return mFileTree->removeFile(index_to_remove,parent_index); -} -bool RsCollection::removeDirectory(RsFileTree::DirIndex index_to_remove,RsFileTree::DirIndex parent_index) -{ - return mFileTree->removeDirectory(index_to_remove,parent_index); -} - -void RsCollection::cleanup() -{ - RsDbg() << "Cleaning up RsCollection with " << mFileTree->numDirs() << " dirs and " << mFileTree->numFiles() << " files." ; - - mFileTree = RsFileTree::fromTreeCleaned(*mFileTree); - - RsDbg() << "Simplified to " << mFileTree->numDirs() << " dirs and " << mFileTree->numFiles() << " files."; } diff --git a/retroshare-gui/src/gui/common/RsCollection.h b/retroshare-gui/src/gui/common/RsCollection.h index f68423f85..492d407d8 100644 --- a/retroshare-gui/src/gui/common/RsCollection.h +++ b/retroshare-gui/src/gui/common/RsCollection.h @@ -26,6 +26,7 @@ #pragma once +#include #include #include #include @@ -52,70 +53,66 @@ public: }; Q_DECLARE_METATYPE(ColFileInfo) -class RsCollection +class RsCollection : public QObject { + Q_OBJECT + public: - enum class RsCollectionErrorCode:uint8_t { - COLLECTION_NO_ERROR = 0x00, - UNKNOWN_ERROR = 0x01, - FILE_READ_ERROR = 0x02, - FILE_CONTAINS_HARMFUL_STRINGS = 0x03, - INVALID_ROOT_NODE = 0x04, - XML_PARSING_ERROR = 0x05 - }; - RsCollection(); - RsCollection(const RsCollection&); - RsCollection(const std::vector& file_entries, FileSearchFlags flags) ; - RsCollection(const RsFileTree& ft); - RsCollection(const QString& filename,RsCollectionErrorCode& error_code); + RsCollection(QObject *parent = 0) ; + // create from list of files and directories + RsCollection(const std::vector& file_entries, FileSearchFlags flags, QObject *parent = 0) ; + RsCollection(const RsFileTree& fr); + virtual ~RsCollection() ; - static QString errorString(RsCollectionErrorCode code); - - virtual ~RsCollection() ; - - void merge_in(const QString& fname,uint64_t size,const RsFileHash& hash,RsFileTree::DirIndex parent_index=0) ; - void merge_in(const RsFileTree& tree,RsFileTree::DirIndex parent_index=0) ; - - bool removeFile(RsFileTree::FileIndex index_to_remove,RsFileTree::DirIndex parent_index); - bool removeDirectory(RsFileTree::DirIndex index_to_remove,RsFileTree::DirIndex parent_index); - - void cleanup(); // cleans up the collection, which may contain unreferenced files/dirs after lazy editing. + void merge_in(const QString& fname,uint64_t size,const RsFileHash& hash) ; + void merge_in(const RsFileTree& tree) ; static const QString ExtensionString ; + // Loads file from disk. + bool load(QWidget *parent); + bool load(const QString& fileName, bool showError = true); + // Save to disk + bool save(QWidget *parent) const ; bool save(const QString& fileName) const ; - // returns the file tree - const RsFileTree& fileTree() const { return *mFileTree; } - // total size of files in the collection - qulonglong size(); - // total number of files in the collection - qulonglong count() const; + // Open new collection + bool openNewColl(QWidget *parent, QString fileName = ""); + // Open existing collection + bool openColl(const QString& fileName, bool readOnly = false, bool showError = true); + + // Download the content. + void downloadFiles() const ; + // Auto Download all the content. + void autoDownloadFiles() const ; + + qulonglong size(); static bool isCollectionFile(const QString& fileName); - void updateHashes(const std::map& old_to_new_hashes); +private slots: + void saveColl(std::vector colFileInfos, const QString& fileName); + private: - bool recursExportToXml(QDomDocument& doc,QDomElement& e,const RsFileTree::DirData& dd) const; - bool recursParseXml(QDomDocument& doc, const QDomNode &e, RsFileTree::DirIndex dd) ; - - // This function is used to populate a RsCollection from locally or remotly shared files. - void recursAddElements(RsFileTree::DirIndex parent, const DirDetails& dd, FileSearchFlags flags) ; - - // This function is used to merge an existing RsFileTree into the RsCollection - void recursMergeTree(RsFileTree::DirIndex parent, const RsFileTree& tree, const RsFileTree::DirData &dd); - - // check that the file is a valid rscollection file, and not a lol bomb or some shit like this - static bool checkFile(const QString &fileName, RsCollectionErrorCode &error); + void recursAddElements(QDomDocument&, const DirDetails&, QDomElement&, FileSearchFlags flags) const ; + void recursAddElements(QDomDocument&,const ColFileInfo&,QDomElement&) const; + void recursAddElements( + QDomDocument& doc, const RsFileTree& ft, uint32_t index, + QDomElement& e ) const; + void recursCollectColFileInfos(const QDomElement&,std::vector& colFileInfos,const QString& current_dir,bool bad_chars_in_parent) const ; + // check that the file is a valid rscollection file, and not a lol bomb or some shit like this + static bool checkFile(const QString &fileName, bool showError); // Auto Download recursively. void autoDownloadFiles(ColFileInfo colFileInfo, QString dlDir) const ; - std::unique_ptr mFileTree; - std::map mHashes; // used to efficiently update files being hashed + QDomDocument _xml_doc ; + QString _fileName ; + bool _saved; + QDomElement _root ; friend class RsCollectionDialog ; }; diff --git a/retroshare-gui/src/gui/common/RsCollectionDialog.cpp b/retroshare-gui/src/gui/common/RsCollectionDialog.cpp index b71616678..417af69bc 100644 --- a/retroshare-gui/src/gui/common/RsCollectionDialog.cpp +++ b/retroshare-gui/src/gui/common/RsCollectionDialog.cpp @@ -23,7 +23,6 @@ #include "RsCollection.h" #include "util/misc.h" -#include "util/rsdir.h" #include #include @@ -121,93 +120,80 @@ protected: /** * @brief RsCollectionDialog::RsCollectionDialog * @param collectionFileName: Filename of RSCollection saved + * @param colFileInfos: Vector of ColFileInfo to be add in intialization * @param creation: Open dialog as RsColl Creation or RsColl DownLoad * @param readOnly: Open dialog for RsColl as ReadOnly */ -RsCollectionDialog::RsCollectionDialog(const QString& collectionFileName, RsCollectionDialogMode mode) - : _mode(mode) -{ - RsCollection::RsCollectionErrorCode err_code; - mCollection = new RsCollection(collectionFileName,err_code); - - if(err_code != RsCollection::RsCollectionErrorCode::COLLECTION_NO_ERROR) - { - QMessageBox::information(nullptr,tr("Could not load collection file"),tr("Could not load collection file")); - close(); - } - - init(collectionFileName); -} - -RsCollectionDialog::RsCollectionDialog(const RsCollection& coll, RsCollectionDialogMode mode) - : _mode(mode) -{ - mCollection = new RsCollection(coll); - init(QString()); -} -void RsCollectionDialog::init(const QString& collectionFileName) +RsCollectionDialog::RsCollectionDialog(const QString& collectionFileName + , const std::vector& colFileInfos + , const bool& creation /* = false*/ + , const bool& readOnly) + : _fileName(collectionFileName), _creationMode(creation) ,_readOnly(readOnly) { ui.setupUi(this) ; - ui._filename_TL->setText(collectionFileName); -// uint32_t size = colFileInfos.size(); -// for(uint32_t i=0;isetHeaderImage(FilesDefs::getPixmapFromQtResourcePath(":/icons/collections.png")); - if(_mode == DOWNLOAD) + if(creation) + { + ui.headerFrame->setHeaderText(tr("Collection Editor")); + ui.downloadFolder_LE->hide(); + ui.downloadFolder_LB->hide(); + ui.destinationDir_TB->hide(); + } + else { ui.headerFrame->setHeaderText(tr("Download files")); ui.downloadFolder_LE->show(); ui.downloadFolder_LB->show(); - ui.label_filename->hide(); + ui.label_filename->hide(); ui._filename_TL->hide(); ui.downloadFolder_LE->setText(QString::fromUtf8(rsFiles->getDownloadDirectory().c_str())) ; QObject::connect(ui.downloadFolder_LE,SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(openDestinationDirectoryMenu())); QObject::connect(ui.destinationDir_TB,SIGNAL(pressed()), this, SLOT(openDestinationDirectoryMenu())); - } - else - { - ui.headerFrame->setHeaderText(tr("Collection Editor")); - ui.downloadFolder_LE->hide(); - ui.downloadFolder_LB->hide(); - ui.destinationDir_TB->hide(); - ui.label_filename->show(); - ui._filename_TL->show(); - } - + } // 1 - add all elements to the list. - mCollectionModel = new RsCollectionModel(*mCollection); - ui._fileEntriesTW->setModel(mCollectionModel); + ui._fileEntriesTW->setColumnCount(COLUMN_COUNT) ; - connect(mCollectionModel,SIGNAL(sizesChanged()),this,SLOT(updateSizes())); - updateSizes(); // forced because it's only called when the collection is changed, or when the model is created. + QTreeWidgetItem *headerItem = ui._fileEntriesTW->headerItem(); + headerItem->setText(COLUMN_FILE, tr("File")); + headerItem->setText(COLUMN_FILEPATH, tr("File Path")); + headerItem->setText(COLUMN_SIZE, tr("Size")); + headerItem->setText(COLUMN_HASH, tr("Hash")); + headerItem->setText(COLUMN_FILEC, tr("File Count")); + + bool wrong_chars = !updateList(); // 2 - connect necessary signals/slots connect(ui._changeFile, SIGNAL(clicked()), this, SLOT(changeFileName())); - connect(ui._add_PB, SIGNAL(clicked()), this, SLOT(addSelection())); - connect(ui._addRecur_PB, SIGNAL(clicked()), this, SLOT(addSelectionRecursive())); + connect(ui._add_PB, SIGNAL(clicked()), this, SLOT(add())); + connect(ui._addRecur_PB, SIGNAL(clicked()), this, SLOT(addRecursive())); connect(ui._remove_PB, SIGNAL(clicked()), this, SLOT(remove())); connect(ui._makeDir_PB, SIGNAL(clicked()), this, SLOT(makeDir())); + connect(ui._removeDuplicate_CB, SIGNAL(clicked(bool)), this, SLOT(updateRemoveDuplicate(bool))); connect(ui._cancel_PB, SIGNAL(clicked()), this, SLOT(cancel())); connect(ui._save_PB, SIGNAL(clicked()), this, SLOT(save())); connect(ui._download_PB, SIGNAL(clicked()), this, SLOT(download())); connect(ui._hashBox, SIGNAL(fileHashingFinished(QList)), this, SLOT(fileHashingFinished(QList))); + connect(ui._fileEntriesTW, SIGNAL(itemChanged(QTreeWidgetItem*,int)), this, SLOT(itemChanged(QTreeWidgetItem*,int))); // 3 Initialize List _dirModel = new QFileSystemModel(this); @@ -230,12 +216,14 @@ void RsCollectionDialog::init(const QString& collectionFileName) processSettings(true); // 5 Activate button follow creationMode - ui._changeFile->setVisible(_mode == EDIT); - ui._makeDir_PB->setVisible(_mode == EDIT); - ui._save_PB->setVisible(_mode == EDIT); - ui._treeViewFrame->setVisible(_mode == EDIT); - ui._download_PB->setVisible(_mode == DOWNLOAD); + ui._changeFile->setVisible(_creationMode && !_readOnly); + ui._makeDir_PB->setVisible(_creationMode && !_readOnly); + ui._removeDuplicate_CB->setVisible(_creationMode && !_readOnly); + ui._save_PB->setVisible(_creationMode && !_readOnly); + ui._treeViewFrame->setVisible(_creationMode && !_readOnly); + ui._download_PB->setVisible(!_creationMode && !_readOnly); + ui._fileEntriesTW->installEventFilter(this); ui._systemFileTW->installEventFilter(this); // 6 Add HashBox @@ -243,6 +231,9 @@ void RsCollectionDialog::init(const QString& collectionFileName) ui._hashBox->setDropWidget(this); ui._hashBox->setAutoHide(true); ui._hashBox->setDefaultTransferRequestFlags(RS_FILE_REQ_ANONYMOUS_ROUTING) ; + + if(wrong_chars) + QMessageBox::warning(NULL,tr("Bad filenames have been cleaned"),tr("Some filenames or directory names contained forbidden characters.\nCharacters \",|,/,\\,<,>,*,? will be replaced by '_'.\n Concerned files are listed in red.")) ; } void RsCollectionDialog::openDestinationDirectoryMenu() @@ -294,18 +285,85 @@ RsCollectionDialog::~RsCollectionDialog() processSettings(false); } +/** + * @brief RsCollectionDialog::eventFilter: Proccess event in object + * @param obj: object where event occured + * @param event: event occured + * @return If we don't have to process event in parent. + */ +bool RsCollectionDialog::eventFilter(QObject *obj, QEvent *event) +{ + if (obj == ui._fileEntriesTW) { + if (event->type() == QEvent::KeyPress) { + QKeyEvent *keyEvent = static_cast(event); + if (keyEvent && (keyEvent->key() == Qt::Key_Space)) { + // Space pressed + + // get state of current item + QTreeWidgetItem *item = ui._fileEntriesTW->currentItem(); + if (item) { + Qt::CheckState checkState = (item->checkState(COLUMN_FILE) == Qt::Checked) ? Qt::Unchecked : Qt::Checked; + + // set state of all selected items + QList selectedItems = ui._fileEntriesTW->selectedItems(); + QList::iterator it; + for (it = selectedItems.begin(); it != selectedItems.end(); ++it) { + if ((*it)->checkState(COLUMN_FILE) != checkState) + (*it)->setCheckState(COLUMN_FILE, checkState); + } + } + + return true; // eat event + } + + if (keyEvent && (keyEvent->key() == Qt::Key_Delete)) { + // Delete pressed + remove(); + return true; // eat event + } + + if (keyEvent && (keyEvent->key() == Qt::Key_Plus)) { + // Plus pressed + makeDir(); + return true; // eat event + } + + } + } + + if (obj == ui._systemFileTW) { + if (event->type() == QEvent::KeyPress) { + QKeyEvent *keyEvent = static_cast(event); + if (keyEvent && ((keyEvent->key() == Qt::Key_Enter) + || keyEvent->key() == Qt::Key_Return)) { + // Enter pressed + if (keyEvent->modifiers() == Qt::ShiftModifier) + addRecursive(); + else if(keyEvent->modifiers() == Qt::NoModifier) { + add(); + } + + return true; // eat event + } + } + } + + // pass the event on to the parent class + return QDialog::eventFilter(obj, event); +} + /** * @brief RsCollectionDialog::processSettings * @param bLoad: Load or Save dialog's settings */ void RsCollectionDialog::processSettings(bool bLoad) { - Settings->beginGroup("RsCollectionDialogV2"); + Settings->beginGroup("RsCollectionDialog"); if (bLoad) { // load settings - if(_mode == EDIT){ + if(_creationMode && !_readOnly){ // Load windows geometrie restoreGeometry(Settings->value("WindowGeometrie_CM").toByteArray()); // Load splitters state @@ -327,7 +385,7 @@ void RsCollectionDialog::processSettings(bool bLoad) ui._fileEntriesTW->header()->restoreState(Settings->value("FileEntriesHeader").toByteArray()); } } else { - if(_mode == EDIT){ + if(_creationMode && !_readOnly){ // Save windows geometrie Settings->setValue("WindowGeometrie_CM",saveGeometry()); // Save splitters state @@ -353,6 +411,182 @@ void RsCollectionDialog::processSettings(bool bLoad) Settings->endGroup(); } +/** + * @brief RsCollectionDialog::getRootItem: Create the root Item if not existing + * @return: the root item + */ +QTreeWidgetItem* RsCollectionDialog::getRootItem() +{ + return ui._fileEntriesTW->invisibleRootItem(); + +// (csoler) I removed this code because it does the job of the invisibleRootItem() method. +// +// QTreeWidgetItem* root= ui._fileEntriesTW->topLevelItem(0); +// if (!root) { +// root= new QTreeWidgetItem; +// root->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate); +// root->setText(COLUMN_FILE, "/"); +// root->setToolTip(COLUMN_FILE,tr("This is the root directory.")); +// root->setText(COLUMN_FILEPATH, "/"); +// root->setText(COLUMN_HASH, ""); +// root->setData(COLUMN_HASH, ROLE_NAME, ""); +// root->setData(COLUMN_HASH, ROLE_PATH, ""); +// root->setData(COLUMN_HASH, ROLE_TYPE, DIR_TYPE_DIR); +// root->setText(COLUMN_SIZE, misc::friendlyUnit(0)); +// root->setToolTip(COLUMN_SIZE, tr("Real Size: Waiting child...")); +// root->setData(COLUMN_SIZE, ROLE_SIZE, 0); +// root->setData(COLUMN_SIZE, ROLE_SELSIZE, 0); +// root->setText(COLUMN_FILEC, "0"); +// root->setToolTip(COLUMN_FILEC, tr("Real File Count: Waiting child...")); +// root->setData(COLUMN_FILEC, ROLE_FILEC, 0); +// root->setData(COLUMN_FILEC, ROLE_SELFILEC, 0); +// ui._fileEntriesTW->addTopLevelItem(root); +// } +// root->setExpanded(true); +// +// return root; +} + +/** + * @brief RsCollectionDialog::updateList: Update list of item in RsCollection + * @return If at least one item have a Wrong Char + */ +bool RsCollectionDialog::updateList() +{ + bool wrong_chars = false ; + wrong_chars = addChild(getRootItem(), _newColFileInfos); + + _newColFileInfos.clear(); + + ui._filename_TL->setText(_fileName) ; + for (int column = 0; column < ui._fileEntriesTW->columnCount(); ++column) { + ui._fileEntriesTW->resizeColumnToContents(column); + } + + updateSizes() ; + + return !wrong_chars; +} + +/** + * @brief RsCollectionDialog::addChild: Add Child Item in list + * @param parent: Parent Item + * @param child: Child ColFileInfo item to add + * @param total_size: Saved total size of children to save in parent + * @param total_files: Saved total file of children to save in parent + * @return If at least one item have a Wrong Char + */ +bool RsCollectionDialog::addChild(QTreeWidgetItem* parent, const std::vector& child) +{ + bool wrong_chars = false ; + + uint32_t childCount = child.size(); + for(uint32_t i=0; i founds; + QList parentsFounds; + parentsFounds = ui._fileEntriesTW->findItems(colFileInfo.path , Qt::MatchExactly | Qt::MatchRecursive, COLUMN_FILEPATH); + if (colFileInfo.type == DIR_TYPE_DIR){ + founds = ui._fileEntriesTW->findItems(colFileInfo.path + "/" +colFileInfo.name, Qt::MatchExactly | Qt::MatchRecursive, COLUMN_FILEPATH); + } else { + founds = ui._fileEntriesTW->findItems(colFileInfo.path + "/" +colFileInfo.name, Qt::MatchExactly | Qt::MatchRecursive, COLUMN_FILEPATH); + if (ui._removeDuplicate_CB->isChecked()) { + founds << ui._fileEntriesTW->findItems(colFileInfo.hash, Qt::MatchExactly | Qt::MatchRecursive, COLUMN_HASH); + } + } + if (founds.empty()) { + QTreeWidgetItem *item = new QTreeWidgetItem; + + //item->setFlags(Qt::ItemIsUserCheckable | item->flags()); + item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate); + item->setCheckState(COLUMN_FILE, Qt::Checked); + item->setText(COLUMN_FILE, colFileInfo.name); + item->setText(COLUMN_FILEPATH, colFileInfo.path + "/" + colFileInfo.name); + item->setText(COLUMN_HASH, colFileInfo.hash); + item->setData(COLUMN_HASH, ROLE_NAME, colFileInfo.name); + item->setData(COLUMN_HASH, ROLE_PATH, colFileInfo.path); + item->setData(COLUMN_HASH, ROLE_TYPE, colFileInfo.type); + QFont font = item->font(COLUMN_FILE); + if (colFileInfo.type==DIR_TYPE_DIR) { + item->setToolTip(COLUMN_FILE,tr("This is a directory. Double-click to expand it.")); + font.setBold(true); + //Size calculated after for added child after init + item->setText(COLUMN_SIZE, misc::friendlyUnit(0)); + item->setToolTip(COLUMN_SIZE,tr("Real Size: Waiting child...")); + item->setData(COLUMN_SIZE, ROLE_SIZE, 0); + item->setData(COLUMN_SIZE, ROLE_SELSIZE, 0); + + item->setText(COLUMN_FILEC, ""); + item->setToolTip(COLUMN_FILEC, tr("Real File Count: Waiting child...")); + item->setData(COLUMN_FILEC, ROLE_FILEC, 0); + item->setData(COLUMN_FILEC, ROLE_SELFILEC, 0); + } else { + font.setBold(false); + item->setText(COLUMN_SIZE, misc::friendlyUnit(colFileInfo.size)); + item->setToolTip(COLUMN_SIZE, tr("Real Size=%1").arg(misc::friendlyUnit(colFileInfo.size))); + item->setData(COLUMN_SIZE, ROLE_SIZE, colFileInfo.size); + item->setData(COLUMN_SIZE, ROLE_SELSIZE, colFileInfo.size); + + item->setText(COLUMN_FILEC, "1"); + item->setToolTip(COLUMN_FILEC, tr("Real File Count=%1").arg(1)); + item->setData(COLUMN_FILEC, ROLE_FILEC, 1); + item->setData(COLUMN_FILEC, ROLE_SELFILEC, 1); + } + item->setFont(COLUMN_FILE, font); + item->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless); + + if (colFileInfo.filename_has_wrong_characters) + { + //TODO (Phenom): Add qproperty for these text colors in stylesheets + wrong_chars = true ; + item->setData(COLUMN_FILE, Qt::ForegroundRole, QColor(255,80,120)) ; + } + + if (parentsFounds.empty()) { + parent->addChild(item); + } else { + parentsFounds.at(0)->addChild(item); + } + + if (colFileInfo.type == DIR_TYPE_FILE) { + //update parents size only for file children + QTreeWidgetItem *itemParent = item->parent(); + if (itemParent) { + while (itemParent) { + qulonglong parentSize = itemParent->data(COLUMN_SIZE, ROLE_SIZE).toULongLong() + colFileInfo.size; + itemParent->setData(COLUMN_SIZE, ROLE_SIZE, parentSize); + itemParent->setToolTip(COLUMN_SIZE, tr("Real Size=%1").arg(misc::friendlyUnit(parentSize))); + qulonglong parentSelSize = itemParent->data(COLUMN_SIZE, ROLE_SELSIZE).toULongLong() + colFileInfo.size; + itemParent->setData(COLUMN_SIZE, ROLE_SELSIZE, parentSelSize); + itemParent->setText(COLUMN_SIZE, misc::friendlyUnit(parentSelSize)); + + qulonglong parentFileCount = itemParent->data(COLUMN_FILEC, ROLE_FILEC).toULongLong() + 1; + itemParent->setData(COLUMN_FILEC, ROLE_FILEC, parentFileCount); + itemParent->setToolTip(COLUMN_FILEC, tr("Real File Count=%1").arg(parentFileCount)); + qulonglong parentSelFileCount = itemParent->data(COLUMN_FILEC, ROLE_SELFILEC).toULongLong() + 1; + itemParent->setData(COLUMN_FILEC, ROLE_SELFILEC, parentSelFileCount); + itemParent->setText(COLUMN_FILEC, QString("%1").arg(parentSelFileCount)); + + itemParent = itemParent->parent(); + } + } + } + + founds.push_back(item); + } + + if (!founds.empty()) { + + if (colFileInfo.type == DIR_TYPE_DIR) { + wrong_chars |= addChild(founds.at(0), colFileInfo.children); + } + } + } + return wrong_chars; +} + /** * @brief RsCollectionDialog::directoryLoaded: called when ui._treeView have load an directory as QFileSystemModel don't load all in one time * @param dirLoaded: Name of directory just loaded @@ -405,8 +639,17 @@ void RsCollectionDialog::directoryLoaded(QString dirLoaded) */ void RsCollectionDialog::updateSizes() { - ui._selectedFiles_TL->setText(QString::number(mCollectionModel->totalSelected())); - ui._totalSize_TL->setText(misc::friendlyUnit(mCollectionModel->totalSize())); + uint64_t total_size = 0 ; + uint32_t total_count = 0 ; + + for(int i=0;itopLevelItemCount();++i) + { + total_size += ui._fileEntriesTW->topLevelItem(i)->data(COLUMN_SIZE ,ROLE_SELSIZE ).toULongLong(); + total_count += ui._fileEntriesTW->topLevelItem(i)->data(COLUMN_FILEC,ROLE_SELFILEC).toULongLong(); + } + + ui._selectedFiles_TL->setText(QString::number(total_count)); + ui._totalSize_TL->setText(misc::friendlyUnit(total_size)); } /** @@ -415,21 +658,21 @@ void RsCollectionDialog::updateSizes() * @param bad * @return */ -static bool checkFileName(const std::string& input, std::string& corrected) +static QString purifyFileName(const QString& input, bool& bad) { - static const std::string bad_chars ( "/\\\"*:?<>|" ); - bool ok = true ; - corrected = input ; + static const QString bad_chars = "/\\\"*:?<>|" ; + bad = false ; + QString output = input ; - for(uint32_t i=0;ipreMods(); - mCollection->merge_in(qddOldFileCollection.fileTree()); - mCollectionModel->postMods(); - } - } - else if(mb.clickedButton()==btnCancel) + } else if (mb.clickedButton()==btnCancel) { return; - else + } else { return; + } - } - else - { + } else {//if(file.exists()) //create a new empty file to check if name if good. - if (!file.open(QFile::WriteOnly)) - return; + if (!file.open(QFile::WriteOnly)) return; file.remove(); } - ui._filename_TL->setText(fileName); + _fileName = fileName; + + updateList(); } /** * @brief RsCollectionDialog::add: */ -void RsCollectionDialog::addSelection() +void RsCollectionDialog::add() { - addSelection(false); + addRecursive(false); } /** * @brief RsCollectionDialog::addRecursive: */ -void RsCollectionDialog::addSelectionRecursive() +void RsCollectionDialog::addRecursive() { - addSelection(true); + addRecursive(true); } -static void recursBuildFileTree(const QString& path,RsFileTree& tree,RsFileTree::DirIndex dir_index,bool recursive,std::map& paths_to_hash) -{ - QFileInfo fileInfo = path; - - if (fileInfo.isDir()) - { - auto di = tree.addDirectory(dir_index,fileInfo.fileName().toUtf8().constData()); - - if(recursive) - { - QDir dirParent = fileInfo.absoluteFilePath(); - dirParent.setFilter(QDir::AllEntries | QDir::NoSymLinks | QDir::NoDotAndDotDot); - QFileInfoList childrenList = dirParent.entryInfoList(); - - for(QFileInfo f:childrenList) - recursBuildFileTree(f.absoluteFilePath(),tree,di,recursive,paths_to_hash); - } - } - else - { - // Here we use a temporary hash that serves two purposes: - // 1 - identify the file in the RsFileTree of the collection so that we can update its hash when calculated - // 2 - mark the file as being processed - // The hash s is computed to be the hash of the path of the file. The collection must take care of multiple instances. - - Sha1CheckSum s = RsDirUtil::sha1sum((uint8_t*)(fileInfo.filePath().toUtf8().constData()),fileInfo.filePath().toUtf8().size()); - - tree.addFile(dir_index,fileInfo.fileName().toUtf8().constData(),s,fileInfo.size()); - - paths_to_hash.insert(std::make_pair(fileInfo.filePath(),s)); - } -} /** * @brief RsCollectionDialog::addRecursive: Add Selected item to RSCollection * -Add File seperatly if parent folder not selected @@ -550,47 +757,139 @@ static void recursBuildFileTree(const QString& path,RsFileTree& tree,RsFileTree: * -Get root folder the selected one * @param recursive: If true, add all selected directory childrens */ -void RsCollectionDialog::addSelection(bool recursive) +void RsCollectionDialog::addRecursive(bool recursive) { + QStringList fileToHash; QMap dirToAdd; + int count=0;//to not scan all items on list .count() + QModelIndexList milSelectionList = ui._systemFileTW->selectionModel()->selectedIndexes(); - - mCollectionModel->preMods(); - - std::map paths_to_hash; // sha1sum of the paths to hash. - foreach (QModelIndex index, milSelectionList) - if(index.column()==0) //Get only FileName - { - RsFileTree tree; - recursBuildFileTree(_dirModel->filePath(_tree_proxyModel->mapToSource(index)),tree,tree.root(),recursive,paths_to_hash); + { - mCollection->merge_in(tree); + if (index.column()==0){//Get only FileName + QString filePath = _dirModel->filePath(_tree_proxyModel->mapToSource(index)); + QFileInfo fileInfo = filePath; + if (fileInfo.isDir()) { + dirToAdd.insert(fileInfo.absoluteFilePath(),fileInfo.absolutePath()); + ++count; + if (recursive) { + if (!addAllChild(fileInfo, dirToAdd, fileToHash, count)) return; + } else { + continue; + } + } + if (fileInfo.isFile()){ + fileToHash.append(fileInfo.absoluteFilePath()); + ++count; + if (dirToAdd.contains(fileInfo.absolutePath())) + _listOfFilesAddedInDir.insert(fileInfo.absoluteFilePath(),fileInfo.absolutePath()); + else + _listOfFilesAddedInDir.insert(fileInfo.absoluteFilePath(),""); + } } + } - mFilesBeingHashed.insert(paths_to_hash.begin(),paths_to_hash.end()); + // Process Dirs + QTreeWidgetItem *item = NULL; + if (!ui._fileEntriesTW->selectedItems().empty()) + item= ui._fileEntriesTW->selectedItems().at(0); + if (item) { + while (item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_DIR) { + item = item->parent();//Only Dir as Parent + } + } - QStringList paths; - std::list hashes; + int index = 0; + while (index < dirToAdd.count()) + { + ColFileInfo root; + if (item && (item != getRootItem())) { + root.name = ""; + root.path = item->text(COLUMN_FILEPATH); + } else { + root.name = ""; + root.path = ""; + } + //QMap is ordered, so we get parent before child + //Iterator is moved inside this function + processItem(dirToAdd, index, root); + } - for(auto it:paths_to_hash) - { - paths.push_back(it.first); - hashes.push_back(it.second); + //Update liste before attach files to be sure when file is hashed, parent directory exists. + updateList(); - std::cerr << "Setting file has being hased: ID=" << it.second << " - " << it.first.toUtf8().constData() << std::endl; - } + for (QHash::Iterator it = _listOfFilesAddedInDir.begin(); it != _listOfFilesAddedInDir.end() ; ++it) + { + QString path = it.value(); + //it.value() = "";//Don't reset value, could be an older attachment not terminated. + if (dirToAdd.contains(path)){ + it.value() = dirToAdd.value(path); + } else if(item) { + if (item->data(COLUMN_HASH, ROLE_NAME) != "") { + it.value() = item->text(COLUMN_FILEPATH); + } + } + } - mCollectionModel->notifyFilesBeingHashed(hashes); - mCollectionModel->postMods(); + // Process Files once all done + ui._hashBox->addAttachments(fileToHash,RS_FILE_REQ_ANONYMOUS_ROUTING /*, 0*/); +} - ui._hashBox->addAttachments(paths,RS_FILE_REQ_ANONYMOUS_ROUTING /*, 0*/); - - if(!mFilesBeingHashed.empty()) - { - ui._save_PB->setToolTip(tr("Please wait for all files to be properly processed before saving.")); - ui._save_PB->setEnabled(false); - } +/** + * @brief RsCollectionDialog::addAllChild: Add children to RsCollection + * @param fileInfoParent: Parent's QFileInfo to scan + * @param dirToAdd: QMap where directories are added + * @param fileToHash: QStringList where files are added + * @return false if too many items is selected and aborted + */ +bool RsCollectionDialog::addAllChild(QFileInfo &fileInfoParent + , QMap &dirToAdd + , QStringList &fileToHash + , int &count) +{ + //Save count only first time to not scan all items on list .count() + if (count == 0) count = (dirToAdd.count() + fileToHash.count()); + QDir dirParent = fileInfoParent.absoluteFilePath(); + dirParent.setFilter(QDir::AllEntries | QDir::NoSymLinks | QDir::NoDotAndDotDot); + QFileInfoList childrenList = dirParent.entryInfoList(); + foreach (QFileInfo fileInfo, childrenList) + { + if (count == MAX_FILE_ADDED_BEFORE_ASK) + { + QMessageBox msgBox; + msgBox.setText(tr("Warning, selection contains more than %1 items.").arg(MAX_FILE_ADDED_BEFORE_ASK)); + msgBox.setInformativeText("Do you want to continue?"); + msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No); + msgBox.setDefaultButton(QMessageBox::No); + int ret = msgBox.exec(); + switch (ret) { + case QMessageBox::Yes: + break; + case QMessageBox::No: + return false; + break; + break; + default: + // should never be reached + break; + } + } + if (fileInfo.isDir()) { + dirToAdd.insert(fileInfo.absoluteFilePath(),fileInfo.absolutePath()); + ++count; + if (!addAllChild(fileInfo, dirToAdd, fileToHash, count)) return false; + } + if (fileInfo.isFile()){ + fileToHash.append(fileInfo.absoluteFilePath()); + ++count; + if (dirToAdd.contains(fileInfo.absolutePath())) + _listOfFilesAddedInDir.insert(fileInfo.absoluteFilePath(),fileInfo.absolutePath()); + else + _listOfFilesAddedInDir.insert(fileInfo.absoluteFilePath(),""); + } + } + return true; } /** @@ -598,26 +897,172 @@ void RsCollectionDialog::addSelection(bool recursive) */ void RsCollectionDialog::remove() { - QMap dirToRemove; - int count=0;//to not scan all items on list .count() + bool removeOnlyFile=false; + QString listDir; + // First, check if selection contains directories + for (int curs = 0; curs < ui._fileEntriesTW->selectedItems().count(); ++curs) + {// Have to call ui._fileEntriesTW->selectedItems().count() each time as selected could change + QTreeWidgetItem *item = NULL; + item= ui._fileEntriesTW->selectedItems().at(curs); - QModelIndexList milSelectionList = ui._fileEntriesTW->selectionModel()->selectedIndexes(); + //Uncheck child directory item if parent is checked + if (item != getRootItem()){ + if (item->data(COLUMN_HASH, ROLE_TYPE).toUInt() == DIR_TYPE_DIR) { + QString path = item->data(COLUMN_HASH, ROLE_PATH).toString(); + if (listDir.contains(path) && !path.isEmpty()) { + item->setSelected(false); + } else { + listDir += item->data(COLUMN_HASH, ROLE_NAME).toString() +"
"; + } + } + } + } - mCollectionModel->preMods(); + //If directories, ask to remove them or not + if (!listDir.isEmpty()){ + QMessageBox* msgBox = new QMessageBox(QMessageBox::Information, "", ""); + msgBox->setText("Warning, selection contains directories."); + //msgBox->setInformativeText(); If text too long, no scroll, so I add an text edit + QGridLayout* layout = qobject_cast(msgBox->layout()); + if (layout) { + int newRow = 1; + for (int row = layout->count()-1; row >= 0; --row) { + for (int col = layout->columnCount()-1; col >= 0; --col) { + QLayoutItem *item = layout->itemAtPosition(row, col); + if (item) { + int index = layout->indexOf(item->widget()); + int r=0, c=0, rSpan=0, cSpan=0; + layout->getItemPosition(index, &r, &c, &rSpan, &cSpan); + if (r>0) { + layout->removeItem(item); + layout->addItem(item, r+3, c, rSpan, cSpan); + } else if (rSpan>1) { + newRow = rSpan + 1; + } + } + } + } + QLabel *label = new QLabel(tr("Do you want to remove them and all their children, too?")); + layout->addWidget(label,newRow, 0, 1, layout->columnCount(), Qt::AlignHCenter ); + QTextEdit *edit = new QTextEdit(listDir); + edit->setReadOnly(true); + edit->setWordWrapMode(QTextOption::NoWrap); + layout->addWidget(edit,newRow+1, 0, 1, layout->columnCount(), Qt::AlignHCenter ); + } - foreach (QModelIndex index, milSelectionList) - if(index.column()==0) //Get only FileName - { - auto indx = mCollectionModel->getIndex(index); - auto parent_indx = mCollectionModel->getIndex(index.parent()); + msgBox->setStandardButtons(QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); + msgBox->setDefaultButton(QMessageBox::Yes); + int ret = msgBox->exec(); + switch (ret) { + case QMessageBox::Yes: + break; + case QMessageBox::No: + removeOnlyFile = true; + break; + case QMessageBox::Cancel: { + delete msgBox; + return; + } + break; + default: + // should never be reached + break; + } + delete msgBox; + } - if(indx.is_file) - mCollection->removeFile(indx.index,parent_indx.index); - else - mCollection->removeDirectory(indx.index,parent_indx.index); - } + //Remove wanted items + int leftItem = 0; + // Have to call ui._fileEntriesTW->selectedItems().count() each time as selected change + while (ui._fileEntriesTW->selectedItems().count() > leftItem) { + QTreeWidgetItem *item = ui._fileEntriesTW->selectedItems().at(leftItem); - mCollectionModel->postMods(); + if (item != getRootItem()){ + if (!removeItem(item, removeOnlyFile)) { + ++leftItem; + } + } else { + //Get Root change index + ++leftItem; + } + } + + updateSizes() ; + +} + +bool RsCollectionDialog::removeItem(QTreeWidgetItem *item, bool &removeOnlyFile) +{ + if (item){ + if ((item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_DIR) || !removeOnlyFile) { + int leftItem = 0; + while (item->childCount() > leftItem) { + if (!removeItem(item->child(0), removeOnlyFile)) { + ++leftItem; + } + } + if (leftItem == 0) { + //First uncheck item to update parent informations + item->setCheckState(COLUMN_FILE,Qt::Unchecked); + QTreeWidgetItem *parent = item->parent(); + if (parent) { + parent->removeChild(item); + } else { + getRootItem()->removeChild(item); + } + return true; + } else { + if (!removeOnlyFile) { + std::cerr << "(EE) RsCollectionDialog::removeItem This could never happen." << std::endl; + } + } + } + } + return false; +} + +/** Process each item to make a new RsCollection item */ +void RsCollectionDialog::processItem(QMap &dirToAdd + , int &index + , ColFileInfo &parent + ) +{ + ColFileInfo newChild; + int count = dirToAdd.count(); + if (index < count) { + QString key=dirToAdd.keys().at(index); + bool bad_chars_detected = false; + QFileInfo fileInfo=key; + QString cleanDirName = purifyFileName(fileInfo.fileName(),bad_chars_detected); + newChild.name = cleanDirName; + newChild.filename_has_wrong_characters = bad_chars_detected; + newChild.size = fileInfo.isDir()? 0: fileInfo.size(); + newChild.type = fileInfo.isDir()? DIR_TYPE_DIR: DIR_TYPE_FILE ; + if (parent.name != "") { + newChild.path = parent.path + "/" + parent.name; + } else { + newChild.path = parent.path; + } + dirToAdd[key] = newChild.path + "/" + newChild.name; + //Move to next item + ++index; + if (index < count){ + QString newKey = dirToAdd.keys().at(index); + while ((dirToAdd.value(newKey) == key) + && (index < count)) { + processItem(dirToAdd, index, newChild); + if (index < count)newKey = dirToAdd.keys().at(index); + } + } + + //Save parent when child are processed + if (parent.name != "") { + parent.children.push_back(newChild); + parent.size += newChild.size; + } else { + _newColFileInfos.push_back(newChild); + } + } } /** @@ -625,31 +1070,119 @@ void RsCollectionDialog::remove() */ void RsCollectionDialog::makeDir() { - QModelIndexList selected_indices = ui._fileEntriesTW->selectionModel()->selectedIndexes(); + QString childName=""; + bool ok, badChar, nameOK = false; + // Ask for name + while (!nameOK) + { + childName = QInputDialog::getText(this, tr("New Directory") + , tr("Enter the new directory's name") + , QLineEdit::Normal, childName, &ok); + if (ok && !childName.isEmpty()) + { + childName = purifyFileName(childName, badChar); + nameOK = !badChar; + if (badChar) + { + QMessageBox msgBox; + msgBox.setText("The name contains bad characters."); + msgBox.setInformativeText("Do you want to use the corrected one?\n" + childName); + msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Retry | QMessageBox::Cancel); + msgBox.setDefaultButton(QMessageBox::Ok); + int ret = msgBox.exec(); + switch (ret) { + case QMessageBox::Ok: + nameOK = true; + break; + case QMessageBox::Retry: + break; + case QMessageBox::Cancel: + return; + break; + default: + // should never be reached + break; + } + } + } else {//if (ok && !childName.isEmpty()) + return; + } - if(selected_indices.size() > 1) - { - QMessageBox::information(nullptr,tr("Too many places selected"),tr("Please select at most one directory where to create the new folder")); - return; - } + } - QModelIndex place_index; - if(!selected_indices.empty()) - place_index = selected_indices.first(); + QList selected = ui._fileEntriesTW->selectedItems(); - RsCollectionModel::EntryIndex e = mCollectionModel->getIndex(place_index); + if(selected.empty()) + { + QTreeWidgetItem *item = getRootItem(); - if(e.is_file) - { - QMessageBox::information(nullptr,tr("Selected place cannot be a file"),tr("Please select at most one directory where to create the new folder")); - return; - } - QString childName = QInputDialog::getText(this, tr("New Directory"), tr("Enter the new directory's name"), QLineEdit::Normal); + ColFileInfo newChild; + newChild.name = childName; + newChild.filename_has_wrong_characters = false; + newChild.size = 0; + newChild.type = DIR_TYPE_DIR; + newChild.path = item->data(COLUMN_HASH, ROLE_PATH).toString() + + "/" + item->data(COLUMN_HASH, ROLE_NAME).toString(); + if (item == getRootItem()) newChild.path = ""; - mCollectionModel->preMods(); - mCollection->merge_in(*RsFileTree::fromDirectory(childName.toUtf8().constData()),e.index); - mCollectionModel->postMods(); + _newColFileInfos.push_back(newChild); + } + else + for(auto it(selected.begin());it!=selected.end();++it) + { + QTreeWidgetItem *item = *it; + + while(item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_DIR) + item = item->parent();//Only Dir as Parent + + ColFileInfo newChild; + newChild.name = childName; + newChild.filename_has_wrong_characters = false; + newChild.size = 0; + newChild.type = DIR_TYPE_DIR; + + if (item == getRootItem()) + newChild.path = ""; + else + newChild.path = item->data(COLUMN_HASH, ROLE_PATH).toString() + "/" + item->data(COLUMN_HASH, ROLE_NAME).toString(); + + _newColFileInfos.push_back(newChild); + } + + +// // Process all selected items +// int count = ui._fileEntriesTW->selectedItems().count(); +// int curs = 0; +// if (count == 0) curs = -1; +// +// for (; curs < count; ++curs) +// { +// QTreeWidgetItem *item = NULL; +// if (curs >= 0) { +// item= ui._fileEntriesTW->selectedItems().at(curs); +// } else { +// item = getRootItem(); +// } +// if (item) { +// while (item->parent() != NULL && item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_DIR) { +// item = item->parent();//Only Dir as Parent +// } +// ColFileInfo newChild; +// newChild.name = childName; +// newChild.filename_has_wrong_characters = false; +// newChild.size = 0; +// newChild.type = DIR_TYPE_DIR; +// newChild.path = item->data(COLUMN_HASH, ROLE_PATH).toString() +// + "/" + item->data(COLUMN_HASH, ROLE_NAME).toString(); +// if (item == getRootItem()) newChild.path = ""; +// +// _newColFileInfos.push_back(newChild); +// } +// } + + + updateList(); } /** @@ -659,34 +1192,156 @@ void RsCollectionDialog::makeDir() */ void RsCollectionDialog::fileHashingFinished(QList hashedFiles) { - // build a map of old-hash to new-hash for the hashed files, so that it can be passed to the mCollection for update + std::cerr << "RsCollectionDialog::fileHashingFinished() started." << std::endl; - mCollectionModel->preMods(); - std::map old_to_new_hashes; + QString message; - for(auto f:hashedFiles) - { - auto it = mFilesBeingHashed.find(f.filepath); + QList::iterator it; + for (it = hashedFiles.begin(); it != hashedFiles.end(); ++it) { + HashedFile& hashedFile = *it; - if(it == mFilesBeingHashed.end()) - { - RsErr() << "Could not find hash-ID correspondence for path " << f.filepath.toUtf8().constData() << ". This is a bug." << std::endl; - continue; - } - std::cerr << "Will update old hash " << it->second << " to new hash " << f.hash << std::endl; + ColFileInfo colFileInfo; + colFileInfo.name=hashedFile.filename; + colFileInfo.path=""; + colFileInfo.size=hashedFile.size; + colFileInfo.hash=QString::fromStdString(hashedFile.hash.toStdString()); + colFileInfo.filename_has_wrong_characters=false; + colFileInfo.type=DIR_TYPE_FILE; - old_to_new_hashes.insert(std::make_pair(it->second,f.hash)); - mFilesBeingHashed.erase(it); - mCollectionModel->fileHashingFinished(it->second); - } - mCollection->updateHashes(old_to_new_hashes); - mCollectionModel->postMods(); + if(_listOfFilesAddedInDir.value(hashedFile.filepath,"")!="") { + //File Added in directory, find its parent + colFileInfo.path = _listOfFilesAddedInDir.value(hashedFile.filepath,""); + _listOfFilesAddedInDir.remove(hashedFile.filepath); + } - if(mFilesBeingHashed.empty()) - { - ui._save_PB->setToolTip(tr("")); - ui._save_PB->setEnabled(true); - } + _newColFileInfos.push_back(colFileInfo); + + } + + std::cerr << "RsCollectionDialog::fileHashingFinished message : " << message.toStdString() << std::endl; + + updateList(); +} + +void RsCollectionDialog::itemChanged(QTreeWidgetItem *item, int col) +{ + if (col != COLUMN_FILE) return; + + if (item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_FILE) return; + + //In COLUMN_FILE, normaly, only checkState could change... + qulonglong size = item->data(COLUMN_SIZE, ROLE_SIZE).toULongLong(); + bool unchecked = (item->checkState(COLUMN_FILE) == Qt::Unchecked); + item->setData(COLUMN_SIZE, ROLE_SELSIZE, unchecked?0:size); + item->setText(COLUMN_SIZE, misc::friendlyUnit(unchecked?0:size)); + item->setData(COLUMN_FILEC, ROLE_SELFILEC, unchecked?0:1); + item->setText(COLUMN_FILEC, QString("%1").arg(unchecked?0:1)); + + //update parents size + QTreeWidgetItem *itemParent = item->parent(); + while (itemParent) { + //When unchecked only remove selected size + qulonglong parentSize = itemParent->data(COLUMN_SIZE, ROLE_SELSIZE).toULongLong() + (unchecked?0-size:size); + itemParent->setData(COLUMN_SIZE, ROLE_SELSIZE, parentSize); + itemParent->setText(COLUMN_SIZE, misc::friendlyUnit(parentSize)); + + qulonglong parentFileCount = itemParent->data(COLUMN_FILEC, ROLE_SELFILEC).toULongLong() + (unchecked?0-1:1); + itemParent->setData(COLUMN_FILEC, ROLE_SELFILEC, parentFileCount); + itemParent->setText(COLUMN_FILEC, QString("%1").arg(parentFileCount)); + + itemParent = itemParent->parent(); + } + + updateSizes() ; + +} + +/** + * @brief RsCollectionDialog::updateRemoveDuplicate Remove all duplicate file when checked. + * @param checked + */ +void RsCollectionDialog::updateRemoveDuplicate(bool checked) +{ + if (checked) { + bool bRemoveAll = false; + QTreeWidgetItemIterator it(ui._fileEntriesTW); + QTreeWidgetItem *item; + while ((item = *it) != NULL) { + ++it; + if (item->data(COLUMN_HASH, ROLE_TYPE).toUInt() != DIR_TYPE_DIR) { + QList founds; + founds << ui._fileEntriesTW->findItems(item->text(COLUMN_HASH), Qt::MatchExactly | Qt::MatchRecursive, COLUMN_HASH); + if (founds.count() > 1) { + bool bRemove = false; + if (!bRemoveAll) { + QMessageBox* msgBox = new QMessageBox(QMessageBox::Information, "", ""); + msgBox->setText("Warning, duplicate file found."); + //msgBox->setInformativeText(); If text too long, no scroll, so I add an text edit + msgBox->setStandardButtons(QMessageBox::YesToAll | QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel); + msgBox->setDefaultButton(QMessageBox::Yes); + + QGridLayout* layout = qobject_cast(msgBox->layout()); + if (layout) { + int newRow = 1; + for (int row = layout->count()-1; row >= 0; --row) { + for (int col = layout->columnCount()-1; col >= 0; --col) { + QLayoutItem *item = layout->itemAtPosition(row, col); + if (item) { + int index = layout->indexOf(item->widget()); + int r=0, c=0, rSpan=0, cSpan=0; + layout->getItemPosition(index, &r, &c, &rSpan, &cSpan); + if (r>0) { + layout->removeItem(item); + layout->addItem(item, r+3, c, rSpan, cSpan); + } else if (rSpan>1) { + newRow = rSpan + 1; + } + } + } + } + QLabel *label = new QLabel(tr("Do you want to remove this file from the list?")); + layout->addWidget(label,newRow, 0, 1, layout->columnCount(), Qt::AlignHCenter ); + QTextEdit *edit = new QTextEdit(item->text(COLUMN_FILEPATH)); + edit->setReadOnly(true); + edit->setWordWrapMode(QTextOption::NoWrap); + layout->addWidget(edit,newRow+1, 0, 1, layout->columnCount(), Qt::AlignHCenter ); + } + + int ret = msgBox->exec(); + switch (ret) { + case QMessageBox::YesToAll: { + bRemoveAll = true; + } + break; + case QMessageBox::Yes: { + bRemove = true; + } + break; + case QMessageBox::No: + break; + case QMessageBox::Cancel: { + delete msgBox; + ui._removeDuplicate_CB->setChecked(false); + return; + } + break; + default: + // should never be reached + break; + } + delete msgBox; + } + + if (bRemove || bRemoveAll) { + //First uncheck item to update parent informations + item->setCheckState(COLUMN_FILE,Qt::Unchecked); + item->parent()->removeChild(item); + } + + } + } + } + } } /** @@ -704,85 +1359,47 @@ void RsCollectionDialog::cancel() void RsCollectionDialog::download() { std::cerr << "Downloading!" << std::endl; - bool auto_correct = false; - bool auto_skip = false; QString dldir = ui.downloadFolder_LE->text(); std::cerr << "downloading all these files:" << std::endl; - std::function recursDL = [&](RsFileTree::DirIndex index,const std::string& path) - { - const auto& dirdata(mCollection->fileTree().directoryData(index)); - RsCollectionModel::EntryIndex e; + QTreeWidgetItemIterator itemIterator(ui._fileEntriesTW); + QTreeWidgetItem *item; + while ((item = *itemIterator) != NULL) { + ++itemIterator; - for(uint32_t i=0;icheckState(COLUMN_FILE) == Qt::Checked) { + std::cerr << item->data(COLUMN_HASH,ROLE_NAME).toString().toStdString() + << " " << item->text(COLUMN_HASH).toStdString() + << " " << item->text(COLUMN_SIZE).toStdString() + << " " << item->data(COLUMN_HASH,ROLE_PATH).toString().toStdString() << std::endl; + ColFileInfo colFileInfo; + colFileInfo.hash = item->text(COLUMN_HASH); + colFileInfo.name = item->data(COLUMN_HASH,ROLE_NAME).toString(); + colFileInfo.path = item->data(COLUMN_HASH,ROLE_PATH).toString(); + colFileInfo.type = item->data(COLUMN_HASH,ROLE_TYPE).toUInt(); + colFileInfo.size = item->data(COLUMN_SIZE,ROLE_SELSIZE).toULongLong(); - if(!mCollectionModel->isChecked(e)) - continue; + QString cleanPath = dldir + colFileInfo.path ; + std::cerr << "making directory " << cleanPath.toStdString() << std::endl; - const auto& sdd = mCollection->fileTree().directoryData(e.index); - std::string subpath = RsDirUtil::makePath(path,sdd.name); + if(!QDir(QApplication::applicationDirPath()).mkpath(cleanPath)) + QMessageBox::warning(NULL,QObject::tr("Unable to make path"),QObject::tr("Unable to make path:")+"
"+cleanPath) ; - std::cerr << "Creating subdir " << sdd.name << " to directory " << path << std::endl; + if (colFileInfo.type==DIR_TYPE_FILE) + rsFiles->FileRequest(colFileInfo.name.toUtf8().constData(), + RsFileHash(colFileInfo.hash.toStdString()), + colFileInfo.size, + cleanPath.toUtf8().constData(), + RS_FILE_REQ_ANONYMOUS_ROUTING, + std::list()); + } else {//if (item->checkState(COLUMN_FILE) == Qt::Checked) + std::cerr<<"Skipping file : " << item->data(COLUMN_HASH,ROLE_NAME).toString().toStdString() << std::endl; + } + } - if(!QDir(QApplication::applicationDirPath()).mkpath(QString::fromUtf8(subpath.c_str()))) - QMessageBox::warning(NULL,tr("Unable to make path"),tr("Unable to make path:")+"
"+QString::fromUtf8(subpath.c_str())) ; - - recursDL(dirdata.subdirs[i],subpath); - } - for(uint32_t i=0;iisChecked(e)) - continue; - - std::string subpath = RsDirUtil::makePath(path,dirdata.name); - const auto& f(mCollection->fileTree().fileData(dirdata.subfiles[i])); - - std::string corrected_name; - - if(!checkFileName(f.name,corrected_name) && !auto_correct) - { - if(auto_skip) - continue; - - QMessageBox mb; - mb.setText(tr("Incompatible filename.")); - mb.setInformativeText(tr("This filename is not usable on your system.")+"\n"+tr("Retroshare can replace every problematic chars by '_'.") - +"\n"+tr("What do you want to do?")); - QAbstractButton *btnCorrect = mb.addButton(tr("Correct filename"), QMessageBox::YesRole); - QAbstractButton *btnCorrectAll = mb.addButton(tr("Correct all"), QMessageBox::AcceptRole); - QAbstractButton *btnSkip = mb.addButton(tr("Skip this file"), QMessageBox::NoRole); - QAbstractButton *btnSkipAll = mb.addButton(tr("Skip all"), QMessageBox::RejectRole); - mb.setIcon(QMessageBox::Question); - mb.exec(); - - if(mb.clickedButton() == btnSkipAll) - { - auto_skip = true; - continue; - } - if(mb.clickedButton() == btnSkip) - continue; - - if(mb.clickedButton() == btnCorrectAll) - auto_correct = true; - } - - std::cerr << "Requesting file " << corrected_name << " to directory " << path << std::endl; - - rsFiles->FileRequest(corrected_name,f.hash,f.size,path,RS_FILE_REQ_ANONYMOUS_ROUTING,std::list()); - } - }; - - recursDL(mCollection->fileTree().root(),dldir.toUtf8().constData()); - close(); + close(); } /** @@ -790,66 +1407,40 @@ void RsCollectionDialog::download() */ void RsCollectionDialog::save() { - if(ui._filename_TL->text().isNull()) - changeFileName(); - if(ui._filename_TL->text().isNull()) - return; + std::cerr << "Saving!" << std::endl; + _newColFileInfos.clear(); + QTreeWidgetItem* root = getRootItem(); + if (root) { + saveChild(root); - mCollectionModel->preMods(); - mCollection->cleanup(); - mCollection->save(ui._filename_TL->text()); - close(); + emit saveColl(_newColFileInfos, _fileName); + } + close(); } -bool RsCollectionDialog::editExistingCollection(const QString& fileName, bool showError /* = true*/) +/** + * @brief RsCollectionDialog::saveChild: Save each child in _newColFileInfos + * @param parent + */ +void RsCollectionDialog::saveChild(QTreeWidgetItem *parentItem, ColFileInfo *parentInfo) { - return RsCollectionDialog(fileName,EDIT).exec(); + ColFileInfo parent; + if (!parentInfo) parentInfo = &parent; + + parentInfo->checked = (parentItem->checkState(COLUMN_FILE)==Qt::Checked); + parentInfo->hash = parentItem->text(COLUMN_HASH); + parentInfo->name = parentItem->data(COLUMN_HASH,ROLE_NAME).toString(); + parentInfo->path = parentItem->data(COLUMN_HASH,ROLE_PATH).toString(); + parentInfo->type = parentItem->data(COLUMN_HASH,ROLE_TYPE).toUInt(); + parentInfo->size = parentItem->data(COLUMN_SIZE,ROLE_SELSIZE).toULongLong(); + + for (int i=0; ichildCount(); ++i) { + ColFileInfo child; + saveChild(parentItem->child(i), &child); + if (parentInfo->name != "") { + parentInfo->children.push_back(child); + } else { + _newColFileInfos.push_back(child); + } + } } - -bool RsCollectionDialog::openExistingCollection(const QString& fileName, bool showError /* = true*/) -{ - return RsCollectionDialog(fileName,DOWNLOAD).exec(); -} - -bool RsCollectionDialog::downloadFiles(const RsCollection &collection) -{ - return RsCollectionDialog(collection,DOWNLOAD).exec(); -} - - -bool RsCollectionDialog::openNewCollection(const RsFileTree& tree) -{ - RsCollection collection(tree); - QString fileName; - - if(!misc::getSaveFileName(nullptr, RshareSettings::LASTDIR_EXTRAFILE - , QApplication::translate("RsCollectionFile", "Create collection file") - , QApplication::translate("RsCollectionFile", "Collection files") + " (*." + RsCollection::ExtensionString + ")" - , fileName,0, QFileDialog::DontConfirmOverwrite)) - return false; - - if (!fileName.endsWith("." + RsCollection::ExtensionString)) - fileName += "." + RsCollection::ExtensionString ; - - std::cerr << "Got file name: " << fileName.toStdString() << std::endl; - - if(QFile(fileName).exists()) - { - QMessageBox mb; - mb.setText(tr("Save Collection File.")); - mb.setInformativeText(tr("File already exists.")+"\n"+tr("What do you want to do?")); - QAbstractButton *btnOwerWrite = mb.addButton(tr("Overwrite"), QMessageBox::YesRole); - QAbstractButton *btnCancel = mb.addButton(tr("Cancel"), QMessageBox::ResetRole); - mb.setIcon(QMessageBox::Question); - mb.exec(); - - if (mb.clickedButton()==btnCancel) - return false; - } - - if(!collection.save(fileName)) - return false; - - return RsCollectionDialog(fileName,EDIT).exec(); -} - diff --git a/retroshare-gui/src/gui/common/RsCollectionDialog.h b/retroshare-gui/src/gui/common/RsCollectionDialog.h index 3c1f5c29a..43c7dbdd7 100644 --- a/retroshare-gui/src/gui/common/RsCollectionDialog.h +++ b/retroshare-gui/src/gui/common/RsCollectionDialog.h @@ -18,10 +18,8 @@ * * *******************************************************************************/ -#include #include "ui_RsCollectionDialog.h" #include "RsCollection.h" -#include "RsCollectionModel.h" #include #include @@ -32,45 +30,33 @@ class RsCollectionDialog: public QDialog Q_OBJECT public: + RsCollectionDialog(const QString& filename + , const std::vector &colFileInfos + , const bool& creation + , const bool& readOnly = false) ; virtual ~RsCollectionDialog(); - // Open new collection - static bool openNewCollection(const RsFileTree &tree = RsFileTree()); - - // Edit existing collection - static bool editExistingCollection(const QString& fileName, bool showError = true); - - // Open existing collection for download - static bool openExistingCollection(const QString& fileName, bool showError = true); - - // Open existing collection for download - static bool downloadFiles(const RsCollection& collection); protected: - static QString errorString(RsCollection::RsCollectionErrorCode code); - - void init(const QString& collectionFileName); - - enum RsCollectionDialogMode { - UNKNOWN = 0x00, - EDIT = 0x01, - DOWNLOAD = 0x02, - }; - - RsCollectionDialog(const QString& filename, RsCollectionDialogMode mode) ; - RsCollectionDialog(const RsCollection& coll, RsCollectionDialogMode mode) ; + bool eventFilter(QObject *obj, QEvent *ev); private slots: void directoryLoaded(QString dirLoaded); void updateSizes() ; void changeFileName() ; - void addSelection() ; - void addSelectionRecursive() ; + void add() ; + void addRecursive() ; void remove() ; void chooseDestinationDirectory(); void setDestinationDirectory(); void openDestinationDirectoryMenu(); + void processItem(QMap &dirToAdd + , int &index + , ColFileInfo &parent + ) ; void makeDir() ; void fileHashingFinished(QList hashedFiles) ; + void itemChanged(QTreeWidgetItem* item,int col) ; + void updateRemoveDuplicate(bool checked); void cancel() ; void download() ; void save() ; @@ -80,20 +66,26 @@ signals: private: void processSettings(bool bLoad) ; - void addSelection(bool recursive) ; + QTreeWidgetItem* getRootItem(); + bool updateList(); + bool addChild(QTreeWidgetItem *parent, const std::vector &child); + bool removeItem(QTreeWidgetItem *item, bool &removeOnlyFile) ; + void addRecursive(bool recursive) ; + bool addAllChild(QFileInfo &fileInfoParent + , QMap &dirToAdd + , QStringList &fileToHash + , int &count); + void saveChild(QTreeWidgetItem *parentItem, ColFileInfo *parentInfo = NULL); Ui::RsCollectionDialog ui; - - RsCollectionDialogMode _mode; + QString _fileName ; + const bool _creationMode ; + const bool _readOnly; + std::vector _newColFileInfos ; QFileSystemModel *_dirModel; QSortFilterProxyModel *_tree_proxyModel; QItemSelectionModel *_selectionProxy; bool _dirLoaded; QHash _listOfFilesAddedInDir; - - RsCollectionModel *mCollectionModel; - RsCollection *mCollection; - - std::map mFilesBeingHashed; // map of file path vs. temporary ID used for the file while hashing }; diff --git a/retroshare-gui/src/gui/common/RsCollectionDialog.ui b/retroshare-gui/src/gui/common/RsCollectionDialog.ui index 5ceadb647..d8693ef0a 100644 --- a/retroshare-gui/src/gui/common/RsCollectionDialog.ui +++ b/retroshare-gui/src/gui/common/RsCollectionDialog.ui @@ -6,8 +6,8 @@ 0 0 - 761 - 434 + 600 + 400 @@ -17,7 +17,7 @@ Collection - + :/images/mimetypes/rscollection-16.png:/images/mimetypes/rscollection-16.png @@ -157,7 +157,7 @@
- + 21 @@ -170,10 +170,6 @@ ... - - - :/icons/browsable_blue_128.png:/icons/browsable_blue_128.png -
@@ -287,7 +283,7 @@ - :/images/start.png:/images/start.png + :/images/feedback_arrow.png:/images/feedback_arrow.png @@ -313,7 +309,7 @@ - :/images/startall.png:/images/startall.png + :/images/update.png:/images/update.png @@ -338,8 +334,8 @@ - - :/images/delete.png:/images/delete.png + + :/images/deletemail24.png:/images/deletemail24.png @@ -386,7 +382,7 @@ - + QAbstractItemView::NoEditTriggers @@ -402,6 +398,11 @@ true + + + 1 + + @@ -410,6 +411,26 @@ + + + + Remove Duplicate + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -430,12 +451,6 @@ - - - 0 - 0 - - Qt::CustomContextMenu @@ -447,19 +462,6 @@ - - - - Qt::Horizontal - - - - 40 - 20 - - - - @@ -515,7 +517,7 @@ - + diff --git a/retroshare-gui/src/gui/common/RsCollectionModel.cpp b/retroshare-gui/src/gui/common/RsCollectionModel.cpp deleted file mode 100644 index 8c7fa9283..000000000 --- a/retroshare-gui/src/gui/common/RsCollectionModel.cpp +++ /dev/null @@ -1,616 +0,0 @@ -#include -#include - -#include "RsCollectionModel.h" - -// #define DEBUG_COLLECTION_MODEL 1 - -static const int COLLECTION_MODEL_FILENAME = 0; -static const int COLLECTION_MODEL_SIZE = 1; -static const int COLLECTION_MODEL_HASH = 2; -static const int COLLECTION_MODEL_COUNT = 3; -static const int COLLECTION_MODEL_NB_COLUMN = 4; - -RsCollectionModel::RsCollectionModel(const RsCollection& col, QObject *parent) - : QAbstractItemModel(parent),mCollection(col) -{ - postMods(); -} - -static std::ostream& operator<<(std::ostream& o,const RsCollectionModel::EntryIndex& i) -{ - return o << ((i.is_file)?("File"):"Dir") << " with index " << (int)i.index ; -} -static std::ostream& operator<<(std::ostream& o,const QModelIndex& i) -{ - return o << "QModelIndex (row " << i.row() << ", ref " << i.internalId() << ")" ; -} -#ifdef DEBUG_COLLECTION_MODEL -#endif - -// Indernal Id is always a quintptr_t (basically a uint with the size of a pointer). Depending on the -// Indernal Id is always a quintptr_t (basically a uint with the size of a pointer). Depending on the -// architecture, the pointer may have 4 or 8 bytes. We use the low-level bit for type (0=dir, 1=file) and -// the remaining bits for the index (which will be accordingly understood as a FileIndex or a DirIndex) -// This way, index 0 is always the top dir. - -bool RsCollectionModel::convertIndexToInternalId(const EntryIndex& e,quintptr& ref) -{ - ref = (e.index << 1) | e.is_file; - return true; -} - -bool RsCollectionModel::convertInternalIdToIndex(quintptr ref, EntryIndex& e) -{ - e.is_file = (bool)(ref & 1); - e.index = ref >> 1; - return true; -} - -int RsCollectionModel::rowCount(const QModelIndex& parent) const -{ -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "Asking rowCount of " << parent << std::endl; -#endif - - if(parent.column() >= COLLECTION_MODEL_NB_COLUMN) - return 0; - - if(!parent.isValid()) - { -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << " root! returning " << mCollection.fileTree().directoryData(0).subdirs.size() - + mCollection.fileTree().directoryData(0).subfiles.size() << std::endl; -#endif - - return mCollection.fileTree().directoryData(0).subdirs.size() - + mCollection.fileTree().directoryData(0).subfiles.size(); - } - - EntryIndex i; - if(!convertInternalIdToIndex(parent.internalId(),i)) - return 0; - - if(i.is_file) - { -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << " file: returning 0" << std::endl; -#endif - return 0; - } - else - { -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << " dir: returning " << mCollection.fileTree().directoryData(i.index).subdirs.size() + mCollection.fileTree().directoryData(i.index).subfiles.size() - << std::endl; -#endif - return mCollection.fileTree().directoryData(i.index).subdirs.size() + mCollection.fileTree().directoryData(i.index).subfiles.size(); - } -} - -bool RsCollectionModel::hasChildren(const QModelIndex & parent) const -{ - if(!parent.isValid()) - return true; - - EntryIndex i; - if(!convertInternalIdToIndex(parent.internalId(),i)) - return false; - - if(i.is_file) - return false; - else if(mCollection.fileTree().directoryData(i.index).subdirs.size() + mCollection.fileTree().directoryData(i.index).subfiles.size() > 0) - return true; - else - return false; -} - -int RsCollectionModel::columnCount(const QModelIndex&) const -{ - return COLLECTION_MODEL_NB_COLUMN; -} - -QVariant RsCollectionModel::headerData(int section, Qt::Orientation,int role) const -{ - if(role == Qt::DisplayRole) - switch(section) - { - case 0: return tr("File"); - case 1: return tr("Size"); - case 2: return tr("Hash"); - case 3: return tr("Count"); - default: - return QVariant(); - } - return QVariant(); -} - -QModelIndex RsCollectionModel::index(int row, int column, const QModelIndex & parent) const -{ - if(row < 0 || column < 0 || column >= columnCount(parent) || row >= rowCount(parent)) - return QModelIndex(); - - EntryIndex parent_index; - - if(!parent.isValid()) // root - { - parent_index.is_file = false; - parent_index.index = 0; - } - else if(!convertInternalIdToIndex(parent.internalId(),parent_index)) - return QModelIndex(); - - if(parent_index.is_file || parent_index.index >= mCollection.fileTree().numDirs()) - return QModelIndex(); - - const auto& parentData(mCollection.fileTree().directoryData(parent_index.index)); - - if((size_t)row < parentData.subdirs.size()) - { - EntryIndex e; - e.is_file = false; - e.index = parentData.subdirs[row]; - - quintptr ref; - convertIndexToInternalId(e,ref); - -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "creating index for row " << row << " of parent " << parent << ". result is " << createIndex(row,column,ref) << std::endl; -#endif - return createIndex(row,column,ref); - } - - if((size_t)row < parentData.subdirs.size() + parentData.subfiles.size()) - { - EntryIndex e; - e.is_file = true; - e.index = parentData.subfiles[row - parentData.subdirs.size()]; - - quintptr ref; - convertIndexToInternalId(e,ref); -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "creating index for row " << row << " of parent " << parent << ". result is " << createIndex(row,column,ref) << std::endl; -#endif - return createIndex(row,column,ref); - } - - return QModelIndex(); -} - -Qt::ItemFlags RsCollectionModel::flags ( const QModelIndex & index ) const -{ - if(index.isValid() && index.column() == COLLECTION_MODEL_FILENAME) - { - EntryIndex e; - - if(!convertInternalIdToIndex(index.internalId(),e)) - return QAbstractItemModel::flags(index) ; - - if(e.is_file) - return QAbstractItemModel::flags(index) | Qt::ItemIsUserCheckable; - else - return QAbstractItemModel::flags(index) | Qt::ItemIsAutoTristate | Qt::ItemIsUserCheckable; - } - - return QAbstractItemModel::flags(index) ; -} - -QModelIndex RsCollectionModel::parent(const QModelIndex & index) const -{ - if(!index.isValid()) - return QModelIndex(); - - EntryIndex i; - if(index.internalId()==0 || !convertInternalIdToIndex(index.internalId(),i)) - return QModelIndex(); - - EntryIndex p; - p.is_file = false; // all parents are directories - int row; - - if(i.is_file) - { - p.index = mFileInfos[i.index].parent_index; - row = mFileInfos[i.index].parent_row; - } - else - { - p.index = mDirInfos[i.index].parent_index; - row = mDirInfos[i.index].parent_row; - } - - quintptr ref; - convertIndexToInternalId(p,ref); - - return createIndex(row,0,ref); -} - -QVariant RsCollectionModel::data(const QModelIndex& index, int role) const -{ - EntryIndex i; - if(!convertInternalIdToIndex(index.internalId(),i)) - return QVariant(); - -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "Asking data of " << i << std::endl; -#endif - switch(role) - { - case Qt::DisplayRole: return displayRole(i,index.column()); - case Qt::DecorationRole: return decorationRole(i,index.column()); - case Qt::CheckStateRole: return checkStateRole(i,index.column()); - case Qt::TextColorRole: return textColorRole(i,index.column()); - default: - return QVariant(); - } -} - -bool RsCollectionModel::setData(const QModelIndex& index,const QVariant& value,int role) -{ - if(!index.isValid()) - return false; - - EntryIndex e; - - if(role==Qt::CheckStateRole && convertInternalIdToIndex(index.internalId(), e)) - { -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "Setting check state of item " << index << " to " << value.toBool() << std::endl; -#endif - RsFileTree::DirIndex dir_index ; - - if(e.is_file) - { - mFileInfos[e.index].is_checked = value.toBool(); - dir_index = mFileInfos[e.index].parent_index; - } - else - { - std::function recursSetCheckFlag = [&](RsFileTree::DirIndex index,bool s) -> void - { - mDirInfos[index].check_state = (s)?SELECTED:UNSELECTED; - auto& dir_data(mCollection.fileTree().directoryData(index)); - - mDirInfos[index].total_size = 0; - mDirInfos[index].total_count = 0; - - for(uint32_t i=0;i& files) -{ - mFilesBeingHashed.insert(files.begin(),files.end()); -} -void RsCollectionModel::fileHashingFinished(const RsFileHash& hash) -{ - mFilesBeingHashed.erase(hash); -} - -void RsCollectionModel::preMods() -{ - mUpdating = true; - emit layoutAboutToBeChanged(); -} -void RsCollectionModel::postMods() -{ - // update all the local structures - - mDirInfos.clear(); - mFileInfos.clear(); - - mDirInfos.resize(mCollection.fileTree().numDirs()); - mFileInfos.resize(mCollection.fileTree().numFiles()); - - mDirInfos[0].parent_index = 0; - -#ifdef DEBUG_COLLECTION_MODEL - std::cerr << "Updating from tree: " << std::endl; -#endif - recursUpdateLocalStructures(mCollection.fileTree().root(),0); - - mUpdating = false; - emit layoutChanged(); - emit sizesChanged(); - -// debugDump(); -} - -void RsCollectionModel::recursUpdateLocalStructures(RsFileTree::DirIndex dir_index,int depth) -{ - uint64_t total_size = 0; - uint64_t total_count = 0; - bool all_checked = true; - bool all_unchecked = false; - - const auto& dd(mCollection.fileTree().directoryData(dir_index)); - - for(uint32_t i=0;i recursDump = [&](RsFileTree::DirIndex indx,int depth) { - const auto& dir_data(mCollection.fileTree().directoryData(indx)); - - for(int i=0;i recursDump2 = [&](QModelIndex indx,int depth) { - - for(int i=0;i - -#include "RsCollection.h" - -class RsCollectionModel: public QAbstractItemModel -{ - Q_OBJECT - - public: - enum Roles{ FileNameRole = Qt::UserRole+1, SortRole = Qt::UserRole+2, FilterRole = Qt::UserRole+3 }; - - RsCollectionModel(const RsCollection& col, QObject *parent = 0); - virtual ~RsCollectionModel() = default; - - /* Callback from Core */ - void preMods(); // always call this before updating the RsCollection! - void postMods(); // always call this after updating the RsCollection! - - /* Callback from GUI */ - - void update() ; - void filterItems(const std::list& keywords, uint32_t& found) ; - - // Overloaded from QAbstractItemModel - virtual QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex() ) const override; - virtual QModelIndex parent ( const QModelIndex & index ) const override; - - virtual int rowCount(const QModelIndex &parent = QModelIndex()) const override; - virtual int columnCount(const QModelIndex &parent = QModelIndex()) const override; - virtual bool hasChildren(const QModelIndex & parent = QModelIndex()) const override; - - virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - virtual bool setData(const QModelIndex& index,const QVariant& value,int role) override; - virtual Qt::ItemFlags flags ( const QModelIndex & index ) const override; -#ifdef TODO - virtual QStringList mimeTypes () const override; - virtual QMimeData * mimeData ( const QModelIndexList & indexes ) const override; -#if QT_VERSION >= QT_VERSION_CHECK (5, 0, 0) - virtual Qt::DropActions supportedDragActions() const override; -#endif -#endif - - struct EntryIndex { - bool is_file; // false=dir, true=file - uint64_t index; - }; - uint64_t totalSize() const { return mDirInfos[0].total_size; } - uint64_t totalSelected() const { return mDirInfos[0].total_count; } - - void notifyFilesBeingHashed(const std::list& files); - void fileHashingFinished(const RsFileHash& hash); - bool isChecked(EntryIndex); - - EntryIndex getIndex(const QModelIndex& i) const; - signals: - void sizesChanged(); // tells that the total size of the top level dir has changed (due to selection) - - private: - static bool convertIndexToInternalId(const EntryIndex& e,quintptr& ref); - static bool convertInternalIdToIndex(quintptr ref, EntryIndex& e); - - void recursUpdateLocalStructures(RsFileTree::DirIndex dir_index, int depth); - - QVariant displayRole(const EntryIndex&,int col) const ; - QVariant sortRole(const EntryIndex&,int col) const ; - QVariant decorationRole(const EntryIndex&,int col) const ; - QVariant checkStateRole(const EntryIndex& i,int col) const; - QVariant textColorRole(const EntryIndex& i,int col) const; - //QVariant filterRole(const DirDetails& details,int coln) const; - - void debugDump(); - - bool mUpdating ; - - const RsCollection& mCollection; - - enum DirCheckState: uint8_t { - UNSELECTED = 0x00, - PARTIALLY_SELECTED = 0x01, - SELECTED = 0x02, - }; - - struct ModelDirInfo { - ModelDirInfo() :parent_index(0),parent_row(0),check_state(SELECTED),total_size(0),total_count(0){} - - RsFileTree::DirIndex parent_index; // index of the parent - RsFileTree::DirIndex parent_row; // row of that child, in this parent - DirCheckState check_state; - uint64_t total_size; - uint64_t total_count; - }; - - struct ModelFileInfo { - ModelFileInfo() :parent_index(0),parent_row(0),is_checked(true){} - - RsFileTree::DirIndex parent_index; // index of the parent - RsFileTree::DirIndex parent_row; // row of that child, in this parent - bool is_checked; - }; - - std::vector mFileInfos; - std::vector mDirInfos; - - std::set mFilesBeingHashed; - - // std::set mFilteredPointers ; -}; diff --git a/retroshare-gui/src/gui/common/RsUrlHandler.cpp b/retroshare-gui/src/gui/common/RsUrlHandler.cpp index 94ec79753..6ac6310ac 100644 --- a/retroshare-gui/src/gui/common/RsUrlHandler.cpp +++ b/retroshare-gui/src/gui/common/RsUrlHandler.cpp @@ -21,13 +21,19 @@ #include #include #include -#include "RsCollectionDialog.h" +#include "RsCollection.h" #include "RsUrlHandler.h" bool RsUrlHandler::openUrl(const QUrl& url) { if(url.scheme() == QString("file") && url.toLocalFile().endsWith("."+RsCollection::ExtensionString)) - return RsCollectionDialog::openExistingCollection(url.toLocalFile()); - + { + RsCollection collection ; + if(collection.load(url.toLocalFile())) + { + collection.downloadFiles() ; + return true; + } + } return QDesktopServices::openUrl(url) ; } diff --git a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp index 7ffdcd687..4a7429f27 100755 --- a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp +++ b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp @@ -34,7 +34,6 @@ #endif #include "gui/common/FilesDefs.h" -#include "gui/RetroShareLink.h" #include "gui/settings/rsharesettings.h" #include "util/misc.h" #include "ConnectFriendWizard.h" @@ -450,9 +449,8 @@ void ConnectFriendWizard::initializePage(int id) } sockaddr_storage addr ; -#ifdef DEBUG_FRIENDWIZARD + std::cerr << "Cert IP = " << peerDetails.extAddr << std::endl; -#endif if(sockaddr_storage_ipv4_aton(addr,peerDetails.extAddr.c_str()) && sockaddr_storage_isValidNet(addr)) { @@ -872,18 +870,7 @@ void ConnectFriendWizard::cleanFriendCert() bool certValid = false; QString errorMsg ; QString certDetail; - - std::string cert ; - RetroShareLink rslink(ui->friendCertEdit->toPlainText()); - - if(rslink.valid() && rslink.type() == RetroShareLink::TYPE_CERTIFICATE) - cert = rslink.radix().toStdString(); - else - cert = ui->friendCertEdit->toPlainText().toUtf8().constData(); - -#ifdef DEBUG_FRIENDWIZARD - std::cerr << "Friend cert:\"" << cert << "\"" << std::endl; -#endif + std::string cert = ui->friendCertEdit->toPlainText().toUtf8().constData(); if (cert.empty()) { ui->friendCertCleanLabel->setToolTip(""); @@ -949,7 +936,7 @@ void ConnectFriendWizard::cleanFriendCert() void ConnectFriendWizard::pasteCert() { QClipboard *clipboard = QApplication::clipboard(); - ui->friendCertEdit->setPlainText(clipboard->text()); + ui->friendCertEdit->setPlainText(clipboard->text()); } void ConnectFriendWizard::openCert() diff --git a/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.cpp b/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.cpp index 5b0e0b264..ecbba96af 100644 --- a/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.cpp +++ b/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.cpp @@ -49,41 +49,46 @@ * #define DEBUG_ITEM 1 ****/ -// ChannelsCommentsItem::ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGroupMetaData& group_meta, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate,const std::set& older_versions) : -// GxsFeedItem(feedHolder, feedId, group_meta.mGroupId, messageId, isHome, rsGxsChannels, autoUpdate), -// mGroupMeta(group_meta) -// { -// mLoadingGroup = false; -// mLoadingMessage = false; -// mLoadingComment = false; -// -// mPost.mMeta.mMsgId = messageId; // useful for uniqueIdentifer() before the post is loaded -// mPost.mMeta.mGroupId = mGroupMeta.mGroupId; -// -// QVector v; -// //bool self = false; -// -// for(std::set::const_iterator it(older_versions.begin());it!=older_versions.end();++it) -// v.push_back(*it) ; -// -// if(older_versions.find(messageId) == older_versions.end()) -// v.push_back(messageId); -// -// setMessageVersions(v) ; -// setup(); -// -// // no call to loadGroup() here because we have it already. -// } - -ChannelsCommentsItem::ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId& groupId, const RsGxsMessageId &commentId, const RsGxsMessageId &threadId, bool isHome, bool autoUpdate) : - GxsFeedItem(feedHolder, feedId, groupId, commentId, isHome, rsGxsChannels, autoUpdate), // this one should be in GxsFeedItem - mThreadId(threadId) +ChannelsCommentsItem::ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGroupMetaData& group_meta, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate,const std::set& older_versions) : + GxsFeedItem(feedHolder, feedId, group_meta.mGroupId, messageId, isHome, rsGxsChannels, autoUpdate), + mGroupMeta(group_meta) { - mLoading= false; + mPost.mMeta.mMsgId = messageId; // useful for uniqueIdentifer() before the post is loaded + mPost.mMeta.mGroupId = mGroupMeta.mGroupId; QVector v; + //bool self = false; + for(std::set::const_iterator it(older_versions.begin());it!=older_versions.end();++it) + v.push_back(*it) ; + + if(older_versions.find(messageId) == older_versions.end()) + v.push_back(messageId); + + setMessageVersions(v) ; setup(); + + // no call to loadGroup() here because we have it already. +} + +ChannelsCommentsItem::ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId& groupId, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate,const std::set& older_versions) : + GxsFeedItem(feedHolder, feedId, groupId, messageId, isHome, rsGxsChannels, autoUpdate) // this one should be in GxsFeedItem +{ + mPost.mMeta.mMsgId = messageId; // useful for uniqueIdentifer() before the post is loaded + + QVector v; + //bool self = false; + + for(std::set::const_iterator it(older_versions.begin());it!=older_versions.end();++it) + v.push_back(*it) ; + + if(older_versions.find(messageId) == older_versions.end()) + v.push_back(messageId); + + setMessageVersions(v) ; + setup(); + + loadGroup(); } void ChannelsCommentsItem::paintEvent(QPaintEvent *e) @@ -94,22 +99,21 @@ void ChannelsCommentsItem::paintEvent(QPaintEvent *e) if(!mLoaded) { mLoaded = true ; - load(); - } + + std::set older_versions; // not so nice. We need to use std::set everywhere + for(auto& m:messageVersions()) + older_versions.insert(m); + + fill(); + requestMessage(); + requestComment(); + } GxsFeedItem::paintEvent(e) ; } ChannelsCommentsItem::~ChannelsCommentsItem() { - auto timeout = std::chrono::steady_clock::now() + std::chrono::milliseconds(300); - - while( mLoading && std::chrono::steady_clock::now() < timeout ) - { - RsDbg() << __PRETTY_FUNCTION__ << " is Waiting for data to load " << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(100)); - } - delete(ui); } @@ -178,19 +182,21 @@ void ChannelsCommentsItem::setup() ui->expandFrame->hide(); } -bool ChannelsCommentsItem::setPost(const RsGxsChannelPost& post, bool doFill) +bool ChannelsCommentsItem::setPost(const RsGxsChannelPost &post, bool doFill) { + if (groupId() != post.mMeta.mGroupId || messageId() != post.mMeta.mMsgId) { + std::cerr << "ChannelsCommentsItem::setPost() - Wrong id, cannot set post"; + std::cerr << std::endl; + return false; + } + mPost = post; - if (doFill) + if (doFill) { fill(); + } - return true; -} -bool ChannelsCommentsItem::setMissingPost() -{ - fill(true); - return true; + return true; } QString ChannelsCommentsItem::getTitleLabel() @@ -224,148 +230,168 @@ void ChannelsCommentsItem::loadComments() void ChannelsCommentsItem::loadGroup() { -//#ifdef DEBUG_ITEM -// std::cerr << "GxsChannelGroupItem::loadGroup()"; -// std::cerr << std::endl; -//#endif -// if(mLoading) -// return; -// -// mLoading= true; -// -// std::cerr << "Loading group" << std::endl; -// RsThread::async([this]() -// { -// // 1 - get group data -// -// std::vector groups; -// const std::list groupIds = { groupId() }; -// -// if(!rsGxsChannels->getChannelsInfo(groupIds,groups)) // would be better to call channel Summaries for a single group -// { -// RsErr() << "GxsGxsChannelGroupItem::loadGroup() ERROR getting data" << std::endl; -// return; -// } -// -// if (groups.size() != 1) -// { -// std::cerr << "GxsGxsChannelGroupItem::loadGroup() Wrong number of Items"; -// std::cerr << std::endl; -// return; -// } -// RsGxsChannelGroup group(groups[0]); -// -// RsQThreadUtils::postToObject( [group,this]() -// { -// /* Here it goes any code you want to be executed on the Qt Gui -// * thread, for example to update the data model with new information -// * after a blocking call to RetroShare API complete */ -// -// mGroupMeta = group.mMeta; -// mLoading= false; -// -// std::cerr << "End loading group" << std::endl; -// }, this ); -// }); -} -void ChannelsCommentsItem::load() -{ - // This function loads everything that's needed: - // - the comment text - // - the comment parent message - #ifdef DEBUG_ITEM - std::cerr << "ChannelsCommentsItem::loadMessage()"; + std::cerr << "GxsChannelGroupItem::loadGroup()"; std::cerr << std::endl; #endif - if(mLoading) - return; - mLoading= true; - - RsThread::async([this]() + RsThread::async([this]() { - // 1 - get group meta data + // 1 - get group data - std::vector groups; - const std::list groupIds = { groupId() }; + std::vector groups; + const std::list groupIds = { groupId() }; - if(!rsGxsChannels->getChannelsInfo(groupIds,groups)) // would be better to call channel Summaries for a single group - { - RsErr() << "GxsGxsChannelGroupItem::loadGroup() ERROR getting data" << std::endl; - return; - } - - if (groups.size() != 1) - { - std::cerr << "GxsGxsChannelGroupItem::loadGroup() Wrong number of Items" << std::endl; - return; - } - RsGxsChannelGroup group(groups[0]); - - // 2 - get message and comment data - - std::vector posts; - std::vector comments; - std::vector votes; - - if(! rsGxsChannels->getChannelContent( groupId(), std::set( { messageId(),mThreadId } ),posts,comments,votes)) + if(!rsGxsChannels->getChannelsInfo(groupIds,groups)) // would be better to call channel Summaries for a single group { RsErr() << "GxsGxsChannelGroupItem::loadGroup() ERROR getting data" << std::endl; return; } - // now that everything is in place, update the UI + if (groups.size() != 1) + { + std::cerr << "GxsGxsChannelGroupItem::loadGroup() Wrong number of Items"; + std::cerr << std::endl; + return; + } + RsGxsChannelGroup group(groups[0]); - RsQThreadUtils::postToObject( [group,posts,comments,this]() - { - /* Here it goes any code you want to be executed on the Qt Gui - * thread, for example to update the data model with new information - * after a blocking call to RetroShare API complete */ + RsQThreadUtils::postToObject( [group,this]() + { + /* Here it goes any code you want to be executed on the Qt Gui + * thread, for example to update the data model with new information + * after a blocking call to RetroShare API complete */ - mGroupMeta = group.mMeta; + mGroupMeta = group.mMeta; - if(comments.size()==1) - { - RsGxsComment cmt(comments[0]); + }, this ); + }); +} +void ChannelsCommentsItem::loadMessage() +{ +#ifdef DEBUG_ITEM + std::cerr << "ChannelsCommentsItem::loadMessage()"; + std::cerr << std::endl; +#endif + RsThread::async([this]() + { + // 1 - get group data - uint32_t autorized_lines = (int)floor( (ui->avatarLabel->height() - ui->button_HL->sizeHint().height()) - / QFontMetricsF(ui->subjectLabel->font()).height()); + std::vector posts; + std::vector comments; + std::vector votes; - ui->commLabel->setText(RsHtml().formatText(NULL, RsStringUtil::CopyLines(QString::fromUtf8(cmt.mComment.c_str()), autorized_lines), RSHTML_FORMATTEXT_EMBED_LINKS)); - ui->nameLabel->setId(cmt.mMeta.mAuthorId); - ui->datetimeLabel->setText(DateTime::formatLongDateTime(cmt.mMeta.mPublishTs)); + if(! rsGxsChannels->getChannelContent( groupId(), std::set( { messageId() } ),posts,comments,votes)) + { + RsErr() << "GxsGxsChannelGroupItem::loadGroup() ERROR getting data" << std::endl; + return; + } - RsIdentityDetails idDetails ; - rsIdentity->getIdDetails(cmt.mMeta.mAuthorId,idDetails); - QPixmap pixmap ; + if (posts.size() == 1) + { +#ifdef DEBUG_ITEM + std::cerr << (void*)this << ": Obtained post, with msgId = " << posts[0].mMeta.mMsgId << std::endl; +#endif + RsGxsChannelPost post(posts[0]); // no reference to temporary here, because we pass this to a thread - if(idDetails.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(idDetails.mAvatar.mData, idDetails.mAvatar.mSize, pixmap,GxsIdDetails::SMALL)) - pixmap = GxsIdDetails::makeDefaultIcon(cmt.mMeta.mAuthorId,GxsIdDetails::LARGE); - ui->avatarLabel->setPixmap(pixmap); + RsQThreadUtils::postToObject( [post,this]() { setPost(post); }, this ); + } + else if(comments.size() == 1) + { + RsGxsComment cmt(comments[0]); +#ifdef DEBUG_ITEM + std::cerr << (void*)this << ": Obtained comment, setting messageId to threadID = " << cmt.mMeta.mThreadId << std::endl; +#endif - //Change this item to be uploaded with thread element. This is really bad practice. - } - else - { - mLoading=false; - removeItem(); - } + RsQThreadUtils::postToObject( [cmt,this]() + { + uint32_t autorized_lines = (int)floor( (ui->avatarLabel->height() - ui->button_HL->sizeHint().height()) + / QFontMetricsF(ui->subjectLabel->font()).height()); - if (posts.size() == 1) - setPost(posts[0]); - else - setMissingPost(); + ui->commLabel->setText(RsHtml().formatText(NULL, RsStringUtil::CopyLines(QString::fromUtf8(cmt.mComment.c_str()), autorized_lines), RSHTML_FORMATTEXT_EMBED_LINKS)); - emit sizeChanged(this); - mLoading=false; + ui->nameLabel->setId(cmt.mMeta.mAuthorId); + ui->datetimeLabel->setText(DateTime::formatLongDateTime(cmt.mMeta.mPublishTs)); - }, this ); - }); + RsIdentityDetails idDetails ; + rsIdentity->getIdDetails(cmt.mMeta.mAuthorId,idDetails); + QPixmap pixmap ; + + if(idDetails.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(idDetails.mAvatar.mData, idDetails.mAvatar.mSize, pixmap,GxsIdDetails::SMALL)) + pixmap = GxsIdDetails::makeDefaultIcon(cmt.mMeta.mAuthorId,GxsIdDetails::LARGE); + ui->avatarLabel->setPixmap(pixmap); + + //Change this item to be uploaded with thread element. + setMessageId(cmt.mMeta.mThreadId); + requestMessage(); + + }, this ); + + } + else + { +#ifdef DEBUG_ITEM + std::cerr << "ChannelsCommentsItem::loadMessage() Wrong number of Items. Remove It."; + std::cerr << std::endl; +#endif + + RsQThreadUtils::postToObject( [this]() { removeItem(); }, this ); + } + }); + + emit sizeChanged(this); } -void ChannelsCommentsItem::fill(bool missing_post) +void ChannelsCommentsItem::loadComment() { +#ifdef DEBUG_ITEM + std::cerr << "ChannelsCommentsItem::loadComment()"; + std::cerr << std::endl; +#endif + + RsThread::async([this]() + { + // 1 - get group data + + std::set msgIds; + + for(auto MsgId: messageVersions()) + msgIds.insert(MsgId); + + std::vector posts; + std::vector comments; + + if(! rsGxsChannels->getChannelComments( groupId(),msgIds,comments)) + { + RsErr() << "GxsGxsChannelGroupItem::loadGroup() ERROR getting data" << std::endl; + return; + } + + int comNb = comments.size(); + + RsQThreadUtils::postToObject( [comNb]() + { + QString sComButText = tr("Comment"); + if (comNb == 1) + sComButText = sComButText.append("(1)"); + else if(comNb > 1) + sComButText = tr("Comments ").append("(%1)").arg(comNb); + + //ui->commentButton->setText(sComButText); + + }, this ); + }); +} + +void ChannelsCommentsItem::fill() +{ + /* fill in */ + +// if (isLoading()) { + // /* Wait for all requests */ + //return; +// } + #ifdef DEBUG_ITEM std::cerr << "ChannelsCommentsItem::fill()"; std::cerr << std::endl; @@ -373,6 +399,9 @@ void ChannelsCommentsItem::fill(bool missing_post) mInFill = true; + //QString title; + //float f = QFontMetricsF(font()).height()/14.0 ; + if (!mIsHome) { if (mCloseOnRead && !IS_MSG_NEW(mPost.mMeta.mMsgStatus)) { @@ -383,14 +412,19 @@ void ChannelsCommentsItem::fill(bool missing_post) //title += link.toHtml(); //ui->titleLabel->setText(title); - RetroShareLink msgLink = RetroShareLink::createGxsMessageLink(RetroShareLink::TYPE_CHANNEL, mPost.mMeta.mGroupId, mPost.mMeta.mMsgId, messageName()); - - if(missing_post) - ui->subjectLabel->setText("[" + QObject::tr("Missing channel post")+"]"); - else - ui->subjectLabel->setText(msgLink.toHtml()); + RetroShareLink msgLink = RetroShareLink::createGxsMessageLink(RetroShareLink::TYPE_CHANNEL, mPost.mMeta.mGroupId, mPost.mMeta.mMsgId, messageName()); + ui->subjectLabel->setText(msgLink.toHtml()); + if (IS_GROUP_SUBSCRIBED(mGroupMeta.mSubscribeFlags) || IS_GROUP_ADMIN(mGroupMeta.mSubscribeFlags)) + { + //ui->unsubscribeButton->setEnabled(true); + } + else + { + //ui->unsubscribeButton->setEnabled(false); + } ui->readButton->hide(); + //ui->titleLabel->hide(); if (IS_MSG_NEW(mPost.mMeta.mMsgStatus)) { mCloseOnRead = true; @@ -398,10 +432,19 @@ void ChannelsCommentsItem::fill(bool missing_post) } else { - if(missing_post) - ui->subjectLabel->setText("[" + QObject::tr("Missing channel post")+"]"); - else - ui->subjectLabel->setText(RsStringUtil::CopyLines(QString::fromUtf8(mPost.mMsg.c_str()), 2)) ; + /* subject */ + //ui->titleLabel->setText(QString::fromUtf8(mPost.mMeta.mMsgName.c_str())); + + //uint32_t autorized_lines = (int)floor( (ui->avatarLabel->height() - ui->button_HL->sizeHint().height()) + // / QFontMetricsF(ui->subjectLabel->font()).height()); + + // fill first 4 lines of message. (csoler) Disabled the replacement of smileys and links, because the cost is too crazy + //ui->subjectLabel->setText(RsHtml().formatText(NULL, RsStringUtil::CopyLines(QString::fromUtf8(mPost.mMsg.c_str()), autorized_lines), RSHTML_FORMATTEXT_EMBED_SMILEYS | RSHTML_FORMATTEXT_EMBED_LINKS)); + + ui->subjectLabel->setText(RsStringUtil::CopyLines(QString::fromUtf8(mPost.mMsg.c_str()), 2)) ; + + //QString score = QString::number(post.mTopScore); + // scoreLabel->setText(score); /* disable buttons: deletion facility not enabled with cache services yet */ ui->clearButton->setEnabled(false); @@ -424,9 +467,50 @@ void ChannelsCommentsItem::fill(bool missing_post) mCloseOnRead = false; } + // differences between Feed or Top of Comment. + if (mFeedHolder) + { + //ui->commentButton->show(); + + // Not yet functional + /*if (mPost.mCommentCount) + { + QString commentText = QString::number(mPost.mCommentCount); + commentText += " "; + commentText += tr("Comments"); + ui->commentButton->setText(commentText); + } + else + { + ui->commentButton->setText(tr("Comment")); + }*/ + + } + else + { + //ui->commentButton->hide(); + } + + // disable voting buttons - if they have already voted. + /*if (post.mMeta.mMsgStatus & GXS_SERV::GXS_MSG_STATUS_VOTE_MASK) + { + voteUpButton->setEnabled(false); + voteDownButton->setEnabled(false); + }*/ + + if (wasExpanded() || ui->expandFrame->isVisible()) { + fillExpandFrame(); + } + mInFill = false; } +void ChannelsCommentsItem::fillExpandFrame() +{ + //ui->msgLabel->setText(RsHtml().formatText(NULL, QString::fromUtf8(mPost.mMsg.c_str()), RSHTML_FORMATTEXT_EMBED_SMILEYS | RSHTML_FORMATTEXT_EMBED_LINKS)); + +} + QString ChannelsCommentsItem::messageName() { return QString::fromUtf8(mPost.mMeta.mMsgName.c_str()); @@ -490,6 +574,10 @@ void ChannelsCommentsItem::doExpand(bool open) void ChannelsCommentsItem::expandFill(bool first) { GxsFeedItem::expandFill(first); + + if (first) { + fillExpandFrame(); + } } void ChannelsCommentsItem::toggle() diff --git a/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.h b/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.h index c245cbca7..53537d61e 100644 --- a/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.h +++ b/retroshare-gui/src/gui/feeds/ChannelsCommentsItem.h @@ -42,17 +42,12 @@ public: // It can be used for all apparences of channel posts. But in rder to merge comments from the previous versions of the post, the list of // previous posts should be supplied. It's optional. If not supplied only the comments of the new version will be displayed. - ChannelsCommentsItem(FeedHolder *feedHolder, - uint32_t feedId, - const RsGxsGroupId& groupId, - const RsGxsMessageId& commentId, - const RsGxsMessageId& threadId, - bool isHome, - bool autoUpdate); + ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId& groupId, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate, const std::set& older_versions = std::set()); // This one is used in channel thread widget. We don't want the group data to reload at every post, so we load it in the hosting // GxsChannelsPostsWidget and pass it to created items. - // ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGroupMetaData& group, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate, const std::set& older_versions = std::set()); + + ChannelsCommentsItem(FeedHolder *feedHolder, uint32_t feedId, const RsGroupMetaData& group, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate, const std::set& older_versions = std::set()); virtual ~ChannelsCommentsItem(); @@ -60,7 +55,6 @@ public: bool setGroup(const RsGxsChannelGroup& group, bool doFill = true); bool setPost(const RsGxsChannelPost& post, bool doFill = true); - bool setMissingPost(); QString getTitleLabel(); QString getMsgLabel(); @@ -91,8 +85,8 @@ protected: /* GxsFeedItem */ virtual QString messageName(); - virtual void loadMessage() override {} - virtual void loadComment() override {} + virtual void loadMessage(); + virtual void loadComment(); private slots: /* default stuff */ @@ -110,20 +104,17 @@ signals: void vote(const RsGxsGrpMsgIdPair& msgId, bool up); private: - void load(); - void setup(); - void fill(bool missing_post=false); + void setup(); + void fill(); + void fillExpandFrame(); private: bool mInFill; bool mCloseOnRead; bool mLoaded; - bool mLoading; - RsGroupMetaData mGroupMeta; RsGxsChannelPost mPost; - RsGxsMessageId mThreadId; /** Qt Designer generated object */ Ui::ChannelsCommentsItem *ui; diff --git a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.cpp b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.cpp index a6213e740..e9c38a022 100644 --- a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.cpp +++ b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.cpp @@ -37,47 +37,20 @@ GxsChannelGroupItem::GxsChannelGroupItem(FeedHolder *feedHolder, uint32_t feedId GxsGroupFeedItem(feedHolder, feedId, groupId, isHome, rsGxsChannels, autoUpdate) { setup(); + requestGroup(); - addEventHandler(); } GxsChannelGroupItem::GxsChannelGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsChannelGroup &group, bool isHome, bool autoUpdate) : GxsGroupFeedItem(feedHolder, feedId, group.mMeta.mGroupId, isHome, rsGxsChannels, autoUpdate) { - setup(); - setGroup(group); - addEventHandler(); -} + setup(); -void GxsChannelGroupItem::addEventHandler() -{ - mEventHandlerId = 0; - rsEvents->registerEventsHandler( [this](std::shared_ptr event) - { - RsQThreadUtils::postToObject([=]() - { - const auto *e = dynamic_cast(event.get()); - - if(!e || e->mChannelGroupId != this->groupId()) - return; - - switch(e->mChannelEventCode) - { - case RsChannelEventCode::SUBSCRIBE_STATUS_CHANGED: - case RsChannelEventCode::UPDATED_CHANNEL: - case RsChannelEventCode::RECEIVED_PUBLISH_KEY: - loadGroup(); - break; - default: - break; - } - }, this ); - }, mEventHandlerId, RsEventType::GXS_CHANNELS ); + setGroup(group); } GxsChannelGroupItem::~GxsChannelGroupItem() { - rsEvents->unregisterEventsHandler(mEventHandlerId); delete(ui); } diff --git a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.h b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.h index b0366bc98..cd7f6510b 100644 --- a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.h +++ b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.h @@ -60,14 +60,12 @@ private slots: private: void fill(); void setup(); - void addEventHandler(); private: RsGxsChannelGroup mGroup; /** Qt Designer generated object */ Ui::GxsChannelGroupItem *ui; - RsEventsHandlerId_t mEventHandlerId; }; #endif diff --git a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.ui b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.ui index e17f53c48..151e6920b 100644 --- a/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.ui +++ b/retroshare-gui/src/gui/feeds/GxsChannelGroupItem.ui @@ -251,7 +251,7 @@ Qt::NoFocus - Subscribe this Channel + Subscribe to Channel Subscribe diff --git a/retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp b/retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp index 17036a15e..102dfb637 100644 --- a/retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp +++ b/retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp @@ -49,10 +49,6 @@ GxsChannelPostItem::GxsChannelPostItem(FeedHolder *feedHolder, uint32_t feedId, GxsFeedItem(feedHolder, feedId, group_meta.mGroupId, messageId, isHome, rsGxsChannels, autoUpdate), mGroupMeta(group_meta) { - mLoadingGroup = false; - mLoadingMessage = false; - mLoadingComment = false; - mPost.mMeta.mMsgId = messageId; // useful for uniqueIdentifer() before the post is loaded mPost.mMeta.mGroupId = mGroupMeta.mGroupId; @@ -140,19 +136,6 @@ void GxsChannelPostItem::paintEvent(QPaintEvent *e) GxsChannelPostItem::~GxsChannelPostItem() { - auto timeout = std::chrono::steady_clock::now() + std::chrono::milliseconds(300); - - while( (mLoadingGroup || mLoadingMessage || mLoadingComment) - && std::chrono::steady_clock::now() < timeout) - { - RsDbg() << __PRETTY_FUNCTION__ << " is Waiting for " - << (mLoadingGroup ? "Group " : "") - << (mLoadingMessage ? "Message " : "") - << (mLoadingComment ? "Comment " : "") - << "loading." << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(100)); - } - delete(ui); } @@ -294,7 +277,6 @@ void GxsChannelPostItem::loadGroup() std::cerr << "GxsChannelGroupItem::loadGroup()"; std::cerr << std::endl; #endif - mLoadingGroup = true; RsThread::async([this]() { @@ -324,7 +306,6 @@ void GxsChannelPostItem::loadGroup() * after a blocking call to RetroShare API complete */ mGroupMeta = group.mMeta; - mLoadingGroup = false; }, this ); }); @@ -335,8 +316,6 @@ void GxsChannelPostItem::loadMessage() std::cerr << "GxsChannelPostItem::loadMessage()"; std::cerr << std::endl; #endif - mLoadingMessage = true; - RsThread::async([this]() { // 1 - get group data @@ -358,11 +337,7 @@ void GxsChannelPostItem::loadMessage() #endif const RsGxsChannelPost& post(posts[0]); - RsQThreadUtils::postToObject( [post,this]() - { - setPost(post); - mLoadingMessage = false; - }, this ); + RsQThreadUtils::postToObject( [post,this]() { setPost(post); }, this ); } else if(comments.size() == 1) { @@ -381,8 +356,7 @@ void GxsChannelPostItem::loadMessage() setMessageId(cmt.mMeta.mThreadId); requestMessage(); - mLoadingMessage = false; - }, this ); + }, this ); } else @@ -392,11 +366,7 @@ void GxsChannelPostItem::loadMessage() std::cerr << std::endl; #endif - RsQThreadUtils::postToObject( [this]() - { - removeItem(); - mLoadingMessage = false; - }, this ); + RsQThreadUtils::postToObject( [this]() { removeItem(); }, this ); } }); } @@ -407,7 +377,6 @@ void GxsChannelPostItem::loadComment() std::cerr << "GxsChannelPostItem::loadComment()"; std::cerr << std::endl; #endif - mLoadingComment = true; RsThread::async([this]() { @@ -438,7 +407,6 @@ void GxsChannelPostItem::loadComment() sComButText = tr("Comments ").append("(%1)").arg(comNb); ui->commentButton->setText(sComButText); - mLoadingComment = false; }, this ); }); diff --git a/retroshare-gui/src/gui/feeds/GxsChannelPostItem.h b/retroshare-gui/src/gui/feeds/GxsChannelPostItem.h index b3e7843c0..8370b885e 100644 --- a/retroshare-gui/src/gui/feeds/GxsChannelPostItem.h +++ b/retroshare-gui/src/gui/feeds/GxsChannelPostItem.h @@ -119,12 +119,7 @@ private: private: bool mInFill; bool mCloseOnRead; - bool mLoaded; - - bool mLoadingMessage; - bool mLoadingGroup; - bool mLoadingComment; - + bool mLoaded; RsGroupMetaData mGroupMeta; RsGxsChannelPost mPost; diff --git a/retroshare-gui/src/gui/feeds/GxsForumGroupItem.cpp b/retroshare-gui/src/gui/feeds/GxsForumGroupItem.cpp index 663951a6c..43c94a377 100644 --- a/retroshare-gui/src/gui/feeds/GxsForumGroupItem.cpp +++ b/retroshare-gui/src/gui/feeds/GxsForumGroupItem.cpp @@ -35,8 +35,8 @@ GxsForumGroupItem::GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, co GxsGroupFeedItem(feedHolder, feedId, groupId, isHome, rsGxsForums, autoUpdate) { setup(); + requestGroup(); - addEventHandler(); } GxsForumGroupItem::GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId &groupId, const std::list& added_moderators,const std::list& removed_moderators,bool isHome, bool autoUpdate): @@ -45,48 +45,21 @@ GxsForumGroupItem::GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, co mRemovedModerators(removed_moderators) { setup(); + requestGroup(); - addEventHandler(); -} - -void GxsForumGroupItem::addEventHandler() -{ - mEventHandlerId = 0; - rsEvents->registerEventsHandler( [this](std::shared_ptr event) - { - RsQThreadUtils::postToObject([=]() - { - const auto *e = dynamic_cast(event.get()); - - if(!e || e->mForumGroupId != this->groupId()) - return; - - switch(e->mForumEventCode) - { - case RsForumEventCode::SUBSCRIBE_STATUS_CHANGED: - case RsForumEventCode::UPDATED_FORUM: - case RsForumEventCode::MODERATOR_LIST_CHANGED: - loadGroup(); - break; - default: - break; - } - }, this ); - }, mEventHandlerId, RsEventType::GXS_FORUMS ); } GxsForumGroupItem::GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsForumGroup &group, bool isHome, bool autoUpdate) : GxsGroupFeedItem(feedHolder, feedId, group.mMeta.mGroupId, isHome, rsGxsForums, autoUpdate) { setup(); + setGroup(group); - addEventHandler(); } GxsForumGroupItem::~GxsForumGroupItem() { - rsEvents->unregisterEventsHandler(mEventHandlerId); - delete(ui); + delete(ui); } void GxsForumGroupItem::setup() diff --git a/retroshare-gui/src/gui/feeds/GxsForumGroupItem.h b/retroshare-gui/src/gui/feeds/GxsForumGroupItem.h index d80671e5a..29b7851f2 100644 --- a/retroshare-gui/src/gui/feeds/GxsForumGroupItem.h +++ b/retroshare-gui/src/gui/feeds/GxsForumGroupItem.h @@ -22,7 +22,6 @@ #define _GXSFORUMGROUPITEM_H #include -#include #include "gui/gxs/GxsGroupFeedItem.h" namespace Ui { @@ -40,28 +39,27 @@ public: GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId &groupId, bool isHome, bool autoUpdate); GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId &groupId, const std::list& added_moderators,const std::list& removed_moderators,bool isHome, bool autoUpdate); GxsForumGroupItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsForumGroup &group, bool isHome, bool autoUpdate); - virtual ~GxsForumGroupItem() override; + ~GxsForumGroupItem(); bool setGroup(const RsGxsForumGroup &group); uint64_t uniqueIdentifier() const override { return hash_64bits("GxsForumGroupItem " + groupId().toStdString()) ; } protected: /* FeedItem */ - virtual void doExpand(bool open) override; + virtual void doExpand(bool open); + void toggle() override; /* GxsGroupFeedItem */ - virtual QString groupName() override; + virtual QString groupName(); virtual void loadGroup() override; - virtual RetroShareLink::enumType getLinkType() override { return RetroShareLink::TYPE_FORUM; } + virtual RetroShareLink::enumType getLinkType() { return RetroShareLink::TYPE_FORUM; } private slots: void subscribeForum(); - void toggle() override; private: void fill(); void setup(); - void addEventHandler(); private: RsGxsForumGroup mGroup; @@ -71,8 +69,6 @@ private: std::list mAddedModerators; std::list mRemovedModerators; - - RsEventsHandlerId_t mEventHandlerId; }; #endif diff --git a/retroshare-gui/src/gui/feeds/GxsForumMsgItem.cpp b/retroshare-gui/src/gui/feeds/GxsForumMsgItem.cpp index f4d091179..eedb4ae20 100644 --- a/retroshare-gui/src/gui/feeds/GxsForumMsgItem.cpp +++ b/retroshare-gui/src/gui/feeds/GxsForumMsgItem.cpp @@ -47,13 +47,7 @@ GxsForumMsgItem::GxsForumMsgItem(FeedHolder *feedHolder, uint32_t feedId, const { mMessage.mMeta.mMsgId = messageId; // useful for uniqueIdentifier() before the post is actually loaded mMessage.mMeta.mGroupId = groupId; - - mLoadingGroup = false; - mLoadingMessage = false; - mLoadingSetAsRead = false; - mLoadingParentMessage = false; - - setup(); + setup(); requestGroup(); requestMessage(); @@ -89,19 +83,6 @@ GxsForumMsgItem::GxsForumMsgItem(FeedHolder *feedHolder, uint32_t feedId, const GxsForumMsgItem::~GxsForumMsgItem() { - auto timeout = std::chrono::steady_clock::now() + std::chrono::milliseconds(300); - - while( (mLoadingGroup || mLoadingMessage || mLoadingSetAsRead || mLoadingParentMessage) - && std::chrono::steady_clock::now() < timeout) - { - RsDbg() << __PRETTY_FUNCTION__ << " is Waiting for " - << (mLoadingGroup ? "Group " : "") - << (mLoadingMessage ? "Message " : "") - << (mLoadingParentMessage ? "Parent message " : "") - << (mLoadingSetAsRead ? "Set as read" : "") - << "loading." << std::endl; - std::this_thread::sleep_for(std::chrono::milliseconds(100)); - } delete(ui); } @@ -186,8 +167,6 @@ QString GxsForumMsgItem::groupName() void GxsForumMsgItem::loadGroup() { - mLoadingGroup = true; - RsThread::async([this]() { // 1 - get group data @@ -220,7 +199,6 @@ void GxsForumMsgItem::loadGroup() * after a blocking call to RetroShare API complete */ setGroup(group); - mLoadingGroup = false; }, this ); }); @@ -232,7 +210,6 @@ void GxsForumMsgItem::loadMessage() std::cerr << "GxsForumMsgItem::loadMessage(): messageId=" << messageId() << " groupId=" << groupId() ; std::cerr << std::endl; #endif - mLoadingMessage = true; RsThread::async([this]() { @@ -267,7 +244,6 @@ void GxsForumMsgItem::loadMessage() * after a blocking call to RetroShare API complete */ setMessage(msg); - mLoadingMessage = false; }, this ); }); @@ -279,7 +255,6 @@ void GxsForumMsgItem::loadParentMessage(const RsGxsMessageId& parent_msg) std::cerr << "GxsForumMsgItem::loadParentMessage()"; std::cerr << std::endl; #endif - mLoadingParentMessage = true; RsThread::async([parent_msg,this]() { @@ -316,8 +291,6 @@ void GxsForumMsgItem::loadParentMessage(const RsGxsMessageId& parent_msg) mParentMessage = msg; fillParentMessage(); - mLoadingParentMessage = false; - }, this ); }); } @@ -507,7 +480,6 @@ void GxsForumMsgItem::setAsRead(bool doUpdate) } mCloseOnRead = false; - mLoadingSetAsRead = true; RsThread::async( [this, doUpdate]() { RsGxsGrpMsgIdPair msgPair = std::make_pair(groupId(), messageId()); @@ -517,7 +489,6 @@ void GxsForumMsgItem::setAsRead(bool doUpdate) if (doUpdate) { RsQThreadUtils::postToObject( [this]() { setReadStatus(false, true); - mLoadingSetAsRead = false; } ); } }); diff --git a/retroshare-gui/src/gui/feeds/GxsForumMsgItem.h b/retroshare-gui/src/gui/feeds/GxsForumMsgItem.h index ec933d96e..34166ee59 100644 --- a/retroshare-gui/src/gui/feeds/GxsForumMsgItem.h +++ b/retroshare-gui/src/gui/feeds/GxsForumMsgItem.h @@ -87,10 +87,6 @@ private: private: bool mInFill; bool mCloseOnRead; - bool mLoadingMessage; - bool mLoadingParentMessage; - bool mLoadingGroup; - bool mLoadingSetAsRead; RsGxsForumGroup mGroup; RsGxsForumMsg mMessage; diff --git a/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp b/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp index afc676bdd..7b9e28131 100644 --- a/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp +++ b/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp @@ -29,8 +29,6 @@ #include #include -//#define DEBUG_COMMENT_DIALOG 1 - /** Constructor */ GxsCommentDialog::GxsCommentDialog(QWidget *parent, const RsGxsId &default_author, RsGxsCommentService *comment_service) : QWidget(parent), ui(new Ui::GxsCommentDialog) @@ -97,11 +95,8 @@ void GxsCommentDialog::commentClear() } void GxsCommentDialog::commentLoad(const RsGxsGroupId &grpId, const std::set& msg_versions,const RsGxsMessageId& most_recent_msgId,bool use_cache) { -#ifdef DEBUG_COMMENT_DIALOG - std::cerr << "GxsCommentDialog::commentLoad(" << grpId << ", most recent msg version: " << most_recent_msgId << ")" << std::endl; - for(const auto& mid:msg_versions) - std::cerr << " msg version: " << mid << std::endl; -#endif + std::cerr << "GxsCommentDialog::commentLoad(" << grpId << ", most recent msg version: " << most_recent_msgId << ")"; + std::cerr << std::endl; mGrpId = grpId; mMostRecentMsgId = most_recent_msgId; @@ -131,19 +126,15 @@ void GxsCommentDialog::idChooserReady() void GxsCommentDialog::voterSelectionChanged( int index ) { -#ifdef DEBUG_COMMENT_DIALOG std::cerr << "GxsCommentDialog::voterSelectionChanged(" << index << ")"; std::cerr << std::endl; -#endif RsGxsId voterId; switch (ui->idChooser->getChosenId(voterId)) { case GxsIdChooser::KnowId: case GxsIdChooser::UnKnowId: -#ifdef DEBUG_COMMENT_DIALOG - std::cerr << "GxsCommentDialog::voterSelectionChanged() => " << voterId; + std::cerr << "GxsCommentDialog::voterSelectionChanged() => " << voterId; std::cerr << std::endl; -#endif ui->treeWidget->setVoteId(voterId); break; @@ -164,10 +155,8 @@ void GxsCommentDialog::setCommentHeader(QWidget *header) return; } -#ifdef DEBUG_COMMENT_DIALOG - std::cerr << "GxsCommentDialog::setCommentHeader() Adding header to ui,postFrame"; + std::cerr << "GxsCommentDialog::setCommentHeader() Adding header to ui,postFrame"; std::cerr << std::endl; -#endif //header->setParent(ui->postFrame); //ui->postFrame->setVisible(true); diff --git a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp index 277b11e4f..0b65b7c3d 100644 --- a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp +++ b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.cpp @@ -21,8 +21,6 @@ #include "GxsCommentTreeWidget.h" #include "gui/common/FilesDefs.h" -#include "gui/Identity/IdDialog.h" -#include "gui/MainWindow.h" #include "gui/common/RSElidedItemDelegate.h" #include "gui/common/RSTreeWidgetItem.h" #include "gui/gxs/GxsCreateCommentDialog.h" @@ -44,8 +42,6 @@ #include -//#define DEBUG_COMMENT_TREE_WIDGET - #define PCITEM_COLUMN_COMMENT 0 #define PCITEM_COLUMN_AUTHOR 1 #define PCITEM_COLUMN_DATE 2 @@ -77,7 +73,6 @@ std::map > GxsCommentTreeWidget::mComm QMutex GxsCommentTreeWidget::mCacheMutex; //#define USE_NEW_DELEGATE 1 -//#define DEBUG_GXSCOMMENT_TREEWIDGET 1 // This class allows to draw the item using an appropriate size @@ -348,10 +343,6 @@ void GxsCommentTreeWidget::customPopUpMenu(const QPoint& point) action = contextMnu.addAction(FilesDefs::getIconFromQtResourcePath(IMAGE_VOTEDOWN), tr("Vote Down"), this, SLOT(voteDown())); action->setDisabled(!item || mCurrentCommentMsgId.isNull() || mVoterId.isNull()); - contextMnu.addSeparator(); - - action = contextMnu.addAction(tr("Show Author"), this, SLOT(showAuthor())); - action->setDisabled(!item || mCurrentCommentMsgId.isNull() || mVoterId.isNull()); if (!mCurrentCommentMsgId.isNull()) { @@ -470,23 +461,14 @@ void GxsCommentTreeWidget::replyToComment() pcc.exec(); } - -void GxsCommentTreeWidget::showAuthor() -{ - /* window will destroy itself! */ - IdDialog *idDialog = dynamic_cast(MainWindow::getPage(MainWindow::People)); - - if (!idDialog) - return ; - - MainWindow::showWindow(MainWindow::People); - idDialog->navigate(RsGxsId(mCurrentCommentAuthorId)); -} - void GxsCommentTreeWidget::copyComment() { QString txt = dynamic_cast(sender())->data().toString(); - QApplication::clipboard()->setText(txt) ; + + QMimeData *mimeData = new QMimeData(); + mimeData->setHtml(""+txt+""); + QClipboard *clipboard = QApplication::clipboard(); + clipboard->setMimeData(mimeData, QClipboard::Clipboard); } void GxsCommentTreeWidget::setup(RsGxsCommentService *comment_service) @@ -530,8 +512,6 @@ void GxsCommentTreeWidget::service_requestComments(const RsGxsGroupId& group_id, /* request comments */ #ifdef DEBUG_GXSCOMMENT_TREEWIDGET std::cerr << "GxsCommentTreeWidget::service_requestComments for group " << group_id << std::endl; - for(const auto& mid:msgIds) - std::cerr << " including message " << mid << std::endl; #endif RsThread::async([this,group_id,msgIds]() @@ -789,10 +769,8 @@ void GxsCommentTreeWidget::insertComments(const std::vector& comme new_comments.push_back(comment.mMeta.mMsgId); /* convert to a QTreeWidgetItem */ -#ifdef DEBUG_COMMENT_TREE_WIDGET std::cerr << "GxsCommentTreeWidget::service_loadThread() Got Comment: " << comment.mMeta.mMsgId; std::cerr << std::endl; -#endif GxsIdRSTreeWidgetItem *item = new GxsIdRSTreeWidgetItem(NULL,GxsIdDetails::ICON_TYPE_AVATAR) ; QString text; diff --git a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.h b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.h index 5f52459a9..43a6f55a5 100644 --- a/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.h +++ b/retroshare-gui/src/gui/gxs/GxsCommentTreeWidget.h @@ -72,7 +72,6 @@ public slots: void makeComment(); void replyToComment(); - void showAuthor(); void copyComment(); diff --git a/retroshare-gui/src/gui/gxs/GxsGroupFrameDialog.cpp b/retroshare-gui/src/gui/gxs/GxsGroupFrameDialog.cpp index 069c51b79..3b1aad916 100644 --- a/retroshare-gui/src/gui/gxs/GxsGroupFrameDialog.cpp +++ b/retroshare-gui/src/gui/gxs/GxsGroupFrameDialog.cpp @@ -466,9 +466,7 @@ void GxsGroupFrameDialog::groupTreeCustomPopupMenu(QPoint point) uint32_t current_store_time = checkDelay(mInterface->getStoragePeriod(mGroupId))/86400 ; uint32_t current_sync_time = checkDelay(mInterface->getSyncPeriod(mGroupId))/86400 ; -#ifdef DEBUG_GROUPFRAMEDIALOG std::cerr << "Got sync=" << current_sync_time << ". store=" << current_store_time << std::endl; -#endif QAction *actnn = NULL; QMenu *ctxMenu2 = contextMnu.addMenu(tr("Synchronise posts of last...")) ; @@ -1107,12 +1105,7 @@ void GxsGroupFrameDialog::updateGroupSummary() * Qt::QueuedConnection is important! */ - // Here we save the focus, and restore it afterwards: there's no need to grab the focus here and - // if we do, it may harm the navitation in forums, channels, boards, etc. - - auto w = QApplication::focusWidget(); - - insertGroupsData(*groupInfo); + insertGroupsData(*groupInfo); updateSearchResults(); mStateHelper->setLoading(TOKEN_TYPE_GROUP_SUMMARY, false); @@ -1139,12 +1132,7 @@ void GxsGroupFrameDialog::updateGroupSummary() delete groupInfo; - // Restore the focus. - - if(w) - w->setFocus(); - - }, this ); + }, this ); }); } @@ -1177,16 +1165,16 @@ void GxsGroupFrameDialog::updateGroupStatisticsReal(const RsGxsGroupId &groupId) * Qt::QueuedConnection is important! */ - QTreeWidgetItem *item = ui->groupTreeWidget->getItemFromId(QString::fromStdString(stats.mGrpId.toStdString())); - - if (item) - ui->groupTreeWidget->setUnreadCount(item, mCountChildMsgs ? (stats.mNumThreadMsgsUnread + stats.mNumChildMsgsUnread) : stats.mNumThreadMsgsUnread); + QTreeWidgetItem *item = ui->groupTreeWidget->getItemFromId(QString::fromStdString(stats.mGrpId.toStdString())); + if (!item) + return; + ui->groupTreeWidget->setUnreadCount(item, mCountChildMsgs ? (stats.mNumThreadMsgsUnread + stats.mNumChildMsgsUnread) : stats.mNumThreadMsgsUnread); mCachedGroupStats[groupId] = stats; getUserNotify()->updateIcon(); - }, this ); + }, this ); }); } diff --git a/retroshare-gui/src/gui/gxs/GxsIdDetails.cpp b/retroshare-gui/src/gui/gxs/GxsIdDetails.cpp index 5c1c11b49..b1961a6e6 100644 --- a/retroshare-gui/src/gui/gxs/GxsIdDetails.cpp +++ b/retroshare-gui/src/gui/gxs/GxsIdDetails.cpp @@ -85,27 +85,23 @@ void ReputationItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem { Q_ASSERT(index.isValid()); - QStyleOptionViewItem opt(option); + QStyleOptionViewItemV4 opt = option; initStyleOption(&opt, index); // disable default icon opt.icon = QIcon(); // draw default item QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, 0); - const QRect r = option.rect; + const QRect r = option.rect; // get pixmap - auto v = index.data(Qt::DecorationRole); - - if(!v.canConvert(QVariant::Int)) - return; - - unsigned int icon_index = qvariant_cast(v); + unsigned int icon_index = qvariant_cast(index.data(Qt::DecorationRole)); if(icon_index > mMaxLevelToDisplay) return ; - QIcon icon = GxsIdDetails::getReputationIcon( RsReputationLevel(icon_index), 0xff ); + QIcon icon = GxsIdDetails::getReputationIcon( + RsReputationLevel(icon_index), 0xff ); QPixmap pix = icon.pixmap(r.size()); @@ -114,12 +110,6 @@ void ReputationItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem painter->drawPixmap(r.topLeft() + p, pix); } -QSize ReputationItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex & /*index*/) const -{ - int s = 1.5*QFontMetricsF(option.font).height(); - - return QSize(s,s); -} /* The global object */ GxsIdDetails *GxsIdDetails::mInstance = NULL ; diff --git a/retroshare-gui/src/gui/gxs/GxsIdDetails.h b/retroshare-gui/src/gui/gxs/GxsIdDetails.h index 122b5e089..05568aa3a 100644 --- a/retroshare-gui/src/gui/gxs/GxsIdDetails.h +++ b/retroshare-gui/src/gui/gxs/GxsIdDetails.h @@ -52,8 +52,7 @@ public: ReputationItemDelegate(RsReputationLevel max_level_to_display) : mMaxLevelToDisplay(static_cast(max_level_to_display)) {} - virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; - virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex & /*index*/) const override; + virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; private: uint32_t mMaxLevelToDisplay ; diff --git a/retroshare-gui/src/gui/gxs/GxsIdTreeWidgetItem.cpp b/retroshare-gui/src/gui/gxs/GxsIdTreeWidgetItem.cpp index 053590e11..97f128447 100644 --- a/retroshare-gui/src/gui/gxs/GxsIdTreeWidgetItem.cpp +++ b/retroshare-gui/src/gui/gxs/GxsIdTreeWidgetItem.cpp @@ -193,25 +193,17 @@ void GxsIdTreeItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem QStyleOptionViewItem ownOption (option); initStyleOption(&ownOption, index); - QString dt = index.data(Qt::UserRole).toString(); - RsGxsId id(index.data(Qt::UserRole).toString().toStdString()); + RsGxsId id(index.data(Qt::UserRole).toString().toStdString()); + QString cmt; - // This is a trick: UserRole in Mail generally is 0000...00000 when there is a notification, and is empty when there are multiple - // destinations at once. This is not so nice to do that this way, but it's a quick workaround to a more complex method involving an - // additional Qt role only to determine the number of destinations. - - if(dt == "") - ownOption.icon = FilesDefs::getIconFromQtResourcePath(":/icons/svg/people2.svg"); - else if(id.isNull()) - { - if (ownOption.icon.isNull()) - ownOption.icon = FilesDefs::getIconFromQtResourcePath(":/icons/notification.svg"); - } - else + if(id.isNull()) { - QString cmt; - - if(! computeNameIconAndComment(id,ownOption.text,ownOption.icon,cmt)) + if (ownOption.icon.isNull()) + ownOption.icon = FilesDefs::getIconFromQtResourcePath(":/icons/notification.svg"); + } + else + { + if(! computeNameIconAndComment(id,ownOption.text,ownOption.icon,cmt)) { if(mReloadPeriod > 3) { diff --git a/retroshare-gui/src/gui/gxs/GxsUserNotify.h b/retroshare-gui/src/gui/gxs/GxsUserNotify.h index 66890a1c3..cfbec97be 100644 --- a/retroshare-gui/src/gui/gxs/GxsUserNotify.h +++ b/retroshare-gui/src/gui/gxs/GxsUserNotify.h @@ -46,6 +46,7 @@ protected: bool mCountChildMsgs; // Count new child messages? private: + RsGxsUpdateBroadcastBase *mBase; const GxsGroupFrameDialog *mGroupFrameDialog; unsigned int mNewThreadMessageCount; diff --git a/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.cpp b/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.cpp index bc2f5d960..05ce9bda6 100644 --- a/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.cpp +++ b/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.cpp @@ -35,7 +35,6 @@ #include "util/rsdir.h" #include "util/qtthreadsutils.h" #include "util/RichTextEdit.h" -#include "util/imageutil.h" #include @@ -608,13 +607,11 @@ bool CreateGxsChannelMsg::setThumbNail(const std::string& path, int frame){ if(imageBuffer == NULL) return false; - QImage tNail(imageBuffer, width, height, QImage::Format_RGBA32); + QImage tNail(imageBuffer, width, height, QImage::Format_RGB32); QByteArray ba; QBuffer buffer(&ba); - bool has_transparency = ImageUtil::hasAlphaContent(tNail.toImage()); - buffer.open(QIODevice::WriteOnly); - tNail.save(&buffer, has_transparency?"PNG":"JPG"); + tNail.save(&buffer, "JPG"); QPixmap img; img.loadFromData(ba, "PNG"); img = img.scaled(thumbnail_label->width(), thumbnail_label->height(), Qt::KeepAspectRatio, Qt::SmoothTransformation); @@ -800,19 +797,15 @@ void CreateGxsChannelMsg::sendMessage(const std::string &subject, const std::str QByteArray ba; QBuffer buffer(&ba); - RsGxsImage image; - QPixmap pixmap; - pixmap = preview_W->getCroppedScaledPicture(); - QImage qimg = pixmap.toImage(); - bool has_transparency = ImageUtil::hasAlphaContent(qimg); + RsGxsImage image; if(!picture.isNull()) { // send chan image buffer.open(QIODevice::WriteOnly); - preview_W->getCroppedScaledPicture().save(&buffer, has_transparency?"PNG":"JPG"); // writes image into ba in PNG format - image.copy((uint8_t *) ba.data(), ba.size()); + preview_W->getCroppedScaledPicture().save(&buffer, "JPG"); // writes image into ba in PNG format + image.copy((uint8_t *) ba.data(), ba.size()); } std::string error_string; diff --git a/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.ui b/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.ui index 01e58118f..510da23a1 100644 --- a/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.ui +++ b/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.ui @@ -191,8 +191,8 @@ 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:''; font-size:;"> 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:''; font-size:;"> Copy/Paste RetroShare links from your shares</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;"> 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> Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop @@ -515,8 +515,8 @@ p, li { white-space: pre-wrap; } 0 0 - 98 - 30 + 63 + 24 @@ -611,11 +611,6 @@ p, li { white-space: pre-wrap; } - - RSComboBox - QComboBox -
gui/common/RSComboBox.h
-
ChannelPostThumbnailView QWidget @@ -634,10 +629,15 @@ p, li { white-space: pre-wrap; }
util/RichTextEdit.h
1
+ + RSComboBox + QComboBox +
gui/common/RSComboBox.h
+
- + diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.cpp b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.cpp index 23f5f5b93..66eb0f793 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.cpp +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.cpp @@ -50,12 +50,15 @@ GxsChannelFilesStatusWidget::GxsChannelFilesStatusWidget(const RsGxsFile &file, connect(ui->openFilePushButton, SIGNAL(clicked()), this, SLOT(openFile())); ui->downloadPushButton->setIcon(FilesDefs::getIconFromQtResourcePath(":/icons/png/download.png")); + ui->openFolderToolButton->setIcon(FilesDefs::getIconFromQtResourcePath(":/icons/png/arrow.png")); - ui->openFolderPushButton->setIcon(FilesDefs::getIconFromQtResourcePath(":/images/folderopen.png")); - ui->openFolderPushButton->setToolTip(tr("Open folder")); - - connect(ui->openFolderPushButton, SIGNAL(clicked()), this, SLOT(openFolder())); + QAction *openfolder = new QAction(tr("Open folder"), this); + connect(openfolder, SIGNAL(triggered()), this, SLOT(openFolder())); + QMenu *menu = new QMenu(); + menu->addAction(openfolder); + ui->openFolderToolButton->setMenu(menu); + check(); } @@ -87,9 +90,7 @@ void GxsChannelFilesStatusWidget::setSize(uint64_t size) void GxsChannelFilesStatusWidget::check() { FileInfo fileInfo; - - if(haveFile(fileInfo)) - { + if (rsFiles->alreadyHaveFile(mFile.mHash, fileInfo)) { mState = STATE_LOCAL; setSize(fileInfo.size); @@ -102,25 +103,27 @@ void GxsChannelFilesStatusWidget::check() ui->openFilePushButton->setText(tr("Play")); ui->openFilePushButton->setIcon(FilesDefs::getIconFromQtResourcePath(":/icons/png/play.png")); } - } - else - { - switch (fileInfo.downloadStatus) - { + + } else { + FileInfo fileInfo; + bool detailsOk = rsFiles->FileDetails(mFile.mHash, RS_FILE_HINTS_DOWNLOAD | RS_FILE_HINTS_SPEC_ONLY, fileInfo); + + if (detailsOk) { + switch (fileInfo.downloadStatus) { case FT_STATE_WAITING: mState = STATE_WAITING; break; case FT_STATE_DOWNLOADING: - if (fileInfo.avail == fileInfo.size) + if (fileInfo.avail == fileInfo.size) { mState = STATE_LOCAL; - else + } else { mState = STATE_DOWNLOAD; - + } setSize(fileInfo.size); ui->progressBar->setValue(fileInfo.avail / mDivisor); break; - case FT_STATE_COMPLETE: // this should not happen, since the case is handled earlier - mState = STATE_ERROR; + case FT_STATE_COMPLETE: + mState = STATE_DOWNLOAD; break; case FT_STATE_QUEUED: mState = STATE_WAITING; @@ -131,11 +134,14 @@ void GxsChannelFilesStatusWidget::check() case FT_STATE_CHECKING_HASH: mState = STATE_CHECKING; break; - default: - mState = STATE_REMOTE; - break; - } - } + case FT_STATE_FAILED: + mState = STATE_ERROR; + break; + } + } else { + mState = STATE_REMOTE; + } + } int repeat = 0; QString statusText; @@ -150,7 +156,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->hide(); ui->progressBar->hide(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); statusText = tr("Error"); @@ -165,7 +171,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->hide(); ui->progressBar->hide(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); break; @@ -178,7 +184,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->show(); ui->progressBar->show(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); break; @@ -191,7 +197,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->show(); ui->progressBar->hide(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); statusText = tr("Paused"); @@ -206,7 +212,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->show(); ui->progressBar->hide(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); statusText = tr("Waiting"); @@ -221,7 +227,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->show(); ui->progressBar->hide(); ui->openFilePushButton->hide(); - ui->openFolderPushButton->hide(); + ui->openFolderToolButton->hide(); statusText = tr("Checking"); @@ -236,7 +242,7 @@ void GxsChannelFilesStatusWidget::check() ui->cancelToolButton->hide(); ui->progressBar->hide(); ui->openFilePushButton->show(); - ui->openFolderPushButton->show(); + ui->openFolderToolButton->show(); break; } @@ -318,60 +324,35 @@ void GxsChannelFilesStatusWidget::cancel() void GxsChannelFilesStatusWidget::openFolder() { FileInfo fileInfo; - if (!haveFile(fileInfo)) + if (!rsFiles->alreadyHaveFile(mFile.mHash, fileInfo)) { return; + } - QFileInfo finfo; - finfo.setFile(QString::fromUtf8(fileInfo.path.c_str())); + /* open folder with a suitable application */ + QDir dir = QFileInfo(QString::fromUtf8(fileInfo.path.c_str())).absoluteDir(); + if (dir.exists()) { + if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(dir.absolutePath()))) { + if(!mUsedAsEditor) + QMessageBox::warning(this, "", QString("%1 %2").arg(tr("Can't open folder"), dir.absolutePath())); + else + RsErr() << "Can't open folder " << dir.absolutePath().toStdString() ; - /* open folder with a suitable application */ - if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(finfo.absolutePath()))) { - if(!mUsedAsEditor) - QMessageBox::warning(this, "", QString("%1 %2").arg(tr("Can't open folder"), finfo.absolutePath())); - else - RsErr() << "Can't open folder " << finfo.absolutePath().toStdString() ; - } -} - -bool GxsChannelFilesStatusWidget::haveFile(FileInfo& info) -{ - bool already_has_file = rsFiles->alreadyHaveFile(mFile.mHash, info); - - if(!already_has_file) - if(!(rsFiles->FileDetails(mFile.mHash, RS_FILE_HINTS_DOWNLOAD | RS_FILE_HINTS_SPEC_ONLY, info) && info.downloadStatus==FT_STATE_COMPLETE)) - return false; - - // We need the code below because FileDetails() returns fileInfo.path as the directory when the file in COMPLETE and - // as a full path when the file is shared. The former is inconsistent with the documentation in rstypes.h, but I'm not - // sure what are the implications of changing the code in libretroshare so that the full path is always returned. - - QFileInfo finfo; - - if(QDir(QString::fromUtf8(info.path.c_str())).exists()) - finfo.setFile(QString::fromUtf8(info.path.c_str()),QString::fromUtf8(info.fname.c_str())); - else if(QFile(QString::fromUtf8(info.path.c_str())).exists()) - finfo.setFile(QString::fromUtf8(info.path.c_str())); - else - { - RsErr() << "Cannot find file!" << std::endl; - return false; - } - - info.path = finfo.absoluteFilePath().toStdString(); - return true; + } + } } void GxsChannelFilesStatusWidget::openFile() { FileInfo fileInfo; - if(!haveFile(fileInfo)) + if (!rsFiles->alreadyHaveFile(mFile.mHash, fileInfo)) { return; + } - QFileInfo finfo; - finfo.setFile(QString::fromUtf8(fileInfo.path.c_str())); - - if (finfo.exists()) { - if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(finfo.absoluteFilePath()))) { + /* open file with a suitable application */ + QFileInfo qinfo; + qinfo.setFile(QString::fromUtf8(fileInfo.path.c_str())); + if (qinfo.exists()) { + if (!RsUrlHandler::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) { std::cerr << "GxsChannelFilesStatusWidget(): can't open file " << fileInfo.path << std::endl; } }else{ diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.h b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.h index 0dbb5c072..7ae09ce6b 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.h +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.h @@ -53,7 +53,6 @@ private slots: private: void setSize(uint64_t size); - bool haveFile(FileInfo& info); private: enum State diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.ui b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.ui index e8ee2d512..2c51ded6c 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.ui +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelFilesStatusWidget.ui @@ -6,8 +6,8 @@ 0 0 - 473 - 36 + 421 + 29
@@ -139,7 +139,7 @@ - + 0 diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostFilesModel.cpp b/retroshare-gui/src/gui/gxschannels/GxsChannelPostFilesModel.cpp index 806fcaa69..856ef32e1 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostFilesModel.cpp +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostFilesModel.cpp @@ -342,20 +342,10 @@ public: case RsGxsChannelPostFilesModel::COLUMN_FILES_FILE: { FileInfo fi1,fi2; - bool r1 = rsFiles->FileDetails(f1.mHash,RS_FILE_HINTS_DOWNLOAD,fi1); - bool r2 = rsFiles->FileDetails(f2.mHash,RS_FILE_HINTS_DOWNLOAD,fi2); + rsFiles->FileDetails(f1.mHash,RS_FILE_HINTS_DOWNLOAD,fi1); + rsFiles->FileDetails(f2.mHash,RS_FILE_HINTS_DOWNLOAD,fi2); - if(r1 && r2) - return (ord==Qt::AscendingOrder)?(fi1.transferedfi2.transfered); - else - { - FileInfo fitmp; - - if(!r1 && rsFiles->alreadyHaveFile(f1.mHash,fitmp)) fi1.downloadStatus = FT_STATE_COMPLETE; - if(!r2 && rsFiles->alreadyHaveFile(f2.mHash,fitmp)) fi2.downloadStatus = FT_STATE_COMPLETE; - - return (ord==Qt::AscendingOrder)?(fi1.downloadStatusfi2.downloadStatus); - } + return (ord==Qt::AscendingOrder)?(fi1.transferedfi2.transfered); } } @@ -499,9 +489,8 @@ void RsGxsChannelPostFilesModel::update_files(std::set& add else ++afit; } -#ifdef DEBUG_CHANNEL_FILES_MODEL + RsDbg() << " Remains: " << added_files.size() << " added files and " << removed_files.size() << " removed files" ; -#endif // 2 - add whatever file remains, diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.cpp b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.cpp index 8b5b7e707..e9be3e6ed 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.cpp +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.cpp @@ -38,7 +38,7 @@ #include "GxsChannelPostFilesModel.h" //#define DEBUG_CHANNEL_MODEL_DATA -//#define DEBUG_CHANNEL_MODEL +#define DEBUG_CHANNEL_MODEL Q_DECLARE_METATYPE(RsMsgMetaData) Q_DECLARE_METATYPE(RsGxsChannelPost) @@ -176,25 +176,6 @@ int RsGxsChannelPostsModel::rowCount(const QModelIndex& parent) const return 0; } -int RsGxsChannelPostsModel::columnCount(int row) const -{ - if(mTreeMode == TREE_MODE_GRID) - { - if(row+1 == rowCount()) - { - int r = ((int)mFilteredPosts.size() % (int)mColumns); - - if(r > 0) - return r; - else - return columnCount(); - } - else - return columnCount(); - } - else - return 2; -} int RsGxsChannelPostsModel::columnCount(const QModelIndex &/*parent*/) const { if(mTreeMode == TREE_MODE_GRID) @@ -264,7 +245,7 @@ bool RsGxsChannelPostsModel::convertRefPointerToTabEntry(quintptr ref, uint32_t& QModelIndex RsGxsChannelPostsModel::index(int row, int column, const QModelIndex & parent) const { - if(row < 0 || column < 0 || row >= rowCount() || column >= columnCount(row)) + if(row < 0 || column < 0 || column >= (int)mColumns) return QModelIndex(); quintptr ref = getChildRef(parent.internalId(),(mTreeMode == TREE_MODE_GRID)?(column + row*mColumns):row); @@ -592,12 +573,10 @@ void RsGxsChannelPostsModel::update_posts(const RsGxsGroupId& group_id) std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve channel messages for channel " << group_id << std::endl; return; } -#ifdef DEBUG_CHANNEL_MODEL std::cerr << "Got channel all content for channel " << group_id << std::endl; std::cerr << " posts : " << posts->size() << std::endl; std::cerr << " comments: " << comments.size() << std::endl; std::cerr << " votes : " << votes.size() << std::endl; -#endif // 2 - update the model in the UI thread. diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.h b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.h index c447f11a3..42dcbb9f7 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.h +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsModel.h @@ -105,7 +105,6 @@ public: QModelIndex root() const{ return createIndex(0,0,(void*)NULL) ;} QModelIndex getIndexOfMessage(const RsGxsMessageId& mid) const; - int columnCount(int row) const; // columns in the row of this particular index. std::vector > getPostVersions(const RsGxsMessageId& mid) const; diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.cpp b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.cpp index 18aa2ad17..35f8df044 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.cpp +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.cpp @@ -411,7 +411,7 @@ GxsChannelPostsWidgetWithModel::GxsChannelPostsWidgetWithModel(const RsGxsGroupI connect(ui->channelPostFiles_TV->header(),SIGNAL(sortIndicatorChanged(int,Qt::SortOrder)), this, SLOT(sortColumnPostFiles(int,Qt::SortOrder))); connect(ui->channelFiles_TV->header(),SIGNAL(sortIndicatorChanged(int,Qt::SortOrder)), this, SLOT(sortColumnFiles(int,Qt::SortOrder))); - connect(ui->channelPostFiles_TV,SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showChannelPostFilesContextMenu(QPoint))); + connect(ui->channelPostFiles_TV,SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showChannelFilesContextMenu(QPoint))); connect(ui->channelFiles_TV,SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showChannelFilesContextMenu(QPoint))); connect(ui->postsTree->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&,const QItemSelection&)),this,SLOT(showPostDetails())); @@ -504,30 +504,6 @@ GxsChannelPostsWidgetWithModel::GxsChannelPostsWidgetWithModel(const RsGxsGroupI }, mEventHandlerId, RsEventType::GXS_CHANNELS ); } -void GxsChannelPostsWidgetWithModel::keyPressEvent(QKeyEvent *e) -{ - QModelIndex index = ui->postsTree->selectionModel()->currentIndex(); - - if(index.isValid() && mChannelPostsModel->getMode() == RsGxsChannelPostsModel::TREE_MODE_GRID) - { - int n = mChannelPostsModel->columnCount(index.row())-1; - - if(e->key() == Qt::Key_Left && index.column()==0) - { - ui->postsTree->setCurrentIndex(index.sibling(index.row(),n)); - e->accept(); - return; - } - if(e->key() == Qt::Key_Right && index.column()==n) - { - ui->postsTree->setCurrentIndex(index.sibling(index.row(),0)); - e->accept(); - return; - } - } - - GxsMessageFrameWidget::keyPressEvent(e); -} void GxsChannelPostsWidgetWithModel::resizeEvent(QResizeEvent *e) { GxsMessageFrameWidget::resizeEvent(e); @@ -781,9 +757,7 @@ void GxsChannelPostsWidgetWithModel::handlePostsTreeSizeChange(QSize s,bool forc return; int n_columns = std::max(1,(int)floor(s.width() / (mChannelPostsDelegate->cellSize(0,font(),ui->postsTree->width())))); -#ifdef DEBUG_CHANNEL_POSTS_WIDGET RsDbg() << "nb columns: " << n_columns << " current count=" << mChannelPostsModel->columnCount() ; -#endif // save current post. The setNumColumns() indeed loses selection @@ -827,9 +801,7 @@ void GxsChannelPostsWidgetWithModel::handleEvent_main_thread(std::shared_ptrmChannelGroupId == groupId()) { -#ifdef DEBUG_CHANNEL_POSTS_WIDGET RsDbg() << "Received new message in current channel, msgId=" << e->mChannelMsgId ; -#endif RsThread::async([this,E=*e]() // dereferencing to make a copy that will survive while e is deleted by the parent thread. { @@ -1046,9 +1018,7 @@ void GxsChannelPostsWidgetWithModel::updateData(bool update_group_data, bool upd void GxsChannelPostsWidgetWithModel::postChannelPostLoad() { -#ifdef DEBUG_CHANNEL_POSTS_WIDGET std::cerr << "Post channel load..." << std::endl; -#endif if (!mNavigatePendingMsgId.isNull()) navigate(mNavigatePendingMsgId); @@ -1374,26 +1344,13 @@ void GxsChannelPostsWidgetWithModel::insertChannelDetails(const RsGxsChannelGrou showPostDetails(); } -void GxsChannelPostsWidgetWithModel::showChannelFilesContextMenu(QPoint p) + +void GxsChannelPostsWidgetWithModel::showChannelFilesContextMenu(QPoint /*p*/) { - QModelIndex index = ui->channelFiles_TV->indexAt(p); - - if(!index.isValid()) - return; - QMenu contextMnu(this) ; - contextMnu.addAction(QIcon(), tr("Copy Retroshare link"), this, SLOT(copyChannelFilesLink()))->setData(QVariant::fromValue(index)); - contextMnu.exec(QCursor::pos()); -} -void GxsChannelPostsWidgetWithModel::showChannelPostFilesContextMenu(QPoint p) -{ - QModelIndex index = ui->channelPostFiles_TV->indexAt(p); - if(!index.isValid()) - return; - - QMenu contextMnu(this) ; - contextMnu.addAction(QIcon(), tr("Copy Retroshare link"), this, SLOT(copyChannelFilesLink()))->setData(QVariant::fromValue(index)); + QAction *action = contextMnu.addAction(QIcon(), tr("Copy Retroshare link"), this, SLOT(copyChannelFilesLink())); + action->setData(QVariant::fromValue(sender())); contextMnu.exec(QCursor::pos()); } @@ -1401,11 +1358,16 @@ void GxsChannelPostsWidgetWithModel::copyChannelFilesLink() { // Block the popup if no results available QAction *action = dynamic_cast(sender()); + RSTreeView *tree = dynamic_cast(action->data().value()); + + QModelIndexList sel = tree->selectionModel()->selection().indexes(); + + if(sel.empty()) + return; - QModelIndex s = action->data().toModelIndex(); ChannelPostFileInfo file; - if(!static_cast(s.model())->getFileData(s,file)) + if(!static_cast(tree->model())->getFileData(sel.front(),file)) return; RetroShareLink link = RetroShareLink::createFile(QString::fromUtf8(file.mName.c_str()), file.mSize, QString::fromStdString(file.mHash.toStdString())); diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.h b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.h index 8891b57dd..c325c722b 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.h +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.h @@ -139,7 +139,6 @@ protected: /* GxsMessageFrameWidget */ virtual void setAllMessagesReadDo(bool read) override; virtual void resizeEvent(QResizeEvent *e) override; - virtual void keyPressEvent(QKeyEvent *e) override; private slots: void showPostDetails(); @@ -167,7 +166,6 @@ public slots: void sortColumnPostFiles(int col,Qt::SortOrder so); void updateCommentsCount(int n); void showChannelFilesContextMenu(QPoint p); - void showChannelPostFilesContextMenu(QPoint p); void copyChannelFilesLink(); private: diff --git a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.ui b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.ui index 2740b4654..6bd0fb86b 100644 --- a/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.ui +++ b/retroshare-gui/src/gui/gxschannels/GxsChannelPostsWidgetWithModel.ui @@ -29,10 +29,10 @@ - QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -402,7 +402,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:'.AppleSystemUIFont'; font-size:13pt; 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;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Description</span></p></body></html> diff --git a/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.ui b/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.ui index 683c8f07d..10105a630 100644 --- a/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.ui +++ b/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.ui @@ -7,7 +7,7 @@ 0 0 640 - 551 + 465 @@ -132,12 +132,17 @@ + + + MS Sans Serif + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:''; font-size:; 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;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> @@ -377,11 +382,6 @@ p, li { white-space: pre-wrap; } - - MimeTextEdit - QTextEdit -
gui/common/MimeTextEdit.h
-
GxsIdChooser QComboBox @@ -399,10 +399,15 @@ p, li { white-space: pre-wrap; }
gui/common/HashBox.h
1
+ + MimeTextEdit + QTextEdit +
gui/common/MimeTextEdit.h
+
- + diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumModel.cpp b/retroshare-gui/src/gui/gxsforums/GxsForumModel.cpp index 18f518749..b68a50173 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumModel.cpp +++ b/retroshare-gui/src/gui/gxsforums/GxsForumModel.cpp @@ -46,7 +46,6 @@ RsGxsForumModel::RsGxsForumModel(QObject *parent) : QAbstractItemModel(parent), mUseChildTS(false),mFilteringEnabled(false),mTreeMode(TREE_MODE_TREE) { initEmptyHierarchy(mPosts); - mFont = QApplication::font(); } void RsGxsForumModel::preMods() @@ -400,7 +399,7 @@ QVariant RsGxsForumModel::data(const QModelIndex &index, int role) const if(role == Qt::FontRole) { - QFont font = mFont; + QFont font ; font.setBold( (fmpe.mPostFlags & ForumModelPostEntry::FLAG_POST_HAS_UNREAD_CHILDREN) || IS_MSG_UNREAD(fmpe.mMsgStatus)); return QVariant(font); } @@ -534,15 +533,6 @@ void RsGxsForumModel::setFilter(int column,const QStringList& strings,uint32_t& postMods(); } -void RsGxsForumModel::setFont(const QFont &font) -{ - preMods(); - - mFont = font; - - postMods(); -} - QVariant RsGxsForumModel::missingRole(const ForumModelPostEntry& fmpe,int /*column*/) const { if(fmpe.mPostFlags & ForumModelPostEntry::FLAG_POST_IS_MISSING) @@ -572,7 +562,7 @@ QVariant RsGxsForumModel::toolTipRole(const ForumModelPostEntry& fmpe,int column if(!GxsIdDetails::MakeIdDesc(fmpe.mAuthorId, true, str, icons, comment,GxsIdDetails::ICON_TYPE_AVATAR)) return QVariant(); - int S = QFontMetricsF(mFont).height(); + int S = QFontMetricsF(QApplication::font()).height(); QImage pix( (*icons.begin()).pixmap(QSize(5*S,5*S)).toImage()); QString embeddedImage; @@ -609,7 +599,7 @@ QVariant RsGxsForumModel::backgroundRole(const ForumModelPostEntry& fmpe,int /*c QVariant RsGxsForumModel::sizeHintRole(int col) const { - float factor = QFontMetricsF(mFont).height()/14.0f ; + float factor = QFontMetricsF(QApplication::font()).height()/14.0f ; switch(col) { @@ -660,7 +650,7 @@ QVariant RsGxsForumModel::displayRole(const ForumModelPostEntry& fmpe,int col) c case COLUMN_THREAD_TITLE: if(fmpe.mPostFlags & ForumModelPostEntry::FLAG_POST_IS_REDACTED) return QVariant(tr("[ ... Redacted message ... ]")); // else if(fmpe.mPostFlags & ForumModelPostEntry::FLAG_POST_IS_PINNED) -// return QVariant( QString("").arg(QFontMetricsF(mFont).height()) +// return QVariant( QString("").arg(QFontMetricsF(QFont()).height()) // + QString::fromUtf8(fmpe.mTitle.c_str())); else return QVariant(QString::fromUtf8(fmpe.mTitle.c_str())); diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumModel.h b/retroshare-gui/src/gui/gxsforums/GxsForumModel.h index 10248101f..c69013c3e 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumModel.h +++ b/retroshare-gui/src/gui/gxsforums/GxsForumModel.h @@ -22,7 +22,6 @@ #include "retroshare/rsgxsifacetypes.h" #include #include -#include struct ForumModelPostEntry: public ForumPostEntry { @@ -77,7 +76,6 @@ public: QModelIndex getIndexOfMessage(const RsGxsMessageId& mid) const; static const QString FilterString ; - void setFont(const QFont &font); std::vector > getPostVersions(const RsGxsMessageId& mid) const; @@ -187,7 +185,6 @@ private: QColor mBackgroundColorPinned; QColor mBackgroundColorFiltered; - QFont mFont; friend class const_iterator; }; diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp index fd293560f..11d04fdd8 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp +++ b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp @@ -321,6 +321,10 @@ GxsForumThreadWidget::GxsForumThreadWidget(const RsGxsGroupId &forumId, QWidget float f = QFontMetricsF(font()).height()/14.0f ; + QFontMetricsF fontMetrics(ui->threadTreeWidget->font()); + int iconHeight = fontMetrics.height() * 1.4; + ui->threadTreeWidget->setIconSize(QSize(iconHeight, iconHeight)); + /* Set header resize modes and initial section sizes */ QHeaderView * ttheader = ui->threadTreeWidget->header () ; @@ -376,10 +380,6 @@ GxsForumThreadWidget::GxsForumThreadWidget(const RsGxsGroupId &forumId, QWidget [this](std::shared_ptr event) { RsQThreadUtils::postToObject([=](){ handleEvent_main_thread(event); }, this ); }, mEventHandlerId, RsEventType::GXS_FORUMS ); - - mFontSizeHandler.registerFontSize(ui->threadTreeWidget, 1.4f, [this](QAbstractItemView *view, int) { - mThreadModel->setFont(view->font()); - }); } void GxsForumThreadWidget::handleEvent_main_thread(std::shared_ptr event) diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.h b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.h index 8e6b1c01b..322c64fae 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.h +++ b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.h @@ -26,7 +26,6 @@ #include "gui/gxs/GxsMessageFrameWidget.h" #include #include "gui/gxs/GxsIdDetails.h" -#include "util/FontSizeHandler.h" class QSortFilterProxyModel; class QTreeWidgetItem; @@ -235,8 +234,6 @@ private: QSortFilterProxyModel *mThreadProxyModel; QList mSavedExpandedMessages; - FontSizeHandler mFontSizeHandler; - Ui::GxsForumThreadWidget *ui; RsEventsHandlerId_t mEventHandlerId; }; diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.ui b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.ui index 439234047..5a9c51e93 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.ui +++ b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.ui @@ -48,10 +48,10 @@
- QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -578,9 +578,10 @@ - LineEditClear - QLineEdit -
gui/common/LineEditClear.h
+ ElidedLabel + QLabel +
gui/common/ElidedLabel.h
+ 1
GxsIdLabel @@ -588,15 +589,9 @@
gui/gxs/GxsIdLabel.h
- ElidedLabel - QLabel -
gui/common/ElidedLabel.h
- 1 -
- - SubscribeToolButton - QToolButton -
gui/common/SubscribeToolButton.h
+ LineEditClear + QLineEdit +
gui/common/LineEditClear.h
RSImageBlockWidget @@ -614,6 +609,11 @@ QComboBox
gui/common/RSComboBox.h
+ + SubscribeToolButton + QToolButton +
gui/common/SubscribeToolButton.h
+
diff --git a/retroshare-gui/src/gui/help/browser/helpbrowser.cpp b/retroshare-gui/src/gui/help/browser/helpbrowser.cpp index f062b908c..b21ba2cc5 100644 --- a/retroshare-gui/src/gui/help/browser/helpbrowser.cpp +++ b/retroshare-gui/src/gui/help/browser/helpbrowser.cpp @@ -117,7 +117,7 @@ HelpBrowser::~HelpBrowser() QString HelpBrowser::language() { - QString lang = RsApplication::language(); + QString lang = Rshare::language(); if (!QDir(":/help/" + lang).exists()) lang = "en"; return lang; diff --git a/retroshare-gui/src/gui/help/browser/helptextbrowser.cpp b/retroshare-gui/src/gui/help/browser/helptextbrowser.cpp index d9b012775..a4b70058f 100644 --- a/retroshare-gui/src/gui/help/browser/helptextbrowser.cpp +++ b/retroshare-gui/src/gui/help/browser/helptextbrowser.cpp @@ -54,7 +54,7 @@ HelpTextBrowser::loadResource(int type, const QUrl &name) /* Fall back to English if there is no translation of the specified help * page in the current language. */ if (!name.path().contains("/")) { - QString language = RsApplication::language(); + QString language = Rshare::language(); if (!QDir(":/help/" + language).exists()) language = "en"; helpPath += language + "/"; diff --git a/retroshare-gui/src/gui/icons.qrc b/retroshare-gui/src/gui/icons.qrc index ff3771075..c92057c29 100644 --- a/retroshare-gui/src/gui/icons.qrc +++ b/retroshare-gui/src/gui/icons.qrc @@ -15,7 +15,6 @@ icons/svg/display_options.svg icons/svg/listlayout.svg icons/svg/gridlayout.svg - icons/svg/people2.svg icons/stars/star0.png icons/stars/star1.png icons/stars/star2.png diff --git a/retroshare-gui/src/gui/icons/invite64.png b/retroshare-gui/src/gui/icons/invite64.png index f07e0fb4f..8ab342a7b 100644 Binary files a/retroshare-gui/src/gui/icons/invite64.png and b/retroshare-gui/src/gui/icons/invite64.png differ diff --git a/retroshare-gui/src/gui/icons/png/invite.png b/retroshare-gui/src/gui/icons/png/invite.png index 7f0baf91b..5fda4753e 100644 Binary files a/retroshare-gui/src/gui/icons/png/invite.png and b/retroshare-gui/src/gui/icons/png/invite.png differ diff --git a/retroshare-gui/src/gui/icons/svg/invite.svg b/retroshare-gui/src/gui/icons/svg/invite.svg index 8a25949a8..afcefbd72 100644 --- a/retroshare-gui/src/gui/icons/svg/invite.svg +++ b/retroshare-gui/src/gui/icons/svg/invite.svg @@ -2,28 +2,25 @@ image/svg+xml + d="M 64,32 C 64,14.327 49.673,0 32,0 14.327,0 0,14.327 0,32 0,49.673 14.327,64 32,64 49.673,64 64,49.673 64,32" /> \ No newline at end of file diff --git a/retroshare-gui/src/gui/icons/svg/wire-notify.svg b/retroshare-gui/src/gui/icons/svg/wire-notify.svg deleted file mode 100644 index 7d4d6ccce..000000000 --- a/retroshare-gui/src/gui/icons/svg/wire-notify.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - -image/svg+xml diff --git a/retroshare-gui/src/gui/icons/svg/wire.svg b/retroshare-gui/src/gui/icons/svg/wire.svg deleted file mode 100644 index 9a8029016..000000000 --- a/retroshare-gui/src/gui/icons/svg/wire.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - -image/svg+xml diff --git a/retroshare-gui/src/gui/images.qrc b/retroshare-gui/src/gui/images.qrc index 473fd4844..de468d270 100644 --- a/retroshare-gui/src/gui/images.qrc +++ b/retroshare-gui/src/gui/images.qrc @@ -208,7 +208,6 @@ images/logo/logo_info.png images/logo/logo_splash.png images/logo/logo_web_nobackground.png - images/logo/logo_web_nobackground_black.png images/mail-signed.png images/mail-signature-unknown.png images/mailforward24-hover.png diff --git a/retroshare-gui/src/gui/images/logo/logo_web_nobackground_black.png b/retroshare-gui/src/gui/images/logo/logo_web_nobackground_black.png deleted file mode 100644 index 1be6fbdc0..000000000 Binary files a/retroshare-gui/src/gui/images/logo/logo_web_nobackground_black.png and /dev/null differ diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.cpp b/retroshare-gui/src/gui/msgs/MessageComposer.cpp index 0ee408685..4e0219b0c 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.cpp +++ b/retroshare-gui/src/gui/msgs/MessageComposer.cpp @@ -299,7 +299,7 @@ MessageComposer::MessageComposer(QWidget *parent, Qt::WindowFlags flags) QFontDatabase db; foreach(int size, db.standardSizes()) - ui.comboSize->addItem(QString::number(size), size); + ui.comboSize->addItem(QString::number(size)); QStyleOptionComboBox opt; QSize sh; opt.initFrom(ui.comboSize); @@ -408,10 +408,6 @@ MessageComposer::MessageComposer(QWidget *parent, Qt::WindowFlags flags) ui.hashBox->setDropWidget(this); ui.hashBox->setAutoHide(true); - mMessageFontSizeHandler.registerFontSize(ui.msgText, [this, db] (QWidget*, int fontSize) { - ui.comboSize->setCurrentIndex(ui.comboSize->findData(fontSize)); - }); - #if QT_VERSION < 0x040700 // embedded images are not supported before QT 4.7.0 ui.imagebtn->setVisible(false); diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.h b/retroshare-gui/src/gui/msgs/MessageComposer.h index 27bf28458..0df2dbd8e 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.h +++ b/retroshare-gui/src/gui/msgs/MessageComposer.h @@ -28,7 +28,6 @@ #include "ui_MessageComposer.h" #include "gui/msgs/MessageInterface.h" -#include "util/FontSizeHandler.h" class QAction; struct RsIdentityDetails; @@ -256,7 +255,7 @@ private: QList tagLabels; // needed to send system flags with reply - unsigned int msgFlags; + unsigned msgFlags; RSTreeWidgetItemCompareRole *m_compareRole; QCompleter *m_completer; @@ -268,8 +267,6 @@ private: bool has_gxs; bool mAlreadySent; // prevents a Qt bug that calls the same action twice. - MessageFontSizeHandler mMessageFontSizeHandler; - /** Qt Designer generated object */ Ui::MessageComposer ui; diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.ui b/retroshare-gui/src/gui/msgs/MessageComposer.ui index a5ff266d4..9b5e8605c 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.ui +++ b/retroshare-gui/src/gui/msgs/MessageComposer.ui @@ -349,10 +349,10 @@
- QFrame::StyledPanel + QFrame::Box - QFrame::Raised + QFrame::Sunken @@ -1400,11 +1400,6 @@ border-image: url(:/images/closepressed.png) - - RSComboBox - QComboBox -
gui/common/RSComboBox.h
-
FriendSelectionWidget QWidget @@ -1416,16 +1411,21 @@ border-image: url(:/images/closepressed.png) QComboBox
gui/gxs/GxsIdChooser.h
+ + HashBox + QScrollArea +
gui/common/HashBox.h
+ 1 +
MimeTextEdit QTextEdit
gui/common/MimeTextEdit.h
- HashBox - QScrollArea -
gui/common/HashBox.h
- 1 + RSComboBox + QComboBox +
gui/common/RSComboBox.h
diff --git a/retroshare-gui/src/gui/msgs/MessageModel.cpp b/retroshare-gui/src/gui/msgs/MessageModel.cpp index dc2f16c7c..a19087dc0 100644 --- a/retroshare-gui/src/gui/msgs/MessageModel.cpp +++ b/retroshare-gui/src/gui/msgs/MessageModel.cpp @@ -57,7 +57,6 @@ RsMessageModel::RsMessageModel(QObject *parent) mQuickViewFilter = QUICK_VIEW_ALL; mFilterType = FILTER_TYPE_NONE; mFilterStrings.clear(); - mFont = QApplication::font(); } void RsMessageModel::preMods() @@ -210,8 +209,6 @@ QVariant RsMessageModel::data(const QModelIndex &index, int role) const std::cerr << "calling data(" << index << ") role=" << role << std::endl; #endif - int coln = index.column(); - if(!index.isValid()) return QVariant(); @@ -249,19 +246,11 @@ QVariant RsMessageModel::data(const QModelIndex &index, int role) const if(role == Qt::FontRole) { - QFont font = mFont; + QFont font ; font.setBold(fmpe.msgflags & (RS_MSG_NEW | RS_MSG_UNREAD_BY_USER)); return QVariant(font); } - - if (role == Qt::TextAlignmentRole) - { - if((coln == COLUMN_THREAD_ATTACHMENT)) - return int( Qt::AlignHCenter | Qt::AlignVCenter); - else - return QVariant(); - } #ifdef DEBUG_MESSAGE_MODEL std::cerr << " [ok]" << std::endl; @@ -405,15 +394,6 @@ void RsMessageModel::setFilter(FilterType filter_type, const QStringList& string emit dataChanged(createIndex(0,0),createIndex(rowCount()-1,RsMessageModel::columnCount()-1)); } -void RsMessageModel::setFont(const QFont &font) -{ - mFont = font; - - if (rowCount() > 0) { - emit dataChanged(createIndex(0,0), createIndex(rowCount() - 1, RsMessageModel::columnCount() - 1)); - } -} - QVariant RsMessageModel::toolTipRole(const Rs::Msgs::MsgInfoSummary& fmpe,int column) const { if(column == COLUMN_THREAD_AUTHOR || column == COLUMN_THREAD_TO) @@ -450,7 +430,7 @@ QVariant RsMessageModel::backgroundRole(const Rs::Msgs::MsgInfoSummary &/*fmpe*/ QVariant RsMessageModel::sizeHintRole(int col) const { - float factor = QFontMetricsF(mFont).height()/14.0f ; + float factor = QFontMetricsF(QApplication::font()).height()/14.0f ; switch(col) { @@ -479,6 +459,14 @@ QVariant RsMessageModel::sortRole(const Rs::Msgs::MsgInfoSummary& fmpe,int colum case COLUMN_THREAD_SPAM: return QVariant((fmpe.msgflags & RS_MSG_SPAM)? 1:0); + case COLUMN_THREAD_TO: { + QString name; + + if(GxsIdTreeItemDelegate::computeName(RsGxsId(fmpe.to.toStdString()),name)) + return name; + return ""; //Not Found + } + case COLUMN_THREAD_AUTHOR:{ QString name; @@ -486,10 +474,8 @@ QVariant RsMessageModel::sortRole(const Rs::Msgs::MsgInfoSummary& fmpe,int colum return name; return ""; //Not Found } - - case COLUMN_THREAD_TO: // fallthrough. In this case, the "to" field is not filled because the msg potentially has multiple destinations. - default: - return displayRole(fmpe,column); + default: + return displayRole(fmpe,column); } } @@ -599,18 +585,7 @@ QVariant RsMessageModel::userRole(const Rs::Msgs::MsgInfoSummary& fmpe,int col) { case COLUMN_THREAD_AUTHOR: return QVariant(QString::fromStdString(fmpe.from.toStdString())); case COLUMN_THREAD_MSGID: return QVariant(QString::fromStdString(fmpe.msgId)); - case COLUMN_THREAD_TO: - { - // First check if the .to field is filled. - - if(!fmpe.to.toStdString().empty()) - return QVariant(QString::fromStdString(fmpe.to.toStdString())); - - // In the Send box, .to is never filled. In this case we look into destinations. - - if(fmpe.destinations.size()==1) - return QVariant(QString::fromStdString((*fmpe.destinations.begin()).toStdString())); - } + case COLUMN_THREAD_TO: return QVariant(QString::fromStdString(fmpe.to.toStdString())); default: return QVariant(); } @@ -710,10 +685,6 @@ void RsMessageModel::setCurrentBox(Rs::Msgs::BoxName bn) } } -Rs::Msgs::BoxName RsMessageModel::currentBox() const -{ - return mCurrentBox; -} void RsMessageModel::setQuickViewFilter(QuickViewFilter fn) { if(fn != mQuickViewFilter) diff --git a/retroshare-gui/src/gui/msgs/MessageModel.h b/retroshare-gui/src/gui/msgs/MessageModel.h index 3bbd6ee31..fb8c6daa5 100644 --- a/retroshare-gui/src/gui/msgs/MessageModel.h +++ b/retroshare-gui/src/gui/msgs/MessageModel.h @@ -22,7 +22,6 @@ #include #include -#include #include "retroshare/rsmsgs.h" @@ -101,11 +100,9 @@ public: // This method will asynchroneously update the data void setCurrentBox(Rs::Msgs::BoxName bn) ; - Rs::Msgs::BoxName currentBox() const ; void setQuickViewFilter(QuickViewFilter fn) ; void setFilter(FilterType filter_type, const QStringList& strings) ; - void setFont(const QFont &font); int rowCount(const QModelIndex& parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override; @@ -186,7 +183,6 @@ private: QuickViewFilter mQuickViewFilter ; QStringList mFilterStrings; FilterType mFilterType; - QFont mFont; std::vector mMessages; std::map mMessagesMap; diff --git a/retroshare-gui/src/gui/msgs/MessageWidget.cpp b/retroshare-gui/src/gui/msgs/MessageWidget.cpp index 0d2e934f2..d74505e63 100644 --- a/retroshare-gui/src/gui/msgs/MessageWidget.cpp +++ b/retroshare-gui/src/gui/msgs/MessageWidget.cpp @@ -738,8 +738,7 @@ void MessageWidget::remove() return; } -#ifdef TO_REMOVE - bool deleteReal = false; + bool deleteReal = false; if (msgInfo.msgflags & RS_MSG_TRASH) { deleteReal = true; } else { @@ -764,8 +763,8 @@ void MessageWidget::remove() deleteLater(); } } -#endif - emit messageRemovalRequested(currMsgId); + + emit messageRemoved(); } void MessageWidget::print() @@ -906,8 +905,10 @@ void MessageWidget::sendInvite() if(mi.from.type()!=MsgAddress::MSG_ADDRESS_TYPE_RSGXSID) return; - //if ((QMessageBox::question(this, tr("Send invite?"),tr("Do you really want to send an invite with your Certificate?"),QMessageBox::Yes, QMessageBox::No))== QMessageBox::Yes) - MessageComposer::sendInvite(mi.from.toGxsId(),false); + if ((QMessageBox::question(this, tr("Send invite?"),tr("Do you really want send a invite with your Certificate?"),QMessageBox::Yes|QMessageBox::No, QMessageBox::Cancel))== QMessageBox::Yes) + { + MessageComposer::sendInvite(mi.from.toGxsId(),false); + } } void MessageWidget::setToolbarButtonStyle(Qt::ToolButtonStyle style) diff --git a/retroshare-gui/src/gui/msgs/MessageWidget.h b/retroshare-gui/src/gui/msgs/MessageWidget.h index 53b043720..d6465e5cf 100644 --- a/retroshare-gui/src/gui/msgs/MessageWidget.h +++ b/retroshare-gui/src/gui/msgs/MessageWidget.h @@ -61,7 +61,6 @@ public: signals: void messageRemoved(); - void messageRemovalRequested(std::string); private slots: void reply(); diff --git a/retroshare-gui/src/gui/msgs/MessageWidget.ui b/retroshare-gui/src/gui/msgs/MessageWidget.ui index cd4a7c401..de580d7e5 100644 --- a/retroshare-gui/src/gui/msgs/MessageWidget.ui +++ b/retroshare-gui/src/gui/msgs/MessageWidget.ui @@ -6,7 +6,7 @@ 0 0 - 738 + 698 539
@@ -59,6 +59,11 @@ 0 + + + 9 + + Qt::LeftToRight @@ -206,6 +211,11 @@ 0 + + + 9 + + Tags: @@ -222,6 +232,11 @@ 0 + + + 9 + + Subject: @@ -238,6 +253,11 @@ 0 + + + 9 + + Cc: @@ -257,6 +277,11 @@ 0 + + + 9 + + Bcc: @@ -273,6 +298,11 @@ 0 + + + 9 + + To: @@ -291,6 +321,7 @@ + 9 75 true @@ -342,6 +373,11 @@ 16777215 + + + 9 + + true @@ -380,6 +416,11 @@ 0 + + + 9 + + From: @@ -819,8 +860,8 @@
- + diff --git a/retroshare-gui/src/gui/msgs/MessagesDialog.cpp b/retroshare-gui/src/gui/msgs/MessagesDialog.cpp index 7cddc1b7d..1fb55821f 100644 --- a/retroshare-gui/src/gui/msgs/MessagesDialog.cpp +++ b/retroshare-gui/src/gui/msgs/MessagesDialog.cpp @@ -95,7 +95,6 @@ #define ROW_SENTBOX 3 #define ROW_TRASHBOX 4 -// #define DEBUG_MESSAGES_DIALOG 1 class MessageSortFilterProxyModel: public QSortFilterProxyModel { @@ -145,7 +144,7 @@ MessagesDialog::MessagesDialog(QWidget *parent) msgWidget = new MessageWidget(true, this); ui.msgLayout->addWidget(msgWidget); - connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage())); + connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved())); connectActions(); @@ -306,23 +305,6 @@ MessagesDialog::MessagesDialog(QWidget *parent) mTagEventHandlerId = 0; rsEvents->registerEventsHandler( [this](std::shared_ptr event) { RsQThreadUtils::postToObject( [this,event]() { handleTagEvent_main_thread(event); }); }, mEventHandlerId, RsEventType::MAIL_TAG ); - - mFontSizeHandler.registerFontSize(ui.listWidget, 1.5f, [this] (QAbstractItemView*, int fontSize) { - // Set new font size on all items - QList rows; - rows << ROW_INBOX << ROW_OUTBOX << ROW_DRAFTBOX; - - foreach (int row, rows) { - QListWidgetItem *item = ui.listWidget->item(row); - QFont font = item->font(); - font.setPointSize(fontSize); - item->setFont(font); - } - }); - mFontSizeHandler.registerFontSize(ui.quickViewWidget, 1.5f); - mFontSizeHandler.registerFontSize(ui.messageTreeWidget, 1.5f, [this] (QAbstractItemView *view, int) { - mMessageModel->setFont(view->font()); - }); } void MessagesDialog::handleEvent_main_thread(std::shared_ptr event) @@ -383,18 +365,15 @@ void MessagesDialog::preModelUpdate() if (m.isValid()) { mTmpSavedCurrentId = m.sibling(m.row(), RsMessageModel::COLUMN_THREAD_MSGID).data(RsMessageModel::MsgIdRole).toString(); } -#ifdef DEBUG_MESSAGES_DIALOG + std::cerr << "Pre-change: saving selection for " << mTmpSavedSelectedIds.size() << " indexes" << std::endl; -#endif } void MessagesDialog::postModelUpdate() { // restore selection -#ifdef DEBUG_MESSAGES_DIALOG std::cerr << "Post-change: restoring selection for " << mTmpSavedSelectedIds.size() << " indexes" << std::endl; -#endif QItemSelection sel; foreach(const QString& s,mTmpSavedSelectedIds) @@ -528,7 +507,7 @@ void MessagesDialog::fillQuickView() ui.quickViewWidget->clear(); // add static items - item = new QListWidgetItem(tr("Starred"), ui.quickViewWidget); + item = new QListWidgetItem(tr("Stared"), ui.quickViewWidget); item->setIcon(FilesDefs::getIconFromQtResourcePath(IMAGE_STAR_ON)); item->setData(ROLE_QUICKVIEW_TYPE, QUICKVIEW_TYPE_STATIC); item->setData(ROLE_QUICKVIEW_ID, QUICKVIEW_STATIC_ID_STARRED); @@ -859,7 +838,7 @@ void MessagesDialog::openAsWindow() } msgWidget->activateWindow(); - connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage())); + connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved())); /* window will destroy itself! */ } @@ -879,7 +858,7 @@ void MessagesDialog::openAsTab() ui.tabWidget->addTab(msgWidget,FilesDefs::getIconFromQtResourcePath(IMAGE_MAIL), msgWidget->subject(true)); ui.tabWidget->setCurrentWidget(msgWidget); - connect(msgWidget, SIGNAL(messageRemovalRequested(std::string)), this, SLOT(removemessage())); + connect(msgWidget, SIGNAL(messageRemoved()), this, SLOT(messageRemoved())); /* window will destroy itself! */ } @@ -942,9 +921,9 @@ void MessagesDialog::changeBox(int box_row) ui.messageTreeWidget->setPlaceholderText(placeholderText); ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_READ,box_row!=ROW_INBOX); - ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_STAR,box_row!=ROW_INBOX); - ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_SPAM,box_row!=ROW_INBOX); - ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_TAGS,box_row!=ROW_INBOX); + ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_STAR,box_row==ROW_OUTBOX); + ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_SPAM,box_row==ROW_OUTBOX); + ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_TAGS,box_row==ROW_OUTBOX); ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_MSGID,true); ui.messageTreeWidget->setColumnHidden(RsMessageModel::COLUMN_THREAD_CONTENT,true); } diff --git a/retroshare-gui/src/gui/msgs/MessagesDialog.h b/retroshare-gui/src/gui/msgs/MessagesDialog.h index 7f9573f81..1d10137c2 100644 --- a/retroshare-gui/src/gui/msgs/MessagesDialog.h +++ b/retroshare-gui/src/gui/msgs/MessagesDialog.h @@ -25,7 +25,6 @@ #include #include -#include "util/FontSizeHandler.h" #include "ui_MessagesDialog.h" @@ -167,8 +166,6 @@ private: RsEventsHandlerId_t mEventHandlerId; RsEventsHandlerId_t mTagEventHandlerId; - - FontSizeHandler mFontSizeHandler; }; #endif diff --git a/retroshare-gui/src/gui/msgs/MessagesDialog.ui b/retroshare-gui/src/gui/msgs/MessagesDialog.ui index 516511265..5f1d83eca 100644 --- a/retroshare-gui/src/gui/msgs/MessagesDialog.ui +++ b/retroshare-gui/src/gui/msgs/MessagesDialog.ui @@ -139,6 +139,11 @@ 0 + + + 11 + + Qt::CustomContextMenu @@ -248,6 +253,11 @@ 0 + + + 11 + + @@ -365,6 +375,11 @@ Qt::Vertical + + + 10 + + Qt::CustomContextMenu @@ -451,7 +466,7 @@ LineEditClear QLineEdit -
gui/common/LineEditClear.h
+
gui/common/LineEditClear.h
RSTabWidget diff --git a/retroshare-gui/src/gui/notifyqt.h b/retroshare-gui/src/gui/notifyqt.h index 5782ef5b7..0f9ae11e2 100644 --- a/retroshare-gui/src/gui/notifyqt.h +++ b/retroshare-gui/src/gui/notifyqt.h @@ -117,6 +117,7 @@ class NotifyQt: public QObject, public NotifyClient void chatStatusChanged(const ChatId&,const QString&) const ; void chatCleared(const ChatId&) const ; void peerHasNewCustomStateString(const QString& /* peer_id */, const QString& /* status_string */) const ; + void gotTurtleSearchResult(qulonglong search_id,FileDetail file) const ; void peerHasNewAvatar(const QString& peer_id) const ; void ownAvatarChanged() const ; void ownStatusMessageChanged() const ; diff --git a/retroshare-gui/src/gui/profile/ProfileWidget.cpp b/retroshare-gui/src/gui/profile/ProfileWidget.cpp index 670bb86c7..cf823ab53 100644 --- a/retroshare-gui/src/gui/profile/ProfileWidget.cpp +++ b/retroshare-gui/src/gui/profile/ProfileWidget.cpp @@ -45,13 +45,13 @@ ProfileWidget::ProfileWidget(QWidget *parent, Qt::WindowFlags flags) connect(ui.CopyCertButton,SIGNAL(clicked()), this, SLOT(copyCert())); connect(ui.profile_Button,SIGNAL(clicked()), this, SLOT(profilemanager())); - ui.onLineSince->setText(DateTime::formatLongDateTime(RsApplication::startupTime())); + ui.onLineSince->setText(DateTime::formatLongDateTime(Rshare::startupTime())); } void ProfileWidget::showEvent ( QShowEvent * /*event*/ ) { /* set retroshare version */ - ui.version->setText(RsApplication::retroshareVersion(true)); + ui.version->setText(Rshare::retroshareVersion(true)); RsPeerDetails detail; if (rsPeers->getPeerDetails(rsPeers->getOwnId(),detail)) diff --git a/retroshare-gui/src/gui/qss/stylesheet/Standard_Dark.qss b/retroshare-gui/src/gui/qss/stylesheet/Standard_Dark.qss index ffea0a4d8..ee320a012 100644 --- a/retroshare-gui/src/gui/qss/stylesheet/Standard_Dark.qss +++ b/retroshare-gui/src/gui/qss/stylesheet/Standard_Dark.qss @@ -2436,7 +2436,7 @@ WireGroupItem QFrame#wire_frame QLabel{ background: transparent; } WireGroupItem QFrame#wire_frame:hover { - background-color: #346792; + background-color: #2e8bab; } PulseTopLevel QFrame#frame, @@ -2446,6 +2446,13 @@ PulseReply QFrame#frame { border-radius: 6px; } +PulseAddDialog QTextEdit#textEdit_Pulse { + border: 2px solid #c4cfd6; + border-radius: 6px; + background: white; + color: black; +} + PulseReply #line_replyLine, PulseMessage #line{ color: #c4cfd6; @@ -2455,16 +2462,6 @@ PulseReply QLabel#label_groupName{ color: #5b7083; } -PulseReplySeperator QFrame#frame { - background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #455364, stop: 0.5 #54687A,stop: 0.6 #44586A, stop:1 #455364); - border-radius: 10px; -} - -QLabel#label_masthead{ - border: 2px solid #CCCCCC; - border-radius: 4px; -} - /**** Color definitions ****/ ForumsDialog, GxsForumThreadWidget diff --git a/retroshare-gui/src/gui/qss/stylesheet/Standard_Light.qss b/retroshare-gui/src/gui/qss/stylesheet/Standard_Light.qss index 40fe0b78c..923477e11 100644 --- a/retroshare-gui/src/gui/qss/stylesheet/Standard_Light.qss +++ b/retroshare-gui/src/gui/qss/stylesheet/Standard_Light.qss @@ -231,7 +231,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qgroupbox --------------------------------------------------------------------------- */ QGroupBox { font-weight: bold; - border: 1px solid #C0C4C8; + border: 1px solid #C9CDD0; border-radius: 4px; padding: 2px; margin-top: 6px; @@ -1234,7 +1234,7 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qcombobox --------------------------------------------------------------------------- */ QComboBox { - border: 1px solid #C0C4C8; + border: 1px solid #C9CDD0; border-radius: 4px; selection-background-color: #9FCBFF; padding-left: 4px; @@ -1250,7 +1250,7 @@ QComboBox { } QComboBox QAbstractItemView { - border: 1px solid #C0C4C8; + border: 1px solid #C9CDD0; border-radius: 0; background-color: #FAFAFA; selection-background-color: #9FCBFF; @@ -1263,7 +1263,7 @@ QComboBox QAbstractItemView:hover { QComboBox QAbstractItemView:selected { background: #9FCBFF; - color: #C0C4C8; + color: #C9CDD0; } QComboBox QAbstractItemView:alternate { @@ -1301,18 +1301,6 @@ QComboBox::indicator:alternate { background: #FAFAFA; } -QComboBox::item { - /* Remove to fix #282, #285 and MR #288*/ - /*&:checked { - font-weight: bold; - } - - &:selected { - border: 0px solid transparent; - } - */ -} - QComboBox::item:alternate { background: #FAFAFA; } @@ -1445,14 +1433,14 @@ QLineEdit { padding-left: 4px; padding-right: 4px; border-style: solid; - border: 1px solid #C0C4C8; + border: 1px solid #C9CDD0; border-radius: 4px; color: #19232D; } QLineEdit:disabled { background-color: #FAFAFA; - color: #9DA9B5; + color: #788D9C; } QLineEdit:hover { @@ -2163,12 +2151,12 @@ QSplitter::handle:hover { } QSplitter::handle:horizontal { - width: 2px; + width: 5px; image: url(":/standard_light/rc/line_vertical.png"); } QSplitter::handle:vertical { - height: 2px; + height: 5px; image: url(":/standard_light/rc/line_horizontal.png"); } @@ -2362,6 +2350,51 @@ QFrame#titleBarFrame QTextEdit { background: white; } +/**** Special Page tweak ****/ + + +/* ConnectFriendWizard */ + +ConnectFriendWizard QPlainTextEdit#friendCertEdit { + border: none; + background: white; + color: black; +} + +ConnectFriendWizard QFrame#friendFrame { + border: 2px solid #0099cc; + border-radius: 6px; + background: white; +} + +ConnectFriendWizard QWizardPage#ConclusionPage > QGroupBox#peerDetailsFrame { + border: 2px solid #039bd5; + border-radius:6px; + background: white; + color: black; + padding: 12 12px; +} + +ConnectFriendWizard QGroupBox::title#peerDetailsFrame +{ + padding: 4 12px; + background: transparent; + padding: 4 12px; + background: #039bd5; + color: white; +} + + +/* GetStartedDialog */ + +GetStartedDialog QTextEdit { + border: 1px solid #B8B6B1; + border-radius: 6px; + background: white; + color: black; +} + + /* HomePage */ HomePage QLabel#userCertLabel { @@ -2476,7 +2509,7 @@ GxsGroupDialog QLabel#groupLogo{ /* Settings */ -PluginItem QFrame#pluginFrame { +PluginItem > QFrame#pluginFrame { border: 2px solid #A8B8D1; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #FCFDFE, stop: 1 #E2E8EF); border-radius: 0px @@ -2488,7 +2521,7 @@ PluginItem QLabel#infoLabel { /* Feeds */ -AttachFileItem QFrame#frame { +AttachFileItem > QFrame#frame { border: 2px solid black; background: white; } @@ -2594,78 +2627,77 @@ BoardPostDisplayWidget_card QLabel#siteBoldLabel { color: #787c7e; } -/* GenCertDialog - Change colors here because GUI is not started yet so no user StyleSheet loads */ -GenCertDialog QFrame#profileframe{ - border-image: url(:/images/logo/background.png) 0 0 0 0 stretch stretch; - border-width: 0px; +/* MessengerWindow */ + +MessengerWindow QFrame#messengerframetop{ + background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #9BDBF9, stop:1 #1592CD); + border: 0px; } -GenCertDialog QFrame#profileframe QCheckBox, -GenCertDialog QFrame#profileframe QLabel { + +/*************** Optional ***************/ + +/**** WikiPoos ****/ +WikiEditDialog QPushButton#pushButton_History { + color: white; + background: #5bb62b; + border-radius: 4px; + max-height: 20px; + min-width: 4em; + padding: 2px; + padding-left: 6px; + padding-right: 6px; +} + +WikiEditDialog QPushButton#pushButton_History:hover { + background: #57af29; +} + + +/**** The Wire ****/ + +WireGroupItem QFrame#wire_frame:hover { + background-color: #7ecbfb; +} +WireGroupItem QFrame#wire_frame > QLabel { background: transparent; } -GenCertDialog QLabel#info_Label:enabled { - color: black; - border: 1px solid #DCDC41; - border-radius: 6px; - background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2); +PulseTopLevel QFrame#plainFrame, +PulseViewGroup QFrame#plainFrame, +PulseReply QFrame#plainFrame { + border: 2px solid #c4cfd6; + background: white; } -GenCertDialog QGroupBox#groupBox, -GenCertDialog QGroupBox#profile_groupBox { - background: rgba(0,0,0,10%); -} -GenCertDialog QGroupBox#profile_groupBox QComboBox, -GenCertDialog QGroupBox#profile_groupBox QSpinBox, -GenCertDialog QGroupBox#profile_groupBox QLineEdit, -GenCertDialog QComboBox#genPGPuser { - border: 2px solid #0099cc; +PulseAddDialog QTextEdit#textEdit_Pulse { + border: 2px solid #c4cfd6; border-radius: 6px; background: white; color: black; } -GenCertDialog QPushButton#genButton { - border-image: url(:/images/btn_blue.png) 4; - border-width: 4; - color: white; -} -GenCertDialog QPushButton#genButton:hover { - border-image: url(:/images/btn_blue_hover.png) 4; -} -GenCertDialog QPushButton#genButton:disabled { - border-image: url(:/images/btn_27.png) 4; - color: black; +PulseReply #line_replyLine, +PulseMessage #line{ + color: #c4cfd6; } -/* StartDialog - To get the same style for all user and not use last connected one. */ - -StartDialog QFrame#loginframe{ - border-image: url(:/images/logo/background_lessblue.png) 0 0 0 0 stretch stretch; - border-width: 0px; +PulseReply QLabel#label_groupName{ + color: #5b7083; } -StartDialog QFrame#loginframe QCheckBox, -StartDialog QFrame#loginframe QLabel { - background: transparent; -} -StartDialog QGroupBox#profilGBox { - background: rgba(0,0,0,10%); - border-radius: 3px; - border-width: 0px; +/**** PhotoShare ****/ +AlbumItem QFrame#albumFrame { + border: 2px solid #CCCCCC; + border-radius: 10px } -StartDialog QPushButton#loadButton { - background: transparent; - border-image: url(:/images/btn_blue.png) 4; - border-width: 4; - color: white; +PhotoItem QFrame#photoFrame { + border: 2px solid #CCCCCC; + border-radius: 10px } -StartDialog QPushButton#loadButton:hover { - background: transparent; - border-image: url(:/images/btn_blue_hover.png) 4; + +PhotoItem QWidget:hover { + background-color: #7ecbfb; } diff --git a/retroshare-gui/src/gui/qss/stylesheet/default.qss b/retroshare-gui/src/gui/qss/stylesheet/default.qss index 4b8d1645f..d1730bfef 100644 --- a/retroshare-gui/src/gui/qss/stylesheet/default.qss +++ b/retroshare-gui/src/gui/qss/stylesheet/default.qss @@ -141,6 +141,88 @@ QLabel#newLabel:enabled { } +/* StartDialog + To get the same style for all user and not use last connected one. */ + +StartDialog QFrame#loginframe{ + border-image: url(:/images/logo/background_lessblue.png) 0 0 0 0 stretch stretch; + border-width: 0px; +} +StartDialog QFrame#loginframe QCheckBox, +StartDialog QFrame#loginframe QLabel { + background: transparent; +} +StartDialog QGroupBox#profilGBox { + background: rgba(0,0,0,10%); + border-radius: 3px; + border-width: 0px; +} + +StartDialog QGroupBox#profilGBox * { + background-color: white; + color: black; +} + +StartDialog QPushButton#loadButton { + background: transparent; + border-image: url(:/images/btn_blue.png) 4; + border-width: 4; + color: white; +} +StartDialog QPushButton#loadButton:hover { + background: transparent; + border-image: url(:/images/btn_blue_hover.png) 4; +} + + + +/* GenCertDialog + Change colors here because GUI is not started yet so no user StyleSheet loads */ + +GenCertDialog QFrame#profileframe{ + border-image: url(:/images/logo/background.png) 0 0 0 0 stretch stretch; + border-width: 0px; +} +GenCertDialog QFrame#profileframe QCheckBox, +GenCertDialog QFrame#profileframe QLabel { + background: transparent; +} + +GenCertDialog QLabel#info_Label:enabled { + color: black; + border: 1px solid #DCDC41; + border-radius: 6px; + background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2); +} + +GenCertDialog QGroupBox#groupBox, +GenCertDialog QGroupBox#profile_groupBox { + background: rgba(0,0,0,10%); +} +GenCertDialog QGroupBox#profile_groupBox QComboBox, +GenCertDialog QGroupBox#profile_groupBox QSpinBox, +GenCertDialog QGroupBox#profile_groupBox QLineEdit, +GenCertDialog QComboBox#genPGPuser { + border: 2px solid #0099cc; + border-radius: 6px; + background: white; + color: black; +} + +GenCertDialog QPushButton#genButton { + border-image: url(:/images/btn_blue.png) 4; + border-width: 4; + color: white; +} +GenCertDialog QPushButton#genButton:hover { + border-image: url(:/images/btn_blue_hover.png) 4; +} +GenCertDialog QPushButton#genButton:disabled { + border-image: url(:/images/btn_27.png) 4; + color: black; +} + + /* AvatarWidget */ AvatarWidget{border-width: 10px;} @@ -270,9 +352,9 @@ NewFriendList { qproperty-textColorStatusOffline: black; qproperty-textColorStatusAway: gray; - qproperty-textColorStatusBusy: darkred; + qproperty-textColorStatusBusy: gray; qproperty-textColorStatusOnline: darkGreen; - qproperty-textColorStatusInactive: orange; + qproperty-textColorStatusInactive: gray; qproperty-textColorGroup: rgb(123, 123, 123); } @@ -336,27 +418,3 @@ OpModeStatus[opMode="Minimal"] { [WrongValue="true"] { background-color: #FF8080; } - -GenCertDialog QPushButton#genButton { - border-image: url(:/images/btn_blue.png) 4; - border-width: 4; - color: white; -} -GenCertDialog QPushButton#genButton:hover { - border-image: url(:/images/btn_blue_hover.png) 4; -} -GenCertDialog QPushButton#genButton:disabled { - border-image: url(:/images/btn_27.png) 4; - color: black; -} - -StartDialog QPushButton#loadButton { - background: transparent; - border-image: url(:/images/btn_blue.png) 4; - border-width: 4; - color: white; -} -StartDialog QPushButton#loadButton:hover { - background: transparent; - border-image: url(:/images/btn_blue_hover.png) 4; -} diff --git a/retroshare-gui/src/gui/settings/AppearancePage.cpp b/retroshare-gui/src/gui/settings/AppearancePage.cpp index 2aecd6024..2fb86e5a2 100755 --- a/retroshare-gui/src/gui/settings/AppearancePage.cpp +++ b/retroshare-gui/src/gui/settings/AppearancePage.cpp @@ -74,17 +74,12 @@ AppearancePage::AppearancePage(QWidget * parent, Qt::WindowFlags flags) foreach (QString code, LanguageSupport::languageCodes()) { ui.cmboLanguage->addItem(FilesDefs::getIconFromQtResourcePath(":/images/flags/" + code + ".png"), LanguageSupport::languageName(code), code); } - - // Note: apparently, on some linux systems (e.g. Debian 11), the gtk2 style makes Qt libs crash when the environment variable is not set. - // So we first check that it's here before start. - - foreach (QString style, QStyleFactory::keys()) { - if(style.toLower() != "gtk2" || (getenv("QT_QPA_PLATFORMTHEME")!=nullptr && !strcmp(getenv("QT_QPA_PLATFORMTHEME"),"gtk2"))) - ui.cmboStyle->addItem(style, style.toLower()); + foreach (QString style, QStyleFactory::keys()) { + ui.cmboStyle->addItem(style, style.toLower()); } QMap styleSheets; - RsApplication::getAvailableStyleSheets(styleSheets); + Rshare::getAvailableStyleSheets(styleSheets); foreach (QString name, styleSheets.keys()) { ui.cmboStyleSheet->addItem(name, styleSheets[name]); @@ -101,9 +96,6 @@ AppearancePage::AppearancePage(QWidget * parent, Qt::WindowFlags flags) connect(ui.mainPageButtonType_CB, SIGNAL(currentIndexChanged(int)), this, SLOT(updateRbtPageOnToolBar() )); // connect(ui.menuItemsButtonType_CB, SIGNAL(currentIndexChanged(int)), this, SLOT(updateActionButtonLoc() )); - - connect(ui.minimumFontSize_SB, SIGNAL(valueChanged(int)), this, SLOT(updateFontSize())) ; - } void AppearancePage::switch_status_grpStatus(bool b) { switch_status(MainWindow::StatusGrpStatus ,"ShowStatusBar", b) ; } @@ -139,7 +131,7 @@ void AppearancePage::updateInterfaceStyle() #ifndef QT_NO_CURSOR QApplication::setOverrideCursor(Qt::WaitCursor); #endif - RsApplication::setStyle(ui.cmboStyle->currentText()); + Rshare::setStyle(ui.cmboStyle->currentText()); Settings->setInterfaceStyle(ui.cmboStyle->currentText()); #ifndef QT_NO_CURSOR QApplication::restoreOverrideCursor(); @@ -155,7 +147,7 @@ void AppearancePage::loadStyleSheet(int index) #ifndef QT_NO_CURSOR QApplication::setOverrideCursor(Qt::WaitCursor); #endif - RsApplication::loadStyleSheet(ui.cmboStyleSheet->itemData(index).toString()); + Rshare::loadStyleSheet(ui.cmboStyleSheet->itemData(index).toString()); #ifndef QT_NO_CURSOR QApplication::restoreOverrideCursor(); #endif @@ -254,7 +246,7 @@ void AppearancePage::updateCmboToolButtonSize() // NotifyQt::getInstance()->notifySettingsChanged(); // } -void AppearancePage::updateStyle() { RsApplication::setStyle(ui.cmboStyle->currentText()); } +void AppearancePage::updateStyle() { Rshare::setStyle(ui.cmboStyle->currentText()); } /** Loads the settings for this page */ void AppearancePage::load() @@ -262,7 +254,7 @@ void AppearancePage::load() int index = ui.cmboLanguage->findData(Settings->getLanguageCode()); whileBlocking(ui.cmboLanguage)->setCurrentIndex(index); - index = ui.cmboStyle->findData(RsApplication::style().toLower()); + index = ui.cmboStyle->findData(Rshare::style().toLower()); whileBlocking(ui.cmboStyle)->setCurrentIndex(index); index = ui.cmboStyleSheet->findData(Settings->getSheetName()); @@ -274,9 +266,9 @@ void AppearancePage::load() index = ui.mainPageButtonType_CB->findData(Settings->getPageButtonLoc()); if (index != 0) { - ui.cmboTollButtonsStyle->show(); - }else { - ui.cmboTollButtonsStyle->hide(); + ui.cmboTollButtonsStyle->hide(); + }else { + ui.cmboTollButtonsStyle->show(); } whileBlocking(ui.mainPageButtonType_CB)->setCurrentIndex(!Settings->getPageButtonLoc()); @@ -362,12 +354,4 @@ void AppearancePage::load() whileBlocking(ui.checkBoxShowToasterDisable)->setChecked(Settings->valueFromGroup("StatusBar", "ShowToaster", QVariant(true)).toBool()); whileBlocking(ui.checkBoxShowSystrayOnStatus)->setChecked(Settings->valueFromGroup("StatusBar", "ShowSysTrayOnStatusBar", QVariant(false)).toBool()); - whileBlocking(ui.minimumFontSize_SB)->setValue(Settings->getFontSize()); -} - -void AppearancePage::updateFontSize() -{ - Settings->setFontSize(ui.minimumFontSize_SB->value()); - - NotifyQt::getInstance()->notifySettingsChanged(); } diff --git a/retroshare-gui/src/gui/settings/AppearancePage.h b/retroshare-gui/src/gui/settings/AppearancePage.h index 741bd752e..897563753 100755 --- a/retroshare-gui/src/gui/settings/AppearancePage.h +++ b/retroshare-gui/src/gui/settings/AppearancePage.h @@ -71,8 +71,6 @@ private slots: // void updateCmboListItemSize(); void updateStyle() ; - void updateFontSize(); - private: void switch_status(MainWindow::StatusElement s,const QString& key,bool b); diff --git a/retroshare-gui/src/gui/settings/AppearancePage.ui b/retroshare-gui/src/gui/settings/AppearancePage.ui index 13dc7a48e..96e5effe8 100755 --- a/retroshare-gui/src/gui/settings/AppearancePage.ui +++ b/retroshare-gui/src/gui/settings/AppearancePage.ui @@ -14,7 +14,22 @@ Qt::NoContextMenu - + + 6 + + + 6 + + + 6 + + + 6 + + + 0 + + @@ -71,12 +86,110 @@
- + + + + + 0 + 64 + + + + Qt::NoContextMenu + + + + + + Style + + + + + + + 150 + 0 + + + + Choose RetroShare's interface style + + + + + + + Qt::Horizontal + + + + 215 + 20 + + + + + + + + + + + + 0 + 64 + + + + Style Sheet + + + + + + + 150 + 0 + + + + + + + + Qt::Horizontal + + + + 215 + 20 + + + + + + + + + + + Qt::Vertical + + + + 361 + 61 + + + + + 0 - 0 + 228 @@ -85,8 +198,8 @@ Tool Bar - - + + @@ -124,7 +237,7 @@ - + @@ -176,6 +289,19 @@ + + + + Qt::Vertical + + + + 20 + 40 + + + + @@ -226,79 +352,10 @@ - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Fonts - - - - - - - - Minimum font size - - - - - - - 5 - - - 64 - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - Qt::Vertical - - - - 188 - 96 - - - - - - - - + Status Bar @@ -407,104 +464,6 @@ - - - - Qt::Vertical - - - - 361 - 61 - - - - - - - - - 0 - 64 - - - - Qt::NoContextMenu - - - - - - Style - - - - - - - 150 - 0 - - - - Choose RetroShare's interface style - - - - - - - Qt::Horizontal - - - - 215 - 20 - - - - - - - - - - - - 0 - 64 - - - - Style Sheet - - - - - - - 150 - 0 - - - - - - - - Qt::Horizontal - - - - 215 - 20 - - - - - - - diff --git a/retroshare-gui/src/gui/settings/CryptoPage.cpp b/retroshare-gui/src/gui/settings/CryptoPage.cpp index 296f6aec3..6c171bb1a 100755 --- a/retroshare-gui/src/gui/settings/CryptoPage.cpp +++ b/retroshare-gui/src/gui/settings/CryptoPage.cpp @@ -34,7 +34,6 @@ #include #include #include -#include #include //for rsPeers variable #include //for rsPeers variable @@ -59,16 +58,15 @@ CryptoPage::CryptoPage(QWidget * parent, Qt::WindowFlags flags) // hide profile manager as it causes bugs when generating a new profile. //ui.profile_Button->hide() ; - //connect(ui.exportprofile,SIGNAL(clicked()), this, SLOT(profilemanager())); - connect(ui.exportprofile,SIGNAL(clicked()), this, SLOT(exportProfile())); - connect(ui.exportfriendslist,SIGNAL(clicked()), this, SLOT(exportFriendsList()) ); + //connect(ui.exportprofile,SIGNAL(clicked()), this, SLOT(profilemanager())); + connect(ui.exportprofile,SIGNAL(clicked()), this, SLOT(exportProfile())); // Remove this because it duplicates functionality of the HomePage. ui.retroshareId_LB->hide(); ui.retroshareId_content_LB->hide(); ui.stackPageCertificate->hide(); - ui.onlinesince->setText(DateTime::formatLongDateTime(RsApplication::startupTime())); + ui.onlinesince->setText(DateTime::formatLongDateTime(Rshare::startupTime())); } #ifdef UNUSED_CODE @@ -113,7 +111,7 @@ void CryptoPage::showEvent ( QShowEvent * /*event*/ ) ui.retroshareId_content_LB->setText(QString::fromUtf8(invite.c_str())); /* set retroshare version */ - ui.version->setText(RsApplication::retroshareVersion(true)); + ui.version->setText(Rshare::retroshareVersion(true)); std::list ids; ids.clear(); @@ -231,8 +229,3 @@ void CryptoPage::showStats() { StatisticsWindow::showYourself(); } - -void CryptoPage::exportFriendsList() -{ - NewFriendList().exportFriendlistClicked(); -} diff --git a/retroshare-gui/src/gui/settings/CryptoPage.h b/retroshare-gui/src/gui/settings/CryptoPage.h index e10cbb97a..e595c63c4 100755 --- a/retroshare-gui/src/gui/settings/CryptoPage.h +++ b/retroshare-gui/src/gui/settings/CryptoPage.h @@ -51,7 +51,6 @@ class CryptoPage : public ConfigPage bool fileSave(); bool fileSaveAs(); void showStats(); - void exportFriendsList(); private: QString fileName; diff --git a/retroshare-gui/src/gui/settings/CryptoPage.ui b/retroshare-gui/src/gui/settings/CryptoPage.ui index c0d602368..29a336721 100755 --- a/retroshare-gui/src/gui/settings/CryptoPage.ui +++ b/retroshare-gui/src/gui/settings/CryptoPage.ui @@ -13,11 +13,25 @@ - + + + + + Retroshare ID: + + + + + + + Statistics: + + + @@ -37,6 +51,13 @@ + + + + PGP fingerprint: + + + @@ -56,6 +77,99 @@ + + + + Qt::Horizontal + + + QSizePolicy::Expanding + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 75 + true + + + + TextLabel + + + + + + + Export Profile: + + + + + + + + 75 + true + + + + TextLabel + + + + + + + + 0 + 0 + + + + + 75 + true + + + + TextLabel + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + Online since: + + + @@ -75,36 +189,23 @@ - - - - Retroshare ID: - - - - - - - 6 - + + - + 16 16 - - - :/images/info16.png - + 12 @@ -113,7 +214,7 @@ - Profile + Public Information @@ -138,10 +239,39 @@ - - + + + + <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + - PGP fingerprint: + Export + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + Software Version: + + + + + + + Show statistics @@ -182,17 +312,117 @@ - - + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + - Show statistics + Profile path: - - + + + + + 0 + 0 + + + + + 100 + 0 + + - Export Profile: + Friend nodes: + + + + + + + + 0 + 0 + + + + + 75 + true + + + + TextLabel + + + + + + + 6 + + + + + + 16 + 16 + + + + + + + :/images/info16.png + + + + + + + + 12 + 75 + true + + + + Profile + + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + Name: @@ -218,8 +448,8 @@ - - + + 0 @@ -233,7 +463,23 @@ - Friend nodes: + PGP Id : + + + + + + + + 75 + true + + + + TextLabel + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse @@ -256,100 +502,6 @@ - - - - - 0 - 0 - - - - - 100 - 0 - - - - PGP Id : - - - - - - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - Export profile - - - - - - - Statistics: - - - - - - - - 0 - 0 - - - - - 75 - true - - - - TextLabel - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - Online since: - - - - - - - Profile path: - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - @@ -363,172 +515,6 @@ - - - - - 0 - 0 - - - - - 75 - true - - - - TextLabel - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - Software Version: - - - - - - - - 75 - true - - - - TextLabel - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - 0 - 0 - - - - - 75 - true - - - - TextLabel - - - - - - - - 75 - true - - - - TextLabel - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - Name: - - - - - - - - - - 16 - 16 - - - - :/images/info16.png - - - - - - - - 12 - 75 - true - - - - Public Information - - - - - - - - - Export Friendslist: - - - - - - - Export friends list - - - - - - - Qt::Horizontal - - - QSizePolicy::Expanding - - - - 40 - 20 - - - - @@ -547,7 +533,7 @@ - + diff --git a/retroshare-gui/src/gui/settings/GeneralPage.ui b/retroshare-gui/src/gui/settings/GeneralPage.ui index 3eea0544f..ab2863f1c 100755 --- a/retroshare-gui/src/gui/settings/GeneralPage.ui +++ b/retroshare-gui/src/gui/settings/GeneralPage.ui @@ -146,10 +146,10 @@ - <html><head/><body><p>When checked, this retroshare instance will accept calls by your operating system to open Retroshare collection files, and download links.</p></body></html> + When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - Accept operating systems calls + Use Local Server to get new arguments. true diff --git a/retroshare-gui/src/gui/settings/JsonApiPage.cc b/retroshare-gui/src/gui/settings/JsonApiPage.cc index ace092e0c..a824a5fa0 100644 --- a/retroshare-gui/src/gui/settings/JsonApiPage.cc +++ b/retroshare-gui/src/gui/settings/JsonApiPage.cc @@ -23,14 +23,11 @@ #include "rsharesettings.h" #include "jsonapi/jsonapi.h" #include "util/misc.h" -#include "util/qtthreadsutils.h" #include #include #include -#define IMAGE_LEDOFF ":/images/ledoff1.png" -#define IMAGE_LEDON ":/images/ledon1.png" JsonApiPage::JsonApiPage(QWidget */*parent*/, Qt::WindowFlags /*flags*/) { @@ -60,41 +57,9 @@ JsonApiPage::JsonApiPage(QWidget */*parent*/, Qt::WindowFlags /*flags*/) QRegExpValidator *ipValidator = new QRegExpValidator(ipRegex, this); ui.listenAddressLineEdit->setValidator(ipValidator); - ui.providersListView->setSelectionMode(QAbstractItemView::NoSelection); // prevents edition. - mEventHandlerId = 0; - - rsEvents->registerEventsHandler( [this](std::shared_ptr e) - { - if(e->mType != RsEventType::JSON_API) - return; - - auto je = dynamic_cast(e.get()); - - if(!je) - return; -#ifdef DEBUG - std::cerr << "Caught JSONAPI event! code=" << static_cast(je->mJsonApiEventCode) << std::endl; -#endif - - RsQThreadUtils::postToObject([=]() { load(); }, this ); - }, - mEventHandlerId, RsEventType::JSON_API ); } -JsonApiPage::~JsonApiPage() -{ - rsEvents->unregisterEventsHandler(mEventHandlerId); -} -QString JsonApiPage::helpText() const -{ - return tr("

  Webinterface

\ -

Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. \ - Please refer to the Retroshare documentation for how to use this feature.

\ -

Unless you know what you're doing, you shouldn't need to change anything in this page. \ - The web interface for instance will automatically register its own token to the JSON API which will be visible \ - in the list of authenticated tokens after you enable it.

"); -} void JsonApiPage::enableJsonApi(bool checked) { ui.addTokenPushButton->setEnabled(checked); @@ -128,9 +93,9 @@ bool JsonApiPage::updateParams() void JsonApiPage::load() { - whileBlocking(ui.portSpinBox)->setValue(rsJsonApi->listeningPort()); - whileBlocking(ui.listenAddressLineEdit)->setText(QString::fromStdString(rsJsonApi->getBindingAddress())); - whileBlocking(ui.enableCheckBox)->setChecked(rsJsonApi->isRunning()); + whileBlocking(ui.portSpinBox)->setValue(Settings->getJsonApiPort()); + whileBlocking(ui.listenAddressLineEdit)->setText(Settings->getJsonApiListenAddress()); + whileBlocking(ui.enableCheckBox)->setChecked(Settings->getJsonApiEnabled()); QStringList newTk; @@ -139,21 +104,11 @@ void JsonApiPage::load() QString::fromStdString(it.first) + ":" + QString::fromStdString(it.second) ); - whileBlocking(ui.tokensListView)->setModel(new QStringListModel(newTk)); - - QStringList newTk2; - - for(const auto& it : rsJsonApi->getResourceProviders()) - newTk2.push_back( QString::fromStdString(it.get().getName())) ; - - whileBlocking(ui.providersListView)->setModel(new QStringListModel(newTk2)); - - if(rsJsonApi->isRunning()) - ui.statusLabelLED->setPixmap(FilesDefs::getPixmapFromQtResourcePath(IMAGE_LEDON)) ; - else - ui.statusLabelLED->setPixmap(FilesDefs::getPixmapFromQtResourcePath(IMAGE_LEDOFF)) ; + whileBlocking(ui.tokensListView)->setModel(new QStringListModel(newTk)); } +QString JsonApiPage::helpText() const { return ""; } + bool JsonApiPage::checkStartJsonApi() { if(!Settings->getJsonApiEnabled()) return false; @@ -232,23 +187,23 @@ void JsonApiPage::addTokenClicked() whileBlocking(ui.tokensListView)->setModel(new QStringListModel(newTk)); } -void JsonApiPage::removeTokenClicked() -{ - QString token(ui.tokenLineEdit->text()); - std::string tokenStr = token.toStdString(); - rsJsonApi->revokeAuthToken(tokenStr.substr(0, tokenStr.find_first_of(":"))); - - QStringList newTk; - - for(const auto& it : rsJsonApi->getAuthorizedTokens()) - newTk.push_back( - QString::fromStdString(it.first) + ":" + - QString::fromStdString(it.second) ); - - whileBlocking(ui.tokensListView)->setModel(new QStringListModel(Settings->getJsonApiAuthTokens()) ); -} - +void JsonApiPage::removeTokenClicked() +{ + QString token(ui.tokenLineEdit->text()); + rsJsonApi->revokeAuthToken(token.toStdString()); + + QStringList newTk; + + for(const auto& it : rsJsonApi->getAuthorizedTokens()) + newTk.push_back( + QString::fromStdString(it.first) + ":" + + QString::fromStdString(it.second) ); + + whileBlocking(ui.tokensListView)->setModel(new QStringListModel(Settings->getJsonApiAuthTokens()) ); +} + void JsonApiPage::tokenClicked(const QModelIndex& index) { ui.tokenLineEdit->setText(ui.tokensListView->model()->data(index).toString()); } + diff --git a/retroshare-gui/src/gui/settings/JsonApiPage.h b/retroshare-gui/src/gui/settings/JsonApiPage.h index ef28a4294..7f69bbd1e 100644 --- a/retroshare-gui/src/gui/settings/JsonApiPage.h +++ b/retroshare-gui/src/gui/settings/JsonApiPage.h @@ -20,8 +20,6 @@ #pragma once -#include "retroshare/rsevents.h" - #include "retroshare-gui/configpage.h" #include "gui/common/FilesDefs.h" #include "ui_JsonApiPage.h" @@ -33,7 +31,7 @@ class JsonApiPage : public ConfigPage public: JsonApiPage(QWidget * parent = nullptr, Qt::WindowFlags flags = 0); - ~JsonApiPage() override ; + ~JsonApiPage() override = default; virtual QPixmap iconPixmap() const override { @@ -65,6 +63,4 @@ public slots: private: Ui::JsonApiPage ui; /// Qt Designer generated object - RsEventsHandlerId_t mEventHandlerId; }; - diff --git a/retroshare-gui/src/gui/settings/JsonApiPage.ui b/retroshare-gui/src/gui/settings/JsonApiPage.ui index f8d31e38f..24b534712 100644 --- a/retroshare-gui/src/gui/settings/JsonApiPage.ui +++ b/retroshare-gui/src/gui/settings/JsonApiPage.ui @@ -13,7 +13,7 @@ Form - + @@ -25,65 +25,13 @@ JSON API Server - + - - - - - Enable RetroShare JSON API Server - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Status: - - - - - - - - - - :/images/ledoff1.png - - - - - - - - - - - Listen Address: - - - - - - - 127.0.0.1 - - - - + + + Enable RetroShare JSON API Server + + @@ -109,6 +57,24 @@ + + + + + + Listen Address: + + + + + + + 127.0.0.1 + + + + + @@ -144,23 +110,13 @@ - Authenticated Tokens: + Authenticated Tokens - - - - Registered services: - - - - - -
@@ -186,8 +142,6 @@
- - - + diff --git a/retroshare-gui/src/gui/settings/MessagePage.cpp b/retroshare-gui/src/gui/settings/MessagePage.cpp index be8b515ff..ff302317d 100644 --- a/retroshare-gui/src/gui/settings/MessagePage.cpp +++ b/retroshare-gui/src/gui/settings/MessagePage.cpp @@ -18,8 +18,6 @@ * * *******************************************************************************/ -#include - #include "rshare.h" #include "rsharesettings.h" #include "retroshare/rsmsgs.h" @@ -30,7 +28,6 @@ #include #include "NewTag.h" #include "util/qtthreadsutils.h" -#include "gui/notifyqt.h" MessagePage::MessagePage(QWidget * parent, Qt::WindowFlags flags) : ConfigPage(parent, flags) @@ -51,20 +48,13 @@ MessagePage::MessagePage(QWidget * parent, Qt::WindowFlags flags) ui.openComboBox->addItem(tr("A new tab"), RshareSettings::MSG_OPEN_TAB); ui.openComboBox->addItem(tr("A new window"), RshareSettings::MSG_OPEN_WINDOW); - - // Font size - QFontDatabase db; - foreach(int size, db.standardSizes()) { - ui.minimumFontSize->addItem(QString::number(size), size); - } - + connect(ui.comboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(distantMsgsComboBoxChanged(int))); connect(ui.setMsgToReadOnActivate,SIGNAL(toggled(bool)), this,SLOT(updateMsgToReadOnActivate())); connect(ui.loadEmbeddedImages, SIGNAL(toggled(bool)), this,SLOT(updateLoadEmbededImages() )); connect(ui.openComboBox, SIGNAL(currentIndexChanged(int)),this,SLOT(updateMsgOpen() )); connect(ui.emoticonscheckBox, SIGNAL(toggled(bool)), this,SLOT(updateLoadEmoticons() )); - connect(ui.minimumFontSize, SIGNAL(activated(QString)), this, SLOT(updateFontSize())) ; mTagEventHandlerId = 0; rsEvents->registerEventsHandler( [this](std::shared_ptr event) { RsQThreadUtils::postToObject( [this,event]() { handleEvent_main_thread(event); }); }, mTagEventHandlerId, RsEventType::MAIL_TAG ); @@ -126,11 +116,12 @@ void MessagePage::updateMsgTags() void MessagePage::load() { + Settings->beginGroup(QString("Messages")); whileBlocking(ui.setMsgToReadOnActivate)->setChecked(Settings->getMsgSetToReadOnActivate()); whileBlocking(ui.loadEmbeddedImages)->setChecked(Settings->getMsgLoadEmbeddedImages()); whileBlocking(ui.openComboBox)->setCurrentIndex(ui.openComboBox->findData(Settings->getMsgOpen())); whileBlocking(ui.emoticonscheckBox)->setChecked(Settings->value("Emoticons", true).toBool()); - whileBlocking(ui.minimumFontSize)->setCurrentIndex(ui.minimumFontSize->findData(Settings->getMessageFontSize())); + Settings->endGroup(); // state of filter combobox @@ -307,9 +298,3 @@ void MessagePage::currentRowChangedTag(int row) ui.deletepushButton->setEnabled(bDeleteEnable); } -void MessagePage::updateFontSize() -{ - Settings->setMessageFontSize(ui.minimumFontSize->currentData().toInt()); - - NotifyQt::getInstance()->notifySettingsChanged(); -} diff --git a/retroshare-gui/src/gui/settings/MessagePage.h b/retroshare-gui/src/gui/settings/MessagePage.h index c5b9f7544..774d31b95 100644 --- a/retroshare-gui/src/gui/settings/MessagePage.h +++ b/retroshare-gui/src/gui/settings/MessagePage.h @@ -60,7 +60,6 @@ private slots: void updateDistantMsgs() ; void updateMsgTags() ; void updateLoadEmoticons(); - void updateFontSize(); private: void handleEvent_main_thread(std::shared_ptr event); diff --git a/retroshare-gui/src/gui/settings/MessagePage.ui b/retroshare-gui/src/gui/settings/MessagePage.ui index 3e5ab3842..fd55218e8 100644 --- a/retroshare-gui/src/gui/settings/MessagePage.ui +++ b/retroshare-gui/src/gui/settings/MessagePage.ui @@ -16,15 +16,44 @@ 0 - - - - - - 0 - 0 - + + + + + Distant messages: + + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + + + + Accept encrypted distant messages from + + + + + + + + Reading @@ -36,6 +65,20 @@ + + + + + + Open messages in + + + + + + + + @@ -50,24 +93,10 @@ - - - - - - Open messages in - - - - - - - -
- + Tags @@ -143,102 +172,6 @@ - - - - Distant messages: - - - - - - - Everyone - - - - - Contacts - - - - - Nobody - - - - - - - - Accept encrypted distant messages from - - - - - - - - - - - 0 - 0 - - - - Fonts - - - - - - - - Qt::LeftToRight - - - Minimum font size - - - - - - - - MS Sans Serif - 10 - - - - Qt::ClickFocus - - - Font size - - - true - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - diff --git a/retroshare-gui/src/gui/settings/ServerPage.cpp b/retroshare-gui/src/gui/settings/ServerPage.cpp index be2404bc8..3dfe9069d 100755 --- a/retroshare-gui/src/gui/settings/ServerPage.cpp +++ b/retroshare-gui/src/gui/settings/ServerPage.cpp @@ -107,8 +107,6 @@ ServerPage::ServerPage(QWidget * parent, Qt::WindowFlags flags) ui.hiddenpage_proxyPort_tor->setEnabled(false) ; ui.hiddenpage_localAddress->setEnabled(false) ; ui.hiddenpage_localPort->setEnabled(false) ; - ui.hiddenpage_serviceAddress->setEnabled(false) ; - ui.hiddenpage_servicePort->setEnabled(false) ; ui.testIncoming_PB->hide() ; ui.l_incomingTestResult->hide() ; ui.iconlabel_service_incoming->hide() ; @@ -228,7 +226,6 @@ ServerPage::ServerPage(QWidget * parent, Qt::WindowFlags flags) connect(ui.hiddenpage_proxyPort_tor, SIGNAL(editingFinished()),this,SLOT(saveAddresses())); connect(ui.hiddenpage_proxyAddress_i2p, SIGNAL(editingFinished()),this,SLOT(saveAddresses())); connect(ui.hiddenpage_proxyPort_i2p, SIGNAL(editingFinished()),this,SLOT(saveAddresses())); - connect(ui.hiddenpage_localPort, SIGNAL(editingFinished()),this,SLOT(saveAddresses())); connect(ui.totalDownloadRate,SIGNAL(valueChanged(int)),this,SLOT(saveRates())); connect(ui.totalUploadRate, SIGNAL(valueChanged(int)),this,SLOT(saveRates())); @@ -1140,18 +1137,18 @@ void ServerPage::loadHiddenNode() ui.iconlabel_ext->hide(); ui.textlabel_ext->hide(); ui.extPortLabel->hide(); - + ui.ipAddressLabel->hide(); ui.cleanKnownIPs_PB->hide(); - + ui.ipAddressList->hide(); ui.allowIpDeterminationCB->hide(); ui.IPServersLV->hide(); - + ui.textlabel_hiddenMode->show(); ui.iconlabel_hiddenMode->show() ; ui.iconlabel_hiddenMode->setPixmap(FilesDefs::getPixmapFromQtResourcePath(":/images/ledon1.png")); - + // CHANGE OPTIONS ON whileBlocking(ui.discComboBox)->removeItem(3); whileBlocking(ui.discComboBox)->removeItem(2); @@ -1732,9 +1729,8 @@ void ServerPage::saveSam() new_proxyaddr = ui.hiddenpage_proxyAddress_i2p -> text().toStdString(); new_proxyport = ui.hiddenpage_proxyPort_i2p -> value(); - // SAMv3 has no proxy port, everything goes through the SAM port. - // Still need to check the proxyport for manual i2p - if ((new_proxyaddr != orig_proxyaddr) || (new_proxyport != orig_proxyport)) { + // SAMv3 has no proxy port, everything goes through the SAM port. + if ((new_proxyaddr != orig_proxyaddr) /* || (new_proxyport != orig_proxyport) */) { rsPeers->setProxyServer(RS_HIDDEN_TYPE_I2P, new_proxyaddr, new_proxyport); } } diff --git a/retroshare-gui/src/gui/settings/ServerPage.ui b/retroshare-gui/src/gui/settings/ServerPage.ui index 93eb82637..60abc5fd8 100755 --- a/retroshare-gui/src/gui/settings/ServerPage.ui +++ b/retroshare-gui/src/gui/settings/ServerPage.ui @@ -256,14 +256,11 @@ - - - 0 - 0 - - - - Qt::LeftToRight + + + 16 + 16 + @@ -275,12 +272,6 @@ - - - 0 - 0 - - <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> @@ -299,29 +290,13 @@ 6 - - - - - 0 - 0 - - - - Local network - - - - - - 0 - 0 - - - - Qt::LeftToRight + + + 16 + 16 + @@ -331,6 +306,13 @@ + + + + Local network + + + @@ -369,29 +351,13 @@ 6 - - - - - 0 - 0 - - - - UPnP - - - - - - 0 - 0 - - - - Qt::LeftToRight + + + 16 + 16 + @@ -401,6 +367,13 @@ + + + + UPnP + + + @@ -413,14 +386,11 @@ - - - 0 - 0 - - - - Qt::LeftToRight + + + 16 + 16 + @@ -432,12 +402,6 @@ - - - 0 - 0 - - 75 @@ -838,6 +802,12 @@ behind a firewall or a VPN. + + + 16 + 16 + + diff --git a/retroshare-gui/src/gui/settings/TransferPage.cpp b/retroshare-gui/src/gui/settings/TransferPage.cpp index 5b3b49908..c0cf3608f 100644 --- a/retroshare-gui/src/gui/settings/TransferPage.cpp +++ b/retroshare-gui/src/gui/settings/TransferPage.cpp @@ -30,7 +30,6 @@ #include "retroshare/rspeers.h" #include -#include #include #include @@ -47,16 +46,13 @@ TransferPage::TransferPage(QWidget * parent, Qt::WindowFlags flags) ui._max_tr_up_per_sec_SB->setMinimum(max_tr_low); ui._max_tr_up_per_sec_SB->setMaximum(max_tr_high); - whileBlocking(ui._trustFriendNodesWithBannedFiles_CB)->setChecked(rsFiles->trustFriendNodesWithBannedFiles()); - QObject::connect(ui._queueSize_SB,SIGNAL(valueChanged(int)),this,SLOT(updateQueueSize(int))) ; QObject::connect(ui._max_up_SB,SIGNAL(valueChanged(int)),this,SLOT(updateMaxUploadSlots(int))) ; QObject::connect(ui._defaultStrategy_CB,SIGNAL(activated(int)),this,SLOT(updateDefaultStrategy(int))) ; - //QObject::connect(ui._e2e_encryption_CB,SIGNAL(activated(int)),this,SLOT(updateEncryptionPolicy(int))) ; + QObject::connect(ui._e2e_encryption_CB,SIGNAL(activated(int)),this,SLOT(updateEncryptionPolicy(int))) ; QObject::connect(ui._diskSpaceLimit_SB,SIGNAL(valueChanged(int)),this,SLOT(updateDiskSizeLimit(int))) ; QObject::connect(ui._max_tr_up_per_sec_SB, SIGNAL( valueChanged( int ) ), this, SLOT( updateMaxTRUpRate(int) ) ); QObject::connect(ui._filePermDirectDL_CB,SIGNAL(activated(int)),this,SLOT(updateFilePermDirectDL(int))); - QObject::connect(ui._trustFriendNodesWithBannedFiles_CB,SIGNAL(toggled(bool)),this,SLOT(toggleTrustFriendNodesWithBannedFiles(bool))) ; QObject::connect(ui.incomingButton, SIGNAL(clicked( bool ) ), this , SLOT( setIncomingDirectory() ) ); QObject::connect(ui.autoDLColl_CB, SIGNAL(toggled(bool)), this, SLOT(updateAutoDLColl())); @@ -98,10 +94,7 @@ void TransferPage::updateIgnoreLists() std::cerr << " suffixes: " ; for(auto it(ls.begin());it!=ls.end();++it) std::cerr << "\"" << *it << "\" " ; std::cerr << std::endl; #endif } -void TransferPage::toggleTrustFriendNodesWithBannedFiles(bool b) -{ - rsFiles->setTrustFriendNodesWithBannedFiles(b); -} + void TransferPage::updateMaxTRUpRate(int b) { rsTurtle->setMaxTRForwardRate(b) ; @@ -112,7 +105,6 @@ void TransferPage::updateMaxUploadSlots(int b) rsFiles->setMaxUploadSlotsPerFriend(b) ; } -#ifdef TO_REMOVE void TransferPage::updateEncryptionPolicy(int b) { switch(b) @@ -124,7 +116,6 @@ void TransferPage::updateEncryptionPolicy(int b) break ; } } -#endif void TransferPage::updateFilePermDirectDL(int i) { @@ -162,13 +153,11 @@ void TransferPage::load() case FileChunksInfo::CHUNK_STRATEGY_RANDOM: whileBlocking(ui._defaultStrategy_CB)->setCurrentIndex(2) ; break ; } -#ifdef TO_REMOVE switch(rsFiles->defaultEncryptionPolicy()) { case RS_FILE_CTRL_ENCRYPTION_POLICY_PERMISSIVE: whileBlocking(ui._e2e_encryption_CB)->setCurrentIndex(0) ; break ; case RS_FILE_CTRL_ENCRYPTION_POLICY_STRICT : whileBlocking(ui._e2e_encryption_CB)->setCurrentIndex(1) ; break ; } -#endif whileBlocking(ui._diskSpaceLimit_SB)->setValue(rsFiles->freeDiskSpaceLimit()) ; whileBlocking(ui._max_tr_up_per_sec_SB)->setValue(rsTurtle->getMaxTRForwardRate()) ; @@ -208,11 +197,7 @@ void TransferPage::load() whileBlocking(ui.suffixesIgnoreList_LE)->setText( ignore_suffixes_string ); Settings->beginGroup(QString("File")); -#if defined(Q_OS_DARWIN) - whileBlocking(ui.minimumFontSize_SB)->setValue( Settings->value("MinimumFontSize", 13 ).toInt()); -#else whileBlocking(ui.minimumFontSize_SB)->setValue( Settings->value("MinimumFontSize", 11 ).toInt()); -#endif Settings->endGroup(); } @@ -223,19 +208,11 @@ void TransferPage::updateDefaultStrategy(int i) case 0: rsFiles->setDefaultChunkStrategy(FileChunksInfo::CHUNK_STRATEGY_STREAMING) ; break ; - case 2: -#ifdef WINDOWS_SYS - if(QMessageBox::Yes != QMessageBox::warning(nullptr,tr("Warning"),tr("On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use \"progressive\")?"),QMessageBox::Yes,QMessageBox::No)) - { - ui._defaultStrategy_CB->setCurrentIndex(1); - return; - } -#endif - rsFiles->setDefaultChunkStrategy(FileChunksInfo::CHUNK_STRATEGY_RANDOM) ; - break ; + case 2: rsFiles->setDefaultChunkStrategy(FileChunksInfo::CHUNK_STRATEGY_RANDOM) ; + break ; case 1: rsFiles->setDefaultChunkStrategy(FileChunksInfo::CHUNK_STRATEGY_PROGRESSIVE) ; - break ; + break ; default: ; } } diff --git a/retroshare-gui/src/gui/settings/TransferPage.h b/retroshare-gui/src/gui/settings/TransferPage.h index 077d5a6ec..1a88d29d5 100644 --- a/retroshare-gui/src/gui/settings/TransferPage.h +++ b/retroshare-gui/src/gui/settings/TransferPage.h @@ -47,6 +47,7 @@ class TransferPage: public ConfigPage void updateDefaultStrategy(int) ; void updateDiskSizeLimit(int) ; void updateMaxTRUpRate(int); + void updateEncryptionPolicy(int); void updateMaxUploadSlots(int); void updateFilePermDirectDL(int); void updateIgnoreLists(); @@ -57,8 +58,7 @@ class TransferPage: public ConfigPage void updateAutoDLColl(); void setPartialsDirectory(); void toggleAutoCheckDirectories(bool); - void toggleTrustFriendNodesWithBannedFiles(bool); - void updateFontSize(); + void updateFontSize(); void updateAutoCheckDirectories() ; void updateAutoScanDirectoriesPeriod() ; diff --git a/retroshare-gui/src/gui/settings/TransferPage.ui b/retroshare-gui/src/gui/settings/TransferPage.ui index 4b48be012..b1e7b7630 100644 --- a/retroshare-gui/src/gui/settings/TransferPage.ui +++ b/retroshare-gui/src/gui/settings/TransferPage.ui @@ -30,7 +30,7 @@ - Configure shared directories + Edit Share @@ -400,6 +400,13 @@ p, li { white-space: pre-wrap; } + + + + End-to-end encryption: + + + @@ -436,7 +443,7 @@ p, li { white-space: pre-wrap; } true - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>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> @@ -496,6 +503,23 @@ 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 + + + + @@ -523,7 +547,7 @@ p, li { white-space: pre-wrap; } - + Trust friend nodes with banned files diff --git a/retroshare-gui/src/gui/settings/WebuiPage.cpp b/retroshare-gui/src/gui/settings/WebuiPage.cpp index 4b36b758c..f0006fec3 100644 --- a/retroshare-gui/src/gui/settings/WebuiPage.cpp +++ b/retroshare-gui/src/gui/settings/WebuiPage.cpp @@ -27,7 +27,6 @@ #include #include "util/misc.h" -#include "util/qtthreadsutils.h" #include "retroshare/rswebui.h" #include "retroshare/rsjsonapi.h" @@ -41,8 +40,6 @@ resource_api::ApiServerLocal* WebuiPage::apiServerLocal = 0; #endif resource_api::RsControlModule* WebuiPage::controlModule = 0; -#define IMAGE_LEDOFF ":/images/ledoff1.png" -#define IMAGE_LEDON ":/images/ledon1.png" WebuiPage::WebuiPage(QWidget */*parent*/, Qt::WindowFlags /*flags*/) { @@ -53,22 +50,11 @@ WebuiPage::WebuiPage(QWidget */*parent*/, Qt::WindowFlags /*flags*/) connect(ui.password_LE, SIGNAL(textChanged(QString)), this, SLOT(onPasswordValueChanged(QString))); connect(ui.startWebBrowser_PB, SIGNAL(clicked()), this, SLOT(onStartWebBrowserClicked())); connect(ui.webInterfaceFilesDirectory_PB, SIGNAL(clicked()), this, SLOT(selectWebInterfaceDirectory())); - - mEventsHandlerId = 0; - - rsEvents->registerEventsHandler( [this](std::shared_ptr /* event */) - { -#ifdef DEBUG - std::cerr << "Caught JSONAPI event in webui!" << std::endl; -#endif - RsQThreadUtils::postToObject([=]() { load(); }, this ); - }, - mEventsHandlerId, RsEventType::JSON_API ); } WebuiPage::~WebuiPage() { - rsEvents->unregisterEventsHandler(mEventsHandlerId); + } void WebuiPage::selectWebInterfaceDirectory() @@ -87,12 +73,22 @@ void WebuiPage::selectWebInterfaceDirectory() bool WebuiPage::updateParams(QString &errmsg) { std::cerr << "WebuiPage::save()" << std::endl; + bool ok = true; + bool changed = false; + if(ui.enableWebUI_CB->isChecked() != Settings->getWebinterfaceEnabled()) + changed = true; + if(ui.webInterfaceFiles_LE->text() != Settings->getWebinterfaceFilesDirectory()) + changed = true; - // store config - Settings->setWebinterfaceEnabled(ui.enableWebUI_CB->isChecked()); - Settings->setWebinterfaceFilesDirectory(ui.webInterfaceFiles_LE->text()); + if(changed) + { + // store config + Settings->setWebinterfaceEnabled(ui.enableWebUI_CB->isChecked()); + Settings->setWebinterfaceFilesDirectory(ui.webInterfaceFiles_LE->text()); - return true; + rsWebUi->setHtmlFilesDirectory(ui.webInterfaceFiles_LE->text().toStdString()); + } + return ok; } void WebuiPage::onPasswordValueChanged(QString password) @@ -116,27 +112,12 @@ void WebuiPage::onPasswordValueChanged(QString password) bool WebuiPage::restart() { - if(ui.password_LE->text().isNull()) - { - QMessageBox::critical(nullptr,tr("Missing passphrase"),tr("Please set a passphrase to proect the access to the WEB interface.")); - return false; - } - - rsWebUi->setUserPassword(ui.password_LE->text().toStdString()); - rsWebUi->setHtmlFilesDirectory(ui.webInterfaceFiles_LE->text().toStdString()); - - setCursor(Qt::WaitCursor) ; - rsWebUi->restart(); - setCursor(Qt::ArrowCursor) ; - - return true; + return checkStartWebui(); } -void WebuiPage::loadParams() +void WebuiPage::load() { -#ifdef DEBUG - std::cerr << "WebuiPage::load()" << std::endl; -#endif + std::cerr << "WebuiPage::load()" << std::endl; whileBlocking(ui.enableWebUI_CB)->setChecked(Settings->getWebinterfaceEnabled()); whileBlocking(ui.webInterfaceFiles_LE)->setText(Settings->getWebinterfaceFilesDirectory()); @@ -146,15 +127,6 @@ void WebuiPage::loadParams() if(it != smap.end()) whileBlocking(ui.password_LE)->setText(QString::fromStdString(it->second)); - else - whileBlocking(ui.enableWebUI_CB)->setChecked(false); - - if(rsWebUi->isRunning()) - ui.statusLabelLED->setPixmap(FilesDefs::getPixmapFromQtResourcePath(IMAGE_LEDON)) ; - else - ui.statusLabelLED->setPixmap(FilesDefs::getPixmapFromQtResourcePath(IMAGE_LEDOFF)) ; -#else - ui.statusLabelLED->setPixmap(FilesDefs::getPixmapFromQtResourcePath(IMAGE_LEDOFF)) ; #endif } @@ -166,11 +138,13 @@ QString WebuiPage::helpText() const

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.

"); } -/*static*/ bool WebuiPage::checkStartWebui() // This is supposed to be called from main(). But normally the parameters below (including the paswd - // for the webUI should be saved in p3webui instead. +/*static*/ bool WebuiPage::checkStartWebui() { - rsWebUi->setHtmlFilesDirectory(Settings->getWebinterfaceFilesDirectory().toStdString()); - rsWebUi->restart(); + if(!Settings->getWebinterfaceEnabled()) + return false; + + rsWebUi->setHtmlFilesDirectory(Settings->getWebinterfaceFilesDirectory().toStdString()); + rsWebUi->restart(); return true; } @@ -199,21 +173,15 @@ QString WebuiPage::helpText() const void WebuiPage::onEnableCBClicked(bool checked) { - QString errmsg; - updateParams(errmsg); + ui.params_GB->setEnabled(checked); + ui.apply_PB->setEnabled(checked); + ui.startWebBrowser_PB->setEnabled(checked); + QString S; - ui.params_GB->setEnabled(checked); - ui.startWebBrowser_PB->setEnabled(checked); - ui.apply_PB->setEnabled(checked); + Settings->setWebinterfaceEnabled(checked); if(checked) - { - if(!restart()) - { - QMessageBox::warning(0, tr("failed to start Webinterface"), "Failed to start the webinterface."); - return; - } - } + checkStartWebui(); else checkShutdownWebui(); } @@ -231,12 +199,18 @@ void WebuiPage::onAllIPCBClicked(bool /*checked*/) } void WebuiPage::onApplyClicked() { + rsWebUi->setUserPassword(ui.password_LE->text().toStdString()); + QString errmsg; updateParams(errmsg); - restart(); + if(!restart()) + { + QMessageBox::warning(0, tr("failed to start Webinterface"), "Failed to start the webinterface."); + return; + } - load(); + emit passwordChanged(); } void WebuiPage::onStartWebBrowserClicked() { showWebui(); } diff --git a/retroshare-gui/src/gui/settings/WebuiPage.h b/retroshare-gui/src/gui/settings/WebuiPage.h index 391612cf8..9ba8886ac 100644 --- a/retroshare-gui/src/gui/settings/WebuiPage.h +++ b/retroshare-gui/src/gui/settings/WebuiPage.h @@ -20,8 +20,6 @@ #pragma once -#include "retroshare/rsevents.h" - #include "retroshare-gui/configpage.h" #include "gui/common/FilesDefs.h" #include "ui_WebuiPage.h" @@ -44,11 +42,11 @@ public: ~WebuiPage(); /** Loads the settings for this page */ - virtual void load() override { loadParams() ; } + virtual void load(); - virtual QPixmap iconPixmap() const override { return FilesDefs::getPixmapFromQtResourcePath(":/icons/settings/webinterface.svg") ; } - virtual QString pageName() const override { return tr("Webinterface") ; } - virtual QString helpText() const override ; + virtual QPixmap iconPixmap() const { return FilesDefs::getPixmapFromQtResourcePath(":/icons/settings/webinterface.svg") ; } + virtual QString pageName() const { return tr("Webinterface") ; } + virtual QString helpText() const; // call this after start of libretroshare/Retroshare // checks the settings and starts the webinterface if required @@ -69,9 +67,10 @@ public slots: void onApplyClicked(); void onStartWebBrowserClicked(); -private: - virtual void loadParams(); +signals: + void passwordChanged(); +private: /** Qt Designer generated object */ Ui::WebuiPage ui; @@ -84,6 +83,4 @@ private: static resource_api::ApiServerLocal* apiServerLocal; #endif static resource_api::RsControlModule* controlModule; - - RsEventsHandlerId_t mEventsHandlerId; }; diff --git a/retroshare-gui/src/gui/settings/WebuiPage.ui b/retroshare-gui/src/gui/settings/WebuiPage.ui index 91d59736f..5ca37e9b6 100644 --- a/retroshare-gui/src/gui/settings/WebuiPage.ui +++ b/retroshare-gui/src/gui/settings/WebuiPage.ui @@ -6,8 +6,8 @@ 0 0 - 570 - 646 + 960 + 717 @@ -15,45 +15,11 @@ - - - - - Enable Retroshare WEB Interface - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Status: - - - - - - - - - - :/images/ledoff1.png - - - - + + + Enable Retroshare WEB Interface + + diff --git a/retroshare-gui/src/gui/settings/rsettingswin.cpp b/retroshare-gui/src/gui/settings/rsettingswin.cpp index a9fab8895..46c85ea8e 100644 --- a/retroshare-gui/src/gui/settings/rsettingswin.cpp +++ b/retroshare-gui/src/gui/settings/rsettingswin.cpp @@ -93,8 +93,6 @@ SettingsPage::SettingsPage(QWidget *parent) connect(ui.listWidget, SIGNAL(currentRowChanged(int)), this, SLOT(setNewPage(int))); connect(this, SIGNAL(finished(int)), this, SLOT(dialogFinished(int))); - - mFontSizeHandler.registerFontSize(ui.listWidget); } SettingsPage::~SettingsPage() @@ -180,7 +178,10 @@ SettingsPage::initStackedWidget() JsonApiPage *jsonapi_p = new JsonApiPage() ; addPage(jsonapi_p); #ifdef RS_WEBUI - addPage(new WebuiPage()); + WebuiPage *webui_p = new WebuiPage() ; + addPage(new WebuiPage() ); + + QObject::connect(webui_p,SIGNAL(passwordChanged()),jsonapi_p,SLOT(load())); #endif #endif diff --git a/retroshare-gui/src/gui/settings/rsettingswin.h b/retroshare-gui/src/gui/settings/rsettingswin.h index 47eb33e4b..74fb0d40c 100755 --- a/retroshare-gui/src/gui/settings/rsettingswin.h +++ b/retroshare-gui/src/gui/settings/rsettingswin.h @@ -27,7 +27,6 @@ #include #include "ui_settingsw.h" -#include "util/FontSizeHandler.h" class FloatingHelpBrowser; @@ -73,8 +72,6 @@ private: FloatingHelpBrowser *mHelpBrowser; static int lastPage; - FontSizeHandler mFontSizeHandler; - /* UI - from Designer */ Ui::Settings ui; }; diff --git a/retroshare-gui/src/gui/settings/rsharesettings.cpp b/retroshare-gui/src/gui/settings/rsharesettings.cpp index d878d6c99..586d4df4f 100644 --- a/retroshare-gui/src/gui/settings/rsharesettings.cpp +++ b/retroshare-gui/src/gui/settings/rsharesettings.cpp @@ -109,7 +109,7 @@ void RshareSettings::initSettings() setDefault(SETTING_STYLE, "GTK+"); #else #if defined(Q_OS_MAC) - setDefault(SETTING_STYLE, "Fusion"); + setDefault(SETTING_STYLE, "macintosh (aqua)"); #else static QStringList styles = QStyleFactory::keys(); #if defined(Q_OS_WIN) @@ -910,7 +910,7 @@ void RshareSettings::setUseLocalServer(bool value) { if (value != getUseLocalServer()) { setValue("UseLocalServer", value); - RsApplication::updateLocalServer(); + Rshare::updateLocalServer(); } } @@ -1190,38 +1190,6 @@ void RshareSettings::setPageAlreadyDisplayed(const QString& page_name,bool b) return setValueToGroup("PageAlreadyDisplayed",page_name,b); } -int RshareSettings::getFontSize() -{ -#if defined(Q_OS_DARWIN) - int defaultFontSize = 13; -#else - int defaultFontSize = 11; -#endif - - return value("FontSize", defaultFontSize).toInt(); -} - -void RshareSettings::setFontSize(int value) -{ - setValue("FontSize", value); -} - -int RshareSettings::getMessageFontSize() -{ -#if defined(Q_OS_DARWIN) - int defaultFontSize = 12; -#else - int defaultFontSize = 11; -#endif - - return valueFromGroup("Message", "FontSize", defaultFontSize).toInt(); -} - -void RshareSettings::setMessageFontSize(int value) -{ - setValueToGroup("Message", "FontSize", value); -} - #ifdef RS_JSONAPI bool RshareSettings::getJsonApiEnabled() { diff --git a/retroshare-gui/src/gui/settings/rsharesettings.h b/retroshare-gui/src/gui/settings/rsharesettings.h index 317dedb56..362e52606 100644 --- a/retroshare-gui/src/gui/settings/rsharesettings.h +++ b/retroshare-gui/src/gui/settings/rsharesettings.h @@ -343,12 +343,6 @@ public: bool getPageAlreadyDisplayed(const QString& page_code) ; void setPageAlreadyDisplayed(const QString& page_code,bool b) ; - int getFontSize(); - void setFontSize(int value); - - int getMessageFontSize(); - void setMessageFontSize(int value); - #ifdef RS_JSONAPI bool getJsonApiEnabled(); void setJsonApiEnabled(bool enabled); diff --git a/retroshare-gui/src/gui/settings/settingsw.ui b/retroshare-gui/src/gui/settings/settingsw.ui index 605e8558e..d1cbd3caf 100644 --- a/retroshare-gui/src/gui/settings/settingsw.ui +++ b/retroshare-gui/src/gui/settings/settingsw.ui @@ -35,6 +35,11 @@ 16777215 + + + 11 + + Qt::IgnoreAction @@ -95,6 +100,7 @@ + 12 75 true @@ -129,8 +135,8 @@ 0 0 - 1264 - 845 + 1313 + 849 diff --git a/retroshare-gui/src/gui/statistics/Histogram.cpp b/retroshare-gui/src/gui/statistics/Histogram.cpp index 77e272b31..5884d8306 100644 --- a/retroshare-gui/src/gui/statistics/Histogram.cpp +++ b/retroshare-gui/src/gui/statistics/Histogram.cpp @@ -39,9 +39,9 @@ void Histogram::draw(QPainter */*painter*/) const void Histogram::insert(double val) { - long int bin = (long int)floor((val - mStart)/(mEnd - mStart) * mBins.size()); + long int bin = (uint32_t)floor((val - mStart)/(mEnd - mStart) * mBins.size()); - if(bin >= 0 && bin < (long int)mBins.size()) + if(bin >= 0 && bin < mBins.size()) ++mBins[bin]; } diff --git a/retroshare-gui/src/gui/statistics/Histogram.h b/retroshare-gui/src/gui/statistics/Histogram.h index 3931b15db..91ec84b5d 100644 --- a/retroshare-gui/src/gui/statistics/Histogram.h +++ b/retroshare-gui/src/gui/statistics/Histogram.h @@ -20,7 +20,7 @@ #include #include -#include +#include class QPainter; diff --git a/retroshare-gui/src/lang/retroshare_bg.ts b/retroshare-gui/src/lang/retroshare_bg.ts index c57ad6a7a..86615025a 100644 --- a/retroshare-gui/src/lang/retroshare_bg.ts +++ b/retroshare-gui/src/lang/retroshare_bg.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Добави коментар + + AddFileAssociationDialog @@ -121,12 +128,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +143,7 @@ - + Cancels the search. @@ -156,6 +163,17 @@ + + AlbumCreateDialog + + Description: + ŠžŠæŠøŃŠ°Š½ŠøŠµ: + + + Quality: + ŠšŠ°Ń‡ŠµŃŃ‚Š²Š¾: + + AlbumDialog @@ -184,6 +202,10 @@ Caption + + Description: + ŠžŠæŠøŃŠ°Š½ŠøŠµ: + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -540,7 +562,7 @@ 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. @@ -566,23 +588,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +634,7 @@ p, li { white-space: pre-wrap; } ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ на - + Set your Avatar picture @@ -712,7 +721,7 @@ p, li { white-space: pre-wrap; } Š’Ń€ŃŠŃ‰Š°Š½Šµ - + Always on Top @@ -731,6 +740,14 @@ p, li { white-space: pre-wrap; } % Opaque + + Save + Запазване + + + Cancel + ŠžŃ‚Š¼ŃŠ½Š° + Since: @@ -808,7 +825,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +855,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +868,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +888,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +926,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +946,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +976,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +986,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š² - + TextLabel @@ -977,12 +994,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +1019,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -1028,12 +1045,12 @@ p, li { white-space: pre-wrap; } ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент - + Name Име - + Comm value @@ -1202,17 +1219,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1239,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1247,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1270,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1295,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -1314,7 +1321,7 @@ into the image, so as to ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент - + Name Име @@ -1324,7 +1331,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide Дкрий @@ -1332,7 +1349,7 @@ into the image, so as to ChatLobbyDialog - + Name Име @@ -1523,7 +1540,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1573,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1587,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Име - + Count @@ -1587,7 +1603,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1635,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1692,12 @@ 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: @@ -1669,42 +1707,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,22 +1733,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1744,47 +1768,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1823,7 @@ Double click a chat room to enter and chat. - + Show Показване @@ -1819,7 +1843,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент @@ -1864,7 +1888,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1903,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1923,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1948,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1978,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1988,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +2012,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2082,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2097,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2194,7 @@ Double click a chat room to enter and chat. - + Case sensitive Š§ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»Š½Š¾ŃŃ‚ към Ń€ŠµŠ³ŠøŃŃ‚ŃŠŃ€Š° @@ -2296,7 +2300,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2336,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2371,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2456,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2498,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2520,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2570,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2592,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2607,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2628,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2644,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2669,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2695,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2717,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2743,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2803,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2819,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2871,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2919,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +3001,12 @@ Double click on it to add his name on text writer. без - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +3026,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3094,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3110,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: Име: @@ -3121,17 +3125,17 @@ Double click on it to add his name on text writer. - + Options ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø - + <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: @@ -3141,7 +3145,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3170,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3195,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3266,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3296,12 @@ 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? - + @@ -3310,7 +3309,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3349,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3374,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3384,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3423,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3433,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3458,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3471,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3506,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3516,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3586,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3614,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3624,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3644,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3659,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3684,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3976,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3984,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3994,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4030,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4058,7 +4055,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4075,18 @@ p, li { white-space: pre-wrap; } - + Cancel ŠžŃ‚Š¼ŃŠ½Š° - + Nickname - + Invited Members @@ -4104,7 +4101,11 @@ p, li { white-space: pre-wrap; } - + Type + Тип + + + Name: Име: @@ -4144,19 +4145,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4167,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Š”Š¾Š±Š°Š²ŃŠ½Šµ @@ -4193,7 +4182,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4235,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4260,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4295,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4305,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4450,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4485,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4500,18 @@ p, li { white-space: pre-wrap; } Дкрий - + + 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? @@ -4555,7 +4545,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4555,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4570,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4594,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4624,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title Заглавие @@ -4697,7 +4687,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4697,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4721,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4756,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4766,7 @@ Do you want to discard this message? ŠžŃ‚Š¼ŃŠ½Š° - + require PGP-signed identities @@ -4791,7 +4781,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4802,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4810,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: Име: - + Location: @@ -4840,12 +4830,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4855,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4870,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4880,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4900,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4970,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5086,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5754,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5762,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5801,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5968,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5978,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6038,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6164,7 @@ and use the import button to load it - + ID @@ -6216,7 +6206,7 @@ and use the import button to load it - + Group @@ -6252,7 +6242,7 @@ and use the import button to load it - + Search @@ -6268,7 +6258,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6495,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6533,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6544,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Име - - - - Node ID - - - - - Address - - - - - Status - Š”Ń‚Š°Ń‚ŃƒŃ - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6636,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6680,7 @@ Also check your ports! ŠŸŠ°Ń€Š¾Š»Š° - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6690,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6721,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6772,12 @@ Also check your ports! - + <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 @@ -6923,43 +6787,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6862,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6878,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6913,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6923,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6938,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7169,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7199,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7239,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7306,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7356,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7485,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7493,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7663,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Заглавие @@ -7807,12 +7676,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7706,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7721,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name Име @@ -7870,13 +7739,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7758,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7894,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7905,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7940,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7980,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +8015,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8166,10 +8035,25 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ + + + Title + Заглавие + + + Status + Š”Ń‚Š°Ń‚ŃƒŃ + + GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8091,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8107,7 @@ p, li { white-space: pre-wrap; } - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -8248,7 +8122,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8136,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8145,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8166,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8228,18 @@ p, li { white-space: pre-wrap; } Дкрий - + New ŠŠ¾Š² - + 0 - - + + Comment @@ -8385,17 +8254,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8420,16 +8289,35 @@ p, li { white-space: pre-wrap; } + + GxsChannelPostsWidget + + Title + Заглавие + + + Search Title + Š¢ŃŠŃ€ŃŠµŠ½Šµ в заглавието + + + Feeds + Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Šø канали + + + Description: + ŠžŠæŠøŃŠ°Š½ŠøŠµ: + + GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8387,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8423,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8438,13 @@ p, li { white-space: pre-wrap; } Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Šø канали - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8459,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8474,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8534,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8614,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8670,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8795,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8808,7 @@ p, li { white-space: pre-wrap; } Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8838,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8877,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8901,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8910,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; } @@ -9077,7 +8939,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8970,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +9021,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +9037,7 @@ before you can comment - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -9194,11 +9056,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9085,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9102,7 @@ before you can comment - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -9265,17 +9122,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide Дкрий @@ -9288,66 +9145,59 @@ before you can comment Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Š¢ŃŠŃ€ŃŠµŠ½Šµ Š¤Š¾Ń€ŃƒŠ¼Šø - + New Thread + + + Threaded View + + + + + Flat View + + - + Title Заглавие - - + + Date Дата - + Author Автор - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9207,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9252,23 @@ before you can comment Š¢ŃŠŃ€ŃŠµŠ½Šµ на автор - + No name ŠŃŠ¼Š° име - - + + Reply - + <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> - + Loading... @@ -9456,12 +9311,16 @@ before you can comment - + Hide Дкрий - + Expand + Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ + + + [unknown] @@ -9491,8 +9350,8 @@ before you can comment - - + + Distribution @@ -9506,6 +9365,10 @@ before you can comment Anti-spam + + none + без + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9575,12 +9438,12 @@ before you can comment - + New thread - + Edit РеГактиране @@ -9641,7 +9504,7 @@ before you can comment - + Show column @@ -9661,7 +9524,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9576,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9586,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9601,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9667,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9844,12 +9707,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name Име - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9723,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9736,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9796,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9819,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9835,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9857,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9889,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9914,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9929,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +10004,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +10020,27 @@ This message is missing. You should receive it later. - + Created - + Cancel ŠžŃ‚Š¼ŃŠ½Š° - + Create - + + Author + Автор + + + GxsIdLabel @@ -10191,7 +10048,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10108,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10165,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10193,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10206,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10223,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10233,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10253,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10264,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10312,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10699,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10715,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10734,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10808,7 @@ p, li { white-space: pre-wrap; } Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + Add friend @@ -10974,7 +10818,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10846,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10856,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10866,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10886,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10904,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10924,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11194,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11211,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11226,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11241,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11277,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11319,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11340,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11609,17 +11422,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 @@ -11634,24 +11447,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11479,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11489,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11564,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11594,7 @@ p, li { white-space: pre-wrap; } непознат - + Invited @@ -11801,7 +11609,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11657,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. @@ -11857,7 +11665,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11708,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11788,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11804,17 @@ 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> + + + + positive @@ -12106,7 +11919,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11969,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11993,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +12008,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +12023,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +12048,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +12063,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +12071,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12101,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12115,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12125,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12136,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12176,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12186,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12201,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12216,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12226,10 @@ These identities will soon be not supported anymore. Тип - + Choose image... - - - Remove - ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ на - @@ -12459,7 +12255,7 @@ These identities will soon be not supported anymore. Š”Š¾Š±Š°Š²ŃŠ½Šµ - + Create @@ -12469,13 +12265,13 @@ These identities will soon be not supported anymore. ŠžŃ‚Š¼ŃŠ½Š° - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12281,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12355,7 @@ These identities will soon be not supported anymore. - + Copy ŠšŠ¾ŠæŠøŃ€Š°Š½Šµ @@ -12569,12 +12365,12 @@ These identities will soon be not supported anymore. ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ на - + %1 's Message History - + Mark all @@ -12597,34 +12393,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12422,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12463,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12472,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12501,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12529,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12545,7 @@ These identities will soon be not supported anymore. - - + Options ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø @@ -12802,7 +12566,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12577,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12607,11 @@ These identities will soon be not supported anymore. - Status Š”Ń‚Š°Ń‚ŃƒŃ - + Notify @@ -12859,35 +12622,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help ŠŸŠ¾Š¼Š¾Ń‰ - - + Minimize - + Maximize @@ -12902,12 +12661,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message @@ -12937,7 +12691,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12711,7 @@ These identities will soon be not supported anymore. Показване - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12756,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12776,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12785,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12831,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12851,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12887,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12982,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +13022,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +13042,18 @@ 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? @@ -13311,17 +13064,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13084,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13094,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13380,7 +13123,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13133,30 @@ Do you want to save message to draft box? - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown ŠŠµŠøŠ·Š²ŠµŃŃ‚ŠµŠ½ @@ -13528,13 +13271,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13297,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13318,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13348,18 @@ Do you want to save message ? - - + + Close - + From: ŠžŃ‚: - + Bullet list (disc) @@ -13656,13 +13399,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13415,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: @@ -13755,7 +13498,7 @@ Do you want to save message ? По поГразбиране - + A new tab @@ -13765,7 +13508,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13531,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13539,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13567,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13577,37 @@ Do you want to save message ? - + Subject: - + From: ŠžŃ‚: - + To: До: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13647,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13699,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13709,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13724,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13743,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13765,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14064,6 +13792,10 @@ Do you want to save message ? Compose + + Delete + Š˜Š·Ń‚Ń€ŠøŠ²Š°Š½Šµ + Print @@ -14142,7 +13874,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13884,20 @@ Do you want to save message ? - + Delete + Š˜Š·Ń‚Ń€ŠøŠ²Š°Š½Šµ + + + - - + + Tags - - + + Inbox @@ -14191,17 +13927,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13968,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13978,7 @@ Do you want to save message ? - + Date Дата @@ -14252,7 +13988,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13997,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +14023,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14104,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14118,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14133,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14179,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14233,7 @@ Do you want to save message ? - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -14537,7 +14243,7 @@ Do you want to save message ? ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент - + from @@ -14572,7 +14278,7 @@ Do you want to save message ? - + Hide Дкрий @@ -14713,7 +14419,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14429,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14443,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14476,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14497,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14535,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14556,7 @@ Reported error: - + Groups @@ -14881,19 +14586,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14608,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14623,7 @@ Reported error: - + Group @@ -15033,7 +14738,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14748,7 @@ Reported error: - + Done! @@ -15150,7 +14855,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14870,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14880,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15409,6 +15114,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + Š•Š¼ŠøŃŠøŃ + Systray @@ -15418,7 +15127,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15147,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15167,7 @@ at least one peer was not added to a group - + Test Тест @@ -15469,19 +15178,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15196,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15335,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15380,12 @@ 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> @@ -15724,21 +15431,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15756,7 +15463,7 @@ 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. @@ -15832,12 +15539,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15570,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15591,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент - + Name: Име: @@ -15924,7 +15631,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15689,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Дкрий - + Send Message @@ -16149,6 +15856,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ + + PhotoDialog @@ -16221,6 +15935,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Добави коментар + Album @@ -16300,17 +16018,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +16057,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16116,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16164,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16380,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16438,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š² - + Vote up @@ -16755,8 +16458,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16484,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16518,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare RetroShare @@ -16835,22 +16538,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16559,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16569,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16589,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16609,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16620,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16630,7 @@ p, li { white-space: pre-wrap; } Заглавие - + Link @@ -16965,12 +16638,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16677,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16715,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16731,7 @@ p, li { white-space: pre-wrap; } - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -17083,17 +16746,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16764,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16786,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16801,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16811,17 @@ p, li { white-space: pre-wrap; } Дкрий - + Vote up - + Vote down - + Set as read and remove item ЗаГай като четене Šø премахване на елемент @@ -17173,7 +16831,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š² - + New Comment: @@ -17183,7 +16841,7 @@ p, li { white-space: pre-wrap; } - + Name Име @@ -17224,11 +16882,34 @@ p, li { white-space: pre-wrap; } - + Loading + + PostedListWidget + + Form + Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ + + + New + ŠŠ¾Š² + + + Next + ДлеГващ + + + RetroShare + RetroShare + + + Previous + ŠŸŃ€ŠµŠ“ŠøŃˆŠ½Š° + + PostedListWidgetWithModel @@ -17247,17 +16928,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16938,15 @@ p, li { white-space: pre-wrap; } - + - + unknown непознат - + Distribution: @@ -17285,42 +16956,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +17011,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +17041,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +17066,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +17081,27 @@ p, li { white-space: pre-wrap; } РеГактиране - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +17116,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17190,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17279,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17396,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17412,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17447,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17496,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17526,12 @@ and use the import button to load it ŠžŃ‚: - + Head - + Head Shot @@ -17909,13 +17561,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17579,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17599,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,24 +17614,30 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - + Date + Дата + + + ... + ... @@ -18000,7 +17648,7 @@ and use the import button to load it Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + @@ -18019,7 +17667,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17677,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17704,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17714,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17734,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17850,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17858,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17920,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17928,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18197,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18233,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18267,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18286,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18365,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18375,7 @@ Reported error is: - + enabled @@ -18762,7 +18385,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18401,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18468,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18496,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18676,13 @@ Security: no anonymous IDs Ban list - - - Name - Име - - Node - - - - - Address - - - - - Status Š”Ń‚Š°Ń‚ŃƒŃ - + NXS @@ -19318,18 +18925,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +19064,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19231,7 @@ p, li { white-space: pre-wrap; } Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + The loading of embedded images is blocked. @@ -19649,7 +19244,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19417,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19845,12 +19430,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +20123,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name Име @@ -20659,7 +20244,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name Име @@ -20679,7 +20264,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20320,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20334,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20352,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20789,17 +20374,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20403,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20424,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20485,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20506,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20536,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20554,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20571,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20637,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20652,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20752,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20778,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21237,7 +20815,7 @@ prevents the message to be forwarded to your friends. - + Folder Папка @@ -21248,17 +20826,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20856,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20864,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20880,22 @@ prevents the message to be forwarded to your friends. ŠŸŃ€ŠµŠ¼Š°Ń…Š½Šø елемент - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20912,7 @@ prevents the message to be forwarded to your friends. Дкрий - + but reported: @@ -21359,8 +20937,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20946,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20977,7 @@ prevents the message to be forwarded to your friends. - + Expand Š Š°Š·ŃˆŠøŃ€ŃŠ²Š°Š½Šµ @@ -21444,12 +21022,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +21047,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown ŠŠµŠøŠ·Š²ŠµŃŃ‚ŠµŠ½ @@ -21484,17 +21067,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide Дкрий @@ -21504,7 +21077,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +21087,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21151,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21604,22 +21177,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21205,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21229,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21255,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21280,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21325,71 @@ When changing options use the buttons at the bottom to restart SAMv3. непознат - + + + + 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 @@ -21838,7 +21399,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21426,12 @@ 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> @@ -21865,7 +21441,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21456,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21483,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21503,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21518,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21568,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21583,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21624,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21679,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21704,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21716,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21739,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Š”Ń‚Š°Ń‚ŃƒŃ @@ -22218,28 +21799,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21825,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21871,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21899,22 @@ 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> @@ -22379,7 +21949,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21959,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +22044,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +22054,12 @@ 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. @@ -22508,7 +22078,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +22098,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel ŠžŃ‚Š¼ŃŠ½Š° - + Add a Share Directory @@ -22548,7 +22118,7 @@ Select the Friends with which you want to Share your Channel. ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ на - + Apply and close @@ -22639,7 +22209,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. @@ -22647,7 +22217,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22268,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22282,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22732,7 +22297,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22313,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22338,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22481,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22510,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23284,7 +22849,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +23086,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +23122,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown ŠŠµŠøŠ·Š²ŠµŃŃ‚ŠµŠ½ @@ -23575,13 +23137,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23158,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23171,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23181,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23192,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23224,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23235,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23245,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23345,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23354,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23379,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23444,12 @@ 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> @@ -23948,17 +23459,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23487,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23515,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name Име @@ -24233,12 +23734,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> - - - - + Move in Queue... @@ -24263,7 +23759,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23780,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24317,17 +23813,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23828,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23955,23 @@ 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> + + + + Columns - + File Transfers - + Path ŠŸŃŠŃ‚ŠµŠŗŠ° @@ -24490,7 +23981,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23991,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +24006,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +24016,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24430,12 @@ p, li { white-space: pre-wrap; } Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24475,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24495,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24637,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24652,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24740,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24775,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24805,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status Š”Ń‚Š°Ń‚ŃƒŃ @@ -25361,7 +24833,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24916,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25459,7 +24940,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24960,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24990,11 @@ p, li { white-space: pre-wrap; } - + New + ŠŠ¾Š² + + + Yourself @@ -25519,7 +25004,7 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare @@ -25582,42 +25067,35 @@ p, li { white-space: pre-wrap; } Š¤Š¾Ń€Š¼ŃƒŠ»ŃŃ€ - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - ŠŸŃ€ŠµŠ¼Š°Ń…Š²Š°Š½Šµ на - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25140,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) ŠŠµŠøŠ·Š²ŠµŃŃ‚ŠµŠ½ @@ -25774,7 +25222,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25259,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_ca_ES.ts b/retroshare-gui/src/lang/retroshare_ca_ES.ts index 1e88b2136..fe57c6488 100644 --- a/retroshare-gui/src/lang/retroshare_ca_ES.ts +++ b/retroshare-gui/src/lang/retroshare_ca_ES.ts @@ -84,6 +84,13 @@ NomĆ©s node ocult + + AddCommentDialog + + Add Comment + Afegir comentari + + AddFileAssociationDialog @@ -121,12 +128,12 @@ RetroShare: Cerca AvanƧada - + Search Criteria Criteris de Cerca - + Add a further search criterion. Afegeix un altre criteri de cerca. @@ -136,7 +143,7 @@ Reinicialitzar els criteris de cerca. - + Cancels the search. CancelĀ·la la cerca. @@ -156,6 +163,177 @@ Cerca + + AlbumCreateDialog + + Create Album + Crear Ć lbum + + + Album Name: + Nom d'Ć lbum: + + + Category: + Categoria: + + + Animals + Animals + + + Family + FamĆ­lia + + + Friends + Amics + + + Flowers + Flors + + + Holiday + Vacances + + + Landscapes + Paisatges + + + Pets + Mascotes + + + Portraits + Retrats + + + Travel + Viatges + + + Work + Treball + + + Random + Aleatori + + + Caption: + Llegenda: + + + Where: + On: + + + Photographer: + Fotògraf: + + + Description: + Descripció: + + + Share Options + Opcions de compartició: + + + Policy: + PolĆ­tica: + + + Quality: + Qualitat: + + + Comments: + Comentari: + + + Identity: + Identitat: + + + Public + PĆŗblic + + + Restricted + Restringit + + + Resize Images (< 1Mb) + Redimensionar imatges (< 1Mb) + + + Resize Images (< 10Mb) + Redimensionar imatges (< 10Mb) + + + Send Original Images + Enviar imatges originals + + + No Comments Allowed + No es permeten els comentaris + + + Authenticated Comments + Comentaris autenticats + + + Any Comments Allowed + Qualsevol comentari permĆØs + + + Publish with Identity + Publicar amb identitat + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> Arrosegar i deixar per inserir imatges. Clica en una imatge per editar-ne els detalls a sota.</span></p></body></html> + + + Back + Enrere + + + Add Photos + Afegir fotos. + + + Publish Album + Publicar Ć lbum + + + Untitle Album + ƀlbum sense tĆ­tol + + + Say something about this album... + Digues alguna cosa sobre aquest Ć lbum... + + + Where were these taken? + On ha anat a parar això? + + + Load Album Thumbnail + Carrega la miniatura de l'Ć lbum + + AlbumDialog @@ -164,11 +342,19 @@ Album ƀlbum + + Album Thumbnail + Miniatura de l'Ć lbum + TextLabel EtiquetaTexte + + Summary + Resum + Album Title: @@ -184,6 +370,34 @@ Caption Llegenda + + Where: + On: + + + When + Quan + + + Description: + Descripció: + + + Share Options + Opcions de compartició: + + + Comments + Comentaris + + + Publish Identity + Publicar identitat + + + Visibility + Visibilitat + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -552,7 +766,7 @@ 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. AvĆ­s: Els serveis aquĆ­ esmentat són experimentals. Si us plau, ajuda'ns a testejar-los. @@ -568,6 +782,14 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Circles Cercles + + GxsForums + FòrumsGxs + + + GxsChannels + CanalsGxs + The Wire @@ -579,23 +801,10 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Fotos - - AspectRatioPixmapLabel - - - Save image - Desar imatge - - - - Copy image - - - AttachFileItem - + %p Kb %p kb @@ -632,13 +841,17 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Browse... + + Add Avatar + Afegir avatar + Remove Treure - + Set your Avatar picture Tria la fotografia del teu avatar @@ -657,6 +870,10 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Carrega avatar + AvatarWidget @@ -725,10 +942,22 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Restablir - + Receive Rate + Taxa de Recepció + + + Send Rate + Taxa d'enviament + + + Always on Top Sempre per damunt + + Style + Estil + Changes the transparency of the Bandwidth Graph @@ -744,11 +973,23 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem % Opaque % Opac + + Save + Desa + + + Cancel + CancelĀ·la + Since: Des de: + + Hide Settings + Amagar opcions + BandwidthStatsWidget @@ -821,7 +1062,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem BoardPostDisplayWidgetBase - + Comment Comentari @@ -851,12 +1092,12 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Copia l'enllaƧ RetroShare - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>L'autor d'aquest missatge (amb Id %1) estĆ  expulsat.</b> - + ago @@ -864,7 +1105,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem BoardPostDisplayWidget_card - + Vote up Votar positiu @@ -884,7 +1125,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem \/ - + Posted by @@ -922,7 +1163,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem BoardPostDisplayWidget_compact - + Vote up Votar positiu @@ -942,7 +1183,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem \/ - + Click to view picture @@ -972,7 +1213,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Compartir - + Toggle Message Read Status Canvia l'estat dels missatges llegits @@ -982,7 +1223,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Nou - + TextLabel @@ -990,12 +1231,12 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem BoardsCommentsItem - + I like this M'agrada - + 0 0 @@ -1015,18 +1256,18 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Avatar - + New Comment - + Copy RetroShare Link Copia l'enllaƧ RetroShare - + Expand Ampliar @@ -1041,12 +1282,12 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem Eliminar l'element - + Name Nom - + Comm value @@ -1215,17 +1456,17 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem ChannelPage - + Channels Canals - + Tabs Pestanyes - + General General @@ -1235,17 +1476,11 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem - - Downloads - Descarregues + Load posts in background (Thread) + Carrega les entrades en segon pla (Utilitza fils) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Obrir cada canal en una nova pestanya @@ -1253,7 +1488,7 @@ Però recorda: Totes les dades generades aquĆ­ *SERAN* perdudes quan actualitzem ChannelPostDelegate - + files @@ -1276,7 +1511,7 @@ into the image, so as to ChannelsCommentsItem - + I like this M'agrada @@ -1301,18 +1536,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link Copia l'enllaƧ RetroShare - + Expand Ampliar @@ -1327,7 +1562,7 @@ into the image, so as to Eliminar l'element - + Name Nom @@ -1337,7 +1572,17 @@ into the image, so as to - + + Comment + Comentari + + + + Comments + Comentaris + + + Hide Amagar @@ -1345,7 +1590,7 @@ into the image, so as to ChatLobbyDialog - + Name Nom @@ -1536,7 +1781,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Mostra el xat de sala @@ -1548,6 +1793,22 @@ into the image, so as to Chats Xats + + You have %1 new messages + Tens %1 nous missatges + + + You have %1 new message + Tens %1 nou missatge + + + %1 new messages + %1 missatges nous + + + %1 new message + %1 missatges nous + You have %1 mentions @@ -1569,14 +1830,13 @@ into the image, so as to - - + Unknown Lobby Sala desconeguda - - + + Remove All Suprimeix-ho tot @@ -1584,13 +1844,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nom - + Count Comte @@ -1600,7 +1860,33 @@ into the image, so as to Tema - + + 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 @@ -1610,7 +1896,7 @@ into the image, so as to Abandonar sala - + Create a non anonymous identity and enter this room Crear una identitat no anònima i entrar a aquesta sala @@ -1669,12 +1955,12 @@ 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: @@ -1684,31 +1970,31 @@ Fes doble clic a les sales per entrar-hi i xatejar. Escull una identitat per aquesta sala: - + Create chat lobby + Crear sala de xat + + + [No topic provided] [No s'ha proporcionat cap assumpte] - - + Selected lobby info + Informació de la sala seleccionada + + + Private Privat - - - + Public PĆŗblic - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted IDs anònimes acceptades @@ -1718,25 +2004,42 @@ Fes doble clic a les sales per entrar-hi i xatejar. Eliminar auto-subscripció - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Afegir auto-subscripció - + Search Chat lobbies Cercar sales de xat - + Search Name Cercar nom - + Subscribed + Subscrit + + + Columns Columnes + + Yes + SĆ­ + + + No + No + Chat rooms @@ -1748,47 +2051,47 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + Chat Room info - + Chat room Name: Nom de la sala de xat: - + Chat room Id: Id de la sala de xat: - + Topic: Tema: - + Type: Tipus: - + Security: Seguretat: - + Peers: Contactes: - - - - - - + + + + + + TextLabel EtiquetaText @@ -1803,24 +2106,13 @@ Fes doble clic a les sales per entrar-hi i xatejar. Ids anònims prohibits - + Show Mostra - - Private Subscribed - - - - - - Public Subscribed - - - - + column columna @@ -1834,7 +2126,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatMsgItem - + Remove Item Eliminar l'element @@ -1879,22 +2171,46 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatPage - + General General + + Distant Chat + Xat distant + Everyone Tothom + + Contacts + Contactes + Nobody NingĆŗ - + Accept encrypted distant chat from + Acceptar xats distants encriptats de + + + Chat Settings + Configuració xat + + + Enable Emoticons Private Chat + Activa les emoticones al xat privat + + + Enable Emoticons Group Chat + Activa emoticones pels xats en grup + + + Enable custom fonts Activa tipus de lletra personalitzats @@ -1903,6 +2219,10 @@ Fes doble clic a les sales per entrar-hi i xatejar. Enable custom font size Activa mida de lletra personalitzat + + Minimum font size + Mida de lletra mĆ­nima + Enable bold @@ -1914,7 +2234,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Activa cursiva - + General settings @@ -1939,7 +2259,11 @@ Fes doble clic a les sales per entrar-hi i xatejar. Carrega imatges incrustades - + Chat Lobby + Sala de xat + + + Blink tab icon Icona de pestanya parpellejant @@ -1948,6 +2272,10 @@ Fes doble clic a les sales per entrar-hi i xatejar. Do not send typing notifications No enviar avĆ­s d'estar escribint + + Private Chat + Xat privat + Open Window for new chat @@ -1969,7 +2297,11 @@ Fes doble clic a les sales per entrar-hi i xatejar. Icona de pestanya/finestra parpellejant - + Chat Font + Tipus de lletra pel xat + + + Change Chat Font Canviar tipografia pel xat @@ -1979,10 +2311,14 @@ Fes doble clic a les sales per entrar-hi i xatejar. Tipus de lletra pel xat: - + History Històric + + Style + Estil + @@ -1997,13 +2333,17 @@ Fes doble clic a les sales per entrar-hi i xatejar. Variant: Variant: + + Group chat + Xat en grup + Private chat Xat privat - + Choose your default font for Chat. Escull una tipografia pel Xat. @@ -2067,28 +2407,22 @@ Fes doble clic a les sales per entrar-hi i xatejar. <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">En aquesta pestanya pots modificar quants missatges de xat el RetroShare mantindrĆ  emmagatzemats en disc i quantes de les converses prĆØvies mostrarĆ  pels diferents sistemes de xat. El perĆ­ode mĆ xim d'emmagatzematge et permet descartar missatges vells i impedeix que l'historial de xat s'ompli amb xats esporĆ dics (per ex. sales de xat i xats distants).</p></body></html> + + Chatlobbies + Salesxat + Enabled: Activat: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2098,17 +2432,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Sales de xat @@ -2205,7 +2529,11 @@ Fes doble clic a les sales per entrar-hi i xatejar. PerĆ­ode mĆ xim d'emmagatzemat, en dies (0=IlĀ·limitat): - + Search by default + Cerca per defecte + + + Case sensitive Diferenciar majĆŗscules/minĆŗscules @@ -2244,6 +2572,10 @@ Fes doble clic a les sales per entrar-hi i xatejar. Threshold for automatic search LĆ­mit per fer una cerca automĆ tica + + Default identity for chat lobbies: + Identitat per defecte per les sales de xat: + Show Bar by default @@ -2311,7 +2643,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatToaster - + Show Chat Mostra xat @@ -2347,7 +2679,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatWidget - + Close Tancar @@ -2382,12 +2714,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Cursiva - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Insertar emoticona @@ -2396,6 +2728,10 @@ Fes doble clic a les sales per entrar-hi i xatejar. Attach a Picture Adjunta una imatge + + <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> + Strike @@ -2467,6 +2803,11 @@ Fes doble clic a les sales per entrar-hi i xatejar. Insert horizontal rule Inserir regla horitzontal + + + Save image + Desar imatge + Import sticker @@ -2504,7 +2845,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + is typing... estĆ  escrivint... @@ -2528,7 +2869,7 @@ desprĆ©s de convertir a HTML. Escull el tipus de lletra - + Do you really want to physically delete the history? Segur que vols eliminar fĆ­sicament l'historial? @@ -2578,7 +2919,7 @@ desprĆ©s de convertir a HTML. estĆ  ocupat i pot no respondre - + Find Case Sensitively Cercar diferenciant majĆŗscules i minĆŗscules @@ -2600,7 +2941,7 @@ desprĆ©s de convertir a HTML. No deixis de colorejar fins trobar X elements (Necessita mĆ©s UCP) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Trobar anterior </b><br/><i>Ctrl+Shift+G</i> @@ -2615,12 +2956,16 @@ desprĆ©s de convertir a HTML. <b>Trobar </b><br/><i>Ctrl+F</i> - + (Status) (Estat) - + Set text font & color + Estableix tipus de lletra i color + + + Attach a File Adjunta un arxiu @@ -2636,12 +2981,12 @@ desprĆ©s de convertir a HTML. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Marca el text seleccionat</b><br><i>Ctrl+M</i> - + Person id: Id de la persona: @@ -2653,12 +2998,12 @@ Double click on it to add his name on text writer. Doble clic per afegir el seu nom al text escrit. - + Unsigned No signat - + items found. Elements trobats. @@ -2678,7 +3023,7 @@ Doble clic per afegir el seu nom al text escrit. Escriu un missatge aquĆ­ - + Don't stop to color after No t'aturis a colorejar desprĆ©s de @@ -2704,7 +3049,7 @@ Doble clic per afegir el seu nom al text escrit. CirclesDialog - + Showing details: Mostrant detalls: @@ -2726,7 +3071,7 @@ Doble clic per afegir el seu nom al text escrit. - + Personal Circles Cercles personals @@ -2752,7 +3097,7 @@ Doble clic per afegir el seu nom al text escrit. - + Friends Amics @@ -2812,7 +3157,7 @@ Doble clic per afegir el seu nom al text escrit. Amics dels amics - + External Circles (Admin) Cercles externs (Admin) @@ -2828,7 +3173,7 @@ Doble clic per afegir el seu nom al text escrit. - + Circles Cercles @@ -2880,48 +3225,43 @@ Doble clic per afegir el seu nom al text escrit. - + RetroShare RetroShare - + - + Error : cannot get peer details. Error: no es poden obtenir detalls del contacte. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2933,7 +3273,7 @@ Doble clic per afegir el seu nom al text escrit. Encriptació - + Not connected No connectat @@ -3015,17 +3355,25 @@ Doble clic per afegir el seu nom al text escrit. cap - + <p>This certificate contains: <p>Aquest certificat contĆ©: - + <li>a <b>node ID</b> and <b>name</b> <li>un<b>ID de node</b> i <b>nom</b> - + an <b>onion address</b> and <b>port</b> + una <b>adreƧa onion</b> i <b>port</b> + + + an <b>IP address</b> and <b>port</b> + una <b>adreƧa IP</b> i <b>port</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Pots utilitzar aquest certificat per fer nous amics. Envia'l per correu o entrega'l en ma.</p> @@ -3040,7 +3388,7 @@ Doble clic per afegir el seu nom al text escrit. <html><head/><body><p>Aquest Ć©s el mĆØtode d'encriptat utilitzat per <span style=" font-weight:600;">OpenSSL</span>. La conexió cap a nodes amics</p><p>Ć©s sempre forta i si hi ha DHE disponible la conexió a mĆ©s a mĆ©s utilitza</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - + with amb @@ -3057,16 +3405,118 @@ Doble clic per afegir el seu nom al text escrit. Connect Friend Wizard Auxiliar de connexió amb amic + + Add a new Friend + Afegir un nou amic + + + &You get a certificate file from your friend + &El teu amic et proporciona un arxiu de certificat + + + &Make friend with selected friends of my friends + &Fes-te amic dels amics seleccionats dels teus amics + + + &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) + + + Include signatures + Inclou les signatures + + + Copy your Cert to Clipboard + Copiar el teu certificat al porta-retalls + + + Save your Cert into a File + Desar el teu certificar en un arxiu + + + Run Email program + Executa el programa de correu electrònic + Open Cert of your friend from File Obre el certificat d'un amic des d'un arxiu + + Open certificate + Obre un certificat + + + Please, paste your friend's Retroshare certificate into the box below + Si us plau, enganxa el certificat de Retroshare dels teus amics a la caixa inferior + + + Certificate files + Arxiu de certificat + + + Use PGP certificates saved in files. + Utilitza certificats PGP desat en arxius. + + + Import friend's certificate... + Importa certificats d'amics... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Has de generar un arxiu amb el teu certificat i donar-lo al teu amic. TambĆ© pots utilitzar un arxiu generat anteriorment. + + + Export my certificate... + Exportar el meu certificat... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Arrossega i deixa el certificat dels teus amics a aquesta finestra o especifica una ubicació a la part inferior + + + Browse + Navegar + + + Friends of friends + Amics d'amics + + + Select now who you want to make friends with. + Selecciona amb qui et vols fer amic ara. + + + Show me: + Mostra-m'ho: + + + Make friend with these peers + Fer-se amic amb aquests contactes + RetroShare ID ID RetroShare + + Use RetroShare ID for adding a Friend which is available in your network. + Utilitza la Id de RetroShare per afegir un amic que es troba disponible a la xarxa. + + + Add Friends RetroShare ID... + Afegir amics utilitzant la Id de RetroShare... + + + Paste Friends RetroShare ID in the box below + Enganxar Id de RetroShare de l'amic a la casella inferior + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Introdueix el Id de RetroShare del teu amic, ex. Contacte@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3108,7 +3558,27 @@ Doble clic per afegir el seu nom al text escrit. Correu electrònic - + Invite Friends by Email + Convidar amics per correu electrònic + + + Enter your friends' email addresses (separate each one with a semicolon) + Introdueix l'adreƧa de correu electrònic dels teus amics (Separa-les amb un punt i coma) + + + Your friends' email addresses: + L'adreƧa de correu electrònic dels teus amics: + + + Enter Friends Email addresses + Introdueix les adreces de correu electrònic dels teus amics + + + Subject: + Assumpte: + + + @@ -3124,32 +3594,77 @@ Doble clic per afegir el seu nom al text escrit. Detalls sobre la petició - + Peer details Detalls del contacte - + Name: Nom: + + Email: + Correu electrònic: + + + Node: + Node: + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Si us plau, tingues en compte que RetroShare necessitarĆ  una quantitat excessiva d'ample de banda, memòria i CPU si afegeixes masses amics. Pots afegir tants amics com vulguis, però mĆ©s de 40 serĆ  probablement excessiu. + Location: Ubicació: - + Options Opcions - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Aquest assistent t'ajudarĆ  a connectar amb el(s) teu(s) amic(s) de la xarxa RetroShare.<br>Escull com t'agradaria afegir un amic: + + + Enter the certificate manually + Introdueix el certificat manualment + + + Enter RetroShare ID manually + Introdueix la Id de RetroShare manualment + + + &Send an Invitation by Web Mail Providers + &Envia una Invitació utilitzant web mail + + + Recommend many friends to each other + Recomanar molts amics els uns als altres + + + 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> - + Add friend to group: Afegir amic al grup: @@ -3159,7 +3674,7 @@ Doble clic per afegir el seu nom al text escrit. Autentica amic (Signa clau PGP) - + Please paste below your friend's Retroshare ID @@ -3184,22 +3699,16 @@ Doble clic per afegir el seu nom al text escrit. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Afegir com amic amb qui connectar - + To accept the Friend Request, click the Finish button. + Per acceptar la petició de l'amic, clica al botó acabar. + + + Sorry, some error appeared Ho sentim, ha aparegut algun error @@ -3219,27 +3728,32 @@ Doble clic per afegir el seu nom al text escrit. Detalls sobre el teu amic: - + Key validity: Validesa de la clau: - + Profile ID: - + + Signers + Signants + + + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. Aquest contacte ja Ć©s a la llista d'amics. Afegir-lo potser nomĆ©s actualitzi la seva adreƧa IP. - + To accept the Friend Request, click the Accept button. @@ -3285,17 +3799,49 @@ Doble clic per afegir el seu nom al text escrit. - + Certificate Load Failed CĆ rrega de certificat fallida - + Cannot get peer details of PGP key %1 + No es poden aconseguir els detalls del contacte de la clau PGP %1 + + + Any peer I've not signed + Qualsevol contacte que no he signat + + + Friends of my friends who already trust me + Amics dels meus amics que ja confien en mi + + + Signed peers showing as denied + Contactes signats mostrats com denegats + + + Peer name + Nom del contacte + + + Also signed by + TambĆ© signat per + + + Peer id + Id contacte + + + Certificate appears to be valid + El certificat sembla vĆ lid + + + Not a valid Retroshare certificate! No Ć©s un certificat de Retroshare vĆ lid! - + RetroShare Invitation Invitació al RetroShare @@ -3317,12 +3863,12 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir - + 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? - + @@ -3330,7 +3876,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir - + This key is already on your trusted list Aquesta clau ja Ć©s a la teva llista de confianƧa @@ -3370,7 +3916,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Tens una petició d'amic de - + Profile password needed. @@ -3395,7 +3941,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir - + Valid Retroshare ID @@ -3405,7 +3951,47 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir - + Certificate Load Failed:file %1 not found + Carrega de certificat fallada: No es troba l'arxiu %1 + + + This Peer %1 is not available in your Network + El contacte %1 no estĆ  disponible a la teva xarxa + + + Use new certificate format (safer, more robust) + Utilitza el format nou de certificat (mĆ©s robust i segur) + + + Use old (backward compatible) certificate format + Utilitza el format de certificat antic (Compatible amb versions anteriors) + + + Remove signatures + Elimina signatures + + + RetroShare Invite + Invita al RetroShare + + + Connect Friend Help + Ajuda de connectar amic + + + You can copy this text and send it to your friend via email or some other way + Pots copiar aquest text i enviar-lo al teu amic per correu electrònic a un altre mĆØtode + + + 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 + + + Save as... + Desa com... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3444,7 +4030,11 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir *** Cap *** - + Use as direct source, when available + Utilitza com a font directa quan estigui disponible + + + IP-Addr: AdreƧa IP: @@ -3454,7 +4044,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir AdreƧa IP: - + Show Advanced options Mostrar opcions avanƧades @@ -3463,6 +4053,10 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir <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 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>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> @@ -3473,13 +4067,45 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir <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 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> + + Recommend many friends to each others + Recomanar molts amics els uns als altres + + + Friend Recommendations + Recomanacions de l'amic + + + The text below is your Retroshare certificate. You have to provide it to your friend + El text a sota Ć©s el teu certificat de Retroshare. L'has de proporcionar al teu amic + + + Message: + Missatge: + + + Recommend friends + Recomanar amics + + + To + A + + + Please select at least one friend for recommendation. + 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. + Add key to keyring Afegeix clau al clauer - + This key is already in your keyring Aquesta claus ja Ć©s al clauer @@ -3495,7 +4121,7 @@ missatges distants a aquest contacte encara que no sigueu amics. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. El certificat tĆ© un nombre de versió erroni. Recorda que les xarxes v0.6 i v0.5 són incompatibles. @@ -3530,7 +4156,7 @@ encara que no sigueu amics. Afegir la IP a la llista blanca - + No IP in this certificate! Aquest certificat no tĆ© IP! @@ -3540,10 +4166,27 @@ encara que no sigueu amics. <p>Aquest certificat no tĆ© IP. NomĆ©s podrĆ s utilitzar descobriment i DHT per trobar-lo. Com que Ć©s necessari que estigui a la llista blanca d'IPs el contacte provocarĆ  un avĆ­s a la pestanya de Novetats. Des d'allĆ­ podrĆ s afegir la IP a la llista blanca.</p> - + + [Unknown] + [Desconegut] + + + Added with certificate from %1 Afegit amb el certificat de %1 + + Paste Cert of your friend from Clipboard + Enganxa el certificat del teu amic des del porta-retalls + + + Certificate Load Failed:can't read from file %1 + Carrega de certificat fallada: no es pot llegir de l'arxiu %1 + + + Certificate Load Failed:something is wrong with %1 + Carrega de certificat fallada: Hi ha alguna cosa malament amb %1 + ConnectProgressDialog @@ -3605,7 +4248,7 @@ encara que no sigueu amics. - + UDP Setup Configuració UDP @@ -3641,7 +4284,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-family:'Lucida Grande'; font-size:13pt;">pots tancar-lo.</span></p></body></html> - + Connection Assistant Auxiliar de connexió @@ -3651,20 +4294,17 @@ p, li { white-space: pre-wrap; } Id contacte invĆ lida - - + Unknown State Estat desconegut - - + Offline Fora de lĆ­nia - - + Behind Symmetric NAT Darrera NAT simĆØtric @@ -3674,14 +4314,12 @@ p, li { white-space: pre-wrap; } Darrera NAT i sense DHT - - + NET Restart Reiniciar xarxa - - + Behind NAT Darrera NAT @@ -3691,8 +4329,7 @@ p, li { white-space: pre-wrap; } Sense DHT - - + NET STATE GOOD! ESTAT DE LA XARXA BO! @@ -3717,7 +4354,7 @@ p, li { white-space: pre-wrap; } Trobant contactes RS - + Lookup requires DHT Descobriment requereix DHT @@ -4009,7 +4646,7 @@ p, li { white-space: pre-wrap; } Si us plau, intenta-ho important un certificat complet - + @@ -4017,8 +4654,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! REENVIAMENT NO VERIFICABLE! @@ -4028,7 +4664,7 @@ p, li { white-space: pre-wrap; } REENVIAMENT NO VERIFICABLE I SENSE DHT - + Searching Cercant @@ -4064,12 +4700,12 @@ p, li { white-space: pre-wrap; } Detalls del cercle - + Name Nom - + <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> @@ -4089,7 +4725,7 @@ p, li { white-space: pre-wrap; } - + IDs Ids @@ -4109,18 +4745,18 @@ p, li { white-space: pre-wrap; } Filtre - + Cancel - + Nickname Sobrenom - + Invited Members Membres convidats @@ -4135,7 +4771,15 @@ p, li { white-space: pre-wrap; } Gent Coneguda - + ID + ID + + + Type + Tipus + + + Name: Nom: @@ -4175,19 +4819,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Els cercles poden restringir-se a membres d'un altre cercle. NomĆ©s els membres d'aquest segon cercle podran veure el nou cercle i el contingut (llistat de membres, etc.).</p></body></html> - - + Only visible to members of: + NomĆ©s visible a membres de: + + + + RetroShare RetroShare - + Please set a name for your Circle Si us plau, introdueix un nom pel teu cercle - + No Restriction Circle Selected No s'ha seleccionat cap cercle de restricció @@ -4197,24 +4845,12 @@ p, li { white-space: pre-wrap; } No s'ha seleccionat cap cercle de limitacions - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Desconegut] - + Add Afegir @@ -4224,7 +4860,7 @@ p, li { white-space: pre-wrap; } Treure - + Search Cercar @@ -4239,6 +4875,10 @@ p, li { white-space: pre-wrap; } Signed Signat + + Signed by known nodes + Signat per nodes coneguts + Edit Circle @@ -4255,6 +4895,10 @@ p, li { white-space: pre-wrap; } PGP Identity Identitat PGP + + Anon Id + Id anonima + Circle name @@ -4277,13 +4921,17 @@ p, li { white-space: pre-wrap; } Crear Nou Cercle - + Create Crear - + PGP Linked Id + Id enllaƧ PGP + + + Add Member Afegir Membre @@ -4302,7 +4950,7 @@ p, li { white-space: pre-wrap; } Crear grup - + Group Name: Nom del grup: @@ -4337,7 +4985,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nova entrada al canal @@ -4347,7 +4995,7 @@ p, li { white-space: pre-wrap; } Entrada al canal - + Post @@ -4408,11 +5056,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Fes arrossegar i deixar / Botó d'afegir arxius per calcular el nĆŗmero de hash d'arxius nous.</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;"> Copiar/Enganxar enllaƧos RetroShare dels teus compartits</span></p></body></html> + + Add File to Attach + Afegir arxiu per adjuntar + Add Channel Thumbnail Afegir miniatura del canal + + Message + Missatge + + + Subject : + Assumpte: + @@ -4498,17 +5158,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4527,18 +5187,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Arxiu ja afegit i hash calculat + Please add a Subject Si us plau, afegeix un assumpte - - Cannot publish post - - - - + Load thumbnail picture Carrega miniatura @@ -4553,12 +5212,18 @@ p, li { white-space: pre-wrap; } Amagar - + + Generate mass data Generar dades en massa - + + Do you really want to generate %1 messages ? + Segur que vols generar %1 missatges? + + + You are about to add files you're not actually sharing. Do you still want this to happen? EstĆ s a punt d'afegir arxius que ara mateix no comparteixes. Segur que ho vols fer? @@ -4592,7 +5257,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Publica missatge al fòrum @@ -4601,6 +5266,10 @@ p, li { white-space: pre-wrap; } Forum Fòrum + + Subject + Assumpte + Attach File @@ -4621,8 +5290,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4641,7 +5310,7 @@ p, li { white-space: pre-wrap; } Podeu adjuntar arxius arrossegant i deixant anar en aquesta finestra - + Post @@ -4671,17 +5340,17 @@ p, li { white-space: pre-wrap; } - + No Forum Sense fòrum - + In Reply to En resposta a - + Title TĆ­tol @@ -4735,7 +5404,7 @@ Vols descartar aquest missatge? Carrega arxiu d'imatge - + No compatible ID for this forum No hi ha un ID compatible amb aquest fòrum @@ -4745,8 +5414,8 @@ Vols descartar aquest missatge? Cap de les teves identitats tĆ© permĆØs publicar en aquest fòrum. Això pot deures a que el fòrum estigui limitat a un cercle que no tĆ© cap de les teves identitats, o a que el fòrum requereixi una identitat signada amb PGP. - - + + Generate mass data Generar dades en massa @@ -4755,6 +5424,10 @@ Vols descartar aquest missatge? Do you really want to generate %1 messages ? Segur que vols generar %1 missatges? + + Send + Enviar + Post as @@ -4769,7 +5442,23 @@ Vols descartar aquest missatge? CreateLobbyDialog - + Create Chat Lobby + Crear sala de xat + + + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. + Un sala de xat Ć©s un grup de xat descentralitzat i anònim. Tots els participants reben tots els missatges. Un cop la sala Ć©s creada pots invitar altres amics de la pestanya d'amics. + + + Lobby name: + Nom de la sala: + + + Lobby topic: + Assumpte de la sala: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4804,7 +5493,7 @@ Vols descartar aquest missatge? - + Create Crear @@ -4814,7 +5503,11 @@ Vols descartar aquest missatge? - + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Si marques aquĆ­ nomĆ©s ids signades amb PGP podran ser utilitzades per accedir i parlar a la sala. Aquesta limitació evita l'spam anònim donat que esdevĆ© possible que, com a mĆ­nim algunes de les persones de la sala, puguin localitzar el node de l'spammer.</p></body></html> + + + require PGP-signed identities requereix identitats signades amb PGP @@ -4829,7 +5522,11 @@ Vols descartar aquest missatge? Escull els amics amb qui vols fer un xat en grup. - + Invited friends + Amics convidats + + + Create Chat Room Crear sala de xat @@ -4850,7 +5547,7 @@ Vols descartar aquest missatge? Contactes: - + Identity to use: Identitat a utilitzar: @@ -4858,17 +5555,17 @@ Vols descartar aquest missatge? CryptoPage - + Public Information Informació pĆŗblica - + Name: Nom: - + Location: Ubicació: @@ -4878,12 +5575,12 @@ Vols descartar aquest missatge? Id d'ubicació: - + Software Version: Versió de programari: - + Online since: En lĆ­nia des de: @@ -4903,7 +5600,12 @@ Vols descartar aquest missatge? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4913,7 +5615,7 @@ Vols descartar aquest missatge? - + Other Information Altra informació @@ -4923,12 +5625,17 @@ Vols descartar aquest missatge? - + Profile Perfil - + + Certificate + Certificat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4938,7 +5645,11 @@ Vols descartar aquest missatge? Inclou les signatures - + Save Key into a file + Desa la clau a un arxiu + + + Export Identity Exportar identitat @@ -5011,33 +5722,33 @@ i utilitzar el botó d'importació per carregar-lo - + TextLabel EtiquetaText - + PGP fingerprint: fingerprint PGP: - + + Node information + Informació de node + + + PGP Id : Id PGP: - + Friend nodes: Nodes de l'amic: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5076,6 +5787,14 @@ i utilitzar el botó d'importació per carregar-lo Node Node + + Create new node... + Crear node nou... + + + show statistics window + mostra la finestra d'estadĆ­stiques + DHTGraphSource @@ -5092,6 +5811,10 @@ i utilitzar el botó d'importació per carregar-lo DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare utilitza el DHT de Bittorrent com a repetidor per les connexions. No emmagatzema la teva IP al DHT. ⇄⇄⇄⇄ En lloc d'això el DHT Ć©s utilitzat pels teus contactes per contactar amb tu mentre es processen peticions DHT estĆ ndard. ⇄⇄⇄⇄⇄⇄⇄⇄⇄⇄⇄⇄L'indicador d'estat es tornarĆ  verd tan aviat com el Retroshare obtingui una resposta per DHT d'un dels teus amics.</p> + <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 trusted nodes 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 trusted nodes.</p> @@ -5127,7 +5850,7 @@ i utilitzar el botó d'importació per carregar-lo DLListDelegate - + B B @@ -5795,7 +6518,7 @@ i utilitzar el botó d'importació per carregar-lo DownloadToaster - + Start file Arxiu d'inici @@ -5803,38 +6526,38 @@ i utilitzar el botó d'importació per carregar-lo ExprParamElement - + - + to a - + ignore case ignora majĆŗscules/minĆŗscules - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.mm.aaaa - - + + KB kB - - + + MB MB - - + + GB GB @@ -5842,12 +6565,12 @@ i utilitzar el botó d'importació per carregar-lo ExpressionWidget - + Expression Widget Giny d'expressió - + Delete this expression Suprimir aquesta expressió @@ -6009,7 +6732,7 @@ i utilitzar el botó d'importació per carregar-lo FilesDefs - + Picture Imatge @@ -6019,7 +6742,7 @@ i utilitzar el botó d'importació per carregar-lo VĆ­deo - + Audio ƀudio @@ -6079,21 +6802,11 @@ i utilitzar el botó d'importació per carregar-lo C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Directoris dels amics @@ -6215,7 +6928,7 @@ i utilitzar el botó d'importació per carregar-lo - + ID ID @@ -6250,6 +6963,10 @@ i utilitzar el botó d'importació per carregar-lo Show State Mostrar Estat + + Trusted nodes + Nodes de confianƧa + @@ -6257,7 +6974,7 @@ i utilitzar el botó d'importació per carregar-lo Mostra grups - + Group Grup @@ -6293,7 +7010,7 @@ i utilitzar el botó d'importació per carregar-lo Afegir al grup - + Search Cerca @@ -6309,7 +7026,7 @@ i utilitzar el botó d'importació per carregar-lo Ordena per estat - + Profile details Detalls del perfil @@ -6553,7 +7270,7 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup FriendRequestToaster - + Confirm Friend Request Confirma la petició d'amic @@ -6570,6 +7287,10 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup FriendSelectionWidget + + Search : + Cercar: + Sort by state @@ -6591,7 +7312,7 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Busca als amics - + Mark all Marcar tots/es @@ -6602,134 +7323,16 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Marcar cap - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Nom - - - - Node ID - - - - - Address - AdreƧa - - - - Status - Estat - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Fer amic - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - El repetidor no estĆ  activat o estĆ  trencat. -Estan tots els serveis funcionant correctament?? -Comprova els teus ports! - - FriendsDialog - + Edit status message Editar missatge d'estat - - + + Broadcast Difusió @@ -6812,38 +7415,33 @@ Comprova els teus ports! Restablir tipografia per defecte - + Keyring Clauer - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Xarxa</h1> <p>La pestanya Xarxa mostra els nodes RertoShare dels teus amics: Els nodes de RetroShare veĆÆns amb que estĆ s.connectat. </p> <p>Pots agrupar els nodes en grups per millorar el control de l'accĆ©s a les dades, per permetre nomĆ©s a alguns nodes veure alguns arxius.</p> <p>A la dreta, trobarĆ s 3 Ćŗtils pestanyes: <ul> <li>Difusió envia missatges a tots els nodes connectats a la vegada</li><li>El grĆ fic de xarxa propera mostra la xarxa al teu voltant, basant-se en la informació de descobriment</li> <li>Anell de claus contĆ© les claus que tens, principalment les reenviades pels nodes dels teus amics cap a tu</li> </ul> </p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Xat de difusió del RetroShare: Els missatges són enviats a tots els amics connectats. - - + + Network Xarxa - - Friend Server - - - - + Network graph GrĆ fic de xarxa - - <h1><img width="%1" 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> - - - - + Set your status message here. Estableix aquĆ­ el teu missatge d'estat. @@ -6861,17 +7459,7 @@ Comprova els teus ports! Contrasenya - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Tots els camps són obligatoris amb un mĆ­nim de 3 carĆ cters @@ -6881,12 +7469,17 @@ Comprova els teus ports! Les contrasenyes no coincideixen - + Port Port - + + Use BOB + Utilitza BOB + + + This password is for PGP Aquesta contrasenya Ć©s pel PGP @@ -6907,38 +7500,50 @@ Comprova els teus ports! Ha fallat la generació del teu nou certificat, potser la contrasenya PGP sigui incorrecta! - + Options + 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 - + Node type: @@ -6958,12 +7563,12 @@ Comprova els teus ports! - + <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 @@ -6973,43 +7578,42 @@ Comprova els teus ports! - + <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> - - Use I2P - - - - + <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 - + Advanced options + Opcions avanƧades + + + hidden address adreƧa oculta - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. El teu perfil estĆ  associat a un parell de clau PGP. RetroShare ara mateix ignora les claus DSA. - + <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> @@ -7057,13 +7661,13 @@ i utilitzar el botó d'importació per carregar-lo El teu perfil no s'ha desat. Hi ha hagut un error. - + Import profile Importar perfil - + Create new profile and new Retroshare node Crear un nou perfil i un node nou de Retroshare @@ -7073,7 +7677,7 @@ i utilitzar el botó d'importació per carregar-lo Crear un node nou de Retroshare - + Tor/I2P address AdreƧa Tor/I2P @@ -7108,7 +7712,7 @@ i utilitzar el botó d'importació per carregar-lo - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7118,7 +7722,12 @@ i utilitzar el botó d'importació per carregar-lo - + + BOB support is not available + + + + <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> @@ -7128,7 +7737,12 @@ i utilitzar el botó d'importació per carregar-lo <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 @@ -7354,13 +7968,36 @@ i utilitzar el botó d'importació per carregar-lo ComenƧant - + Invite Friends Convidar 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;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">El RetroShare Ć©s res sense els teus amics. Clica en el botó per comenƧar el procĆ©s.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Envia una invitació per correu electrònic amb el teu "Id de Certificat" al teus 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;">Assegurat de rebre la seva invitació tambĆ©... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">NomĆ©s pots connectar-te amb els teus amics si tots dos us heu afegit com amics.</span></p></body></html> + + + Add Your Friends to RetroShare Afegir els teus amics al RetroShare @@ -7370,103 +8007,136 @@ i utilitzar el botó d'importació per carregar-lo Afegir amics - - Connect To Friends - Connectar-se als amics - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Estigues en lĆ­nia a la vegada que els teus amics i el Retroshare automĆ ticament us connectarĆ !</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">El teu client necessita trobar la xarxa Retroshare abans de poder fer les connexions.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Això pot trigar entre 5-30 minuts la primera vegada que engegues el RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">L'indicador de DHT (A la barra d'estat) es tornarĆ  Verda quan pugui realitzar connexions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Al cap d'un parell de minuts, l'indicador de NAT (TambĆ© a la barra d'estat) canviarĆ  a Groc o Verd.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Si continua Vermell, tens un Tallafocs Dolentot que el Retroshare tĆ© problemes per travessar.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Busca a la secció d'Ajuda Extra per mĆ©s consells sobre connectar-se.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - AvanƧat: Obrir port del tallafocs +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Pots millorar el rendiment del Retroshare obrint un port extern. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Això accelerarĆ  les connexions i permetrĆ  que mĆ©s gent connecti amb tu. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">La forma mĆ©s senzilla de fer-ho Ć©s activant el UPnP en el teu encaminador o aparell Wifi.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Com que cada encaminador Ć©s diferent haurĆ s de ser tu qui trobi les instruccions per com fer-ho.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Si no saps de que t'estem parlant no hi pensis mĆ©s, el Retroshare continuarĆ  funcionant.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Tens problemes per iniciar-te amb el RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Mira la PMF Viqui. Ɖs una mica antiga, estem intentant posar-la al dia.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Busca en els fòrums en lĆ­nia. Fes preguntes i parla sobre les possibilitats.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Prova els fòrums interns de RetroShare </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">⇄- Apareixeran com disponibles quan et connectis amb amics.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) Si tot i aixĆ­ estĆ s encallat. Envia'ns un correu.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Disfruta utilitzant el RetroShare</span></p></body></html> - + + Connect To Friends + Connectar-se als amics + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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> + + + + Advanced: Open Firewall Port + AvanƧat: Obrir port del tallafocs + + + Further Help and Support MĆ©s ajuda i suport - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Obrir lloc web del RS @@ -7491,7 +8161,7 @@ p, li { white-space: pre-wrap; } Resposta de correu electrònic - + RetroShare Invitation Invitació al RetroShare @@ -7541,12 +8211,12 @@ p, li { white-space: pre-wrap; } Resposta per RetroShare - + RetroShare Support Suport del RetroShare - + It has many features, including built-in chat, messaging, TĆ© mĆŗltiples utilitats, incloent-hi xat, missatgeria, @@ -7670,7 +8340,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Mostra xat en grup @@ -7678,7 +8348,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Desconegut] @@ -7844,11 +8514,20 @@ p, li { white-space: pre-wrap; } 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. Pots fer que els teus amics sĆ piguen del teu fòrum compartint-lo amb ells. Escull els amics amb qui vols compartir el teu fòrum. + + Share topic admin permissions + Compartir els permisos d'administrador del tema + + + 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. + Pots permetre als teus amics editar el tema. Selecciona'ls a la llista inferior. +Nota: No es poden revocar els permisos d'administrador publicats + GroupTreeWidget - + Title TĆ­tol @@ -7861,12 +8540,12 @@ p, li { white-space: pre-wrap; } - + Description Descripció - + Number of Unread message @@ -7891,7 +8570,35 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Ordena en ordre descendent + + + Sort Ascending Order + Ordena en ordre ascendent + + + Sort by Name + Ordena per nom + + + Sort by Popularity + Ordena per popularitat + + + Sort by Last Post + Ordena per darrer missatge + + + Sort by Number of Posts + Ordenar per nombre de publicacións + + + Sort by Unread + Ordena per no llegit + + + You are admin (modify names and description using Edit menu) Ets l'administrador (Modifica noms i descripció utilitzant el menĆŗ Editar) @@ -7906,14 +8613,14 @@ p, li { white-space: pre-wrap; } Id - - + + Last Post Darrera publicació - + Name Nom @@ -7924,13 +8631,17 @@ p, li { white-space: pre-wrap; } Popularitat - + Never Mai - + Display + Mostra + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7943,7 +8654,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and i @@ -8079,7 +8790,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Canals @@ -8090,22 +8801,26 @@ p, li { white-space: pre-wrap; } Crear canal - + Enable Auto-Download Activa l'auto-descĆ rrega - + My Channels Els meus canals - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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> + + + + <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> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Canals subscrits @@ -8125,12 +8840,12 @@ p, li { white-space: pre-wrap; } Seleccionar directori de descarrega del canal - + Disable Auto-Download Desactivar auto-descĆ rrega - + Set download directory Seleccionar directori de descarrega @@ -8165,22 +8880,22 @@ p, li { white-space: pre-wrap; } - + Play Reproduir - + Open folder Obrir directori - + Open file - + Error Error @@ -8200,17 +8915,17 @@ p, li { white-space: pre-wrap; } Comprovant - + Are you sure that you want to cancel and delete the file? Segur que vols cancelĀ·lar i esborrar aquest arxiu? - + Can't open folder No es pot obrir el directori - + Play File Reproduir arxiu @@ -8220,10 +8935,37 @@ p, li { white-space: pre-wrap; } L'arxiu %1 no existeix a la ruta. + + GxsChannelFilesWidget + + Form + Formulari + + + Filename + Nom d'arxiu + + + Size + Mida + + + Title + TĆ­tol + + + Published + Publicat + + + Status + Estat + + GxsChannelGroupDialog - + Create New Channel Crear nou canal @@ -8261,19 +9003,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Subscriu-te al canal @@ -8287,7 +9019,7 @@ p, li { white-space: pre-wrap; } - + Expand Ampliar @@ -8302,7 +9034,7 @@ p, li { white-space: pre-wrap; } Descripció del canal - + Loading Carregant @@ -8317,9 +9049,8 @@ p, li { white-space: pre-wrap; } - - Never - Mai + New Channel + Nou canal @@ -8330,7 +9061,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Nou comentari: @@ -8351,7 +9082,7 @@ p, li { white-space: pre-wrap; } - + Play Reproduir @@ -8407,24 +9138,28 @@ p, li { white-space: pre-wrap; } Files Arxius + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + AvĆ­s! Tens menys de %1 hores i %2 minuts abans que aquest arxiu sigui esborrat. Considera desar-lo. + Hide Amagar - + New Nou - + 0 0 - - + + Comment Comentari @@ -8439,17 +9174,21 @@ p, li { white-space: pre-wrap; } No m'agrada - + Loading + Carregant + + + Loading... - + Comments Comentaris - + Post @@ -8474,16 +9213,139 @@ p, li { white-space: pre-wrap; } Reproduir Medi + + GxsChannelPostsWidget + + Post to Channel + Publica al canal + + + Add new post + Afegir nova publicació + + + Loading + Carregant + + + Search channels + Cercar canals + + + Title + TĆ­tol + + + Search Title + Cerca tĆ­tol + + + Message + Missatge + + + Search Message + Cercar missatge + + + Filename + Nom d'arxiu + + + Search Filename + Cercar arxiu + + + No Channel Selected + No hi ha canal seleccionat + + + Never + Mai + + + Public + PĆŗblic + + + Restricted to members of circle " + Restringit a membres del cercle " + + + Restricted to members of circle + Restringit a membres del cercle + + + Your eyes only + NomĆ©s per tu + + + You and your friend nodes + Per tu i pels nodes dels teus amics + + + Disable Auto-Download + Desactivar auto-descĆ rrega + + + Enable Auto-Download + Activar auto-descĆ rrega + + + Show feeds + Mostra fonts + + + Show files + Mostra arxius + + + Administrator: + Administrador: + + + Last Post: + Última publicació: + + + unknown + desconegut + + + Distribution: + Distribució: + + + Feeds + Fonts + + + Files + Arxius + + + Subscribers + Subscriptors + + + Description: + Descripció: + + + Posts (at neighbor nodes): + Publicat (A nodes veĆÆns): + + GxsChannelPostsWidgetWithModel - + Post to Channel Publica al canal - + Add new post Afegir nova publicació @@ -8553,7 +9415,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8579,7 +9441,7 @@ p, li { white-space: pre-wrap; } Details - Detalls + @@ -8589,7 +9451,7 @@ p, li { white-space: pre-wrap; } - + Comments Comentaris @@ -8604,13 +9466,13 @@ p, li { white-space: pre-wrap; } Fonts - - + + Click to switch to list view - + Show unread posts only @@ -8625,7 +9487,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8640,7 +9502,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8700,22 +9562,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8790,13 +9642,12 @@ p, li { white-space: pre-wrap; } Per tu i pels nodes dels teus amics - - + Copy Retroshare link - + Subscribed Subscrit @@ -8833,7 +9684,7 @@ p, li { white-space: pre-wrap; } Enable Auto-Download - Activa l'auto-descĆ rrega + @@ -8847,17 +9698,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8877,11 +9728,27 @@ p, li { white-space: pre-wrap; } Remove Item Eliminar l'element + + for identity + 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: + @@ -8972,7 +9839,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Contenidor de comentari @@ -8985,7 +9852,7 @@ p, li { white-space: pre-wrap; } Formulari - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9015,7 +9882,7 @@ p, li { white-space: pre-wrap; } Refrescar - + Comment Comentari @@ -9054,7 +9921,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Resposta al comentari @@ -9078,21 +9945,6 @@ p, li { white-space: pre-wrap; } Vote Down Votar negatiu - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9102,7 +9954,7 @@ p, li { white-space: pre-wrap; } Fer comentari - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9131,10 +9983,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Comentari</span></p></body></html> + + + Signed by + Signat per + Reply to Comment @@ -9163,7 +10031,7 @@ before you can comment abans de poder comentar - + It remains %1 characters after HTML conversion. @@ -9205,6 +10073,14 @@ abans de poder comentar Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Afegir administradors de fòrum + + + Select Forum Admins + Seleccionar administradors de fòrum + Create @@ -9214,7 +10090,7 @@ abans de poder comentar GxsForumGroupItem - + Subscribe to Forum Subscriure's al fòrum @@ -9230,7 +10106,7 @@ abans de poder comentar - + Expand Ampliar @@ -9250,9 +10126,8 @@ abans de poder comentar - - TextLabel - + Loading + Carregant @@ -9283,13 +10158,13 @@ abans de poder comentar GxsForumMsgItem - - + + Subject: Assumpte: - + Unsubscribe To Forum Donar de baixa del fòrum @@ -9300,7 +10175,7 @@ abans de poder comentar - + Expand Ampliar @@ -9320,17 +10195,21 @@ abans de poder comentar En resposta a: - + Loading + Carregant + + + Loading... - + Forum Feed Font del fòrum - + Hide Amagar @@ -9343,66 +10222,63 @@ abans de poder comentar Formulari - + Start new Thread for Selected Forum ComenƧa nova conversa al fòrum seleccionat - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Cercar fòrums - + Last Post + Darrer missatge + + + New Thread Nova conversa + + + Threaded View + Vista per conversa + + + + Flat View + Vista plana + - + Title TĆ­tol - - + + Date Data - + Author Autor - + + Save image + Desar imatge + + + Loading Carregant - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9412,7 +10288,12 @@ abans de poder comentar - + + Lastest post in thread + + + + Reply Message Respondre missatge @@ -9436,6 +10317,10 @@ abans de poder comentar Download all files Descarregar tots els arxius + + Next unread + Següent no llegit + Search Title @@ -9452,23 +10337,35 @@ abans de poder comentar Cerca autor - + Content + Contingut + + + Search Content + Cerca contingut + + + <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> + + + No name Sense nom - - + + Reply Resposta - + <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> - + Loading... @@ -9511,12 +10408,20 @@ abans de poder comentar Copia l'enllaƧ RetroShare - + Hide Amagar - + Expand + Ampliar + + + [Banned] + [Expulsat] + + + [unknown] [desconegut] @@ -9546,8 +10451,8 @@ abans de poder comentar NomĆ©s per tu - - + + Distribution Distribució @@ -9561,6 +10466,26 @@ abans de poder comentar Anti-spam Anti-spam + + [ ... Redacted message ... ] + [ ... Missatge modificat ... ] + + + Anonymous + Anònim + + + signed + signat + + + none + cap + + + [ ... Missing Message ... ] + [ ... Missatge perdut ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9630,12 +10555,16 @@ abans de poder comentar Missatge original - + New thread Nova conversa - + Read status + Estat de lectura + + + Edit Editar @@ -9696,7 +10625,7 @@ abans de poder comentar Reputació de l'autor - + Show column @@ -9716,7 +10645,7 @@ abans de poder comentar - + Anonymous/unknown posts forwarded if reputation is positive Els missatges anònims/desconeguts es propagaran si la reputació Ć©s positiva @@ -9768,7 +10697,7 @@ This message is missing. You should receive it later. - + No result. @@ -9778,7 +10707,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9793,7 +10722,26 @@ This message is missing. You should receive it later. - + 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) @@ -9802,6 +10750,10 @@ This message is missing. You should receive it later. (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 + From @@ -9859,12 +10811,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> - + Forums Fòrums @@ -9895,16 +10847,35 @@ This message is missing. You should receive it later. Altres fòrums + + GxsForumsFillThread + + Waiting + Esperant + + + Retrieving + Recuperant + + + Loading + Carregant + + GxsGroupDialog - + Name Nom - + Add Icon + Afegir icona + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Els destinataris de les claus poden publicar en grups restringits, i poden veure i publicar en canals privats @@ -9913,14 +10884,22 @@ This message is missing. You should receive it later. Share Publish Key Compartir clau pĆŗblica + + check peers you would like to share private publish key with + comprovar els contactes amb qui t'agradaria compartir les claus de publicació + + + Share Key With + Compartir clau amb + - + Description Descripció - + Message Distribution Distribució de missatge @@ -9928,7 +10907,7 @@ This message is missing. You should receive it later. - + Public PĆŗblic @@ -9947,6 +10926,14 @@ This message is missing. You should receive it later. New Thread Nova conversa + + Required + Requerit + + + Encrypted Msgs + Encriptar missatge + Personal Signatures @@ -9988,7 +10975,7 @@ This message is missing. You should receive it later. Protecció-Spam - + Comments: Comentari: @@ -10011,7 +10998,7 @@ This message is missing. You should receive it later. Anti Spam: - + All People @@ -10027,12 +11014,12 @@ This message is missing. You should receive it later. - + Restricted to circle: Restringit al cercle: - + Limited to your friends Limitat als teus amics @@ -10049,23 +11036,23 @@ This message is missing. You should receive it later. - + Message tracking Seguiment de missatges - - + + PGP signature required Signatura PGP requerida - + Never Mai - + Only friends nodes in group NomĆ©s els nodes d'amics al grup @@ -10081,28 +11068,30 @@ This message is missing. You should receive it later. Si us plau, afegeix un nom - + PGP signature from known ID required Signatura PGP de ID coneguda requerida - - - [None] - - - - + Load Group Logo Carrega logotip del grup - + Submit Group Changes Publicar canvis al grup - + Failed to Prepare Group MetaData - please Review + Fallo al preparar les metadades del Grup - Revisa-les + + + Will be used to send feedback + S'utilitzarĆ  per enviar resposta + + + Owner: Propietari: @@ -10112,12 +11101,12 @@ This message is missing. You should receive it later. Estableix una descripció - + Info Informació - + ID ID @@ -10127,7 +11116,7 @@ This message is missing. You should receive it later. Darrer missatge - + <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> @@ -10202,12 +11191,7 @@ This message is missing. You should receive it later. Defavorir IDs no signats i IDs de nodes desconeguts - - Author: - - - - + Popularity Popularitat @@ -10223,22 +11207,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create Crear - + + Author + Autor + + + GxsIdLabel EtiquetaGxsId @@ -10246,7 +11235,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Carregant @@ -10306,7 +11295,7 @@ This message is missing. You should receive it later. Editar detalls - + Synchronise posts of last... Sincronitza els missatges dels/de les Ćŗltims/es... @@ -10363,12 +11352,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + Compartir permisos de publicació + + + Copy RetroShare Link Copia l'enllaƧ RetroShare @@ -10391,7 +11384,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Sense signatura @@ -10404,24 +11397,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Carregant + + + Not found No trobat + + No Signature + Sense signatura + - - + + [Banned] [Expulsat] + + Authentication + Autenticació + unknown Key clau desconeguda - + anonymous + anònim + + + Loading... @@ -10431,12 +11440,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Identitat&nbsp;nom @@ -10450,20 +11454,16 @@ This message is missing. You should receive it later. Node Node + + Signed&nbsp;by + Signat&nbsp;per + [Unknown] [Desconegut] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10475,7 +11475,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10523,13 +11523,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Desconegut] GxsMessageFramePostWidget + + Loading + Carregant + Loading... @@ -10646,6 +11650,10 @@ This message is missing. You should receive it later. Group ID / Author ID Grup / Autor + + Number of messages / Publish TS + Nombre de missatges / TS publicats + Local size of data @@ -10661,6 +11669,10 @@ This message is missing. You should receive it later. Popularity Popularitat + + Details + Dells + @@ -10693,6 +11705,41 @@ This message is missing. You should receive it later. No + + GxsTunnelsDialog + + Authenticated tunnels: + TĆŗnels autenticats: + + + Tunnel ID: %1 + ID tĆŗnel: %1 + + + from: %1 + de: %1 + + + to: %1 + a: %1 + + + status: %1 + estat: %1 + + + total sent: %1 bytes + total enviat: %1 bytes + + + total recv: %1 bytes + Total rebut: %1 bytes + + + Unknown Peer + Contacte desconegut + + HashBox @@ -10905,12 +11952,48 @@ This message is missing. You should receive it later. About Sobre + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10926,7 +12009,7 @@ p, li { white-space: pre-wrap; } - + Authors Autors @@ -10945,7 +12028,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10958,6 +12041,38 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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;">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;">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-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> + License Agreement @@ -11023,12 +12138,12 @@ p, li { white-space: pre-wrap; } Formulari - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11043,7 +12158,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11052,12 +12167,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + 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, @@ -11067,12 +12202,20 @@ private and secure decentralized communication platform. - + 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 @@ -11082,7 +12225,7 @@ private and secure decentralized communication platform. Desar el teu certificar a un arxiu - + Send via Email Enviar per correu @@ -11102,37 +12245,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11144,12 +12263,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11158,11 +12282,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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 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 + Save as... @@ -11434,14 +12566,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Tot - + Reputation Reputació @@ -11451,12 +12583,12 @@ p, li { white-space: pre-wrap; } Cerca - + Anonymous Id Id anònim - + Create new Identity Crear nova identitat @@ -11466,7 +12598,7 @@ p, li { white-space: pre-wrap; } Crear nou cercle - + Persons Persones @@ -11481,27 +12613,27 @@ p, li { white-space: pre-wrap; } Persona - + Close Tancar - + Ban-option: 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 @@ -11517,39 +12649,29 @@ p, li { white-space: pre-wrap; } Vots negatius - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics EstadĆ­stiques d'Ćŗs - + Circles Cercles - + Circle name Nom del cercle @@ -11569,20 +12691,18 @@ p, li { white-space: pre-wrap; } Cercles personals - + - Edit identity Editar identitat - - + Delete identity Esborrar identitat - + Chat with this peer Xatejar amb aquest contacte @@ -11592,78 +12712,98 @@ p, li { white-space: pre-wrap; } ComenƧar un xat distant amb aquest contacte - + Owner node ID : Id del node propietari: - + Identity name : Nom de la identitat: - + () () - + Identity ID Id d'identitat - + Send message Enviar missatge - + Identity info Informació d'identitat - + Identity ID : Id d'identitat: - + Owner node name : Nom del node propietari: - + Create new... Crear nou... - + Type: Tipus: - + Send Invite Enviar invitació - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> <html><head/><body><p>La opinió mitjana dels nodes veĆÆns sobre aquesta identitat. Negativa Ć©s dolent,</p><p>positiva Ć©s bo. Zero Ć©s neutre.</p></body></html> - + Your opinion: La teva opinió: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> + + + Negative Negatiu - + Neutral Neutre @@ -11674,17 +12814,17 @@ p, li { white-space: pre-wrap; } Positiu - + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> <html><head/><body><p>La puntuació de reputació global, calculada amb les teves puntuacions i la dels teus amics.</p><p>Negativa Ć©s dolent, positiva Ć©s bo. Zero Ć©s neutre. Si la puntuació Ć©s massa baixa,</p><p>la identitat es marca com dolenta, i es filtrarĆ  als fòrums, sales de xat,</p><p>canals, etc.</p></body></html> - + Overall: Global: - + Anonymous Anònim @@ -11699,24 +12839,24 @@ p, li { white-space: pre-wrap; } ID cerca - + This identity is owned by you Aquesta identitat Ć©s propietat teva - - + + My own identities Les meves identitats - - + + My contacts Els meus contactes - + Show Items Mostrar elements @@ -11731,12 +12871,7 @@ p, li { white-space: pre-wrap; } Associat al meu node - - <h1><img width="%1" 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> - - - - + Other circles Altres cercles @@ -11746,7 +12881,7 @@ p, li { white-space: pre-wrap; } Cercles als que pertanyo - + Circle ID: ID Cercle: @@ -11821,7 +12956,7 @@ p, li { white-space: pre-wrap; } No ets membre (No tens accĆ©s a dades limitades a aquest cercle) - + Identity ID: Id d'identitat: @@ -11851,7 +12986,7 @@ p, li { white-space: pre-wrap; } desconegut - + Invited Convidat @@ -11866,7 +13001,7 @@ p, li { white-space: pre-wrap; } Membre - + Edit Circle Editar cercle @@ -11914,7 +13049,7 @@ p, li { white-space: pre-wrap; } Permet pertinenƧa - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11925,7 +13060,7 @@ T'hauries de lliurar d'ella i utilitzar-ne una de nova. Aquestes identitats deixaran de ser suportades en breu. - + [Unknown node] [Node desconegut] @@ -11968,7 +13103,7 @@ Aquestes identitats deixaran de ser suportades en breu. Identitat anònima - + Boards @@ -12048,7 +13183,7 @@ Aquestes identitats deixaran de ser suportades en breu. - + information informació @@ -12064,12 +13199,29 @@ Aquestes identitats deixaran de ser suportades en breu. 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? + + + Banned Expulsat - + + <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 @@ -12113,11 +13265,19 @@ Aquestes identitats deixaran de ser suportades en breu. Forums Fòrums + + Posted + Enviat + Chat Xat + + Unknown + Desconegut + [Unknown] @@ -12138,6 +13298,14 @@ Aquestes identitats deixaran de ser suportades en breu. 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. @@ -12158,11 +13326,19 @@ Aquestes identitats deixaran de ser suportades en breu. 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. @@ -12174,7 +13350,11 @@ Aquestes identitats deixaran de ser suportades en breu. Desencriptació genĆØrica - + Membership verification in circle %1. + Comprovació de pertinenƧa al cercle %1. + + + Add to Contacts Afegir a contactes @@ -12224,21 +13404,21 @@ Aquestes identitats deixaran de ser suportades en breu. Hola,<br> vull ser amic amb tu en el RetroShare.<br> - - - + + + People Gent - + Your Avatar Click here to change your avatar El teu avatar - + Linked to neighbor nodes Associat a nodes veĆÆns @@ -12248,7 +13428,7 @@ Aquestes identitats deixaran de ser suportades en breu. Associat a nodes distants - + Linked to a friend Retroshare node Associat a un node de RetroShare d'un amic @@ -12263,7 +13443,7 @@ Aquestes identitats deixaran de ser suportades en breu. Associat a un node de RetroShare desconegut - + Chat with this person Xat amb aquesta persona @@ -12278,12 +13458,12 @@ Aquestes identitats deixaran de ser suportades en breu. Xat distant rebutjat amb aquesta persona. - + Last used: Últim utilitzat: - + +50 Known PGP +50 PGP conegut @@ -12303,12 +13483,12 @@ Aquestes identitats deixaran de ser suportades en breu. EstĆ s segur de voler esborrar aquesta identitat? - + Owned by Propietat de - + Node name: Nom del node: @@ -12318,7 +13498,7 @@ Aquestes identitats deixaran de ser suportades en breu. ID node : - + Really delete? Segur que vols esborrar? @@ -12326,7 +13506,7 @@ Aquestes identitats deixaran de ser suportades en breu. IdEditDialog - + Nickname Sobrenom @@ -12356,7 +13536,7 @@ Aquestes identitats deixaran de ser suportades en breu. Pseudònim - + Import image @@ -12366,19 +13546,12 @@ Aquestes identitats deixaran de ser suportades en breu. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Nova identitat @@ -12392,7 +13565,7 @@ Aquestes identitats deixaran de ser suportades en breu. - + @@ -12402,12 +13575,7 @@ Aquestes identitats deixaran de ser suportades en breu. N/A - - No avatar chosen - - - - + Edit identity Editar identitat @@ -12418,27 +13586,27 @@ Aquestes identitats deixaran de ser suportades en breu. Actualitza - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12458,7 +13626,7 @@ Aquestes identitats deixaran de ser suportades en breu. - + Identity update failed @@ -12468,7 +13636,11 @@ Aquestes identitats deixaran de ser suportades en breu. - + Error getting key! + Error obtenint clau! + + + Error KeyID invalid Error de IDClau invĆ lida @@ -12483,7 +13655,7 @@ Aquestes identitats deixaran de ser suportades en breu. Nom real desconegut - + Create New Identity Crear nova identitat @@ -12493,15 +13665,10 @@ Aquestes identitats deixaran de ser suportades en breu. Tipus - + Choose image... - - - Remove - Treure - @@ -12527,7 +13694,7 @@ Aquestes identitats deixaran de ser suportades en breu. Afegir - + Create Crear @@ -12537,13 +13704,17 @@ Aquestes identitats deixaran de ser suportades en breu. - + Your Avatar Click here to change your avatar El teu avatar - + Set Avatar + Escull avatar + + + Linked to your profile Associat al teu perfil @@ -12553,7 +13724,7 @@ Aquestes identitats deixaran de ser suportades en breu. Pots tindre una o mĆ©s identitats. S'utilitzen quan escrius en sales de xat, fòrums i comentes en canals. Funcionen tambĆ© com a destinataris en xats distants i en el sistema de correu distant de RetroShare. - + The nickname is too short. Please input at least %1 characters. El sobrenom Ć©s massa curt. Si us plau, introdueix com a mĆ­nim %1 carĆ cters. @@ -12612,6 +13783,10 @@ Aquestes identitats deixaran de ser suportades en breu. PGP name: Nom PGP: + + GXS id: + id GXS: + PGP id: @@ -12627,7 +13802,7 @@ Aquestes identitats deixaran de ser suportades en breu. - + Copy Copiar @@ -12637,12 +13812,12 @@ Aquestes identitats deixaran de ser suportades en breu. Treure - + %1 's Message History - + Mark all Marcar totes @@ -12661,38 +13836,26 @@ Aquestes identitats deixaran de ser suportades en breu. Quote Cita + + Send + Enviar + ImageUtil - - + + Save image Desar imatge - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename No es pot guardar la imatge, nom de l'arxiu invĆ lid - - Copy image - - - - - + Not an image No Ć©s una imatge @@ -12710,32 +13873,27 @@ Aquestes identitats deixaran de ser suportades en breu. - + Enable RetroShare JSON API Server - + Port: Port: - + Listen Address: - - Status: - Estat: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12756,12 +13914,7 @@ Aquestes identitats deixaran de ser suportades en breu. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12770,31 +13923,26 @@ Aquestes identitats deixaran de ser suportades en breu. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Obrir arxiu - + Open Folder Obrir directori - + Checking... Comprovant... @@ -12804,7 +13952,7 @@ Aquestes identitats deixaran de ser suportades en breu. comprovar arxius - + Recommend in a message to... Recomanar en un missatge a... @@ -12832,7 +13980,7 @@ Aquestes identitats deixaran de ser suportades en breu. MainWindow - + Add Friend Afegeix amic @@ -12848,8 +13996,7 @@ Aquestes identitats deixaran de ser suportades en breu. - - + Options Opcions @@ -12870,7 +14017,7 @@ Aquestes identitats deixaran de ser suportades en breu. - + Quit Sortir @@ -12881,12 +14028,12 @@ Aquestes identitats deixaran de ser suportades en breu. Auxiliar d'inici rĆ pid - + RetroShare %1 a secure decentralized communication platform RetroShare %1 Ć©s una plataforma de comunicació segura descentralitzada - + Unfinished Inacabat @@ -12913,12 +14060,11 @@ Si us plau, allibera una mica d'espai i clica Ok. - Status Estat - + Notify Notificar @@ -12929,35 +14075,31 @@ Si us plau, allibera una mica d'espai i clica Ok. - Open Messages Obrir Missatges - - + Bandwidth Graph GrĆ fic d'ample de banda - + Applications Aplicacions - Help Ajuda - - + Minimize Minimitzar - + Maximize Maximitzar @@ -12972,12 +14114,7 @@ Si us plau, allibera una mica d'espai i clica Ok. RetroShare - - Close window - - - - + %1 new message %1 missatges nous @@ -13007,7 +14144,7 @@ Si us plau, allibera una mica d'espai i clica Ok. %1 amics connectats - + Do you really want to exit RetroShare ? Segur que vols sortir del RetroShare? @@ -13027,7 +14164,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Mostra - + Make sure this link has not been forged to drag you to a malicious website. Assegura't de que aquest enllaƧ no ha estat modificat per portar-te a un lloc web malicios. @@ -13072,13 +14209,12 @@ Si us plau, allibera una mica d'espai i clica Ok. Taula de permisos dels serveis - - + Statistics EstadĆ­stiques - + Show web interface Mostrar interficie web @@ -13093,7 +14229,7 @@ Si us plau, allibera una mica d'espai i clica Ok. directori s'estĆ  acabant (L'actual lĆ­mit Ć©s - + Really quit ? Segur que vols sortir ? @@ -13102,17 +14238,17 @@ Si us plau, allibera una mica d'espai i clica Ok. MessageComposer - + Compose Redacta - + Contacts Contactes - + Paragraph ParĆ graf @@ -13148,12 +14284,12 @@ Si us plau, allibera una mica d'espai i clica Ok. CapƧalera 6 - + Font size Mida del tipus de lletra - + Increase font size Augmentar la mida del tipus de lletra @@ -13168,32 +14304,32 @@ Si us plau, allibera una mica d'espai i clica Ok. Negreta - + Italic Cursiva - + Alignment Alineació - + Add an Image Afegir una imatge - + Sets text font to code style Posa el tipus de lletra del text com si fos codi - + Underline Subratllat - + Subject: Assumpte: @@ -13204,32 +14340,32 @@ Si us plau, allibera una mica d'espai i clica Ok. - + Tags Etiquetes - + Address list: Llista d'adreces: - + Recommend this friend Recomanar aquest amic - + Set Text color Estableix color de lletra - + Set Text background color Estableix color de fons de la lletra - + Recommended Files Arxius recomanats @@ -13299,7 +14435,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Afegir citació - + Send To: Enviar a: @@ -13323,6 +14459,10 @@ Si us plau, allibera una mica d'espai i clica Ok. &Justify &Justificat + + All addresses (mixed) + Totes les adreces (mesclades) + All people @@ -13334,7 +14474,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Els meus contactes - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hola,<br>Et recomano un bon amic meu; pots confiar en ell si confies en mi. <br> @@ -13354,18 +14494,18 @@ Si us plau, allibera una mica d'espai i clica Ok. vol ser amic teu al 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 Hola %1, <br><br>%2 vol ser amic teu al RetroShare.<br><br>Respondre ara:<br>%3 <br><br>GrĆ cies,<br>L'equip RetroShare - - + + Save Message Desar el missatge - + Message has not been Sent. Do you want to save message to draft box? El missatge no s'ha enviat. @@ -13377,17 +14517,7 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Enganxa l'enllaƧ RetroShare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Afegir a "A" @@ -13407,7 +14537,7 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Afegir com a recomanat - + Original Message Missatge original @@ -13417,21 +14547,21 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Des de - + - + To A - - + + Cc CC - + Sent Enviat @@ -13446,7 +14576,7 @@ Vols desar el missatge a la bĆŗstia d'esborranys? A %1, %2 va escriure: - + Re: Re: @@ -13456,30 +14586,30 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Reenvia: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Vols enviar el missatge sense especificar un assumpte? - + Please insert at least one recipient. Si us plau, introdueix almenys un destinatari. - + Bcc C/o - + Unknown Desconegut @@ -13594,13 +14724,13 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Detalls - + Open File... Obrir arxiu... - + HTML-Files (*.htm *.html);;All Files (*) Arxius HTML (*.htm *.html);;Tots els arxius (*) @@ -13620,7 +14750,7 @@ Vols desar el missatge a la bĆŗstia d'esborranys? Exportar a PDF - + Message has not been Sent. Do you want to save message ? El missatge no s'ha enviat. @@ -13642,7 +14772,7 @@ Voleu desar el missatge? Afegir arxiu extra - + Hi,<br>I want to be friends with you on RetroShare.<br> Hola,<br> vull ser amic amb tu en el RetroShare.<br> @@ -13666,24 +14796,28 @@ Voleu desar el missatge? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Tens una petició d'amistat + Respond now: Respondre ara: - - + + Close Tancar - + From: De: - + Friend Nodes Nodes de l'amic @@ -13728,13 +14862,13 @@ Voleu desar el missatge? Llista ordenada (romanic ascendent) - - + + Thanks, <br> GrĆ cies, <br> - + Distant identity: Identitat distant: @@ -13744,12 +14878,12 @@ Voleu desar el missatge? [Falta] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Si us plau, crea una identitat per signar missatges distants o treu els contactes distants de la llista de destinataris. - + Node name & id: Nom i Id del node: @@ -13827,7 +14961,7 @@ Voleu desar el missatge? Per defecte - + A new tab Una pestanya nova @@ -13837,7 +14971,7 @@ Voleu desar el missatge? Una finestra nova - + Edit Tag Editar etiqueta @@ -13860,7 +14994,7 @@ Voleu desar el missatge? MessageToaster - + Sub: Sub: @@ -13868,7 +15002,7 @@ Voleu desar el missatge? MessageUserNotify - + Message Missatge @@ -13896,7 +15030,7 @@ Voleu desar el missatge? MessageWidget - + Recommended Files Arxius recomanats @@ -13906,37 +15040,37 @@ Voleu desar el missatge? Descarregar tots els arxius recomanats - + Subject: Assumpte: - + From: De: - + To: A: - + Cc: CC: - + Bcc: C/o: - + Tags: Etiquetes: - + Reply Resposta @@ -13976,7 +15110,7 @@ Voleu desar el missatge? - + Send Invite Envia invitació @@ -14028,7 +15162,7 @@ Voleu desar el missatge? - + Confirm %1 as friend Confirma %1 com amic @@ -14038,12 +15172,12 @@ Voleu desar el missatge? Afegeix %1 com amic - + View source - + No subject Sense assumpte @@ -14053,22 +15187,17 @@ Voleu desar el missatge? Descarregar - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14078,23 +15207,21 @@ Voleu desar el missatge? - - Show less - + Send invite? + Enviar invitació? - - Show more - + Do you really want send a invite with your Certificate? + EstĆ s segur de voler enviar una invitació amb el teu certificat? - + Download all Descarregar tot - + Print Document Imprimir document @@ -14109,12 +15236,12 @@ Voleu desar el missatge? Arxius-HTML (*.htm *.html);;Tots els arxius (*) - + Load images always for this message Carregar sempre les imatges per aquest missatge - + Hide the attachment pane Oculta el panell d'adjunció @@ -14136,6 +15263,42 @@ Voleu desar el missatge? Compose Redacta + + Reply to selected message + Respon al missatge seleccionat + + + Reply + Resposta + + + Reply all to selected message + Respondre a tothom del missatge seleccionat + + + Reply all + Respon a tothom + + + Forward selected message + Reenviar missatge seleccionat + + + Forward + Endavant + + + Remove selected message + Esborra el missatge seleccionat + + + Delete + Esborrar + + + Print selected message + Imprimir el missatge seleccionat + Print @@ -14214,7 +15377,7 @@ Voleu desar el missatge? MessagesDialog - + New Message Missatge nou @@ -14224,16 +15387,60 @@ Voleu desar el missatge? Redacta - + Reply to selected message + Respon al missatge seleccionat + + + Reply + Resposta + + + Reply all to selected message + Respon a tothom del missatge seleccionat + + + Reply all + Respon a tothom + + + Forward selected message + Reenviar missatge seleccionat + + + Foward + Reenvia + + + Remove selected message + Esborra el missatge seleccionat + + + Delete + Esborrar + + + Print selected message + Imprimir el missatge seleccionat + + + Print + Impressió + + + Display + Mostra + + + - - + + Tags Etiquetes - - + + Inbox Safata d'entrada @@ -14263,17 +15470,21 @@ Voleu desar el missatge? Paperera - + Total Inbox: Total safata d'entrada: - + Folders + Carpetes + + + Quick View Vista rĆ pida - + Print... Impressió... @@ -14283,6 +15494,26 @@ Voleu desar el missatge? Print Preview PrĆØvia d'impressió + + Buttons Icon Only + Botons: NomĆ©s icona + + + Buttons Text Beside Icon + Botons: Text al costat de la icona + + + Buttons with Text + Botons: amb text + + + Buttons Text Under Icon + Botons: Text sota la icona + + + Set Text Under Icon + Establir text sota la icona + Save As... @@ -14304,7 +15535,7 @@ Voleu desar el missatge? Reenviar missatge - + Subject Assumpte @@ -14314,7 +15545,7 @@ Voleu desar el missatge? Des de - + Date Data @@ -14324,7 +15555,39 @@ Voleu desar el missatge? Contingut - + Click to sort by attachments + Clica per ordenar pels fitxers adjunts + + + Click to sort by subject + Clica per ordenar per assumptes + + + Click to sort by read + Clica per ordenar per llegits + + + Click to sort by from + Clica per ordenar pel remitent + + + Click to sort by date + Clica per ordenar per data + + + Click to sort by tags + Clica per ordenar per etiquetes + + + Click to sort by star + Clica per ordenar per marcats + + + Forward selected Message + Reenviar missatge seleccionat + + + Search Subject Assumpte de la cerca @@ -14333,11 +15596,6 @@ Voleu desar el missatge? Search From Cerca de - - - Search To - - Search Date @@ -14364,14 +15622,14 @@ Voleu desar el missatge? Cerca adjunts - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Missatges</h1> <p>Retroshare tĆ© el seu propi sistema de correu electrònic. Pots enviar/rebre correus de/a els nodes dels teus amics.</p> <p>TambĆ© Ć©s possible enviar missatges a identitats d'altra gent utilitzant el sistema de encaminament global. Aquests missatges són sempre encriptats i reenviats per nodes intermediaris fins que arriben al seu destĆ­. </p> <p>Els missatges distants es queden a la teva bustia de sortints fins que no es rep confirmació d'entrega.</p> <p>Generalment s'envien missatges per recomanar arxius a amics enviant els enllaƧos, recomanar nodes d'amics a altres amics, per millorar la teva xarxa, o respostes a propietaris de canals.</p> - + Starred - + Marcat @@ -14445,7 +15703,7 @@ Voleu desar el missatge? - Show in People + Show author in People @@ -14459,7 +15717,7 @@ Voleu desar el missatge? - + No message using %1 tag available. @@ -14474,33 +15732,38 @@ Voleu desar el missatge? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Esborranys - + No Box selected. - - To - A + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + No hi ha missatges marcats. Les marques et permeten donar als missatges un estat especial per trobar-los fĆ cilment. Per marcar un missatge clica a l'estrella gris al costat del missatge. - + No system messages available. + No hi ha missatges de sistema disponibles. + + + To + A + + + Click to sort by to + Clica per ordenar per destinatari + + + This message goes to a distant person. + Aquest missatge va cap a una persona distant. + + + @@ -14508,6 +15771,26 @@ Voleu desar el missatge? Total: Total: + + Messages + Missatges + + + Click to sort by signature + Clica per ordenar per signatura + + + This message was signed and the signature checks + Aquest missatge Ć©s firmat i la signatura vĆ lida + + + This message was signed but the signature doesn't check + Aquest missatge estĆ  signat però la signatura no Ć©s vĆ lida + + + This message comes from a distant person. + Aquest missatge provĆ© d'una persona distant. + Mail @@ -14535,17 +15818,7 @@ Voleu desar el missatge? MimeTextEdit - - Save image - Desar imatge - - - - Copy image - - - - + Paste as plain text Enganxa com a text pla @@ -14599,7 +15872,7 @@ Voleu desar el missatge? - + Expand Ampliar @@ -14609,7 +15882,7 @@ Voleu desar el missatge? Eliminar l'element - + from des de @@ -14644,10 +15917,18 @@ Voleu desar el missatge? Msg pendent - + Hide Amagar + + 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? + NATStatus @@ -14785,7 +16066,7 @@ Voleu desar el missatge? ID del contacte - + Remove unused keys... Eliminar claus no utilitzades... @@ -14795,7 +16076,7 @@ Voleu desar el missatge? - + Clean keyring Neteja el clauer @@ -14812,13 +16093,7 @@ Notes: Es guardarĆ  una copia de seguretat del teu clauer antic. L'eliminació potser falli si tens mĆŗltiples instancies de RetroShare a la mateixa mĆ quina. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Informació del clauer @@ -14853,13 +16128,18 @@ Per seguretat, s'ha fet una copia de seguretat del teu clauer Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. InconsistĆØncia de dades al clauer. Això Ć©s probablement un "bug". Si us plau, contacta amb els desenvolupadors. + + + Export/create a new node + Exporta/Crea un node nou + Trusted keys only NomĆ©s claus de confianƧa - + Search name Cercar nom @@ -14869,12 +16149,12 @@ Per seguretat, s'ha fet una copia de seguretat del teu clauer Cerca Id contacte - + Profile details... Detalls del perfil... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14883,6 +16163,13 @@ Reported error: Error reportat: + + NetworkPage + + Network + Xarxa + + NetworkView @@ -14909,7 +16196,7 @@ Error reportat: NewFriendList - + Offline Friends @@ -14930,7 +16217,7 @@ Error reportat: - + Groups Grups @@ -14960,19 +16247,19 @@ Error reportat: importar la teva llista d'amics, incloent els grups - - + + Search - + ID ID - + Search ID ID cerca @@ -14982,12 +16269,12 @@ Error reportat: - + Show Items Mostrar elements - + Last contact @@ -14997,7 +16284,7 @@ Error reportat: IP - + Group Grup @@ -15112,7 +16399,7 @@ Error reportat: Contreure tot - + Do you want to remove this node? Voleu suprimir aquest node? @@ -15122,7 +16409,7 @@ Error reportat: Voleu suprimir aquest amic? - + Done! Fet! @@ -15236,7 +16523,11 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup NewsFeed - + Log entries + Entrades en el registre + + + Activity Stream @@ -15251,7 +16542,11 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Suprimeix-ho tot - + This is a test. + Això Ć©s un test. + + + Newest on top El mĆ©s nou a dalt @@ -15261,12 +16556,21 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup El mĆ©s vell a dalt - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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 + + + Activity @@ -15321,6 +16625,10 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Blogs Blocs + + Security + Seguretat + @@ -15342,6 +16650,10 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Message Missatge + + Connect attempt + Intent de connexió + @@ -15358,6 +16670,10 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Ip security Seguretat Ip + + Log + Registre + Friend Connected @@ -15368,6 +16684,10 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Circles Cercles + + Links + EnllaƧos + Activity @@ -15420,6 +16740,26 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup 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 + Position @@ -15496,16 +16836,24 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Disable All Toaster temporarily Deshabilitar notificacions temporalment + + Feed + Font + Systray ƀrea de notificació + + Count all unread messages + Comptar tots els missatges no llegits + NotifyQt - + Passphrase required Es requereix contrasenya @@ -15525,12 +16873,12 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Contrasenya incorrecta ! - + Please enter your Retroshare passphrase Si us plau, introdueix la contrasenya del Retroshare - + Unregistered plugin/executable Complement/Executable no registrat @@ -15545,7 +16893,19 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup Si us plau, comprova l'hora del sistema. - + Examining shared files... + Examinant arxius compartits... + + + Hashing file + Calculant nĆŗmero de hash + + + Saving file index... + Desant Ć­ndex de l'arxiu... + + + Test Test @@ -15556,19 +16916,17 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup - Unknown title TĆ­tol desconegut - + - Encrypted message Missatge encriptat - + For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). PerquĆØ aquestes sales de xat funcionin l'hora en el teu ordinador ha de ser correcta. Si us plau, comprova que Ć©s el cas (Ɖs possible que una variació de varis minuts s'hagi detectat respecte els teus amics). @@ -15576,7 +16934,7 @@ com a mĆ­nim un dels contactes no s'ha afegit a un grup OnlineToaster - + Friend Online Amic en lĆ­nia @@ -15628,6 +16986,10 @@ TrĆ fic baix: 10 %s del trĆ fic estĆ ndard i PENDENT: posar en pausa totes les t PGPKeyDialog + + Dialog + DiĆ leg + Profile info @@ -15693,6 +17055,10 @@ 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 + + Key signatures : + Signatures de la clau : + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> @@ -15722,20 +17088,23 @@ p, li { white-space: pre-wrap; } Clau PGP - - Friend options - - - - + These options apply to all nodes of the profile: Aquestes opcions s'apliquen a tots els nodes del perfil: + + <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> + Keysigning: + + Sign PGP key + Signa clau PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15772,7 +17141,12 @@ p, li { white-space: pre-wrap; } Inclou les signatures - + + Options + Opcions + + + <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> @@ -15786,6 +17160,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15818,21 +17196,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Error: no es poden obtenir detalls del contacte. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) L'algorisme de la clau proporcionada no Ć©s suportada pel RetroShare @@ -15853,7 +17231,7 @@ 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. El nivell de confianƧa Ć©s una forma d'expressar la teva confianƧa en aquesta clau. No s'utilitza pel programa ni es comparteix, però et pot ser Ćŗtil per recordar claus bones/dolentes. @@ -15922,6 +17300,10 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Check the password! + + Maybe password is wrong + Potser la contrasenya sigui incorrecta + You haven't set a trust level for this key. @@ -15929,12 +17311,12 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir - + Retroshare profile Perfil de Retroshare - + This is your own PGP key, and it is signed by : Aquesta Ć©s la teva clau PGP i estĆ  signada per : @@ -15960,7 +17342,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir PeerItem - + Chat Xat @@ -15981,7 +17363,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Eliminar l'element - + Name: Nom: @@ -16021,7 +17403,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Diferencia de temps: - + Write Message Escriure missatge @@ -16035,6 +17417,10 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Friend Connected Amic connectat + + Connect Attempt + Intent de connexió + Connection refused by peer @@ -16073,13 +17459,17 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Unknown Desconegut + + Unknown Peer + Contacte desconegut + Hide Amagar - + Send Message Enviar missatge @@ -16131,6 +17521,10 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Chat with this person as... Xat amb aquesta persona com... + + Send message to this person + Enviar un missatge a aquesta persona + Invite to Circle @@ -16189,6 +17583,10 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir <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 + use "positive" as the default opinion for contacts (instead of neutral) @@ -16246,6 +17644,13 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir <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> + + PhotoCommentItem + + Form + Formulari + + PhotoDialog @@ -16253,11 +17658,23 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir PhotoShare PhotoShare + + Photo + Foto + TextLabel EtiquetaTexte + + Comment + Comentari + + + Summary + Resum + Album / Photo Name @@ -16266,7 +17683,7 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir Details - Detalls + @@ -16318,6 +17735,14 @@ AvĆ­s: En les opcions de TransferĆØncia d'arxius, has marcat descarrega dir ... ... + + Add Comment + Afegir comentari + + + Write a comment... + Escriure un comentari... + Album @@ -16388,6 +17813,10 @@ p, li { white-space: pre-wrap; } Create Album Crear Ć lbum + + View Album + Veure Ć lbum + Edit Album Details @@ -16409,17 +17838,17 @@ p, li { white-space: pre-wrap; } Presentació de diapositives - + My Albums Els meus Ć lbums - + Subscribed Albums ƀlbums subscrits - + Shared Albums ƀlbums compartits @@ -16449,7 +17878,7 @@ abans de demanar editar-lo! PhotoSlideShow - + Album Name Nom d'Ć lbum @@ -16508,19 +17937,19 @@ abans de demanar editar-lo! - - + + TextLabel - + Posted by - + ago @@ -16556,12 +17985,12 @@ abans de demanar editar-lo! PluginItem - + TextLabel EtiquetaTexte - + Show more details about this plugin Mostra mĆ©s detalls sobre aquest complement @@ -16707,6 +18136,61 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Directoris on buscar complements + + Plugin disabled. Click the enable button and restart Retroshare + Complement deshabilitat. Clica el botó d'activació o reinicia el Retroshare + + + [disabled] + [desactivat] + + + No API number supplied. Please read plugin development manual. + No s'ha proporcionat nĆŗmero d'API. Si us plau, llegeix el manual de desenvolupament de complements. + + + [loading problem] + [problema de carrega] + + + No SVN number supplied. Please read plugin development manual. + No s'ha proporcionat nĆŗmero d'SVN. Si us plau, llegeix el manual de desenvolupament de complements. + + + Loading error. + Error carregant. + + + Missing symbol. Wrong version? + Falten sĆ­mbols. Versió equivocada? + + + No plugin object + Sense objecte del complement + + + Plugins is loaded. + Complement carregat. + + + Unknown status. + Estat desconegut. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Activa pels complements en desenvolupament. +No se'ls comprovarĆ  el hash. No obstant, en +circumstancies normals, comprovar el hash et +protegeix de l'acció maliciosa de complements +modificats. + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/images/help_64.png">&nbsp;&nbsp;Complements</h1> <p>Els complements es carreguen dels directoris del llistat inferior.</p> <p> Per raons de seguretat, els complements acceptats es carreguen automĆ ticament mentre l'executable principal del Retroshare o els complements no canviĆÆn. En tal cas, l'usuari haurĆ  de confirmar-ho altre cop. Un cop el programa s'ha iniciat, pots habilitar un complement manualment fent clic al botó "Activa" i desprĆ©s reiniciant el Retroshare.</p> <p>Si vols desenvolupar els teus propis complements contacta amb els desenvolupadors i estaran contents d'ajudar-te!</p> + Plugins @@ -16776,27 +18260,12 @@ p, li { white-space: pre-wrap; } Posar la finestra per damunt - - Ban this person (Sets negative opinion) - Expulsa aquesta persona (Emet una opinió negativa) - - - - Give neutral opinion - Opinió neutre - - - - Give positive opinion - Opinió positiva - - - + Choose window color... - + Dock window @@ -16830,6 +18299,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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. + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Tancar aquesta finestra finalitzarĆ  la conversa, notifica-ho al contacte i esborra el tĆŗnel encriptat. + + + Kill the tunnel? + Matar el tĆŗnel? + PostedCardView @@ -16849,7 +18334,7 @@ p, li { white-space: pre-wrap; } Nou - + Vote up Votar positiu @@ -16869,8 +18354,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Comentaris @@ -16895,13 +18380,13 @@ p, li { white-space: pre-wrap; } - - + + Comment Comentari - + Comments Comentaris @@ -16929,12 +18414,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + Signat per: + + + Notes + Notes + + + Create a new Post - + RetroShare RetroShare @@ -16949,22 +18442,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Carrega arxiu d'imatge - + Post image @@ -16980,17 +18463,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -17000,7 +18473,23 @@ p, li { white-space: pre-wrap; } - + Submit Post + Publica entrada + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + EstĆ s enviant un enllaƧ. La clau per a que tingui ĆØxit Ć©s un contingut interessant i un tĆ­tol descriptiu. + + + Submit + Publica + + + Submit a new Post + Publica una entrada nova + + + Please add a Title Si us plau, afegeix un tĆ­tol @@ -17020,22 +18509,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17050,7 +18529,7 @@ p, li { white-space: pre-wrap; } Publica com - + Post @@ -17061,7 +18540,7 @@ p, li { white-space: pre-wrap; } Imatge - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17071,7 +18550,7 @@ p, li { white-space: pre-wrap; } TĆ­tol - + Link EnllaƧ @@ -17079,12 +18558,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + EnllaƧos publicats + + + <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> + + + Create Topic + Crear tema + + + My Topics + Els meus temes + + + Subscribed Topics + Temes subscrits + + + Popular Topics + Temes populars + + + Other Topics + Altres temes + + + Links + EnllaƧos + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17118,7 +18629,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Tema publicat + + + Add Topic Admins + Afegir administradors de tema + + + Select Topic Admins + Seleccionar administradors de tema + + + Create New Topic + Crear nou tema + + + Edit Topic + Editar tema + + + Update Topic + Actualitzar tema + + + Create New Board @@ -17156,17 +18691,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted Subscriure's als publicats @@ -17182,7 +18707,7 @@ p, li { white-space: pre-wrap; } - + Expand Ampliar @@ -17197,17 +18722,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + Descripció dels publicats + + + Loading + Carregant + + + New Posted + Publicats nous + + + Loading... - - Never - Mai - - - + New Board @@ -17220,18 +18752,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Lloc + + + + Comments Comentaris - + Copy RetroShare Link Copia l'enllaƧ RetroShare @@ -17242,12 +18778,12 @@ p, li { white-space: pre-wrap; } - + Comment Comentari - + Comments Comentaris @@ -17257,7 +18793,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>L'autor d'aquest missatge (amb Id %1) estĆ  expulsat.</b> - + Click to view Picture @@ -17267,17 +18803,21 @@ p, li { white-space: pre-wrap; } Amagar - + Vote up Votar positiu - + Vote down Votar negatiu - + \/ + \/ + + + Set as read and remove item Marcar com llegit i eliminar l'element @@ -17287,7 +18827,7 @@ p, li { white-space: pre-wrap; } Nou - + New Comment: Nou comentari: @@ -17297,7 +18837,7 @@ p, li { white-space: pre-wrap; } Valor del comentari - + Name Nom @@ -17338,10 +18878,77 @@ p, li { white-space: pre-wrap; } - + Loading Carregant + + By + Per + + + + PostedListWidget + + Form + Formulari + + + Hot + Calent + + + New + Nou + + + Top + Capdamunt + + + Today + Avui + + + Yesterday + Ahir + + + This Week + Aquesta setmana + + + This Month + Aquest mes + + + This Year + Aquest any + + + Submit a new Post + Publica una entrada nova + + + Next + Següent + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Si us plau, crea o escull una Id signant abans de votar + + + Previous + Previ + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17353,7 +18960,7 @@ p, li { white-space: pre-wrap; } Details - Detalls + @@ -17361,17 +18968,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17381,15 +18978,15 @@ p, li { white-space: pre-wrap; } Administrador: - + - + unknown desconegut - + Distribution: Distribució: @@ -17399,42 +18996,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Publicacions - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17454,7 +19051,7 @@ p, li { white-space: pre-wrap; } Calent - + Search @@ -17484,17 +19081,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17509,17 +19106,12 @@ p, li { white-space: pre-wrap; } Buit - + Copy RetroShare Link Copia l'enllaƧ RetroShare - - Copy http Link - - - - + Show author in People tab @@ -17529,31 +19121,27 @@ p, li { white-space: pre-wrap; } Editar - - + information informació - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17568,7 +19156,7 @@ p, li { white-space: pre-wrap; } Subscriure's - + Never Mai @@ -17642,16 +19230,6 @@ p, li { white-space: pre-wrap; } No Channel Selected No hi ha canal seleccionat - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17660,6 +19238,14 @@ p, li { white-space: pre-wrap; } Tabs Pestanyes + + Open each topic in a new tab + Obrir cada tema en una nova pestanya + + + Links + EnllaƧos + Open each board in a new tab @@ -17673,6 +19259,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Enviat + Board Post @@ -17741,17 +19331,25 @@ p, li { white-space: pre-wrap; } Directori de perfils - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> - +</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> @@ -17861,7 +19459,7 @@ i utilitzar el botó d'importació per carregar-lo ProfileWidget - + Edit status message Editar missatge d'estat @@ -17877,7 +19475,7 @@ i utilitzar el botó d'importació per carregar-lo Directori de perfils - + Public Information Informació pĆŗblica @@ -17912,12 +19510,12 @@ i utilitzar el botó d'importació per carregar-lo En lĆ­nia des de: - + Other Information Altra informació - + My Address La meva adreƧa @@ -17961,27 +19559,51 @@ i utilitzar el botó d'importació per carregar-lo PulseAddDialog - + Post From: + Entrada de: + + + Account 1 + Compte 1 + + + Account 2 + Compte 2 + + + Account 3 + Compte 3 + + + Add to Pulse Afegir al Pols - + filter + filtre + + + URL Adder + Afegidor d'URL + + + Display As Mostra com - + URL URL - + GroupLabel - + IDLabel @@ -17991,12 +19613,12 @@ i utilitzar el botó d'importació per carregar-lo De: - + Head - + Head Shot @@ -18026,13 +19648,13 @@ i utilitzar el botó d'importació per carregar-lo Negatiu - - + + Whats happening? - + @@ -18044,22 +19666,12 @@ i utilitzar el botó d'importació per carregar-lo - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18068,13 +19680,17 @@ i utilitzar el botó d'importació per carregar-lo Cancel CancelĀ·la + + Post Pulse to Wire + Publica Pols a Wire + Post - + Reply to Pulse @@ -18089,24 +19705,34 @@ i utilitzar el botó d'importació per carregar-lo - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Carrega arxiu d'imatge + From + Des de + + + Date + Data + + + ... + ... @@ -18117,7 +19743,7 @@ i utilitzar el botó d'importació per carregar-lo Formulari - + @@ -18136,7 +19762,7 @@ i utilitzar el botó d'importació per carregar-lo PulseReply - + icn @@ -18146,7 +19772,7 @@ i utilitzar el botó d'importació per carregar-lo - + REPLY @@ -18173,7 +19799,7 @@ i utilitzar el botó d'importació per carregar-lo - + FOLLOW @@ -18183,7 +19809,7 @@ i utilitzar el botó d'importació per carregar-lo - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18203,7 +19829,7 @@ i utilitzar el botó d'importació per carregar-lo - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18319,7 +19945,7 @@ i utilitzar el botó d'importació per carregar-lo - + FOLLOW @@ -18327,42 +19953,37 @@ i utilitzar el botó d'importació per carregar-lo PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18394,7 +20015,7 @@ i utilitzar el botó d'importació per carregar-lo - + FOLLOW @@ -18402,8 +20023,8 @@ i utilitzar el botó d'importació per carregar-lo QObject - - + + Confirmation Confirmació @@ -18674,12 +20295,12 @@ Els carĆ cters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui Detalls del contacte - + File Request canceled Petició d'arxiu cancelĀ·lada - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Aquesta versió de RetroShare utilitza l'OpenPGP-SDK. Com a efecte secundari no utilitza el clauer PGP del sistema, sinó un clauer compartit per totes les instancies de RetroShare. <br><br>No sembla que tinguis aquest clauer, tot i que tens claus PGP als comptes existents de RetroShare, probablement perquĆØ acabes de canviar a aquesta nova versió del programa. @@ -18710,7 +20331,7 @@ Els carĆ cters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui S'ha produĆÆt un error inesperat. Si us plau, informa 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! No es pot iniciar "Tor Manager"! @@ -18748,7 +20369,7 @@ L'error reportat Ć©s:" No ha estat possible iniciar un servei ocult. - + Multiple instances MĆŗltiples instancies @@ -18769,26 +20390,6 @@ Arxiu bloquejant:\n Hi ha hagut un error inesperat quan el RetroShare intentava obtenir el bloqueig d'instĆ ncia Ćŗnica Arxiu de bloqueig:\n - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18809,6 +20410,14 @@ Arxiu de bloqueig:\n End-to-end encrypted conversation established + + 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! + TĆŗnel segur establert. Els missatges s'entregaran immediatament! + The collection file %1 could not be opened. @@ -18871,7 +20480,7 @@ L'error reportat Ć©s: Dades reenviades - + You appear to have nodes associated to DSA keys: Sembla que tens nodes associats a claus DSA: @@ -18881,7 +20490,7 @@ L'error reportat Ć©s: Les claus DSA encara no són suportades en aquesta versió de RetroShare. Tots aquests nodes no es podran utilitzar. Ho sentim molt. - + enabled activat @@ -18891,7 +20500,7 @@ L'error reportat Ć©s: desactivat - + Move IP %1 to whitelist Mou la IP %1 a la llista blanca @@ -18907,7 +20516,7 @@ L'error reportat Ć©s: - + %1 seconds ago fa %1 segons @@ -18975,7 +20584,7 @@ Security: no anonymous IDs Seguretat: IDs anònimes no - + Join chat room Afegeix-te a la sala de xat @@ -19003,7 +20612,7 @@ Seguretat: IDs anònimes no no s'ha pogut interpretar l'arxiu XML! - + Indefinitely Indefinidament @@ -19183,29 +20792,13 @@ Seguretat: IDs anònimes no Ban list - - - Name - Nom - - Node - Node - - - - Address - AdreƧa - - - - Status Estat - + NXS @@ -19398,6 +20991,10 @@ Seguretat: IDs anònimes no Click to resume the hashing process Clica per continuar amb el cĆ lcul de hash + + <p>This certificate contains: + <p>Aquest certificat contĆ©: + Idle @@ -19448,18 +21045,6 @@ Seguretat: IDs anònimes no Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19622,7 +21207,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Tota la xarxa @@ -19805,7 +21390,7 @@ p, li { white-space: pre-wrap; } Formulari - + The loading of embedded images is blocked. La cĆ rrega d'imatges incrustades estĆ  bloquejada. @@ -19818,7 +21403,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default PermĆØs per defecte @@ -19991,22 +21576,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Desar imatge - - - - Copy image - - - - + Document source @@ -20014,12 +21589,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options Opcions de la vista d'arbre - + Show Header @@ -20049,6 +21624,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + Mostrar columna... + + + [no title] + [sense tĆ­tol] + RatesStatus @@ -20711,7 +22294,7 @@ Si creus que Ć©s correcta, treu la lĆ­nia corresponent de l'arxiu i torna&a RsDownloadListModel - + Name i.e: file name Nom @@ -20832,7 +22415,7 @@ Si creus que Ć©s correcta, treu la lĆ­nia corresponent de l'arxiu i torna&a RsFriendListModel - + Name Nom @@ -20852,7 +22435,7 @@ Si creus que Ć©s correcta, treu la lĆ­nia corresponent de l'arxiu i torna&a IP - + Profile ID @@ -20908,7 +22491,7 @@ prevents the message to be forwarded to your friends. El missatge es propagarĆ  als teus amics. - + [ ... Redacted message ... ] [ ... Missatge modificat ... ] @@ -20922,6 +22505,11 @@ prevents the message to be forwarded to your friends. [Unknown] [Desconegut] + + + [ ... Missing Message ... ] + [ ... Missatge perdut ... ] + RsMessageModel @@ -20935,11 +22523,6 @@ prevents the message to be forwarded to your friends. From Des de - - - To - A - Subject @@ -20962,18 +22545,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Clica per ordenar per llegits - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Clica per ordenar pel remitent @@ -20996,9 +22574,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -21019,7 +22595,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Reinicialitza TOTS les valors de configuració del RetroShare. @@ -21080,7 +22656,7 @@ prevents the message to be forwarded to your friends. Defineix la llengua del RetroShare. - + Unable to open log file '%1': %2 IncapaƧ d'obrir l'arxiu de registre '%1': %2 @@ -21101,7 +22677,11 @@ prevents the message to be forwarded to your friends. No s'ha pogut crear el directori de dades: %1 - + Revision + Revisió + + + opmode ModeOp @@ -21131,7 +22711,7 @@ prevents the message to be forwarded to your friends. Informació d'Ćŗs de la IGU de RetroShare - + Invalid language code specified: El codi d'idioma especificat no Ć©s vĆ lid: @@ -21149,7 +22729,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. Error d'accĆ©s al registre. Potser necessitis drets d'administrador. @@ -21166,12 +22746,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Inserir una paraula clau aquĆ­ (com a mĆ­nim 3 carĆ cters de longitud) - + Start Search Iniciar cerca @@ -21233,7 +22813,7 @@ prevents the message to be forwarded to your friends. Neteja - + KeyWords Paraules Clau @@ -21248,7 +22828,7 @@ prevents the message to be forwarded to your friends. Id cerca - + Filename Nom d'arxiu @@ -21348,23 +22928,23 @@ prevents the message to be forwarded to your friends. Descarregar seleccionats - + File Name Nom d'arxiu - + Download Descarregar - + Copy RetroShare Link Copia l'enllaƧ RetroShare - + Send RetroShare Link Enviar enllaƧ RetroShare @@ -21374,7 +22954,7 @@ prevents the message to be forwarded to your friends. - + Download Notice AvĆ­s de descarrega @@ -21411,7 +22991,7 @@ prevents the message to be forwarded to your friends. Suprimeix-ho tot - + Folder Directori @@ -21422,17 +23002,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) EnllaƧ(os) RetroShare nou(s) - + Open Folder Obrir directori - + Create Collection... Crear colĀ·lecció... @@ -21452,7 +23032,7 @@ prevents the message to be forwarded to your friends. Descarregar d'arxiu de colĀ·lecció... - + Collection ColĀ·lecció @@ -21460,7 +23040,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Detalls del contacte @@ -21476,22 +23056,22 @@ prevents the message to be forwarded to your friends. Eliminar l'element - + IP address: AdreƧa IP: - + Peer ID: ID del contacte: - + Location: Ubicació: - + Peer Name: Nom del contacte: @@ -21508,7 +23088,7 @@ prevents the message to be forwarded to your friends. Amagar - + but reported: però reportat: @@ -21533,8 +23113,8 @@ prevents the message to be forwarded to your friends. <p>Aquesta Ć©s la IP que el teu amic diu estar connectat. Si just has canviat d'IP això Ć©s un fals avĆ­s. Si no, significa que la teva connexió amb aquest amic estĆ  sent encaminada per un contacte intermig, que seria sospitós.</p> - - + + <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> <html><head/><body><p>Aquest avĆ­s apareix per protegir-te contra atacs de reenviament. En tal cas, l'amic amb qui estĆ s connectat veurĆ  la IP de l'atacant, no la teva IP externa.</p><p><br/></p><p>No obstant, si acabes de canviar la teva IP per qualsevol motiu (alguns proveĆÆdors forcen el canvi d'IP regularment) aquest avĆ­s nomĆ©s t'indica que t'has connectat amb el teu amic abans que el RetroShare hagi notat el canvi d'IP. Res malament en tal cas.</p><p><br/></p><p>Pots evitar fĆ cilment els falsos avisos afegint a la llista blanca les teves IPs (Ex.:El rang d'IPs del teu proveĆÆdor) o deshabilitant completament aquests avisos a Opcions-&gt;Notificar-&gt;Novetats.</p></body></html> @@ -21542,7 +23122,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare vol ser amic teu al RetroShare @@ -21573,7 +23153,7 @@ prevents the message to be forwarded to your friends. - + Expand Ampliar @@ -21618,12 +23198,12 @@ prevents the message to be forwarded to your friends. Estat: - + Write Message Escriure missatge - + Connect Attempt Intent de connexió @@ -21643,22 +23223,17 @@ prevents the message to be forwarded to your friends. Intent de connexió (Sortint) desconegut - + Unknown Security Issue Problema de seguretat desconegut - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown Desconegut @@ -21668,7 +23243,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Contacte desconegut + + + Hide Amagar @@ -21678,7 +23257,7 @@ prevents the message to be forwarded to your friends. Voleu suprimir aquest amic? - + Certificate has wrong signature!! This peer is not who he claims to be. El certificat tĆ© una signatura incorrecta!! Aquest contacte no Ć©s qui diu ser. @@ -21688,12 +23267,12 @@ prevents the message to be forwarded to your friends. Certificat perdut/danyat. No Ć©s un usuari de RetroShare. - + Certificate caused an internal error. El certificat a provocat un error intern. - + Peer/node not in friendlist (PGP id= El contacte/node no Ć©s a la llista d'amics (Id PGP= @@ -21752,12 +23331,12 @@ prevents the message to be forwarded to your friends. - + Local Address AdreƧa local - + NAT NAT @@ -21778,22 +23357,22 @@ prevents the message to be forwarded to your friends. Port: - + Local network Xarxa local - + External ip address finder Cercador d'adreƧa IP externa - + UPnP UPnP - + Known / Previous IPs: Conegudes / IPs previes: @@ -21809,16 +23388,21 @@ connectar-te quan tens pocs amics. TambĆ© ajuda si estĆ s darrera d'un tallafocs o una VPN. - - - + + Allow RetroShare to ask my ip to these websites: + Permet que el RetroShare pregunti la meva IP a aquests llocs web: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. El rang de ports acceptats va de 10 fins 65535. Normalment els ports per sota 1024 estan reservats pel teu sistema. @@ -21828,46 +23412,23 @@ d'un tallafocs o una VPN. El rang de ports acceptables va de 1024 a 65535. Els ports per sota 1024 estan reservats pel teu sistema. - + Onion Address AdreƧa Onion - + Discovery On (recommended) Descobriment activat (Recomanat) - + 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Ć­. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off Descobriment desactivat @@ -21877,7 +23438,7 @@ List of found external IP: Ocult - Mira la configuració - + I2P Address AdreƧa I2P @@ -21902,95 +23463,41 @@ List of found external IP: Entrants correctes - - - + + Proxy seems to work. El repetidor sembla que funciona - - + I2P proxy is not enabled El repetidor I2P no estĆ  activat - - SAMv3 is running and accessible - + + BOB is running and accessible + BOB estĆ  en funcionament i accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? - + BOB is not accessible! Is it running? + No es pot accedir a BOB! EstĆ  en funcionament? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +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. + + - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client client @@ -22005,7 +23512,73 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -22015,7 +23588,22 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 + + + You are reachable through the hidden service. Se't pot contactar a travĆ©s d'un servei ocult. @@ -22029,12 +23617,12 @@ Estan tots els serveis funcionant correctament?? Comprova els teus ports! - + [Hidden mode] [Node ocult] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Això buida la llista d'adreces conegudes. Això Ć©s Ćŗtil si per alguna rao la teva llista d'adreces contĆ© una adreƧa invĆ lida/irrellevant/caducada que vols evitar passar als teus amics com una adreƧa de contacte.</p></body></html> @@ -22044,7 +23632,7 @@ Comprova els teus ports! Neteja - + Download limit (KB/s) LĆ­mit de baixada (KiB/s) @@ -22059,24 +23647,24 @@ Comprova els teus ports! LĆ­mit de pujada (KiB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>El lĆ­mit de pujada afecta a tota l'aplicació. Un lĆ­mit de pujada massa baix pot bloquejar eventualment serveis de baixa prioritat (Fòrums, canals). El valor mĆ­nim recomanat Ć©s de 50 KiB/s. </p></body></html> - + WARNING: These values don't take into account the Relays. AVƍS: Aquests valors no tenen en compte els Repetidors. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22093,7 +23681,17 @@ Ara introdueix l'adreƧa (e.g. 127.0.0.1) i el port que has escullit abans 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 @@ -22103,7 +23701,12 @@ Pots connectar-te a nodes ocults, encara que estiguis en un node estĆ ndard, aix mode avanƧat - + + I2P Basic Open Bridge + Pont Obert I2P BĆ sic + + + I2P Instance address AdreƧa instancia I2P @@ -22113,7 +23716,17 @@ Pots connectar-te a nodes ocults, encara que estiguis en un node estĆ ndard, aix 127.0.0.1 - + + I2P proxy port + Port del proxy I2P + + + + BOB accessible + BOB accessible + + + Address AdreƧa @@ -22153,7 +23766,7 @@ Pots connectar-te a nodes ocults, encara que estiguis en un node estĆ ndard, aix carrega clau - + Start ComenƧar @@ -22168,7 +23781,12 @@ Pots connectar-te a nodes ocults, encara que estiguis en un node estĆ ndard, aix Atura - + + BOB status + Estat del BOB + + + Incoming Entrants @@ -22216,32 +23834,7 @@ Finalment assegurat que els ports coincideixen amb la configuració. Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Repetidor @@ -22296,7 +23889,7 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< 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. @@ -22321,7 +23914,7 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< 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>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> @@ -22335,7 +23928,7 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< Xarxa - + IP Filters Filtres IP @@ -22358,7 +23951,7 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< - + Status Estat @@ -22418,28 +24011,17 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< Afegir a la llista blanca - + Hidden Service Configuration Configuració dels serveis ocults - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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></p>Aquest Ć©s el port cap al repetidor Socks de Tor. El teu node de Retroshare pot utilitzar-lo per connectar a</p><p>nodes Ocults. El llum de la dreta es tornarĆ  verd quan el port estigui actiu en el teu ordinador.</p><p>Això no significa que el transit del teu Retroshare vagi per Tor. NomĆ©s ho farĆ  si </p><p>connectes contra nodes Ocults o estĆ s corrent un node Ocult tu mateix.</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>El llum de l'esquerra serĆ  verd quan el port d'entrada estigui actiu en el teu ordinador. No indica</p><p>que el teu transit de Retroshare vagi per Tor. NomĆ©s ho farĆ  si</p><p>et connectes a nodes Ocults, o si estĆ s corrent un node ocult tu mateix.</p></body></html> @@ -22455,18 +24037,18 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< - + <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>El llum de l'esquerra serĆ  verd quan el port d'entrada estigui actiu en el teu ordinador. No indica</p><p>que el teu transit de Retroshare vagi per I2P. NomĆ©s ho farĆ  si</p><p>et connectes a nodes Ocults, o si estĆ s corrent un node ocult tu mateix.</p></body></html> - + I2P outgoing Okay Sortints I2P correctes - + Service Address AdreƧa del servei @@ -22501,12 +24083,12 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< Si us plau, escriu una adreƧa de servei - + IP Range Rang IP - + Reported by DHT for IP masquerading Anunciat per DHT per enmascarament IP @@ -22529,12 +24111,12 @@ Si tens problemes connectant-te sobre Tor comprova tambĆ© els registres de Tor.< Afegit per tu - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>Mentre que les IPs llistades s'obtenen de les fonts següents: IPs d'un certificat intercanviat manualment, rangs d'IPs introduĆÆts per tu en aquesta finestra o en els elements de seguretat de novetats</p><p>El comportament per defecte del Retroshare Ć©s (1) sempre permetre connexions a contactes amb una IP a la llista blanca, encara que tambĆ© apareguin a la llista negra; (2) opcionalment es pot forƧar a que les IPs hagin d'estar a la llista blanca. Pots canviar aquest comportament per cada contacte a la finestra &quot;Detalls&quot; de cada node de Retroshare.</p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>La DHT et permet respondre les peticions de connexió dels teus amics utilitzant el protocol @@ -22542,12 +24124,12 @@ de connexió dels teus amics utilitzant el protocol </p><p>El servei de descobriment envia els noms dels nodes i les identitats dels teus contactes de confianƧa als nodes contactats, per ajudar a que escullin amics nous. No obstant, l'amistat mai Ć©s automĆ tica i els dos contactes encara haurien de confiar entre ells per permetre la connexió. - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>L'indicador es torna verd quan el Retroshare aconsegueix obtindre la teva pròpia IP d'una de les webs llistades, si ho tens activat. El Retroshare intentarĆ  tambĆ© utilitzar altres mĆØtodes per obtenir la teva IP. - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Aquesta llista s'omple automĆ ticament amb informació recopilada des de mĆŗltiples fonts: contactes que fan masquerading anunciats per DHT, rangs d'IP entrats per tu, i rangs d'IP anunciats pels teus amics. La configuració per defecte hauria de protegir-te contra repetidors de trĆ fic massius.</p><p>Detectar automĆ ticament IPs que fan masquerading pot acabar posant IPs amigues a la llista negra. En tal cas, utilitza el menĆŗ contextual per afegir-los a la llista blanca.</p></body></html> @@ -22582,22 +24164,26 @@ de connexió dels teus amics utilitzant el protocol Expulsa automĆ ticament els rangs d'IP fent reenviament DHT comenƧant a - + 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> + Tor Socks Proxy Repetidor socks TOR - + Tor outgoing Okay Sortints Tor correcte - + Tor proxy is not enabled El repetidor Tor no estĆ  activat @@ -22677,7 +24263,7 @@ de connexió dels teus amics utilitzant el protocol ShareKey - + check peers you would like to share private publish key with comprovar els contactes amb qui t'agradaria compartir les claus de publicació @@ -22687,12 +24273,12 @@ de connexió dels teus amics utilitzant el protocol Compartit amb els amics - + Share Compartir - + 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. Pots fer que els teus amics sĆ piguen del teu canal compartint-lo amb ells. @@ -22713,7 +24299,7 @@ Escull els amics amb qui vols compartir el teu canal. Directori de directoris compartits - + Shared directory Directori compartit @@ -22733,17 +24319,17 @@ Escull els amics amb qui vols compartir el teu canal. Visibilitat - + Add new Afegir nou - + Cancel CancelĀ·la - + Add a Share Directory Afegeix un directori compartit @@ -22753,7 +24339,7 @@ Escull els amics amb qui vols compartir el teu canal. Treure - + Apply and close Aplicar i tancar @@ -22844,7 +24430,7 @@ Escull els amics amb qui vols compartir el teu canal. Directori no trobat o nom del directori no acceptat. - + 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. Aquesta Ć©s una llista dels directoris compartits. Pots afegir-ne i treure'n utilitzant els botons a la part inferior. Quan afegeixes un nou directori inicialment tots els seus arxius es comparteixen. Pots especificar permisos especĆ­fics per cada directori. @@ -22852,7 +24438,7 @@ Escull els amics amb qui vols compartir el teu canal. SharedFilesDialog - + Files Arxius @@ -22903,16 +24489,11 @@ Escull els amics amb qui vols compartir el teu canal. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files comprovar arxius - + Download selected Descarregar seleccionats @@ -22922,7 +24503,7 @@ Escull els amics amb qui vols compartir el teu canal. Descarregar - + Copy retroshare Links to Clipboard Copiar enllaƧ RetroShare al porta-retalls @@ -22937,7 +24518,7 @@ Escull els amics amb qui vols compartir el teu canal. Enviar enllaƧ RetroShare - + Some files have been omitted Alguns arxius s'han omĆØs @@ -22953,7 +24534,7 @@ Escull els amics amb qui vols compartir el teu canal. Consell(s) - + Create Collection... Crear colĀ·lecció... @@ -22978,7 +24559,7 @@ Escull els amics amb qui vols compartir el teu canal. Descarregar d'arxiu de colĀ·lecció... - + Some files have been omitted because they have not been indexed yet. Alguns arxius s'han omĆØs perquĆØ encara no han estat indexats. @@ -23121,12 +24702,12 @@ Escull els amics amb qui vols compartir el teu canal. SplashScreen - + Load configuration Carrega configuració - + Create interface Crear interfĆ­cie @@ -23150,7 +24731,7 @@ Escull els amics amb qui vols compartir el teu canal. Recordar contrasenya - + Log In Validar-se @@ -23507,7 +25088,7 @@ Això es pot canviar a les opcions de configuració. Missatge d'estat - + Message: Missatge: @@ -23752,7 +25333,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Eliminar totes les etiquetes @@ -23788,15 +25369,12 @@ p, li { white-space: pre-wrap; } Configura Tor... - - + Tor status: Estat Tor: - - - + Unknown Desconegut @@ -23806,13 +25384,18 @@ p, li { white-space: pre-wrap; } No iniciat - - Hidden address: - + + Hidden service address: + AdreƧa del servei ocult: - - + + Tor bootstrap status: + Estat bootstrap de Tor: + + + + Not set No configurat @@ -23822,57 +25405,12 @@ p, li { white-space: pre-wrap; } AdreƧa Onion: - - Error - Error - - - - Not connected - No connectat - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + 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...] @@ -23880,17 +25418,21 @@ p, li { white-space: pre-wrap; } TorStatus - + 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> + <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - + Tor is currently offline Tor Ć©s fora de lĆ­nia @@ -23901,12 +25443,11 @@ p, li { white-space: pre-wrap; } - No tor configuration Sense configuració Tor - + Tor proxy is OK @@ -23934,7 +25475,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Opcions de transferĆØncia @@ -23945,7 +25486,7 @@ p, li { white-space: pre-wrap; } MĆ xim de descarregues simultĆ nies: - + Shared Directories Directoris compartits @@ -23955,27 +25496,22 @@ p, li { white-space: pre-wrap; } Compartir automĆ ticament directori entrant (recomanat) - + + Edit Share + Editar compartits + + + Directories - - Configure shared directories - Configura els directoris compartits - - - + Auto-check shared directories every Auto-comprova els directoris compartits cada - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) minut(s) @@ -24060,7 +25596,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24069,12 +25605,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) MĆ xim de pujades simultĆ nies per amic (0 = ilĀ·limitades) @@ -24099,12 +25630,7 @@ p, li { white-space: pre-wrap; } Permetre descarregues directes: - - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming En flux @@ -24163,13 +25689,38 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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> + Max. tunnel req. forwarded per second: MĆ xim de peticions de tĆŗnels reenviades per segon: - + + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">En flux</span>fa que la transferĆØncia es faci en fragments de 1 MiB per ordre, facilitant la previsualització mentre es descarrega. <span style=" font-weight:600;">Aleatori</span>Ć©s completament aleatori i afavoreix el comportament en eixam. <span style=" font-weight:600;">Progressiu</span>Ć©s un compromĆ­s, solĀ·licitant el proper fragment aleatòriament dins dels propers 50 MiB següents al final de l'arxiu parcial. Això permet aleatorietat i a la vegada evita temps llargs d'inicialització amb els arxius grossos.</p></body></html> + + + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> <html><head/><body><p>El Retroshare pausarĆ  totes les transferĆØncies i gravacions de configuració al disc si l'espai lliure queda per sota d'aquest llindar. Això evita la pĆØrdua d'informació en alguns sistemes. Una finestra de notificació t'avisarĆ  quan això passi.</p></body></html> @@ -24181,17 +25732,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ </p><p>El valor per defecte Ć©s 20. Si no n'estĆ s segur, deixa-ho aixĆ­.</p></body></html> - - Warning - AvĆ­s - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Establir el directori d'entrants @@ -24219,7 +25760,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ TransferUserNotify - + Download completed Descarrega completa @@ -24243,23 +25784,39 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ %1 completed transfer + + You have %1 completed downloads + Tens %1 descarregues completes + + + You have %1 completed download + Tens %1 descarrega completa + + + %1 completed downloads + %1 descarregues completades + + + %1 completed download + %1 descarrega completada + TransfersDialog - - + + Downloads Descarregues - + Uploads Pujades - + Name i.e: file name Nom @@ -24466,7 +26023,11 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Especificar... - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;TransferĆØncia d'arxiu</h1> <p>Retroshare contempla dues formes de fer això: transferĆØncies directes dels teus amics, i transferĆØncies distants amb tĆŗnels anònims. A mĆ©s amĆ©s, les transferĆØncies d'arxius són multi-origen i permet fer-les en eixam (pots ser origen mentre descarregues)</p> <p>Pots compartir arxius amb <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> la icona de la barra lateral esquerra. Aquests arxius es llistaran a la pestanya els meus arxius. Pots triar per cada grup d'amics si poden o no veure'l a la pestanya arxius d'amics.</p> <p>La pestanya cerca dona resultats pels arxius del teus amics i arxius que es poden accedir distants anònimament utilitzant el sistema de tĆŗnels multi-salt.</p> + + + Move in Queue... Moure a la cua... @@ -24491,7 +26052,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Escull directori - + Anonymous end-to-end encrypted tunnel 0x TĆŗnel anònim encriptat d'extrem a extrem 0x @@ -24512,7 +26073,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ RetroShare - + @@ -24545,17 +26106,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ L'arxiu %1 no s'ha completat. Si es un fitxer multimĆØdia intenta una prĆØvia. - - Warning - AvĆ­s - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Canviar el nom de l'arxiu @@ -24570,7 +26121,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Si us plau, introdueix un nou--i vĆ lid--nom d'arxiu - + Expand all Expandeix tot @@ -24697,18 +26248,23 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ - + + <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> + + + + Columns Columnes - + File Transfers TransferĆØncies d'arxius - + Path Ruta @@ -24718,7 +26274,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Mostra columna de ruta - + Could not delete preview file No s'ha pogut esborrar l'arxiu de previsualització @@ -24728,7 +26284,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Tornar-ho a intentar? - + Create Collection... Crear colĀ·lecció... @@ -24743,12 +26299,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Veure colĀ·lecció... - - <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> - - - - + Collection ColĀ·lecció @@ -24758,7 +26309,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ %1 tĆŗnels - + Anonymous tunnel 0x TĆŗnel anònim 0x @@ -24979,6 +26530,10 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ File transfer tunnels + + Anonymous tunnels + TĆŗnels anònims + Authenticated tunnels @@ -25172,17 +26727,12 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Formulari - + Enable Retroshare WEB Interface Habilita la interfĆ­cie WEB del RetroShare - - Status: - Estat: - - - + Web parameters ParĆ metres web @@ -25216,33 +26766,35 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + 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. + 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. + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;InterfĆ­cie web</h1> <p>La interfĆ­cie web et permet controlar el Retroshare des del navegador. MĆŗltiples dispositius poden compartir el control sobre una instancia de Retroshare. Per tan pots comenƧar una conversa en una tauleta i mĆ©s tard utilitzar un ordinador d'escriptori per continuar-la.</p><p>AvĆ­s: no exposis la teva interfĆ­cie web a Internet, perquĆØ no hi ha control d'accĆ©s ni encriptació. Si vols utilitzar la interfĆ­cie web des d'Internet utilitza un tĆŗnel SSH o un repetidor per assegurar la connexió.</p> - + Webinterface not enabled InterfĆ­cie Web no habilitada @@ -25252,12 +26804,12 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ La interfĆ­cie web no estĆ  activada. Activa-la a Configuració -> InterfĆ­cie web. - + failed to start Webinterface Fallo al iniciar interfĆ­cie Web - + Webinterface InterfĆ­cie Web @@ -25394,7 +26946,11 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ PĆ gines wiki - + New Group + Nou grup + + + Page Name Nom de pĆ gina @@ -25409,7 +26965,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Id d'origen - + << << @@ -25497,7 +27053,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ WikiEditDialog - + Page Edit History Historial d'edició de la pĆ gina @@ -25532,7 +27088,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ IdPĆ gina - + \/ \/ @@ -25562,18 +27118,14 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Etiquetes - - History - Històric - - - + + Show Edit History Mostra historial d'edició - + Status Estat @@ -25594,7 +27146,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ DesfĆ©s - + Submit Publica @@ -25666,6 +27218,10 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ WireDialog + + TimeRange + Rang de temps + Create Account @@ -25677,7 +27233,16 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ - + ... + ... + + + + Refresh + Refrescar + + + Settings @@ -25692,7 +27257,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Altres - + Who to Follow @@ -25712,7 +27277,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ - + Most Recent @@ -25742,17 +27307,85 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ - + Last Month + L'Ćŗltim mes + + + Last Week + L'ultima setmana + + + Today + Avui + + + New + Nou + + + from + des de + + + until + fins + + + Search/Filter + Cercar/Filtrar + + + Network Wide + Tota la xarxa + + + Manage Accounts + Controlar comptes + + + Showing: + Mostrant: + + + Yourself Tu mateix + + Friends + Amics + Following Seguint - + Custom + Personalitzat + + + Account 1 + Compte 1 + + + Account 2 + Compte 2 + + + Account 3 + Compte 3 + + + CheckBox + Casella de selecció + + + Post Pulse to Wire + Publica Pols a Wire + + + RetroShare RetroShare @@ -25815,42 +27448,35 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Formulari - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Treure - - - Location: Ubicació: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25895,41 +27521,11 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - Seguint - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Desconegut @@ -26007,7 +27603,7 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ %1y any %2d - + k e.g: 3.1 k k @@ -26040,11 +27636,15 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Imatges (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? Acceptes connexions signades amb aquest perfil? @@ -26053,6 +27653,10 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ 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 + This column indicates the trust level you indicated and whether you signed the profile PGP key @@ -26163,6 +27767,10 @@ Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que tĆŗ Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_cs.ts b/retroshare-gui/src/lang/retroshare_cs.ts index 9ddff2a55..24f243cde 100644 --- a/retroshare-gui/src/lang/retroshare_cs.ts +++ b/retroshare-gui/src/lang/retroshare_cs.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Přidat komentÔř + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: rozŔířenĆ© hledĆ”nĆ­ - + Search Criteria KritĆ©ria pro vyhledĆ”vĆ”nĆ­ - + Add a further search criterion. Přidat dalŔí kriterium pro vyhledĆ”vĆ”nĆ­ @@ -137,7 +144,7 @@ Vymazat kritĆ©ria pro vyhledĆ”vĆ”nĆ­ - + Cancels the search. ZruÅ”it hledĆ”nĆ­. @@ -157,6 +164,177 @@ Hledat + + AlbumCreateDialog + + Create Album + Vytvořit album + + + Album Name: + JmĆ©no alba: + + + Category: + Kategorie: + + + Animals + ZvĆ­Å™ata + + + Family + Rodina + + + Friends + Kontakty + + + Flowers + Květiny + + + Holiday + PrĆ”zdniny + + + Landscapes + Krajiny + + + Pets + DomĆ”cĆ­ mazlƭčci + + + Portraits + PortrĆ©ty + + + Travel + CestovĆ”nĆ­ + + + Work + PrĆ”ce + + + Random + NĆ”hodnĆ© + + + Caption: + Nadpis: + + + Where: + Kde: + + + Photographer: + Fotograf: + + + Description: + Popis: + + + Share Options + SdĆ­let nastavenĆ­ + + + Policy: + Pravidla + + + Quality: + Kvalita: + + + Comments: + KomentÔře: + + + Identity: + Identita: + + + Public + VeřejnĆ© + + + Restricted + OmezenĆ© + + + Resize Images (< 1Mb) + ZmenÅ”it obrĆ”zky (< 1Mb) + + + Resize Images (< 10Mb) + ZmenÅ”it obrĆ”zky (< 10Mb) + + + Send Original Images + Poslat pÅÆvodnĆ­ obrĆ”zky + + + No Comments Allowed + ZakĆ”zat komentÔře + + + Authenticated Comments + Pouze autentizovanĆ© komentÔře + + + Any Comments Allowed + Kdokoliv může komentovat + + + Publish with Identity + Publikovat pod identitou + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> TĆ”hni &amp; PusÅ„ pro vloženĆ­ obrĆ”zku. Klikni na obrĆ”zek pro změnu detailÅÆ.</span></p></body></html> + + + Back + Zpět + + + Add Photos + Přidat fotografie + + + Publish Album + Publikovat album + + + Untitle Album + BezejmennĆ© album + + + Say something about this album... + Ohodnotit toto album... + + + Where were these taken? + Kde byly vyfoceny? + + + Load Album Thumbnail + NahrĆ”d nĆ”hled alba + + AlbumDialog @@ -165,11 +343,19 @@ Album Album + + Album Thumbnail + NĆ”hled alba + TextLabel Textový popisek + + Summary + ShrnutĆ­ + Album Title: @@ -185,6 +371,34 @@ Caption legenda + + Where: + Kde: + + + When + Kdy + + + Description: + Popis: + + + Share Options + Možnsti sdĆ­lenĆ­ + + + Comments + KomentÔře + + + Publish Identity + Zveřejnit identitu + + + Visibility + Viditelnost + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -553,7 +767,7 @@ 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. VarovĆ”nĆ­: ZdejŔí služby jsou testovacĆ­, pomožte nĆ”m je otestovat. @@ -569,6 +783,14 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Circles Okruhy lidĆ­ + + GxsForums + Fóra + + + GxsChannels + KanĆ”ly + The Wire @@ -580,23 +802,10 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Fotografie - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Browse... + + Add Avatar + Přidat fotku + Remove Odebrat - + Set your Avatar picture Zobrazit fotku @@ -658,6 +871,10 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Načƭst fotku + AvatarWidget @@ -726,10 +943,22 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Reset - + Receive Rate + Rychlost stahovĆ”nĆ­ + + + Send Rate + Rychlost odesĆ­lĆ”nĆ­ + + + Always on Top Podržet nad ostatnĆ­mi + + Style + Styl + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo % Opaque % Opaque + + Save + Uložit + + + Cancel + ZruÅ”it + Since: Od: + + Hide Settings + Skrýt nastavenĆ­ + BandwidthStatsWidget @@ -822,7 +1063,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo BoardPostDisplayWidgetBase - + Comment KomentÔře @@ -852,12 +1093,12 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo KopĆ­rovat RetroShare odkaz - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -865,7 +1106,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo BoardPostDisplayWidget_card - + Vote up @@ -885,7 +1126,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo - + Posted by @@ -923,7 +1164,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo BoardPostDisplayWidget_compact - + Vote up @@ -943,7 +1184,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo - + Click to view picture @@ -973,7 +1214,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo - + Toggle Message Read Status Označit zprĆ”vu za přečtenou @@ -983,7 +1224,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Nový - + TextLabel Textový popisek @@ -991,12 +1232,12 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo BoardsCommentsItem - + I like this - + 0 0 @@ -1016,18 +1257,18 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo Avatar - + New Comment - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz - + Expand Rozbalit @@ -1042,12 +1283,12 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo - + Name - + Comm value @@ -1216,17 +1457,17 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo ChannelPage - + Channels KanĆ”ly - + Tabs ZĆ”ložky - + General ObecnĆ© @@ -1236,17 +1477,11 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo - - Downloads - StahovĆ”nĆ­ + Load posts in background (Thread) + Načƭtat příspěvky na pozadĆ­ - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Otevřít nový kanĆ”l v novĆ© zĆ”ložce @@ -1254,7 +1489,7 @@ Ale měj na paměti, že veÅ”kerĆ” zdejŔí nastavenĆ­ se mohou změnit s každo ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1302,18 +1537,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz - + Expand Rozbalit @@ -1328,7 +1563,7 @@ into the image, so as to - + Name @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + KomentÔře + + + + Comments + + + + Hide Skrýt @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby UkĆ”zat konverzačnĆ­ mĆ­stnost @@ -1549,6 +1794,22 @@ into the image, so as to Chats + + You have %1 new messages + MĆ”te %1 nových zprĆ”v + + + You have %1 new message + MĆ”te %1 novou zprĆ”vu + + + %1 new messages + %1 nových zprĆ”v + + + %1 new message + %1 novĆ” zprĆ”va + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby NeznĆ”mĆ” mĆ­stnost - - + + Remove All Smazat vÅ”e @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name JmĆ©no - + Count Počet @@ -1601,7 +1861,29 @@ into the image, so as to TĆ©ma - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1611,7 +1893,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1668,12 +1950,12 @@ 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: @@ -1683,31 +1965,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Vytvořit konverzačnĆ­ mĆ­stnost + + + [No topic provided] [nebylo poskytnuto žÔdnĆ© tĆ©ma] - - + Selected lobby info + Informace o mĆ­stnosti + + + Private SoukromĆ© - - - + Public VeřejnĆ© - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted AnonymnĆ­ ID přijato @@ -1717,25 +1999,42 @@ Double click a chat room to enter and chat. Odstranit automatickĆ© přihlaÅ”ovĆ”nĆ­ - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Automaticky přihlĆ”sit - + Search Chat lobbies Hledat mĆ­stnost - + Search Name Hledat - + Subscribed + PřihlÔŔen + + + Columns Sloupce + + Yes + Ano + + + No + Ne + Chat rooms @@ -1747,47 +2046,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: TĆ©ma: - + Type: Typ: - + Security: Bezpečnost: - + Peers: Počet uživatelÅÆ: - - - - - - + + + + + + TextLabel Textový popisek @@ -1802,24 +2101,13 @@ Double click a chat room to enter and chat. Bez anonymnĆ­ch ID - + Show UkĆ”zat - - Private Subscribed - - - - - - Public Subscribed - - - - + column sloupec @@ -1833,7 +2121,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Odstranit předmět @@ -1878,22 +2166,46 @@ Double click a chat room to enter and chat. ChatPage - + General ObecnĆ© + + Distant Chat + VzdĆ”lený chat + Everyone VÅ”ichni + + Contacts + Kontakty + Nobody Nikdo - + Accept encrypted distant chat from + Přijmout Å”ifrovaný vzdĆ”lený chat od + + + Chat Settings + NastavenĆ­ chatu + + + Enable Emoticons Private Chat + Povolit smajlĆ­ky v soukromĆ©m chatu + + + Enable Emoticons Group Chat + Používat smajlĆ­ky ve skupinovĆ©m chatu + + + Enable custom fonts Povolit vlastnĆ­ fonty @@ -1902,6 +2214,10 @@ Double click a chat room to enter and chat. Enable custom font size Povolit vlastnĆ­ velikost fontÅÆ + + Minimum font size + MinimĆ”lnĆ­ velikost fontu + Enable bold @@ -1913,7 +2229,7 @@ Double click a chat room to enter and chat. Povolit latinku - + General settings @@ -1938,7 +2254,11 @@ Double click a chat room to enter and chat. Načƭst vloženĆ© obrĆ”zky - + Chat Lobby + Konverzace + + + Blink tab icon Ikona upozorněnĆ­ @@ -1947,6 +2267,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + Soukromý chat + Open Window for new chat @@ -1968,7 +2292,11 @@ Double click a chat room to enter and chat. - + Chat Font + Font chatu + + + Change Chat Font Změnit font chatu @@ -1978,10 +2306,14 @@ Double click a chat room to enter and chat. Font chatu: - + History Historie + + Style + Styl + @@ -1996,13 +2328,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + Skupinový chat + Private chat Soukromý chat - + Choose your default font for Chat. @@ -2066,28 +2402,22 @@ Double click a chat room to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/><body><p align="justify">Zde se nastavuje uchovĆ”vĆ”nĆ­ historie na vaÅ”em HDD pro rÅÆznĆ© druhy chatu. ZprĆ”vy starŔího data budou smazĆ”ny, aby nedoÅ”lo k přesycenĆ­ sĆ­tě (např. pro konverzačnĆ­ mĆ­stnosti a vzdĆ”lený chat).</p></body></html> + + Chatlobbies + KonverzačnĆ­ mĆ­stnosti + Enabled: AktivovĆ”no: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2097,17 +2427,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2204,7 +2524,11 @@ Double click a chat room to enter and chat. NeuklĆ”dat starŔí než...dnĆ­ (0 = bez omezenĆ­) - + Search by default + DefaultnĆ­ hledĆ”nĆ­ + + + Case sensitive Citlivost velikost pĆ­smen @@ -2243,6 +2567,10 @@ Double click a chat room to enter and chat. Threshold for automatic search PrĆ”h automatickĆ©ho vyhledĆ”vĆ”nĆ­ + + Default identity for chat lobbies: + VýchozĆ­ identita pro konverzačnĆ­ mĆ­stnost: + Show Bar by default @@ -2310,7 +2638,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Zobrazit chat @@ -2346,7 +2674,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Zavřít @@ -2381,12 +2709,12 @@ Double click a chat room to enter and chat. KurzĆ­va - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2466,6 +2794,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2503,7 +2836,7 @@ Double click a chat room to enter and chat. - + is typing... pĆ­Å”e... @@ -2525,7 +2858,7 @@ after HTML conversion. - + Do you really want to physically delete the history? Chcete opravdu vymazati historii z počƭtače? @@ -2575,7 +2908,7 @@ after HTML conversion. je zaneprĆ”zdněn a může se stĆ”t, že neodpovĆ­ - + Find Case Sensitively Hledat s rozliÅ”enĆ­m malých a velkých pĆ­smen @@ -2597,7 +2930,7 @@ after HTML conversion. Nezastavovat vybarvovĆ”nĆ­ po X nĆ”lezech (vyŔŔí zĆ”těž CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Hledat předchozĆ­ </b><br/><i>Ctrl+Shift+G</i> @@ -2612,12 +2945,16 @@ after HTML conversion. <b>Hledat </b><br/><i>Ctrl+F</i> - + (Status) (Status) - + Set text font & color + Nastav typ a barvu pĆ­sma + + + Attach a File Přiožit soubor @@ -2633,12 +2970,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Označ vybraný text</b><br><i>Ctrl+M</i> - + Person id: @@ -2649,12 +2986,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. Nalezeno. @@ -2674,7 +3011,7 @@ Double click on it to add his name on text writer. Zde napiÅ” zprĆ”vu... - + Don't stop to color after Nezastavovat vybarvovĆ”nĆ­ po @@ -2700,7 +3037,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Ukazuji detaily: @@ -2722,7 +3059,7 @@ Double click on it to add his name on text writer. - + Personal Circles OsobnĆ­ Kruhy @@ -2748,7 +3085,7 @@ Double click on it to add his name on text writer. - + Friends Kontakty @@ -2808,7 +3145,7 @@ Double click on it to add his name on text writer. Kontakty kontaktÅÆ - + External Circles (Admin) ExternĆ­ Kruhy (Admin) @@ -2824,7 +3161,7 @@ Double click on it to add his name on text writer. - + Circles Okruhy lidĆ­ @@ -2876,48 +3213,43 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. Chyba : nemohu zĆ­skat Ćŗdaje kontaktu - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2929,7 +3261,7 @@ Double click on it to add his name on text writer. Å ifrovĆ”nĆ­ - + Not connected Nespojen @@ -3011,17 +3343,25 @@ Double click on it to add his name on text writer. žÔdný - + <p>This certificate contains: <p>Tento certifikĆ”t obsahuje - + <li>a <b>node ID</b> and <b>name</b> <li>a <b>ID uzlu</b> a <b>jmĆ©no</b> - + an <b>onion address</b> and <b>port</b> + <b>onion (TOR) adresa</b> a <b>port</b> + + + an <b>IP address</b> and <b>port</b> + an <b>IP adresa</b> a <b>port</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Tento certifikĆ”t musĆ­Å” předat svým budoucĆ­m kontaktÅÆm. Použij emailu nebo jinĆ© komunikačnĆ­ platformy.</p> @@ -3036,7 +3376,7 @@ Double click on it to add his name on text writer. <html><head/><body><p>Å ifrovcĆ­ metoda použitĆ” <span style=" font-weight:600;">OpenSSL</span>. SpojenĆ­ s kontakty</p><p>je vždy silně Å”ifrovĆ”no a pokud je použito DHE, spojenĆ­ navĆ­c využívĆ”</p><p>&quot;zabezpečenĆ© přeposĆ­lĆ”nĆ­&quot;.</p></body></html> - + with s @@ -3053,16 +3393,104 @@ Double click on it to add his name on text writer. Connect Friend Wizard PrÅÆvodce přidĆ”nĆ­m kontaktu + + Add a new Friend + Přidat kontakt + + + &You get a certificate file from your friend + &NahrĆ”t soubor s certifikĆ”tem kontaktu (který vĆ”m například přiÅ”el emailem s pozvĆ”nkou). + + + &Make friend with selected friends of my friends + Přidat vybranĆ© dÅÆvěryhodnĆ© kontakty mých dÅÆveryhodných kontaktÅÆ + + + Include signatures + Zahrnout podpisy + + + 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 + + + Run Email program + Spustit emailový klient + Open Cert of your friend from File + + Certificate files + Soubory certifikĆ”tu + + + Use PGP certificates saved in files. + NahrĆ”t PGP certifikĆ”ty ze souboru. + + + Import friend's certificate... + Importovat certifikĆ”t kontaktu... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + MusĆ­te vygenerovat soubor s certifikĆ”tem a předat jej vaÅ”emu kontaktu. Můžete takĆ© použít již existujĆ­cĆ­ dříve vytvořený soubor. + + + Export my certificate... + Exportovat mÅÆj certifikĆ”t... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + PřetĆ”hněte certifikĆ”t kontaktu do tohoto okna a nebo zadejte cestu k tomu souboru do pole níže + + + Browse + ProchĆ”zet + + + Friends of friends + Kontakty kontaktÅÆ + + + Select now who you want to make friends with. + Vyberte koho chcete přidat mezi svĆ© kontakty. + + + Show me: + Ukaž mi: + + + Make friend with these peers + Přidat tyto protějÅ”ky do kontaktÅÆ + RetroShare ID RetroShare ID + + Use RetroShare ID for adding a Friend which is available in your network. + Použít RetroShareID k přidĆ”nĆ­ kontaktu dostupnĆ©ho ve vaŔí sĆ­ti. + + + Add Friends RetroShare ID... + Přidat kontakty RetroShare ID... + + + Paste Friends RetroShare ID in the box below + Vložte RetroShare ID vaÅ”ich kontaktÅÆ do textovĆ©ho pole níže + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Zadejte RetroShare ID vaÅ”eho kontaktu, např. Franta@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3104,7 +3532,27 @@ Double click on it to add his name on text writer. Email - + Invite Friends by Email + Pozvěte kontakty emailem + + + Enter your friends' email addresses (separate each one with a semicolon) + Zadejte emailovĆ© adresy vaÅ”ich kontaktÅÆ oddělenĆ© střednĆ­kem. + + + Your friends' email addresses: + EmailovĆ© adresy vaÅ”ich kontaktÅÆ: + + + Enter Friends Email addresses + Vložte emailovĆ© adresy vaÅ”ich kontaktÅÆ + + + Subject: + Předmět: + + + @@ -3120,32 +3568,40 @@ Double click on it to add his name on text writer. Podrobnosti požadavku - + Peer details Podrobnosti o kontaktu - + Name: JmĆ©no: + + Email: + Email: + + + Node: + Uzel: + Location: UmĆ­stěnĆ­: - + Options Možnosti - + <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: Přidat do skupiny: @@ -3155,7 +3611,7 @@ Double click on it to add his name on text writer. Autentizovat kontakt (podepsat PGP klƭč), potvrzuje vaÅ”i plnou dÅÆvěru,nelze vzĆ­t zpět! - + Please paste below your friend's Retroshare ID @@ -3180,22 +3636,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Přidat jako kontakt pro přímĆ© spojenĆ­ - + To accept the Friend Request, click the Finish button. + Klikni na "Finish" pro přidĆ”nĆ­ kontaktu + + + Sorry, some error appeared Je to smutnĆ©, ale doÅ”lo k nějakĆ© chybě @@ -3215,27 +3665,32 @@ Double click on it to add his name on text writer. Detaily vaÅ”eho kontaktu: - + Key validity: Validita klƭče: - + Profile ID: - + + Signers + Podepsali + + + <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. Tento protějÅ”ek se již nachĆ”zĆ­ ve vaÅ”em seznamu kontaktÅÆ. Jeho opětovnĆ© přidĆ”nĆ­ může nanejvýŔ nastavit jeho novou IP adresu. - + To accept the Friend Request, click the Accept button. @@ -3281,17 +3736,45 @@ Double click on it to add his name on text writer. - + Certificate Load Failed NačƭtĆ”nĆ­ certifikĆ”tu selhalo - + Cannot get peer details of PGP key %1 + Nelze zĆ­skat podrobnost o PGP klƭči %1 + + + Any peer I've not signed + NepodepsanĆ© kontakty + + + Friends of my friends who already trust me + Kontakty kontaktÅÆ kterĆ© mi již dÅÆvěřujĆ­ + + + Signed peers showing as denied + PodepsanĆ© protějÅ”ky zobrazenĆ© jako odmĆ­tnutĆ© + + + Peer name + JmĆ©no protějÅ”ku + + + Also signed by + PodepsĆ”n takĆ© (kým): + + + Peer id + ID protějÅ”ku + + + Not a valid Retroshare certificate! - + RetroShare Invitation PozvĆ”nka do RetroShare - sociĆ”lnĆ­ P2P sĆ­tě zaměřenĆ© předevŔím na sdĆ­lenĆ­ souborÅÆ. @@ -3311,12 +3794,12 @@ 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? - + @@ -3324,7 +3807,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3364,7 +3847,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ŽÔdost o přidĆ”nĆ­ do kontaktu od: - + Profile password needed. @@ -3389,7 +3872,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3399,7 +3882,55 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + NačtenĆ­ certifikĆ”tu selhalo: soubor %1 nebyl nalezen + + + This Peer %1 is not available in your Network + ProtějÅ”ek %1 nenĆ­ ve vaŔí sĆ­ti dostupný. + + + Use new certificate format (safer, more robust) + NynĆ­ je používĆ”n starý (zpětně kompatibilnĆ­) formĆ”t certifikĆ”tu (kliknutĆ­m přepnete na nový). + + + Use old (backward compatible) certificate format + NynĆ­ je používĆ”n nový formĆ”t certifikĆ”tu (bezpečnějŔí a odolnějŔí). + + + Remove signatures + Odstranit podpisy + + + RetroShare Invite + PozvĆ”nka do RetroShare + + + Connect Friend Help + Informace + + + You can copy this text and send it to your friend via email or some other way + V hornĆ­ ÄĆ”sti okna prÅÆvodce se nachĆ”zĆ­ vÔŔ PGP certifikĆ”t, který musĆ­te nějakým zpÅÆsobem poslat vaÅ”emu kontaktu, například pomocĆ­ emailu, skypu, facebooku, výměnou na fóru nebo jakkoliv jinak, můžete použít cokoliv čƭm si posĆ­lĆ”te textovĆ© zprĆ”vy. VÔŔ kontakt vĆ”m rovněž musĆ­ zaslat svÅÆj certifikĆ”t, takže si je vlastně vyměnĆ­te. Vy zkopĆ­rujete a vložíte jeho certifikĆ”t do textovĆ©ho pole v dolnĆ­ ÄĆ”sti obrazovky prÅÆvodce, a on udělĆ” to samĆ© s vÔŔím certifikĆ”tem. Pokud vÅ”e funguje jak mĆ”, mělo by se vĆ”m podařit navĆ”zat přímĆ© spojenĆ­. + +O vaÅ”em PGP certifikĆ”tu: VÔŔ PGP který obsahuje jedinečný veřejný klƭč vaŔí identity, a ve spodnĆ­ ÄĆ”sti takĆ© vaŔí lokĆ”lnĆ­ a veřejnou IP adresu a umĆ­stěnĆ­. Kontaktu jemuž tento certifikĆ”t poÅ”lete byste proto měli alespoň elementĆ”rně dÅÆvěřovat. Podle ĆŗÄelu použitĆ­ tohoto programu se může jednat o členy vaŔí rodiny, přÔtele či obchodnĆ­ kontakty, ale takĆ© třeba lidi z druhĆ©ho konce světa, o kterých jedinĆ© co s jistotou vĆ­te je, že sdĆ­lĆ­te společnĆ© zĆ”jmy. + +SpojenĆ­: Abyste se mohli spojit, musĆ­ alespoň jeden z vĆ”s mĆ­t veřejnou IP adresu, případně musĆ­te být napojeni na někoho kdo ji mĆ” a poslouží jako prostřednĆ­k (tzv. proxy) pro přeposĆ­lĆ”nĆ­ zprĆ”v, souborÅÆ a ostatnĆ­ch typÅÆ dat. + +Program RetroShare vĆ”m umožňuje vytvořit si vlastnĆ­ sociĆ”lnĆ­ sĆ­Å„, kterĆ” vĆ”m zajistĆ­ lepŔí soukromĆ­, protože vaÅ”e data nejsou uklĆ”dĆ”na v počƭtačƭch velkých firem, ale pouze u vĆ”s a vaÅ”ich kontaktÅÆ. Protože si ji ale musĆ­te vybudovat vy sami pěkně od pĆ­ky, je dobrĆ© k zĆ­skĆ”vĆ”nĆ­ nových kontaktÅÆ využít existujĆ­cĆ­ch sociĆ”lnĆ­ch a komunikačnĆ­ch služeb kterĆ© již užívĆ”te. + +RetroShare neaspiruje na to být nejlepŔí sociĆ”lnĆ­ sĆ­tĆ­, mĆ” svĆ© mouchy a problĆ©my, ale jeho hlavnĆ­ devizou je prĆ”vě možnost vytvořit ÄĆ”stečně anonymnĆ­ P2P sĆ­Å„, v níž můžete relativně bezpečně sdĆ­let soubory a diskutovat, při vhodnĆ© volbě přezdĆ­vky a kontaktÅÆ dokonce zĆ­skĆ”te i jistou mĆ­ru anonymity. + + + 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 (*) @@ -3438,7 +3969,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** Nic *** - + Use as direct source, when available + Stahovat přímo od pokud možno + + + IP-Addr: @@ -3448,7 +3983,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3467,13 +4002,41 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + Doporučit kontakty jiným kontaktÅÆm + + + Friend Recommendations + DoporučenĆ© kontakty + + + Message: + ZprĆ”va: + + + Recommend friends + Doporučit kontakty + + + To + Pro + + + 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 + Add key to keyring Přidat klƭč do klƭčenky - + This key is already in your keyring Tento klƭč je již v klƭčence @@ -3489,7 +4052,7 @@ pro posĆ­lĆ”nĆ­ např. zprĆ”v uzlÅÆm, kterĆ© nemĆ”te přímo v kontaktech. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. NesprĆ”vnĆ” verze certifikĆ”tu. RetroShare verze 0,6 a 0,5 jsou vzĆ”jemně nekompatibilnĆ­. @@ -3524,7 +4087,7 @@ kterĆ© nemĆ”te přímo v kontaktech. Přidat IP do whitelist - + No IP in this certificate! V certifikĆ”tu nenĆ­ IP adresa! @@ -3534,10 +4097,27 @@ kterĆ© nemĆ”te přímo v kontaktech. <p>V certifikĆ”tu nenĆ­ IP adresa. Discovery a DHT se ji pokusĆ­ najĆ­t. Po jejĆ­m nalezenĆ­ se v UdĆ”lostech objevĆ­ bezpečnostnĆ­ upozorněnĆ­, pomocĆ­ kterĆ©ho můžete tuto adresu přidat do whitelist pro ĆŗspěŔnĆ© spojenĆ­.</p> - + + [Unknown] + + + + Added with certificate from %1 PřidĆ”n s certifikĆ”tem od %1 + + Paste Cert of your friend from Clipboard + Vložit certifikĆ”t vaÅ”eho kontaktu ze schrĆ”nky + + + Certificate Load Failed:can't read from file %1 + NačtenĆ­ certifikĆ”tu selhalo: nemůžu přečƭst soubor %1 + + + Certificate Load Failed:something is wrong with %1 + NačtenĆ­ certifikĆ”tu selhalo: něco je Å”patně s %1 + ConnectProgressDialog @@ -3599,7 +4179,7 @@ kterĆ© nemĆ”te přímo v kontaktech. - + UDP Setup ZkouŔím UDP @@ -3627,7 +4207,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant Pokus o spojenĆ­ - informace @@ -3637,20 +4217,17 @@ p, li { white-space: pre-wrap; } NeplatnĆ© ID kontaktu - - + Unknown State NeznĆ”mý stav - - + Offline Odpojen - - + Behind Symmetric NAT Za symetrickým NAT @@ -3660,14 +4237,12 @@ p, li { white-space: pre-wrap; } Za NAT & bez DHT - - + NET Restart NET Restart - - + Behind NAT Za NAT @@ -3677,8 +4252,7 @@ p, li { white-space: pre-wrap; } Bez DHT - - + NET STATE GOOD! STAV SƍTĚ V POŘÁDKU @@ -3703,7 +4277,7 @@ p, li { white-space: pre-wrap; } HledĆ”m RS uzly - + Lookup requires DHT Vyžaduje zapnutĆ© DHT @@ -3995,7 +4569,7 @@ p, li { white-space: pre-wrap; } ProsĆ­m zopakujte import kompletnĆ­ho certifikĆ”tu - + @@ -4003,8 +4577,7 @@ p, li { white-space: pre-wrap; } nedostupnĆ© - - + UNVERIFIABLE FORWARD! NEOVĚŘITELNƝ FORWARD! @@ -4014,7 +4587,7 @@ p, li { white-space: pre-wrap; } NEOVĚŘITELNƝ FORWARD & BEZ DHT! - + Searching VyhledĆ”vĆ”m @@ -4050,12 +4623,12 @@ p, li { white-space: pre-wrap; } Detail Kruhu - + Name JmĆ©no - + <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> @@ -4075,7 +4648,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4095,18 +4668,18 @@ p, li { white-space: pre-wrap; } Filtr - + Cancel ZruÅ”it - + Nickname PřezdĆ­vka - + Invited Members @@ -4121,7 +4694,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + Typ + + + Name: JmĆ©no: @@ -4161,19 +4742,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle Nastavte prosĆ­m jmĆ©no vaÅ”eho Kruhu - + No Restriction Circle Selected NevybrĆ”no žÔdnĆ© omezenĆ­ Kruhu @@ -4183,24 +4764,12 @@ p, li { white-space: pre-wrap; } NevybrĆ”ny žÔdnĆ© limity Kruhu - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Přidat @@ -4210,7 +4779,7 @@ p, li { white-space: pre-wrap; } Odstranit - + Search Hledat @@ -4225,6 +4794,10 @@ p, li { white-space: pre-wrap; } Signed PodepsĆ”no + + Signed by known nodes + PodepsĆ”no znĆ”mými uzly + Edit Circle @@ -4241,6 +4814,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP identita + + Anon Id + AnonymnĆ­ ID + Circle name @@ -4263,13 +4840,17 @@ p, li { white-space: pre-wrap; } - + Create Vytvořit - + PGP Linked Id + PGP link ID + + + Add Member @@ -4288,7 +4869,7 @@ p, li { white-space: pre-wrap; } Vytvořit skupinu - + Group Name: JmĆ©no skupiny: @@ -4323,7 +4904,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Přidat příspěvek @@ -4333,7 +4914,7 @@ p, li { white-space: pre-wrap; } ZprĆ”va - + Post @@ -4394,11 +4975,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> PřetĆ”hni soubory zde nebo klikni na Přidat soubory.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> ZkopĆ­ruj/Vlož RetroShare odkazy ze svých sdĆ­lenĆ­</span></p></body></html> + + Add File to Attach + Přiložit soubor + Add Channel Thumbnail Nastavit obrĆ”zek + + Message + ZprĆ”va + + + Subject : + Předmět: + @@ -4484,17 +5077,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4513,18 +5106,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Soubor je již přidĆ”n a zatříděn + Please add a Subject ProsĆ­m zadejte předmět - - Cannot publish post - - - - + Load thumbnail picture NahrĆ”t miniaturu @@ -4539,12 +5131,18 @@ p, li { white-space: pre-wrap; } Skrýt - + + Generate mass data Generovat hromadnĆ© Ćŗdaje - + + Do you really want to generate %1 messages ? + Opravdu chcete vygenerovat %1 zprĆ”v? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Chcete přidat soubory, kterĆ© vÅ”ak přímo nesdĆ­lĆ­te. Opravdu? @@ -4578,7 +5176,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Odeslat příspěvek na fórum @@ -4587,6 +5185,10 @@ p, li { white-space: pre-wrap; } Forum Fórum + + Subject + Předmět + Attach File @@ -4607,8 +5209,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4627,7 +5229,7 @@ p, li { white-space: pre-wrap; } PřetĆ”hnutĆ­m do tohoto okna můžete přiložit soubory - + Post @@ -4657,17 +5259,17 @@ p, li { white-space: pre-wrap; } - + No Forum ŽÔdnĆ© fórum - + In Reply to Reakce na - + Title Nadpis @@ -4720,7 +5322,7 @@ Do you want to discard this message? NahrĆ”t soubor s obrĆ”zkem - + No compatible ID for this forum @@ -4730,8 +5332,8 @@ Do you want to discard this message? - - + + Generate mass data Generovat hromadnĆ© Ćŗdaje @@ -4740,6 +5342,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? Opravdu chcete vygenerovat %1 zprĆ”v? + + Send + Odeslat + Post as @@ -4754,7 +5360,23 @@ Do you want to discard this message? CreateLobbyDialog - + Create Chat Lobby + Vytvořit konverzačnĆ­ mĆ­stnost + + + 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. + KonverzačnĆ­ mĆ­stnosti jsou decentralizovanĆ© a anonymnĆ­ konverzačnĆ­ skupiny (chat). VÅ”ichni ĆŗÄastnĆ­ci obdrží vždy vÅ”echny zprĆ”vy. Jakmile je skupina vytvořena, můžete pozvat dalŔí kontakty (v zĆ”ložce Kontakty). + + + Lobby name: + JmĆ©no mĆ­stnosti: + + + Lobby topic: + TĆ©ma konverzace: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4789,7 +5411,7 @@ Do you want to discard this message? - + Create Vytvořit @@ -4799,7 +5421,7 @@ Do you want to discard this message? ZruÅ”it - + require PGP-signed identities @@ -4814,7 +5436,11 @@ Do you want to discard this message? Zvolte kontakty, s nimiž chcete uskutečnit skupinovou konverzaci - + Invited friends + PozvanĆ© kontakty + + + Create Chat Room @@ -4835,7 +5461,7 @@ Do you want to discard this message? Kontakty: - + Identity to use: PoužitĆ” identita: @@ -4843,17 +5469,17 @@ Do you want to discard this message? CryptoPage - + Public Information VeřejnĆ© informace - + Name: JmĆ©no: - + Location: UmĆ­stěnĆ­: @@ -4863,12 +5489,12 @@ Do you want to discard this message? ID lokace: - + Software Version: Verze RetroShare : - + Online since: Připojen od: @@ -4888,7 +5514,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4898,7 +5529,7 @@ Do you want to discard this message? - + Other Information DalŔí informace @@ -4908,12 +5539,17 @@ Do you want to discard this message? - + Profile - + + Certificate + CertifikĆ”t + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4923,7 +5559,11 @@ Do you want to discard this message? Zahrnout podpisy - + Save Key into a file + Uložit klƭč do souboru + + + Export Identity Exportovat identitu @@ -4997,33 +5637,33 @@ tam ji importujte. - + TextLabel Textový popisek - + PGP fingerprint: PGP otisk: - + + Node information + Informace o uzlu + + + PGP Id : PGP ID : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5062,6 +5702,14 @@ tam ji importujte. Node Uzel + + Create new node... + Vytvořte nový uzel... + + + show statistics window + Zobrazit statistiky + DHTGraphSource @@ -5113,7 +5761,7 @@ tam ji importujte. DLListDelegate - + B B @@ -5781,7 +6429,7 @@ tam ji importujte. DownloadToaster - + Start file Spustit soubor @@ -5789,38 +6437,38 @@ tam ji importujte. ExprParamElement - + - + to pro - + ignore case ignorovat případy - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5828,12 +6476,12 @@ tam ji importujte. ExpressionWidget - + Expression Widget Výrazný Widget - + Delete this expression Odstranit tento výraz @@ -5995,7 +6643,7 @@ tam ji importujte. FilesDefs - + Picture ObrĆ”zek @@ -6005,7 +6653,7 @@ tam ji importujte. Video - + Audio Audio @@ -6065,21 +6713,11 @@ tam ji importujte. C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories SdĆ­lenĆ© soubory a složky mých kontaktÅÆ @@ -6201,7 +6839,7 @@ tam ji importujte. - + ID ID @@ -6243,7 +6881,7 @@ tam ji importujte. Zobrazit skupiny - + Group Skupina @@ -6279,7 +6917,7 @@ tam ji importujte. Přidat do skupiny - + Search @@ -6295,7 +6933,7 @@ tam ji importujte. - + Profile details @@ -6532,7 +7170,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request Potvrdit přidĆ”nĆ­ kontaktu @@ -6549,6 +7187,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + Hledat : + Sort by state @@ -6570,7 +7212,7 @@ at least one peer was not added to a group Hledat kontakty - + Mark all Označit vÅ”e @@ -6581,132 +7223,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - Status - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Přidat kontakt - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Editovat status - - + + Broadcast Rozhlas @@ -6789,38 +7315,33 @@ Also check your ports! Nastavit výchozĆ­ font - + Keyring Klƭčenka - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. RetroShare rozhlas: zprĆ”va je odeslĆ”na vÅ”em připojeným kontaktÅÆm. - - + + Network SĆ­Å„ - - Friend Server - - - - + Network graph SĆ­Å„ový graf - - <h1><img width="%1" 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> - - - - + Set your status message here. Zde napiÅ” svÅÆj status. @@ -6838,17 +7359,7 @@ Also check your ports! Heslo - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters VÅ”echny prvky vyžadujĆ­ zadĆ”nĆ­ alespoň tří znakÅÆ. @@ -6858,12 +7369,17 @@ Also check your ports! Hesla nejsou stejnĆ” - + Port Port - + + Use BOB + + + + This password is for PGP Heslo pro PGP @@ -6884,38 +7400,38 @@ Also check your ports! Nemůžu vygenerovat nový certifikĆ”t, možnĆ” jste Å”patně napsali PGP heslo! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6935,12 +7451,12 @@ Also check your ports! - + <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 @@ -6950,43 +7466,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + Advanced options + PokročilĆ© volby + + + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. VÔŔ profil je spojen s PGP pĆ”rem klĆ­ÄÅÆ. V současnĆ© době RetroShare ignoruje DSA klƭče. - + <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> @@ -7034,13 +7549,13 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. Profil se nepodařilo uložit, protože nastala chyba. - + Import profile Importovat profil - + Create new profile and new Retroshare node @@ -7050,7 +7565,7 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. - + Tor/I2P address @@ -7085,7 +7600,7 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7095,7 +7610,12 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7105,7 +7625,12 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7331,13 +7856,36 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. ZačƭnĆ”me - + Invite Friends Pozvat přÔtelĆ© - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bez kontaktÅÆ nestojĆ­ RetroShare za nic. Klikněte na tlačƭtko a pozvěte novĆ© lidi!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">PoÅ”lete pozvĆ”nku s vaŔím &quot;certifikĆ”tem&quot; vaÅ”im přÔtelÅÆ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-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Ujistěte se, že vĆ”m takĆ© poÅ”lou pozvĆ”nku... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Můžete se spojit pouze tehdy, pokud jste se do kontaktÅÆ přidali navzĆ”jem.</span></p></body></html> + + + Add Your Friends to RetroShare Přidat tvoje přÔtele do Retroshare @@ -7347,103 +7895,89 @@ a vytvořit nový node využívajĆ­cĆ­ stejný profil. Přidat přÔtele - - Connect To Friends - Připojit k přÔtelÅÆm - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - PokročƭlĆ©: Otevřený Port Firewallu - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + Připojit k přÔtelÅÆm + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + PokročƭlĆ©: Otevřený Port Firewallu + + + Further Help and Support DalŔí pomoc a podpora - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Otevřít webovou strĆ”nku RetroShare @@ -7468,7 +8002,7 @@ p, li { white-space: pre-wrap; } EmailovĆ” zpětnĆ” vazba - + RetroShare Invitation PozvĆ”nka do RetroShare @@ -7522,12 +8056,12 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne RetroShare zpětnĆ” vazba - + RetroShare Support RetroShare Podpora - + It has many features, including built-in chat, messaging, @@ -7651,7 +8185,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GroupChatToaster - + Show Group Chat Zobrazit skupinovou konverzaci @@ -7659,7 +8193,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GroupChooser - + [Unknown] @@ -7829,7 +8363,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GroupTreeWidget - + Title Nadpis @@ -7842,12 +8376,12 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Description Popis - + Number of Unread message @@ -7872,7 +8406,19 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Sort by Name + Seřadit podle jmĆ©na + + + Sort by Popularity + Seřadit podle oblĆ­benosti + + + Sort by Last Post + Seřadit podle poslednĆ­ho příspěvku + + + You are admin (modify names and description using Edit menu) @@ -7887,14 +8433,14 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - - + + Last Post PoslednĆ­ příspěvek - + Name @@ -7905,13 +8451,17 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Popularita - + Never - + Display + Zobrazit + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7924,7 +8474,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GuiExprElement - + and a @@ -8060,7 +8610,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsChannelDialog - + Channels KanĆ”ly @@ -8071,22 +8621,22 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Vytvořit kanĆ”l - + Enable Auto-Download Zapnout automatickĆ© stahovĆ”nĆ­ - + My Channels Moje kanĆ”ly - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels OdebĆ­ranĆ© kanĆ”ly @@ -8106,12 +8656,12 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Disable Auto-Download Vypnout automatickĆ© stahovĆ”nĆ­ - + Set download directory @@ -8146,22 +8696,22 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Play PřehrĆ”t - + Open folder - + Open file - + Error Chyba @@ -8181,17 +8731,17 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File PřehrĆ”t soubor @@ -8201,10 +8751,33 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Soubor %1 neexistuje. + + GxsChannelFilesWidget + + Form + FormulÔř + + + Filename + JmĆ©no souboru + + + Size + Velikost + + + Title + Nadpis + + + Status + Status + + GxsChannelGroupDialog - + Create New Channel Vytvořit nový kanĆ”l @@ -8242,19 +8815,9 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsChannelGroupItem - - Last activity - - - - - TextLabel - Textový popisek - - - - Subscribe this Channel - + + Subscribe to Channel + OdebĆ­rat kanĆ”l @@ -8268,7 +8831,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Expand Rozbalit @@ -8283,7 +8846,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Popis kanĆ”lu - + Loading NahrĆ”vĆ”m @@ -8298,9 +8861,8 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - - Never - + New Channel + Nový kanĆ”l @@ -8311,7 +8873,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsChannelPostItem - + New Comment: @@ -8332,7 +8894,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Play PřehrĆ”t @@ -8394,18 +8956,18 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Skrýt - + New Nový - + 0 0 - - + + Comment KomentÔře @@ -8420,17 +8982,21 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Loading + NahrĆ”vĆ”m + + + Loading... - + Comments - + Post @@ -8455,16 +9021,67 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne PřehrĆ”t + + GxsChannelPostsWidget + + Post to Channel + Přidat příspěvek do kanĆ”lu + + + Loading + NahrĆ”vĆ”m + + + Title + Nadpis + + + Search Title + Hledat podle jmĆ©na fóra + + + Message + Text příspěvku + + + Filename + JmĆ©no souboru + + + No Channel Selected + NenĆ­ vybrĆ”n žÔdný kanĆ”l + + + Disable Auto-Download + Vypnout automatickĆ© stahovĆ”nĆ­ + + + Enable Auto-Download + Zapnout automatickĆ© stahovĆ”nĆ­ + + + Feeds + KanĆ”ly + + + Files + Soubory + + + Description: + Popis: + + GxsChannelPostsWidgetWithModel - + Post to Channel Přidat příspěvek do kanĆ”lu - + Add new post @@ -8534,7 +9151,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - Items (locally / at friends): + Posts (locally / at friends): @@ -8570,7 +9187,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Comments KomentÔře @@ -8585,13 +9202,13 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne KanĆ”ly - - + + Click to switch to list view - + Show unread posts only @@ -8606,7 +9223,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + No text to display @@ -8621,7 +9238,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Switch to list view @@ -8681,22 +9298,12 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8771,13 +9378,12 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - - + Copy Retroshare link - + Subscribed PřihlÔŔen @@ -8828,17 +9434,17 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsCircleItem - + TextLabel Textový popisek - + Circle name: - + Accept @@ -8953,7 +9559,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsCommentContainer - + Comment Container @@ -8966,7 +9572,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne FormulÔř - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8996,7 +9602,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + Comment KomentÔře @@ -9035,7 +9641,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne GxsCommentTreeWidget - + Reply to Comment Reagovat na komentÔř @@ -9059,21 +9665,6 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne Vote Down Palec dolu - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9083,7 +9674,7 @@ Při používĆ”nĆ­ sĆ­tě proto pokud možno používejte pouhou přezdĆ­vku, ne - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9112,7 +9703,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9143,7 +9734,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9194,7 +9785,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum OdebĆ­rat fórum @@ -9210,7 +9801,7 @@ before you can comment - + Expand Rozbalit @@ -9230,9 +9821,8 @@ before you can comment - - TextLabel - Textový popisek + Loading + NahrĆ”vĆ”m @@ -9263,13 +9853,13 @@ before you can comment GxsForumMsgItem - - + + Subject: Předmět: - + Unsubscribe To Forum NeodebĆ­rat fórum @@ -9280,7 +9870,7 @@ before you can comment - + Expand Rozbalit @@ -9300,17 +9890,21 @@ before you can comment - + Loading + NahrĆ”vĆ”m + + + Loading... - + Forum Feed - + Hide Skrýt @@ -9323,66 +9917,63 @@ before you can comment FormulÔř - + Start new Thread for Selected Forum Založit novĆ© vlĆ”kno ve vybranĆ©m fóru - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Hledat ve fórech - + Last Post + PoslednĆ­ příspěvek + + + New Thread + + + Threaded View + podle vlĆ”ken + + + + Flat View + VÅ”e za sebou + - + Title Nadpis - - + + Date Datum - + Author Autor - + + Save image + + + + Loading NačƭtĆ”m - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9392,7 +9983,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message Odpovědět na příspěvek @@ -9416,6 +10012,10 @@ before you can comment Download all files StĆ”hnout vÅ”echny soubory + + Next unread + DalŔí nepřečtený + Search Title @@ -9432,23 +10032,31 @@ before you can comment Hledat podle autora - + Content + Obsah + + + Search Content + Hledat v obsahu zprĆ”vy + + + No name Bez jmĆ©na - - + + Reply Odpovědět - + <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> - + Loading... @@ -9491,12 +10099,16 @@ before you can comment KopĆ­rovat RetroShare odkaz - + Hide Skrýt - + Expand + Rozbalit + + + [unknown] @@ -9526,8 +10138,8 @@ before you can comment - - + + Distribution @@ -9541,6 +10153,22 @@ before you can comment Anti-spam + + Anonymous + AnonymnĆ­ sdĆ­lenĆ­ + + + signed + podepsĆ”no + + + none + žÔdný + + + [ ... Missing Message ... ] + [ ... chybějĆ­cĆ­ zprĆ”va ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9610,12 +10238,12 @@ before you can comment PÅÆvodnĆ­ zprĆ”va - + New thread - + Edit Editovat @@ -9676,7 +10304,7 @@ before you can comment - + Show column @@ -9696,7 +10324,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9748,7 +10376,7 @@ This message is missing. You should receive it later. - + No result. @@ -9758,7 +10386,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9773,7 +10401,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9839,12 +10467,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Fórum @@ -9875,16 +10503,31 @@ This message is missing. You should receive it later. OstatnĆ­ fóra + + GxsForumsFillThread + + Waiting + ČekĆ”m + + + Retrieving + Stahuji + + + Loading + NačƭtĆ”m + + GxsGroupDialog - + Name JmĆ©no uživatele - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9893,14 +10536,22 @@ This message is missing. You should receive it later. Share Publish Key + + check peers you would like to share private publish key with + zaÅ”krtněte protějÅ”ky s nimiž chcete sdĆ­let soukromý klƭč k publikačnĆ­mu prĆ”vu + + + Share Key With + SdĆ­let klƭč s + - + Description Popis - + Message Distribution @@ -9908,7 +10559,7 @@ This message is missing. You should receive it later. - + Public VeřejnĆ© @@ -9968,7 +10619,7 @@ This message is missing. You should receive it later. - + Comments: KomentÔře: @@ -9991,7 +10642,7 @@ This message is missing. You should receive it later. - + All People @@ -10007,12 +10658,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10029,23 +10680,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10061,28 +10712,22 @@ This message is missing. You should receive it later. Detaily - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10092,12 +10737,12 @@ This message is missing. You should receive it later. - + Info - + ID ID @@ -10107,7 +10752,7 @@ This message is missing. You should receive it later. PoslednĆ­ příspěvek - + <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> @@ -10182,12 +10827,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity Popularita @@ -10203,22 +10843,27 @@ This message is missing. You should receive it later. - + Created - + Cancel ZruÅ”it - + Create Vytvořit - + + Author + Autor + + + GxsIdLabel @@ -10226,7 +10871,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading NahrĆ”vĆ”m @@ -10286,7 +10931,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10343,12 +10988,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz @@ -10371,7 +11016,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10384,14 +11029,18 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + NahrĆ”vĆ”m + + + Not found - - + + [Banned] @@ -10401,7 +11050,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10411,12 +11060,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10436,14 +11080,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10455,7 +11091,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10503,13 +11139,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + NahrĆ”vĆ”m + Loading... @@ -10890,7 +11530,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10906,7 +11546,7 @@ p, li { white-space: pre-wrap; } - + Authors Autoři @@ -10925,7 +11565,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10999,7 +11639,7 @@ p, li { white-space: pre-wrap; } FormulÔř - + Add friend @@ -11009,7 +11649,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11037,7 +11677,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11047,7 +11687,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard KopĆ­rovat vÔŔ certifikĆ”t do schrĆ”nky @@ -11057,7 +11697,7 @@ private and secure decentralized communication platform. Uložit vÔŔ certifikĆ”t do souboru - + Send via Email @@ -11077,37 +11717,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11119,12 +11735,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11139,7 +11755,12 @@ new short format PozvĆ”nka do RetroShare - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Uložit jako... @@ -11404,14 +12025,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All VÅ”e - + Reputation @@ -11421,12 +12042,12 @@ p, li { white-space: pre-wrap; } Hledat - + Anonymous Id - + Create new Identity Vytvořit novou identitu @@ -11436,7 +12057,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11451,27 +12072,27 @@ p, li { white-space: pre-wrap; } - + Close Zavřít - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11487,39 +12108,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles Okruhy lidĆ­ - + Circle name @@ -11539,20 +12150,18 @@ p, li { white-space: pre-wrap; } OsobnĆ­ Kruhy - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11562,78 +12171,78 @@ p, li { white-space: pre-wrap; } - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message Odeslat zprĆ”vu - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + Type: Typ: - + Send Invite - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: - + Negative - + Neutral @@ -11644,17 +12253,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 AnonymnĆ­ sdĆ­lenĆ­ @@ -11669,24 +12278,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11701,12 +12310,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11716,7 +12320,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11791,7 +12395,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11821,7 +12425,7 @@ p, li { white-space: pre-wrap; } neznĆ”mĆ© - + Invited @@ -11836,7 +12440,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle Upravit Kruh @@ -11884,7 +12488,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. @@ -11892,7 +12496,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11935,7 +12539,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11977,7 +12581,7 @@ These identities will soon be not supported anymore. Message - ZprĆ”va + @@ -12015,7 +12619,7 @@ These identities will soon be not supported anymore. - + information @@ -12031,12 +12635,17 @@ 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> + + + + positive @@ -12141,7 +12750,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12191,21 +12800,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12215,7 +12824,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12230,7 +12839,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12245,12 +12854,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12270,12 +12879,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12285,7 +12894,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12293,7 +12902,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname PřezdĆ­vka @@ -12323,13 +12932,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12343,7 +12946,7 @@ These identities will soon be not supported anymore. - + @@ -12353,12 +12956,7 @@ These identities will soon be not supported anymore. nedostupnĆ© - - No avatar chosen - - - - + Edit identity @@ -12369,27 +12967,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12409,7 +13007,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12419,18 +13017,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12440,7 +13032,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12450,7 +13047,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12460,15 +13057,10 @@ These identities will soon be not supported anymore. Typ - + Choose image... - - - Remove - Odebrat - @@ -12494,7 +13086,7 @@ These identities will soon be not supported anymore. Přidat - + Create Vytvořit @@ -12504,13 +13096,13 @@ These identities will soon be not supported anymore. ZruÅ”it - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12520,7 +13112,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12594,7 +13186,7 @@ These identities will soon be not supported anymore. - + Copy KopĆ­rovat @@ -12604,12 +13196,12 @@ These identities will soon be not supported anymore. Odebrat - + %1 's Message History - + Mark all Označit vÅ”e @@ -12628,38 +13220,26 @@ These identities will soon be not supported anymore. Quote Citovat + + Send + Odeslat + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12677,32 +13257,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: Port: - + Listen Address: - - Status: - Status: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12723,12 +13298,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12737,31 +13307,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Otevřít soubor - + Open Folder Otevřít složku - + Checking... Kontroluji... @@ -12771,7 +13336,7 @@ These identities will soon be not supported anymore. Zkontrolovat soubory - + Recommend in a message to... @@ -12799,7 +13364,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Přidat kontakt @@ -12815,8 +13380,7 @@ These identities will soon be not supported anymore. - - + Options NastavenĆ­ @@ -12837,7 +13401,7 @@ These identities will soon be not supported anymore. - + Quit Ukončit @@ -12848,12 +13412,12 @@ These identities will soon be not supported anymore. PrÅÆvodce nastavenĆ­m - + RetroShare %1 a secure decentralized communication platform RetroShare %1 - bezpečnĆ” decentralizovanĆ” komunikačnĆ­ platforma - + Unfinished Nedokončeno @@ -12878,12 +13442,11 @@ These identities will soon be not supported anymore. - Status Status - + Notify Upozornit @@ -12894,35 +13457,31 @@ These identities will soon be not supported anymore. - Open Messages Zobrazit zprĆ”vy - - + Bandwidth Graph Graf přenosovĆ© rychlosti - + Applications Aplikace - Help NĆ”pověda - - + Minimize Minimalizovat - + Maximize Maximalizovat @@ -12937,12 +13496,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message %1 novĆ” zprĆ”va @@ -12972,7 +13526,7 @@ These identities will soon be not supported anymore. %1 kontaktÅÆ připojeno - + Do you really want to exit RetroShare ? Opravdu chcete ukončit RetroShare? @@ -12992,7 +13546,7 @@ These identities will soon be not supported anymore. Zobrazit - + Make sure this link has not been forged to drag you to a malicious website. Ujistěte se, že tento odkaz nebyl zfalÅ”ovĆ”n za ĆŗÄelem dostat vĆ”s na Å”kodlivĆ© webovĆ© strĆ”nky. @@ -13037,13 +13591,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13058,7 +13611,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13067,17 +13620,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose Napsat zprĆ”vu - + Contacts Kontakty - + Paragraph Odstavec @@ -13113,12 +13666,12 @@ These identities will soon be not supported anymore. Nadpis 6. Ćŗrovně - + Font size Velikost fontu - + Increase font size ZvětÅ”it velikost fontu @@ -13133,32 +13686,32 @@ These identities will soon be not supported anymore. TučnĆ© - + Italic KurzĆ­va - + Alignment ZarovnĆ”nĆ­ - + Add an Image Vložit obrĆ”zek - + Sets text font to code style Zdrojový kód (nastavĆ­ neproporcionĆ”lnĆ­ font) - + Underline PodtrženĆ© - + Subject: Předmět: @@ -13169,32 +13722,32 @@ These identities will soon be not supported anymore. - + Tags Å tĆ­tky - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files DoporučenĆ© soubory @@ -13264,7 +13817,7 @@ These identities will soon be not supported anymore. OdsadĆ­ citaci - + Send To: Odeslat komu: @@ -13304,7 +13857,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Ahoj,<br>doporučuji ti tento kontakt. Když dÅÆvěřujeÅ” mě, můžeÅ” dÅÆvěřovat takĆ© tomuto kontaktu. <br> @@ -13324,18 +13877,18 @@ These identities will soon be not supported anymore. si vĆ”s chce přidat do kontaktÅÆ. - + 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 Ahoj %1,<br><br>%2 si vĆ”s chce přidat do kontaktÅÆ.<br><br>Odpovězte nynĆ­:<br>%3<br><br>Děkujeme,<br>Tým RetroShare - - + + Save Message Uložit zprĆ”vu - + Message has not been Sent. Do you want to save message to draft box? ZprĆ”va nebyla odeslĆ”na. @@ -13347,17 +13900,7 @@ Chcete ji uložit jako koncept? Vložit RetroShare odkaz - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Přidat do "Komu" @@ -13377,7 +13920,7 @@ Chcete ji uložit jako koncept? Doporučit - + Original Message PÅÆvodnĆ­ zprĆ”va @@ -13387,21 +13930,21 @@ Chcete ji uložit jako koncept? Od - + - + To Komu - - + + Cc Cc - + Sent OdeslĆ”no @@ -13416,7 +13959,7 @@ Chcete ji uložit jako koncept? Na %1, %2 odpověděl: - + Re: Re: @@ -13426,30 +13969,30 @@ Chcete ji uložit jako koncept? Fwd: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Chcete odeslat zprĆ”vu bez předmětu? - + Please insert at least one recipient. ProsĆ­m zadejte alespoň jednoho příjemce. - + Bcc Bcc - + Unknown NeznĆ”mý @@ -13564,13 +14107,13 @@ Chcete ji uložit jako koncept? Detaily - + Open File... Otevřít soubor... - + HTML-Files (*.htm *.html);;All Files (*) HTML soubory (*.htm *.html);;VÅ”echny soubory (*) @@ -13590,7 +14133,7 @@ Chcete ji uložit jako koncept? Exportovat do PDF - + Message has not been Sent. Do you want to save message ? ZprĆ”va nebyla odeslĆ”na. Chcete ji uložit? @@ -13611,7 +14154,7 @@ Do you want to save message ? Přidat dalŔí soubor - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13641,18 +14184,18 @@ Do you want to save message ? - - + + Close Zavřít - + From: Od: - + Bullet list (disc) @@ -13692,13 +14235,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13708,12 +14251,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: @@ -13791,7 +14334,7 @@ Do you want to save message ? VýchozĆ­ - + A new tab NovĆ” karta @@ -13801,7 +14344,7 @@ Do you want to save message ? NovĆ© okno - + Edit Tag Editovat Å”tĆ­tek @@ -13824,7 +14367,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13832,7 +14375,7 @@ Do you want to save message ? MessageUserNotify - + Message ZprĆ”va @@ -13860,7 +14403,7 @@ Do you want to save message ? MessageWidget - + Recommended Files DoporučenĆ© soubory @@ -13870,37 +14413,37 @@ Do you want to save message ? StĆ”hnou vÅ”echny doporučenĆ© soubory - + Subject: Předmět: - + From: Od: - + To: Pro: - + Cc: Cc: - + Bcc: Bcc: - + Tags: Å tĆ­tky: - + Reply Odpovědět @@ -13940,7 +14483,7 @@ Do you want to save message ? - + Send Invite @@ -13992,7 +14535,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -14002,12 +14545,12 @@ Do you want to save message ? Přidat %1 do kontaktÅÆ - + View source - + No subject Bez předmětu @@ -14017,22 +14560,17 @@ Do you want to save message ? StĆ”hnout - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14041,24 +14579,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all StĆ”hnout vÅ”e - + Print Document Vytisknout dokument @@ -14073,12 +14601,12 @@ Do you want to save message ? HTML soubory (*.htm *.html);;VÅ”echny soubory (*) - + Load images always for this message - + Hide the attachment pane @@ -14100,6 +14628,42 @@ Do you want to save message ? Compose Napsat + + Reply to selected message + Odpovědět na označenou zprĆ”vu + + + Reply + Odpovědět + + + Reply all to selected message + Odpovědět na označenĆ© zprĆ”vy + + + Reply all + Odpovědět vÅ”em + + + Forward selected message + Přeposlat označenou zprĆ”vu + + + Forward + Vpřed + + + Remove selected message + Odstranit označenou zprĆ”vu + + + Delete + Smazat + + + Print selected message + Vytisknout označenou zprĆ”vu + Print @@ -14178,7 +14742,7 @@ Do you want to save message ? MessagesDialog - + New Message NovĆ” zprĆ”va @@ -14188,16 +14752,60 @@ Do you want to save message ? Napsat - + Reply to selected message + Odpovědět na označenou zprĆ”vu + + + Reply + Odpovědět + + + Reply all to selected message + Odpovědět na označenĆ© zprĆ”vy + + + Reply all + Odpovědět vÅ”em + + + Forward selected message + Přeposlat označenou zprĆ”vu + + + Foward + Přeposlat + + + Remove selected message + Odstranit označenou zprĆ”vu + + + Delete + Smazat + + + Print selected message + Vytisknout označenou zprĆ”vu + + + Print + Tisknout + + + Display + Zobrazit + + + - - + + Tags Å tĆ­tky - - + + Inbox PříchozĆ­ @@ -14227,17 +14835,21 @@ Do you want to save message ? KoÅ” - + Total Inbox: PříchozĆ­ celkem: - + Folders + Složky + + + Quick View Zobrazit pouze - + Print... Tisknout... @@ -14268,7 +14880,7 @@ Do you want to save message ? Přeposlat zprĆ”vu - + Subject Předmět @@ -14278,7 +14890,7 @@ Do you want to save message ? Od - + Date Datum @@ -14288,7 +14900,39 @@ Do you want to save message ? Obsah - + Click to sort by attachments + SeřazenĆ­ podle příloh + + + Click to sort by subject + Seřadit podle předmětu + + + Click to sort by read + Seřadit podle přečtených + + + Click to sort by from + Seřadit podle odesĆ­latele + + + Click to sort by date + Seřadit podle datumu + + + Click to sort by tags + Seřadit podle Å”tĆ­tkÅÆ + + + Click to sort by star + Seřadit podle ohvězdičkovĆ”nĆ­ + + + Forward selected Message + Přeposlat označenou zprĆ”vu + + + Search Subject Hledat v předmětu zprĆ”vy @@ -14297,11 +14941,6 @@ Do you want to save message ? Search From Hledat podle odesĆ­latele - - - Search To - - Search Date @@ -14328,14 +14967,14 @@ Do you want to save message ? Hledat v přílohĆ”ch - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - + OhvězdičkovanĆ© @@ -14409,7 +15048,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14423,7 +15062,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14438,33 +15077,34 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Koncepty - + No Box selected. - - To - Pro + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + NemĆ”te ohvězdičkovanĆ© žÔdnĆ© zprĆ”vy. OhvězdičkovĆ”nĆ­ slouží ke zvýrazněnĆ­ zprĆ”v, abyste je mohli snĆ”ze najĆ­t. ZprĆ”vu ohvězdičkujete kliknutĆ­m na světle Å”edou hvezdičku kterĆ©koliv zprĆ”vy nebo pomocĆ­ kontextovĆ©ho menu, ktere otevřete tĆ­m, že na ni kliknete pravým tlačƭtkem myÅ”i. - + No system messages available. + NemĆ”te žÔdnĆ© zprĆ”vy systĆ©mu. + + + To + Pro + + + Click to sort by to + Pro seřazenĆ­ klikněte + + + @@ -14472,6 +15112,10 @@ Do you want to save message ? Total: Celkem: + + Messages + ZprĆ”vy + Mail @@ -14499,17 +15143,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14563,7 +15197,7 @@ Do you want to save message ? - + Expand Rozbalit @@ -14573,7 +15207,7 @@ Do you want to save message ? Odstranit položku - + from @@ -14608,7 +15242,7 @@ Do you want to save message ? - + Hide Skrýt @@ -14749,7 +15383,7 @@ Do you want to save message ? ID certifikĆ”tu - + Remove unused keys... @@ -14759,7 +15393,7 @@ Do you want to save message ? - + Clean keyring @@ -14773,13 +15407,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14812,13 +15440,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14828,18 +15461,25 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: + + NetworkPage + + Network + SĆ­Å„ + + NetworkView @@ -14866,7 +15506,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14887,7 +15527,7 @@ Reported error: - + Groups Skupiny @@ -14917,19 +15557,19 @@ Reported error: - - + + Search - + ID ID - + Search ID @@ -14939,12 +15579,12 @@ Reported error: - + Show Items - + Last contact @@ -14954,7 +15594,7 @@ Reported error: IP - + Group Skupina @@ -15069,7 +15709,7 @@ Reported error: Zabalit vÅ”e - + Do you want to remove this node? Chcete odstranit tento node? @@ -15079,7 +15719,7 @@ Reported error: Opravdu chcete odstranit tento kontakt? - + Done! @@ -15186,7 +15826,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15201,7 +15841,11 @@ at least one peer was not added to a group Smazat vÅ”e - + This is a test. + Toto je test. + + + Newest on top @@ -15211,12 +15855,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15271,6 +15915,10 @@ at least one peer was not added to a group Blogs Blogy + + Security + Bezpečnost + @@ -15292,6 +15940,10 @@ at least one peer was not added to a group Message ZprĆ”va + + Connect attempt + Pokus o připojenĆ­ + @@ -15445,6 +16097,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + KanĆ”l + Systray @@ -15454,7 +16110,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15474,12 +16130,12 @@ at least one peer was not added to a group ChybnĆ© heslo! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Nezaregistrovaný plugin či program @@ -15494,7 +16150,19 @@ at least one peer was not added to a group - + Examining shared files... + ProhledĆ”vĆ”m sdĆ­lenĆ© soubory... + + + Hashing file + PočƭtĆ”m kryptografickou sumu (hash) souboru. + + + Saving file index... + UklĆ”dĆ”m index souborÅÆ... + + + Test Test @@ -15505,19 +16173,17 @@ at least one peer was not added to a group - 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). @@ -15525,7 +16191,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online Kontakt je online @@ -15664,12 +16330,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,6 +16339,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + Podepsat PGP klƭč + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15714,7 +16379,12 @@ p, li { white-space: pre-wrap; } Zahrnout podpisy - + + 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> @@ -15760,21 +16430,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Chyba : nemohu zĆ­skat Ćŗdaje kontaktu - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15792,7 +16462,7 @@ 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. @@ -15861,6 +16531,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + MožnĆ” že bylo Å”patně zadanĆ© heslo + You haven't set a trust level for this key. @@ -15868,12 +16542,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15899,7 +16573,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Konverzace @@ -15920,7 +16594,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Odstranit položku - + Name: JmĆ©no: @@ -15960,7 +16634,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Napsat zprĆ”vu @@ -15974,6 +16648,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected se připojil. + + Connect Attempt + se pokusil připojit. + Connection refused by peer @@ -16012,13 +16690,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown + + Unknown Peer + NeznĆ”mý protějÅ”ek + Hide Skrýt - + Send Message Poslat zprĆ”vu @@ -16185,6 +16867,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + FormulÔř + + PhotoDialog @@ -16197,6 +16886,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.TextLabel Textový popisek + + Comment + KomentÔře + + + Summary + ShrnutĆ­ + Album / Photo Name @@ -16257,6 +16954,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Přidat komentÔř + Album @@ -16340,17 +17041,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16379,7 +17080,7 @@ requesting to edit it! PhotoSlideShow - + Album Name JmĆ©no alba: @@ -16438,19 +17139,19 @@ requesting to edit it! - - + + TextLabel Textový popisek - + Posted by - + ago @@ -16486,12 +17187,12 @@ requesting to edit it! PluginItem - + TextLabel Textový popisek - + Show more details about this plugin @@ -16702,27 +17403,12 @@ p, li { white-space: pre-wrap; } Podržet okno nad ostatnĆ­mi - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16775,7 +17461,7 @@ p, li { white-space: pre-wrap; } Nový - + Vote up @@ -16795,8 +17481,8 @@ p, li { white-space: pre-wrap; } - - + + Comments KomentÔře @@ -16821,13 +17507,13 @@ p, li { white-space: pre-wrap; } - - + + Comment KomentÔře - + Comments @@ -16855,12 +17541,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare RetroShare @@ -16875,22 +17561,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File NahrĆ”t soubor s obrĆ”zkem - + Post image @@ -16906,17 +17582,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16926,7 +17592,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16946,22 +17612,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16976,7 +17632,7 @@ p, li { white-space: pre-wrap; } PsĆ”t jako - + Post @@ -16987,7 +17643,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16997,7 +17653,7 @@ p, li { white-space: pre-wrap; } Nadpis - + Link @@ -17005,12 +17661,16 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + OdeslanĆ© odkazy + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17044,7 +17704,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17082,17 +17742,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - Textový popisek - - - + Subscribe to Posted @@ -17108,7 +17758,7 @@ p, li { white-space: pre-wrap; } - + Expand Rozbalit @@ -17123,17 +17773,16 @@ p, li { white-space: pre-wrap; } - + Loading + NahrĆ”vĆ”m + + + Loading... - - Never - - - - + New Board @@ -17146,18 +17795,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + + Comments KomentÔře - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz @@ -17168,12 +17817,12 @@ p, li { white-space: pre-wrap; } - + Comment KomentÔře - + Comments @@ -17183,7 +17832,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17193,17 +17842,17 @@ p, li { white-space: pre-wrap; } Skrýt - + Vote up - + Vote down - + Set as read and remove item Označit za přečtenĆ© a odstranit položku @@ -17213,7 +17862,7 @@ p, li { white-space: pre-wrap; } Nový - + New Comment: @@ -17223,7 +17872,7 @@ p, li { white-space: pre-wrap; } - + Name @@ -17264,11 +17913,34 @@ p, li { white-space: pre-wrap; } Textový popisek - + Loading NahrĆ”vĆ”m + + PostedListWidget + + Form + FormulÔř + + + New + Nový + + + Top + Nahoře + + + Next + DalŔí + + + RetroShare + RetroShare + + PostedListWidgetWithModel @@ -17287,17 +17959,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17307,15 +17969,15 @@ p, li { white-space: pre-wrap; } - + - + unknown neznĆ”mĆ© - + Distribution: @@ -17325,42 +17987,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel Textový popisek - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17380,7 +18042,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17410,17 +18072,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17435,17 +18097,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz - - Copy http Link - - - - + Show author in People tab @@ -17455,31 +18112,27 @@ p, li { white-space: pre-wrap; } Editovat - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17494,7 +18147,7 @@ p, li { white-space: pre-wrap; } OdebĆ­rat - + Never @@ -17568,16 +18221,6 @@ p, li { white-space: pre-wrap; } No Channel Selected NenĆ­ vybrĆ”n žÔdný kanĆ”l - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17667,16 +18310,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17788,7 +18431,7 @@ tam ji importujte. ProfileWidget - + Edit status message Editovat status @@ -17804,7 +18447,7 @@ tam ji importujte. - + Public Information VeřejnĆ© informace @@ -17839,12 +18482,12 @@ tam ji importujte. Připojen od: - + Other Information DalŔí informace - + My Address @@ -17888,27 +18531,27 @@ tam ji importujte. PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17918,12 +18561,12 @@ tam ji importujte. Od: - + Head - + Head Shot @@ -17953,13 +18596,13 @@ tam ji importujte. - - + + Whats happening? - + @@ -17971,22 +18614,12 @@ tam ji importujte. - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18001,7 +18634,7 @@ tam ji importujte. - + Reply to Pulse @@ -18016,24 +18649,34 @@ tam ji importujte. - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - NahrĆ”t soubor s obrĆ”zkem + From + Od + + + Date + Datum + + + ... + ... @@ -18044,7 +18687,7 @@ tam ji importujte. FormulÔř - + @@ -18063,7 +18706,7 @@ tam ji importujte. PulseReply - + icn @@ -18073,7 +18716,7 @@ tam ji importujte. - + REPLY @@ -18100,7 +18743,7 @@ tam ji importujte. - + FOLLOW @@ -18110,7 +18753,7 @@ tam ji importujte. - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18130,7 +18773,7 @@ tam ji importujte. - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18246,7 +18889,7 @@ tam ji importujte. - + FOLLOW @@ -18254,42 +18897,37 @@ tam ji importujte. PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18321,7 +18959,7 @@ tam ji importujte. - + FOLLOW @@ -18329,8 +18967,8 @@ tam ji importujte. QObject - - + + Confirmation PotvrzenĆ­ @@ -18598,12 +19236,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Peer detaily - + File Request canceled Požadavek o stĆ”hnutĆ­ souboru byl zruÅ”en. - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -18634,7 +19272,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Nastala neočekĆ”vanĆ” chyba. ProsĆ­m poÅ”lete hlÔŔenĆ­ 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! @@ -18668,7 +19306,7 @@ The error reported is:" - + Multiple instances Běží několik isntancĆ­ @@ -18687,26 +19325,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18786,7 +19404,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18796,7 +19414,7 @@ Reported error is: - + enabled @@ -18806,7 +19424,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18822,7 +19440,7 @@ Reported error is: - + %1 seconds ago @@ -18889,7 +19507,7 @@ Security: no anonymous IDs - + Join chat room @@ -18917,7 +19535,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19097,29 +19715,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - Uzel - - - - Address - - - - - Status Status - + NXS @@ -19312,6 +19914,10 @@ Security: no anonymous IDs Click to resume the hashing process + + <p>This certificate contains: + <p>Tento certifikĆ”t obsahuje + Idle @@ -19362,18 +19968,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19523,7 +20117,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19690,7 +20284,7 @@ p, li { white-space: pre-wrap; } FormulÔř - + The loading of embedded images is blocked. @@ -19703,7 +20297,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19876,22 +20470,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19899,12 +20483,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20592,7 +21176,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20713,7 +21297,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20733,7 +21317,7 @@ If you believe it is correct, remove the corresponding line from the file and re IP - + Profile ID @@ -20789,7 +21373,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20803,6 +21387,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... chybějĆ­cĆ­ zprĆ”va ... ] + RsMessageModel @@ -20816,11 +21405,6 @@ prevents the message to be forwarded to your friends. From Od - - - To - - Subject @@ -20843,18 +21427,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Seřadit podle přečtených - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Seřadit podle odesĆ­latele @@ -20877,9 +21456,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20900,7 +21477,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. ObnovĆ­ vÅ”echna(!) uloženĆ” nastavenĆ­ RetroShare na výchozĆ­. @@ -20961,7 +21538,7 @@ prevents the message to be forwarded to your friends. NastavĆ­ použitý jazyk. - + Unable to open log file '%1': %2 Nemohu otevřít log soubor '%1': %2 @@ -20982,7 +21559,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -21012,7 +21589,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21030,7 +21607,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21047,12 +21624,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Zadejkte klƭčovĆ© slovo (alespoň 3 znaky dlouhĆ©, např. mkv) - + Start Search Začƭt vyhledĆ”vat @@ -21114,7 +21691,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Smazat - + KeyWords KlƭčovĆ” slova @@ -21129,7 +21706,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen IdentifikĆ”tor dotazu - + Filename JmĆ©no souboru @@ -21229,23 +21806,23 @@ VysokĆ” pravděpodobnost že soubor bude nalezen StĆ”hnout vybranĆ© - + File Name JmĆ©no souboru - + Download StĆ”hnout - + Copy RetroShare Link KopĆ­rovat RetroShare odkaz - + Send RetroShare Link Poslat odkaz RetroShare @@ -21255,7 +21832,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + Download Notice StĆ”hnout poznĆ”mku @@ -21292,7 +21869,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Odebrat vÅ”e - + Folder Složka @@ -21303,17 +21880,17 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + New RetroShare Link(s) Nový odkaz RetroShare (1 či vĆ­ce) - + Open Folder Otevřít složku - + Create Collection... @@ -21333,7 +21910,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen StĆ”hnou podle souboru kolekce... - + Collection Kolekce @@ -21341,7 +21918,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen SecurityIpItem - + Peer details Podrobnosti o kontaktu @@ -21357,22 +21934,22 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Odstranit položku - + IP address: - + Peer ID: ID protějÅ”ku: - + Location: UmĆ­stěnĆ­: - + Peer Name: @@ -21389,7 +21966,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Skrýt - + but reported: @@ -21414,8 +21991,8 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - - + + <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> @@ -21423,7 +22000,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen SecurityItem - + wants to be friend with you on RetroShare si vĆ”s chce přidat do kontaktÅÆ. @@ -21454,7 +22031,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + Expand Rozbalit @@ -21499,12 +22076,12 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Status: - + Write Message Napsat zprĆ”vu - + Connect Attempt Pokus o připojenĆ­ @@ -21524,22 +22101,17 @@ VysokĆ” pravděpodobnost že soubor bude nalezen NeznĆ”mý (odchozĆ­) pokus o připojenĆ­ - + Unknown Security Issue NeznĆ”mĆ” bezpečnostnĆ­ udĆ”lost - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21549,7 +22121,11 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + Unknown Peer + NeznĆ”mý Peer + + + Hide Skrýt @@ -21559,7 +22135,7 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Opravdu chcete odstranit tento kontakt? - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21569,12 +22145,12 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21633,12 +22209,12 @@ VysokĆ” pravděpodobnost že soubor bude nalezen - + Local Address LokĆ”lnĆ­ adresa - + NAT @@ -21659,22 +22235,22 @@ VysokĆ” pravděpodobnost že soubor bude nalezen Port: - + Local network Mapa sĆ­tě - + External ip address finder VyhledĆ”vač externĆ­ch IP adres - + UPnP UPnP - + Known / Previous IPs: @@ -21687,16 +22263,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + Pro zjiÅ”těnĆ­ mĆ© veřejnĆ© IP adresy použít nĆ”sledujĆ­cĆ­ strĆ”ny: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21706,46 +22287,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21755,7 +22313,7 @@ List of found external IP: - + I2P Address @@ -21780,95 +22338,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21883,7 +22383,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21893,7 +22457,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21905,12 +22484,12 @@ 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> @@ -21920,7 +22499,7 @@ Also check your ports! Vymazat - + Download limit (KB/s) @@ -21935,23 +22514,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21962,7 +22541,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21972,7 +22561,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21982,7 +22576,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22022,7 +22626,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -22037,7 +22641,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming PříchozĆ­ @@ -22073,32 +22682,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22153,7 +22737,7 @@ If you have issues connecting over Tor check the Tor logs too. Celkem: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22178,7 +22762,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22190,7 +22774,7 @@ If you have issues connecting over Tor check the Tor logs too. SĆ­Å„ - + IP Filters @@ -22213,7 +22797,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Status @@ -22273,28 +22857,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22310,18 +22883,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22356,12 +22929,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22384,22 +22957,22 @@ 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> @@ -22434,7 +23007,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22444,12 +23017,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22529,7 +23102,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with zaÅ”krtněte protějÅ”ky s nimiž chcete sdĆ­let soukromý klƭč k publikačnĆ­mu prĆ”vu @@ -22539,12 +23112,12 @@ 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. @@ -22563,7 +23136,7 @@ Select the Friends with which you want to Share your Channel. SdĆ­lenĆ­ složek a souborÅÆ v nich obsažených - + Shared directory @@ -22583,17 +23156,17 @@ Select the Friends with which you want to Share your Channel. Viditelnost - + Add new - + Cancel ZruÅ”it - + Add a Share Directory Přidat sdĆ­lenou složku @@ -22603,7 +23176,7 @@ Select the Friends with which you want to Share your Channel. Odebrat - + Apply and close Uložit a zavřít @@ -22694,7 +23267,7 @@ Select the Friends with which you want to Share your Channel. Složka nebyla nalezena nebo jejĆ­ jmĆ©no je neplatnĆ©. - + 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. @@ -22702,7 +23275,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files Soubory @@ -22753,16 +23326,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files Zkontrolovat soubory - + Download selected StĆ”hnout vybranĆ© @@ -22772,7 +23340,7 @@ Select the Friends with which you want to Share your Channel. StĆ”hnout - + Copy retroshare Links to Clipboard ZkopĆ­rovat RetrosShare odkazy do schrĆ”nky @@ -22787,7 +23355,7 @@ Select the Friends with which you want to Share your Channel. Poslat RetroShare odkazy - + Some files have been omitted @@ -22803,7 +23371,7 @@ Select the Friends with which you want to Share your Channel. DoporučenĆ­ - + Create Collection... @@ -22828,7 +23396,7 @@ Select the Friends with which you want to Share your Channel. StĆ”hnou podle souboru kolekce... - + Some files have been omitted because they have not been indexed yet. @@ -22888,7 +23456,7 @@ Select the Friends with which you want to Share your Channel. Message - ZprĆ”va + @@ -22971,12 +23539,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration NačƭtĆ”m nastavenĆ­ - + Create interface VytvÔřím rozhranĆ­ @@ -23000,7 +23568,7 @@ Select the Friends with which you want to Share your Channel. Zapamatovat heslo - + Log In PřihlĆ”sit se @@ -23341,7 +23909,7 @@ This choice can be reverted in settings. ZprĆ”va o statusu - + Message: ZprĆ”va: @@ -23578,7 +24146,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Odstranit vÅ”echny Å”tĆ­tky @@ -23614,15 +24182,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23632,13 +24197,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23648,57 +24218,12 @@ p, li { white-space: pre-wrap; } - - Error - Chyba - - - - Not connected - Nespojen - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23706,7 +24231,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23716,7 +24241,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23727,12 +24252,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23760,7 +24284,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23771,7 +24295,7 @@ p, li { white-space: pre-wrap; } MaximĆ”lnĆ­ počet současných stahovĆ”nĆ­: - + Shared Directories @@ -23781,27 +24305,22 @@ p, li { white-space: pre-wrap; } Automaticky sdĆ­let příchozĆ­ adresÔř (doporučeno) - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23886,7 +24405,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23895,12 +24414,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23925,12 +24439,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming StreamovĆ”nĆ­ @@ -23995,7 +24504,12 @@ 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> @@ -24005,17 +24519,7 @@ p, li { white-space: pre-wrap; } - - Warning - UpozorněnĆ­ - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24043,7 +24547,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed StahovĆ”nĆ­ dokončeno @@ -24071,19 +24575,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads StahovĆ”nĆ­ - + Uploads OdesĆ­lĆ”nĆ­ - + Name i.e: file name JmĆ©no @@ -24290,12 +24794,7 @@ p, li { white-space: pre-wrap; } Zvolit... - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Move in Queue... Přesunout do fronty... @@ -24320,7 +24819,7 @@ p, li { white-space: pre-wrap; } Zvolte adresÔř - + Anonymous end-to-end encrypted tunnel 0x @@ -24341,7 +24840,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24374,17 +24873,7 @@ p, li { white-space: pre-wrap; } StahovĆ”nĆ­ souboru %1 jeÅ”tě nenĆ­ dokončeno. Pokud jde o soubor mĆ©diĆ­ (hudba, filmy, ...), můžete se zkusit podĆ­vat na jeho nĆ”hled. - - Warning - UpozorněnĆ­ - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Změnit jmĆ©no souboru @@ -24399,7 +24888,7 @@ p, li { white-space: pre-wrap; } ProsĆ­m vložte novĆ©--a platnĆ©--jmĆ©no souboru - + Expand all Rozbalit vÅ”e @@ -24526,18 +25015,23 @@ 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> + + + + Columns Sloupce - + File Transfers - + Path Cesta @@ -24547,7 +25041,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24557,7 +25051,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24572,7 +25066,7 @@ p, li { white-space: pre-wrap; } - + Collection Kolekce @@ -24582,7 +25076,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24996,17 +25490,12 @@ p, li { white-space: pre-wrap; } FormulÔř - + Enable Retroshare WEB Interface - - Status: - Status: - - - + Web parameters @@ -25046,27 +25535,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25076,12 +25555,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25218,7 +25697,11 @@ p, li { white-space: pre-wrap; } StrĆ”nky Wiki - + New Group + NovĆ” skupina + + + Page Name @@ -25233,7 +25716,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25321,7 +25804,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25356,7 +25839,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25386,18 +25869,14 @@ p, li { white-space: pre-wrap; } Å tĆ­tky - - History - Historie - - - + + Show Edit History - + Status Status @@ -25418,7 +25897,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25501,7 +25980,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25516,7 +26004,7 @@ p, li { white-space: pre-wrap; } OstatnĆ­ - + Who to Follow @@ -25536,7 +26024,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25566,17 +26054,25 @@ p, li { white-space: pre-wrap; } - + New + Nový + + + Yourself + + Friends + Kontakty + Following - + RetroShare RetroShare @@ -25639,42 +26135,35 @@ p, li { white-space: pre-wrap; } FormulÔř - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Odebrat - - - Location: UmĆ­stěnĆ­: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25719,41 +26208,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - nedostupnĆ© - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) NeznĆ”mý @@ -25831,7 +26290,7 @@ p, li { white-space: pre-wrap; } %1 r. %2 d. - + k e.g: 3.1 k k @@ -25868,7 +26327,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_da.ts b/retroshare-gui/src/lang/retroshare_da.ts index 4cb8c0823..41f99845c 100644 --- a/retroshare-gui/src/lang/retroshare_da.ts +++ b/retroshare-gui/src/lang/retroshare_da.ts @@ -121,12 +121,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +136,7 @@ - + Cancels the search. @@ -540,7 +540,7 @@ 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. @@ -566,23 +566,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +612,7 @@ p, li { white-space: pre-wrap; } - + Set your Avatar picture @@ -712,7 +699,7 @@ p, li { white-space: pre-wrap; } - + Always on Top @@ -731,6 +718,10 @@ p, li { white-space: pre-wrap; } % Opaque + + Cancel + Annuller + Since: @@ -808,7 +799,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +829,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +842,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +862,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +900,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +920,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +950,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +960,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -977,12 +968,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +993,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand @@ -1028,12 +1019,12 @@ p, li { white-space: pre-wrap; } - + Name Navn - + Comm value @@ -1202,17 +1193,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1213,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1221,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1244,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1269,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand @@ -1314,7 +1295,7 @@ into the image, so as to - + Name Navn @@ -1324,7 +1305,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1332,7 +1323,7 @@ into the image, so as to ChatLobbyDialog - + Name Navn @@ -1523,7 +1514,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1547,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1561,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Navn - + Count @@ -1587,7 +1577,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1609,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1666,12 @@ 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: @@ -1669,42 +1681,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,22 +1707,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1744,47 +1742,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1797,7 @@ Double click a chat room to enter and chat. - + Show @@ -1819,7 +1817,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item @@ -1864,7 +1862,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1877,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1897,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1922,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1952,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1962,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +1986,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2056,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2071,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2168,7 @@ Double click a chat room to enter and chat. - + Case sensitive Forskel pĆ„ store og smĆ„ bogstaver @@ -2296,7 +2274,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2310,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2345,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2430,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2472,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2494,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2544,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2566,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2581,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2602,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2618,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2643,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2669,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2691,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2717,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2777,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2793,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2845,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2893,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +2975,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +3000,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3068,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3084,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: Navn: @@ -3121,17 +3099,17 @@ Double click on it to add his name on text writer. - + Options Indstillinger - + <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: @@ -3141,7 +3119,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3144,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3169,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3240,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3270,12 @@ 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? - + @@ -3310,7 +3283,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3323,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3348,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3358,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3397,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3407,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3432,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3445,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3480,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3490,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3560,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3588,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3598,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3618,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3633,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3658,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3950,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3958,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3968,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4004,12 @@ p, li { white-space: pre-wrap; } - + Name Navn - + <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> @@ -4058,7 +4029,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4049,18 @@ p, li { white-space: pre-wrap; } - + Cancel Annuller - + Nickname - + Invited Members @@ -4104,7 +4075,7 @@ p, li { white-space: pre-wrap; } - + Name: Navn: @@ -4144,19 +4115,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4137,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add @@ -4193,7 +4152,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4205,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4230,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4265,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4275,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4420,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4455,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4470,18 @@ p, li { white-space: pre-wrap; } - + + 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? @@ -4555,7 +4515,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4525,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4540,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4564,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4594,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title @@ -4697,7 +4657,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4667,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4691,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4726,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4736,7 @@ Do you want to discard this message? Annuller - + require PGP-signed identities @@ -4791,7 +4751,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4772,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4780,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: Navn: - + Location: @@ -4840,12 +4800,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4825,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4840,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4850,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4870,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4940,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5056,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5724,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5732,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5771,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5938,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5948,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6008,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6134,7 @@ and use the import button to load it - + ID @@ -6216,7 +6176,7 @@ and use the import button to load it - + Group @@ -6252,7 +6212,7 @@ and use the import button to load it - + Search @@ -6268,7 +6228,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6465,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6503,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6514,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Navn - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6606,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6650,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6660,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6691,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6742,12 @@ Also check your ports! - + <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 @@ -6923,43 +6757,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6832,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6848,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6883,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6893,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6908,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7139,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7169,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7209,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7276,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7326,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7455,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7463,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7633,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -7807,12 +7646,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7676,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7691,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name Navn @@ -7870,13 +7709,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7728,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7864,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7875,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7910,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7950,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +7985,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8169,7 +8008,7 @@ p, li { white-space: pre-wrap; } GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8046,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8062,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -8248,7 +8077,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8091,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8100,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8121,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8183,18 @@ p, li { white-space: pre-wrap; } - + New - + 0 - - + + Comment @@ -8385,17 +8209,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8423,13 +8247,13 @@ p, li { white-space: pre-wrap; } GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8323,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8359,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8374,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8395,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8410,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8470,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8550,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8606,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8731,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8744,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8774,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8813,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8837,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8846,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; } @@ -9077,7 +8875,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8906,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +8957,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +8973,7 @@ before you can comment - + Expand @@ -9194,11 +8992,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9021,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9038,7 @@ before you can comment - + Expand @@ -9265,17 +9058,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide @@ -9288,66 +9081,59 @@ before you can comment - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + New Thread + + + Threaded View + + + + + Flat View + + - + Title - - + + Date - + Author - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9143,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9188,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9456,12 +9247,12 @@ before you can comment - + Hide - + [unknown] @@ -9491,8 +9282,8 @@ before you can comment - - + + Distribution @@ -9575,12 +9366,12 @@ before you can comment - + New thread - + Edit @@ -9641,7 +9432,7 @@ before you can comment - + Show column @@ -9661,7 +9452,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9504,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9514,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9529,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9595,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9844,12 +9635,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name Navn - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9651,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9664,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9724,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9747,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9763,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9785,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9817,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9842,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9857,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +9932,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +9948,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Annuller - + Create - + + Author + + + + GxsIdLabel @@ -10191,7 +9976,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10036,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10093,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10121,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10134,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10151,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10161,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10181,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10192,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10240,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10627,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10643,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10662,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10736,7 @@ p, li { white-space: pre-wrap; } - + Add friend @@ -10974,7 +10746,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10774,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10784,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10794,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10814,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10832,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10852,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11122,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11139,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11154,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11169,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11205,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11247,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11268,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11609,17 +11350,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 @@ -11634,24 +11375,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11407,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11417,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11492,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11522,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11801,7 +11537,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11585,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. @@ -11857,7 +11593,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11636,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11716,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11732,17 @@ 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> + + + + positive @@ -12106,7 +11847,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11897,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11921,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +11936,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +11951,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +11976,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +11991,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +11999,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12029,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12043,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12053,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12064,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12104,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12114,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12129,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12144,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12154,10 @@ These identities will soon be not supported anymore. - + Choose image... - - - Remove - - @@ -12459,7 +12183,7 @@ These identities will soon be not supported anymore. - + Create @@ -12469,13 +12193,13 @@ These identities will soon be not supported anymore. Annuller - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12209,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12283,7 @@ These identities will soon be not supported anymore. - + Copy KopiĆ©r @@ -12569,12 +12293,12 @@ These identities will soon be not supported anymore. - + %1 's Message History - + Mark all @@ -12597,34 +12321,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12350,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12391,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12400,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12429,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12457,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12473,7 @@ These identities will soon be not supported anymore. - - + Options Indstillinger @@ -12802,7 +12494,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12505,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12535,11 @@ These identities will soon be not supported anymore. - Status - + Notify @@ -12859,35 +12550,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help - - + Minimize - + Maximize @@ -12902,12 +12589,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message @@ -12937,7 +12619,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12639,7 @@ These identities will soon be not supported anymore. - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12684,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12704,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12713,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12759,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12779,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12815,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12910,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +12950,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +12970,18 @@ 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? @@ -13311,17 +12992,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13012,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13022,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13380,7 +13051,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13061,30 @@ Do you want to save message to draft box? - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13528,13 +13199,13 @@ Do you want to save message to draft box? Detaljer - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13225,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13246,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13276,18 @@ Do you want to save message ? - - + + Close - + From: Fra: - + Bullet list (disc) @@ -13656,13 +13327,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13343,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: @@ -13755,7 +13426,7 @@ Do you want to save message ? - + A new tab @@ -13765,7 +13436,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13459,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13467,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13495,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13505,37 @@ Do you want to save message ? - + Subject: - + From: Fra: - + To: Til: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13575,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13627,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13637,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13652,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13671,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13693,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14142,7 +13798,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13808,16 @@ Do you want to save message ? - + - - + + Tags - - + + Inbox @@ -14191,17 +13847,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13888,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13898,7 @@ Do you want to save message ? - + Date @@ -14252,7 +13908,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13917,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +13943,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14024,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14038,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14053,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14099,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14153,7 @@ Do you want to save message ? - + Expand @@ -14537,7 +14163,7 @@ Do you want to save message ? - + from @@ -14572,7 +14198,7 @@ Do you want to save message ? - + Hide @@ -14713,7 +14339,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14349,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14363,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14396,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14417,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14455,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14476,7 @@ Reported error: - + Groups @@ -14881,19 +14506,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14528,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14543,7 @@ Reported error: - + Group @@ -15033,7 +14658,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14668,7 @@ Reported error: - + Done! @@ -15150,7 +14775,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14790,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14800,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15418,7 +15043,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15063,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15083,7 @@ at least one peer was not added to a group - + Test @@ -15469,19 +15094,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15112,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15251,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15296,12 @@ p, li { white-space: pre-wrap; } - + + 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> @@ -15724,21 +15347,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15756,7 +15379,7 @@ 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. @@ -15825,6 +15448,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + MĆ„ske password er forkert + You haven't set a trust level for this key. @@ -15832,12 +15459,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15490,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15511,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Name: Navn: @@ -15924,7 +15551,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15609,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Send Message @@ -16300,17 +15927,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +15966,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16025,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16073,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16289,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16347,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16755,8 +16367,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16393,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16427,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare RetroShare @@ -16835,22 +16447,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16468,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16478,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16498,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16518,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16529,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16539,7 @@ p, li { white-space: pre-wrap; } - + Link @@ -16965,12 +16547,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16586,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16624,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16640,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -17083,17 +16655,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16673,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16695,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16710,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16720,17 @@ p, li { white-space: pre-wrap; } - + Vote up - + Vote down - + Set as read and remove item @@ -17173,7 +16740,7 @@ p, li { white-space: pre-wrap; } - + New Comment: @@ -17183,7 +16750,7 @@ p, li { white-space: pre-wrap; } - + Name Navn @@ -17224,11 +16791,18 @@ p, li { white-space: pre-wrap; } - + Loading + + PostedListWidget + + RetroShare + RetroShare + + PostedListWidgetWithModel @@ -17247,17 +16821,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16831,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17285,42 +16849,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +16904,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +16934,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +16959,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +16974,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +17009,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17083,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17172,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17289,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17305,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17340,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17389,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17419,12 @@ and use the import button to load it Fra: - + Head - + Head Shot @@ -17909,13 +17454,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17472,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17492,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,25 +17507,20 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures - - - Load Picture File - - PulseMessage @@ -18000,7 +17530,7 @@ and use the import button to load it - + @@ -18019,7 +17549,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17559,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17586,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17596,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17616,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17732,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17740,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17802,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17810,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18079,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18115,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18149,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18168,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18247,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18257,7 @@ Reported error is: - + enabled @@ -18762,7 +18267,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18283,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18350,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18378,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18558,13 @@ Security: no anonymous IDs Ban list - - - Name - Navn - - Node - - - - - Address - - - - - Status - + NXS @@ -19318,18 +18807,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +18946,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19113,7 @@ p, li { white-space: pre-wrap; } - + The loading of embedded images is blocked. @@ -19649,7 +19126,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19299,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19845,12 +19312,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +20005,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name Navn @@ -20659,7 +20126,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name Navn @@ -20679,7 +20146,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20202,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20216,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20234,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20789,17 +20256,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20285,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20306,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20367,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20388,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20418,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20436,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20453,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20519,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20534,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20634,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20660,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21237,7 +20697,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21248,17 +20708,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20738,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20746,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20762,22 @@ prevents the message to be forwarded to your friends. - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20794,7 @@ prevents the message to be forwarded to your friends. - + but reported: @@ -21359,8 +20819,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20828,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20859,7 @@ prevents the message to be forwarded to your friends. - + Expand @@ -21444,12 +20904,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +20929,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21484,17 +20949,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide @@ -21504,7 +20959,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +20969,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21033,12 @@ prevents the message to be forwarded to your friends. - + Local Address Lokale Adresse - + NAT @@ -21604,22 +21059,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21087,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21111,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21137,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21162,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21207,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21838,7 +21281,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21308,12 @@ 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> @@ -21865,7 +21323,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21338,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21365,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21385,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21400,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21450,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21465,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21506,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21561,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21586,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21598,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21621,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status @@ -22218,28 +21681,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21707,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21753,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21781,22 @@ 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> @@ -22379,7 +21831,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21841,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +21926,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +21936,12 @@ 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. @@ -22508,7 +21960,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +21980,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel Annuller - + Add a Share Directory @@ -22548,7 +22000,7 @@ Select the Friends with which you want to Share your Channel. - + Apply and close @@ -22639,7 +22091,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. @@ -22647,7 +22099,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22150,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22164,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22732,7 +22179,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22195,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22220,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22363,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22392,7 @@ Select the Friends with which you want to Share your Channel. - + Log In Log ind @@ -23284,7 +22731,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +22968,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +23004,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23575,13 +23019,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23040,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23053,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23063,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23074,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23106,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23117,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23127,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23227,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23236,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23261,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23326,12 @@ 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> @@ -23948,17 +23341,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23369,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23397,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name Navn @@ -24233,12 +23616,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> - - - - + Move in Queue... @@ -24263,7 +23641,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23662,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24317,17 +23695,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23710,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23837,23 @@ 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> + + + + Columns - + File Transfers - + Path @@ -24490,7 +23863,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23873,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +23888,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +23898,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24312,12 @@ p, li { white-space: pre-wrap; } - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24357,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24377,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24519,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24534,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24622,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24657,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24687,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status @@ -25361,7 +24715,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24798,12 @@ p, li { white-space: pre-wrap; } - + + Refresh + + + + Settings @@ -25459,7 +24818,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24838,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24868,7 @@ p, li { white-space: pre-wrap; } - + Yourself @@ -25519,7 +24878,7 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare @@ -25582,42 +24941,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25014,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25774,7 +25096,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25133,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index f33befdf9..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 e37c020a9..4fa1bb85b 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -56,7 +56,7 @@ Max score: %1 - Hƶchstpunktzahl: %1 + @@ -81,7 +81,14 @@ Only Hidden Node - Nur Hidden knoten + + + + + AddCommentDialog + + Add Comment + Kommentar hinzufügen @@ -122,12 +129,12 @@ RetroShare: Erweiterte Suche - + Search Criteria Suchkriterien - + Add a further search criterion. Ein weiteres Suchkriterium hinzufügen. @@ -137,7 +144,7 @@ Suchkriterien zurücksetzen. - + Cancels the search. Bricht die Suche ab. @@ -157,6 +164,177 @@ Suchen + + AlbumCreateDialog + + Create Album + Album erstellen + + + Album Name: + Albumname + + + Category: + Kategorie: + + + Animals + Tiere + + + Family + Familie + + + Friends + Freunde + + + Flowers + Blumen + + + Holiday + Urlaub + + + Landscapes + Landschaften + + + Pets + Haustiere + + + Portraits + PortrƤts + + + Travel + Reise + + + Work + Arbeit + + + Random + Zufall + + + Caption: + Überschrift: + + + Where: + Wo: + + + Photographer: + Fotograf: + + + Description: + Beschreibung: + + + Share Options + Freigabeeinstellungen + + + Policy: + Richtlinie: + + + Quality: + QualitƤt: + + + Comments: + Kommentare + + + Identity: + IdentitƤt + + + Public + Ɩffentlich + + + Restricted + EingeschrƤnkt + + + Resize Images (< 1Mb) + Bildgröße Ƥndern (< 1Mb) + + + Resize Images (< 10Mb) + Bildgröße Ƥndern (< 10Mb) + + + Send Original Images + Originalbilder senden + + + No Comments Allowed + Keine Kommentare erlaubt + + + Authenticated Comments + Authentifizierte Kommentare + + + Any Comments Allowed + Jegliche Kommentare erlaubt + + + Publish with Identity + Mit IdentitƤt verƶffentlichen + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;">Füge Bilder per Drag 'n' Drop ein. Klicke auf ein Bild, um die darunter stehenden Details zu bearbeiten.</span></p></body></html> + + + Back + Zurück + + + Add Photos + Fotos hinzufügen + + + Publish Album + Album verƶffentlichen + + + Untitle Album + Albumtitel entfernen + + + Say something about this album... + Sage etwas über dieses Album... + + + Where were these taken? + Wo wurden diese aufgenommen? + + + Load Album Thumbnail + Albumvorschau laden + + AlbumDialog @@ -165,11 +343,19 @@ Album Album + + Album Thumbnail + Albumvorschau + TextLabel TextLabel + + Summary + Zusammenfassung + Album Title: @@ -178,13 +364,41 @@ Category: - Kategorie: + Kategorie Caption Überschrift + + Where: + Wo: + + + When + Wann: + + + Description: + Beschreibung + + + Share Options + Freigabeeinstellungen + + + Comments + Kommentare + + + Publish Identity + VerƶffentlichungsidentitƤt + + + Visibility + Sichtbarkeit + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -224,57 +438,57 @@ p, li { white-space: pre-wrap; } Form - Formular + Formular Quality: - QualitƤt: + QualitƤt: Embedded Only (<50Kb) - Nur eingebettet (<50 KB) + Share Original Images - Orginal Bild teilen + Copy Original Images (extra disk space) - Originalbilder kopieren (zusƤtzlicher Speicherplatz) + Resize Images (< 200Kb) - Bildgröße Ƥndern (< 10Mb) {200K?} + Bildgröße Ƥndern (< 10Mb) {200K?} Resize Images (< 1Mb) - Bildgröße Ƥndern (< 1Mb) + Bildgröße Ƥndern (< 1Mb) Caption: - Überschrift: + Überschrift: Photographer: - Fotograf: + Fotograf: Where: - Wo: + Wo: When: - Wann: + @@ -282,37 +496,37 @@ p, li { white-space: pre-wrap; } Create New Album - Neues Album erstellen + Create - Erstellen + Erstellen Album - Album + Album Edit ALbum - Album bearbeiten + Update Album - Album aktualisieren + Add Album Admins - Album-Administratoren hinzufügen + Select Album Admins - Album-Admins auswƤhlen + @@ -421,7 +635,7 @@ p, li { white-space: pre-wrap; } Choose the style of Tool Buttons. - WƤhle den Stil für die WerkzeugschaltflƤchen. + WƤhle den Stil für die WerkzeugschaltflƤchen @@ -456,22 +670,22 @@ p, li { white-space: pre-wrap; } Show Toaster Disable - Toaster-Deaktivierung anzeigen + Show Sound Status - Sound Status anzeigen + Show Network Rate Status - Netzwerkrate anzeigen + Show Discovery Status - Entdeckungsstatus anzeigen + @@ -481,7 +695,7 @@ p, li { white-space: pre-wrap; } Show Hashing Status - Hashing Status anzeigen + @@ -491,17 +705,17 @@ p, li { white-space: pre-wrap; } Show Peer Status - Peer Status anzeigen + Show Status ComboBox - Status ComboBox anzeigen + Remove surplus text in status bar. - Überschüssigen Text aus Statusleiste entfernen. + Überschüssigen Text aus Statusleiste entfernen @@ -511,7 +725,7 @@ p, li { white-space: pre-wrap; } Show Operating Mode Status - Betriebsmodusstatus anzeigen + @@ -521,12 +735,12 @@ p, li { white-space: pre-wrap; } Disable SysTray ToolTip - SysTray Kurzinfo deaktivieren + Main page items: - Hauptseitenelemente: + @@ -536,7 +750,7 @@ p, li { white-space: pre-wrap; } Item list - Item Liste + @@ -553,10 +767,10 @@ 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. - Warnung: Diese Dienste sind experimentell. Bitte hilf uns sie zu testen. + Warnung: Diese Dienste sind experimentell. Bitte hilf uns sie zu testen. Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Protokolle Ƥndern. @@ -569,6 +783,14 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Circles Kreise + + GxsForums + Gxs-Foren + + + GxsChannels + Gxs-KanƤle + The Wire @@ -580,23 +802,10 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Fotos - - AspectRatioPixmapLabel - - - Save image - Bild speichern - - - - Copy image - Bild kopieren - - AttachFileItem - + %p Kb %p KiB @@ -621,7 +830,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto TextLabel - TextLabel + TextLabel @@ -631,7 +840,11 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Browse... - Durchsuchen... + + + + Add Avatar + Avatar hinzufügen @@ -639,24 +852,28 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Entfernen - + Set your Avatar picture Dein Avatarbild festlegen Import image - Bild importieren + Image files (*.jpg *.png);;All files (*) - Bilddateien (*.jpg *.png);;Alle Dateien (*) + Use the mouse to zoom and adjust the image for your avatar. - Benutzen Sie die Maus, um das Bild für Ihren Avatar zu vergrößern und anzupassen. + + + + Load Avatar + Avatar laden @@ -693,22 +910,22 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto PushButton - + Up - Hoch + Hoch Down - Herunter + Herunter Clears the graph - Grafik zurücksetzen + @@ -718,7 +935,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto TextLabel - TextLabel + TextLabel @@ -726,10 +943,22 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Zurücksetzen - + Receive Rate + Empfangsrate + + + Send Rate + Senderate + + + Always on Top Immer im Vordergrund + + Style + Stil + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto % Opaque % undurchsichtig + + Save + Speichern + + + Cancel + Abbrechen + Since: Seit: + + Hide Settings + Einstellungen verbergen + BandwidthStatsWidget @@ -783,7 +1024,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Total - Insgesamt + @@ -796,275 +1037,275 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Filename - Dateiname + Dateiname Hash - Prüfsumme + Prüfsumme Size - Größe + Größe Banned since... - Gesperrt seit... + Remove - Entfernen + Entfernen BoardPostDisplayWidgetBase - + Comment - Kommentar + Kommentar 1 comment - 1 Kommentar + %1 comments - %1 Kommentare + No comments yet. Click to add one. - Noch keine Kommentare. Klicken Sie, um einen hinzuzufügen. + Loading - Lade + Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - <p><font color="#ff0000"><b>Der Autor dieser Nachricht (mit der ID %1) ist gesperrt.</b> + - + ago - vor + BoardPostDisplayWidget_card - + Vote up - Daumen hoch + Daumen hoch 0 - 0 + 0 Vote down - Daumen runter + Daumen runter \/ - \/ + \/ - + Posted by - Gepostet von + Toggle Message Read Status - Lesestatus der Nachricht umschalten + Lesestatus der Nachricht umschalten New - Neu + Neu PictureLabel - + TextLabel - TextLabel + TextLabel Comments - Kommentare + Kommentare Share - Teilen + BoardPostDisplayWidget_compact - + Vote up - Daumen hoch + Daumen hoch 0 - 0 + 0 Vote down - Daumen runter + Daumen runter \/ - \/ + \/ - + Click to view picture - Zum Betrachten des Bildes anklicken + PictureLabel_compact - + Posted by - Gepostet von + Comments - Kommentare + Kommentare Expand - Erweitern + Erweitern Share - Teilen + - + Toggle Message Read Status - Lesestatus der Nachricht umschalten + Lesestatus der Nachricht umschalten New - Neu + Neu - + TextLabel - TextLabel + TextLabel BoardsCommentsItem - + I like this - Das gefƤllt mir + Das gefƤllt mir - + 0 - 0 + 0 I dislike this - Das gefƤllt mir nicht + Das gefƤllt mir nicht Toggle Message Read Status - Lesestatus der Nachricht umschalten + Lesestatus der Nachricht umschalten Avatar - Avatar - - - - New Comment - Neuer Kommentar - - - - Copy RetroShare Link - RetroShare-Link kopieren + Avatar - + New Comment + + + + + Copy RetroShare Link + RetroShare-Link kopieren + + + + Expand - Erweitern + Erweitern Set as read and remove item - Als gelesen markieren und Eintrag entfernen + Als gelesen markieren und Eintrag entfernen Remove Item - Eintrag entfernen + - + Name - Name + Name - + Comm value - + Comment - Kommentar + Kommentar Comments - Kommentare + Hide - Verbergen + Verbergen @@ -1185,83 +1426,77 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Legend: - Legende: + Current - Aktuell + Total - Gesamt + Log scale - Log skalieren + Default - Standard + Standard Dark - Dunkel + ChannelPage - + Channels KanƤle - + Tabs Reiter - + General Allgemein Load Emoticons - Emoticons laden + - - Downloads - Downloads + Load posts in background (Thread) + BeitrƤge im Hintergrund laden (Thread) - - Maximum Auto Download Size (in GBs) - Maximale Größe des automatischen Downloads (in GB) - - - + Open each channel in a new tab - Jeden Kanal in einem neuen Reiter ƶffnen + Jeden Kanal in einem neuen Reiter ƶffnen. ChannelPostDelegate - + files - Dateien + file - Datei + @@ -1271,84 +1506,92 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Use mouse to center and zoom into the image, so as to crop it for your post. - Benutzen Sie die Maus zum Zentrieren und Zoomen -in das Bild hinein, um es für - um es für Ihren Beitrag anzupassen. + ChannelsCommentsItem - + I like this - Das gefƤllt mir + Das gefƤllt mir 0 - 0 + 0 I dislike this - Das gefƤllt mir nicht + Das gefƤllt mir nicht Toggle Message Read Status - Lesestatus der Nachricht umschalten + Lesestatus der Nachricht umschalten Avatar - Avatar - - - - New Comment - Neuer Kommentar - - - - Copy RetroShare Link - RetroShare-Link kopieren + Avatar - + New Comment + + + + + Copy RetroShare Link + RetroShare-Link kopieren + + + + Expand - Erweitern + Erweitern Set as read and remove item - Als gelesen markieren und Eintrag entfernen + Als gelesen markieren und Eintrag entfernen Remove Item - Artikel entfernen + - + Name - Name + Name Comm value - + - + + Comment + Kommentar + + + + Comments + + + + Hide - Verbergen + Verbergen ChatLobbyDialog - + Name Name @@ -1365,7 +1608,7 @@ in das Bild hinein, um es für Ban this person (Sets negative opinion) - Diese Person verbannen (setzt negative Meinung) + @@ -1415,12 +1658,12 @@ in das Bild hinein, um es für This participant is not active since: - Teilnehmer inaktiv seit: + Teilnehmer inaktiv seit: seconds - Sekunden + Sekunden @@ -1430,17 +1673,17 @@ in das Bild hinein, um es für Give neutral opinion - Neutrale Meinung abgeben + Give positive opinion - Eine positive Meinung abgeben + Show author in people tab - Autor auf der Registerkarte Personen anzeigen + @@ -1450,18 +1693,18 @@ in das Bild hinein, um es für Leave this chat room (Unsubscribe) - Diesen Chatraum verlassen (Abmelden) + Welcome to chat room %1 - Willkommen im Chatraum %1 + Room chat - Chatraum + @@ -1508,7 +1751,7 @@ in das Bild hinein, um es für Chat room management - Chatraum-Verwaltung + @@ -1523,23 +1766,23 @@ in das Bild hinein, um es für Do you want to unsubscribe to this chat room? - Mƶchten Sie sich von diesem Chatraum abmelden? + Redock to Main window - Zurückdocken zum Hauptfenster + Undock to a new window - Abdocken in ein neues Fenster + ChatLobbyToaster - + Show Chat Lobby Chatlobby anzeigen @@ -1551,35 +1794,50 @@ in das Bild hinein, um es für Chats Chats + + You have %1 new messages + Du hast %1 neue Nachrichten + + + You have %1 new message + Du hast %1 neue Nachricht + + + %1 new messages + %1 neue Nachrichten + + + %1 new message + %1 neue Nachricht + You have %1 mentions - Sie haben %1 ErwƤhnungen + You have %1 mention - Sie haben %1 ErwƤhnung + %1 mentions - %1 ErwƤhnungen + %1 mention - %1 ErwƤhnung + - - + Unknown Lobby Unbekannte Lobby - - + + Remove All Alle entfernen @@ -1587,13 +1845,13 @@ in das Bild hinein, um es für ChatLobbyWidget - - + + Name Name - + Count Anzahl @@ -1603,7 +1861,29 @@ in das Bild hinein, um es für Thema - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + Private ChatrƤume + + + + + Public chat rooms + Ɩffentliche ChatrƤume + + + Create chat room Chatraum erstellen @@ -1613,14 +1893,14 @@ in das Bild hinein, um es für Diesen Raum verlassen - + Create a non anonymous identity and enter this room Create an identity and enter this chat room - Erstellen Sie eine IdentitƤt und betreten Sie diesen Chatraum + @@ -1630,12 +1910,12 @@ in das Bild hinein, um es für Enter this chat room as... - Diesen Chatraum betreten als... + Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren @@ -1670,12 +1950,12 @@ Double click a chat room to enter and chat. - + %1 invites you to chat room named %2 - %1 lƤdt dich in den Chatraum namens %2 ein + - + Choose a non anonymous identity for this chat room: @@ -1685,31 +1965,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Chatlobby erstellen + + + [No topic provided] [Kein Thema angegeben] - - + Selected lobby info + Info zur ausgewƤhlten Lobby + + + Private Privat - - - + Public Ɩffentlich - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted Anonyme Kennungen akzeptiert @@ -1719,25 +1999,42 @@ Double click a chat room to enter and chat. Autom. Abonnement entfernen - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Autom. Abonnement hinzufügen - + Search Chat lobbies Chatlobbys durchsuchen - + Search Name Name durchsuchen - + Subscribed + Abonniert + + + Columns Spalten + + Yes + Ja + + + No + Nein + Chat rooms @@ -1749,47 +2046,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: Chatraumname: - + Chat room Id: Chatraumkennung: - + Topic: Thema: - + Type: Typ: - + Security: Sicherheit: - + Peers: Nachbarn: - - - - - - + + + + + + TextLabel TextLabel @@ -1804,24 +2101,13 @@ Double click a chat room to enter and chat. Keine anonymen Kennungen - + Show Zeige - - Private Subscribed - Privat abonniert - - - - - Public Subscribed - Ɩffentlich abonniert - - - + column Spalte @@ -1835,7 +2121,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Eintrag entfernen @@ -1880,22 +2166,46 @@ Double click a chat room to enter and chat. ChatPage - + General Allgemein + + Distant Chat + Fernchat + Everyone Jeder + + Contacts + Kontakte + Nobody Niemand - + Accept encrypted distant chat from + Verschlüsselten Fernchat annehmen von + + + Chat Settings + Chat-Einstellungen + + + Enable Emoticons Private Chat + Emoticons für privaten Chat + + + Enable Emoticons Group Chat + Emoticons für Gruppenchat + + + Enable custom fonts Angepasste Schriftarten aktivieren @@ -1904,6 +2214,10 @@ Double click a chat room to enter and chat. Enable custom font size Angepasste Schriftgröße aktivieren + + Minimum font size + Minimale Schriftgröße + Enable bold @@ -1915,9 +2229,9 @@ Double click a chat room to enter and chat. Kursivschrift aktivieren - + General settings - Allgemeine Einstellungen + @@ -1940,14 +2254,22 @@ Double click a chat room to enter and chat. Eingebettete Bilder laden - + Chat Lobby + Chatlobby + + + Blink tab icon Blinkendes Reitersymbol Do not send typing notifications - Senden Sie keine Tippbenachrichtigungen + + + + Private Chat + Privater Chat @@ -1970,7 +2292,11 @@ Double click a chat room to enter and chat. Blinkendes Fenster/Reitersymbol - + Chat Font + Chat-Schriftart + + + Change Chat Font Chat-Schriftart wƤhlen @@ -1980,10 +2306,14 @@ Double click a chat room to enter and chat. Chat-Schriftart: - + History Verlauf + + Style + Stil + @@ -1998,15 +2328,19 @@ Double click a chat room to enter and chat. Variant: Variante: + + Group chat + Gruppenchat + Private chat Privater Chat - + Choose your default font for Chat. - WƤhlen Sie Ihre Standardschriftart für Chat. + @@ -2061,152 +2395,140 @@ Double click a chat room to enter and chat. /me is sending a message with /me - /me sendet eine Nachricht mit /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">In diesem Tab kannst du für die verschiedenen Chatsysteme festlegen, wieviele Nachrichten RetroShare auf Festplatte gespeichert hƤlt, und wieviel der vorangehenden Unterhaltung angezeigt wird. Die maximale Speicherzeit erlaubt das Verwerfen alter Nachrichten und verhindert das unberechenbare Füllen des Unterhaltungsverlaufs (z. B. Chatlobbys und Fernchat).</p></body></html> + + Chatlobbies + Chatlobbys + Enabled: Aktiviert: - + Search - Suchen + Suchen - - When focus on text browser after showing chat room - Wenn Sie sich auf den Textbrowser konzentrieren, nachdem Sie den Chatraum angezeigt haben - - - - Shrink text edit field when not needed - Textbearbeitungsfeld verkleinern, wenn es nicht benƶtigt wird - - - + Fonts - Schriftarten + Minimum displayed font size - Angezeigte Mindestschriftgröße + - - If your system is set up correctly, this next square should measure 1 cm. - Wenn Ihr System richtig eingerichtet ist, sollte dieses nƤchste Quadrat 1 cm messen. - - - - This next square is scaled accordingly to your system font size. - Dieses nƤchste Quadrat wird entsprechend der Schriftgröße Ihres Systems skaliert. - - - + Chat rooms - ChatrƤume + ChatrƤume Checked, if the identity and the text above occurrences must be in the same case to trigger count. - Überprüft, ob die IdentitƤt und der Text über den Vorkommen in derselben Groß-/Kleinschreibung vorliegen müssen, um die ZƤhlung auszulƶsen. + Case sensitive search - Groß- und Kleinschreibung beachten + Default identity for chat rooms: - StandardidentitƤt für Chatrooms: + Count all unread messages - Alle ungelesenen Nachrichten zƤhlen + Alle ungelesenen Nachrichten zƤhlen Count occurrences of my current identity - ZƤhle Vorkommen meiner aktuellen IdentitƤt + Count occurrences of any of the following texts (separate by newlines): - ZƤhlen Sie das Vorkommen eines der folgenden Texte (getrennt durch Zeilenumbrüche): + Author: - Autor: + Description: - Beschreibung: + Accept chat from: - Akzeptiere Chat von: + Contacts only - Nur Kontakte + Enable Emoticons - Emoticons aktivieren + Broadcast - Rundschreiben + Rundschreiben Node-to-node chat - Knoten-Chat + Saved messages (0 = unlimited): - Gespeicherte Nachrichten (0 = unbegrenzt): + Gespeicherte Nachrichten (0 = unbegrenzt) Number of messages restored (0 = off): - Anzahl wiederhergestellter Nachrichten (0 = aus): + Anzahl wiederhergestelter Nachrichten (0 = aus) Distant chat - Distant-Chat + Maximum storage period, in days (0=keep all): - Maximale Speicherzeit in Tagen (0 = alle behalten): + Maximale Speicherzeit in Tagen (0 = alle behalten) - + Search by default + Suchgrundeinstellung + + + Case sensitive Groß-/Kleinschreibung unterscheiden @@ -2245,6 +2567,10 @@ Double click a chat room to enter and chat. Threshold for automatic search Grenzwert für automatische Suche + + Default identity for chat lobbies: + StandardidentitƤt für Chatlobbys + Show Bar by default @@ -2273,7 +2599,7 @@ Double click a chat room to enter and chat. Chats - Chats + Chats @@ -2312,7 +2638,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Chat anzeigen @@ -2327,40 +2653,40 @@ Double click a chat room to enter and chat. You have %1 mentions - Sie haben %1 ErwƤhnungen + You have %1 mention - Sie haben %1 ErwƤhnung + %1 mentions - %1 ErwƤhnungen + %1 mention - %1 ErwƤhnung + ChatWidget - + Close Schließen Insert sticker - Sticker einfügen + Set font & color - Schriftart und Farbe einstellen + @@ -2383,14 +2709,14 @@ Double click a chat room to enter and chat. Kursiv - + <html><head/><body><p>Chat menu</p></body></html> - <html><head/><body><p>Chat-Menü</p></body></html> + - + Insert emoticon - Emoticon einfügen + @@ -2468,10 +2794,15 @@ Double click a chat room to enter and chat. Insert horizontal rule Horizontale Linie einfügen + + + Save image + Bild speichern + Import sticker - Sticker importieren + @@ -2487,7 +2818,7 @@ Double click a chat room to enter and chat. Don't replace tag with Emote Icon. - Ersetzen Sie den Tag nicht durch das Emote-Symbol. + @@ -2497,15 +2828,15 @@ Double click a chat room to enter and chat. Send as CommonMark - Als CommonMark senden + Text will be formatted using CommonMark. - Der Text wird mit CommonMark formatiert. + - + is typing... tippt... @@ -2520,16 +2851,15 @@ nach der HTML-Konvertierung. Warning: This message is too big of %1 characters after HTML conversion. - Warnung: Diese Nachricht ist mit %1 Zeichen zu groß -nach der HTML-Konvertierung. + Choose your font. - WƤhlen Sie Ihre Schriftart. + - + Do you really want to physically delete the history? Mƶchtest du wirklich den Nachrichtenverlauf lƶschen? @@ -2561,7 +2891,7 @@ nach der HTML-Konvertierung. Messages you send will be delivered after Friend is again Online. - Die von Ihnen gesendeten Nachrichten werden zugestellt, sobald Ihr Freund wieder online ist. + @@ -2579,7 +2909,7 @@ nach der HTML-Konvertierung. antwortet mƶglicherweise nicht, da der Status auf "BeschƤftigt" gesetzt wurde - + Find Case Sensitively Unter Berücksichtigung von Groß-/Kleinschreibung suchen @@ -2601,7 +2931,7 @@ nach der HTML-Konvertierung. Nach Finden von X Elementen mit dem EinfƤrben nicht aufhƶren (benƶtigt mehr CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Vorherige finden </b><br/><i>Strg+Umschalt+G</i> @@ -2616,12 +2946,16 @@ nach der HTML-Konvertierung. <b>Finden </b><br/><i>Strg+F</i> - + (Status) (Status) - + Set text font & color + Schriftart & Textfarbe festlegen + + + Attach a File Datei anhƤngen @@ -2637,31 +2971,30 @@ nach der HTML-Konvertierung. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Markiere diesen ausgewƤhlten Text</b><br><i>Strg+M</i> - + Person id: - Personen-ID: + Double click on it to add his name on text writer. - -Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. + - + Unsigned - Nicht signiert + - + items found. - Elemente gefunden. + Elemente gefunden. @@ -2679,7 +3012,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Hier eine Nachricht eingeben - + Don't stop to color after Nach Finden von @@ -2705,9 +3038,9 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. CirclesDialog - + Showing details: - Detailanzeige: + Detailanzeige: @@ -2727,7 +3060,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. - + Personal Circles Persƶnliche Kreise @@ -2753,7 +3086,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. - + Friends Freunde @@ -2813,7 +3146,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Freunde von Freunden - + External Circles (Admin) Externe Kreise (Admin) @@ -2829,7 +3162,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. - + Circles Kreise @@ -2860,7 +3193,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. Current address: - Aktuelle Adresse: + @@ -2881,52 +3214,47 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. - + RetroShare RetroShare - + - + Error : cannot get peer details. Fehler: Kann Nachbardetails nicht ermitteln. - + Retroshare ID - + - + <p>This Retroshare ID contains: - <p>Diese Retroshare-ID enthƤlt: + - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> - <p>Sie kƶnnen diese Retroshare ID verwenden, um neue Freunde zu bekommen. Schicken Sie sie per E-Mail, oder geben Sie sie von Hand zu Hand.</p> + @@ -2934,7 +3262,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Verschlüsselung - + Not connected Nicht verbunden @@ -2981,12 +3309,12 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. Connectivity - KonnektivitƤt + List of known addresses: - Liste bekannter Adressen: + @@ -2997,12 +3325,12 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. short format - Kurzformat + Include IP history - IP-Verlauf einbeziehen + @@ -3016,17 +3344,25 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.keine - + <p>This certificate contains: <p>Dieses Zertifikat enthƤlt: - + <li>a <b>node ID</b> and <b>name</b> <li>eine <b>Netzknoten-ID</b> und <b>Name</b> - + an <b>onion address</b> and <b>port</b> + eine <b>Onion-Adresse</b> und <b>Port</b> + + + an <b>IP address</b> and <b>port</b> + eine <b>IP-Adresse</b> und <b>Port</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> Du kannst dieses Zertifikat zum Schließen von neuen Freundschaften verwenden. Versende es per E-Mail oder gib es von Hand zu Hand. @@ -3041,7 +3377,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.<html><head/><body><p>Dies ist die Verschlüsselungsmethode die von <span style=" font-weight:600;">OpenSSL</span> benutzt wird. Die Verbindung zu befreundeten Netzknoten ist immer stark verschlüsselt.</p><p>Und wenn DHE vorhanden ist dann verwendet die Verbindung noch dazu</p><p>&quot;Perfect Forward Secrecy&quot;.</p></body></html> - + with mit @@ -3058,16 +3394,104 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Connect Friend Wizard Assistent um sich zu einem Freund zu verbinden + + Add a new Friend + Einen neuen Freund hinzufügen + + + &You get a certificate file from your friend + &Du hast eine Datei mit einem Zertifikat deines Freund bekommen + + + &Make friend with selected friends of my friends + AusgewƤhlte Freunde von Freunden hinzu&fügen + + + Include signatures + Signaturen einschließen + + + Copy your Cert to Clipboard + Dein Zertifikat in die Zwischenablage kopieren + + + Save your Cert into a File + Zertifikat als Datei speichern + + + Run Email program + Das Standard-E-Mailprogramm starten + Open Cert of your friend from File - Ɩffnen Sie das Zertifikat Ihres Freundes von der Datei + + + + Certificate files + Zertifikat-Dateien + + + Use PGP certificates saved in files. + In Dateien gespeicherte PGP Zertifikate benutzen. + + + Import friend's certificate... + Zertifikat eines Freundes importieren... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Du musst eine Datei mit deinem Zertifikat erstellen und deinem Freund zukommen lassen. Alternativ kannst Du auch eine Datei verwenden, die Du zuvor erstellt hast. + + + Export my certificate... + Mein Zertifikat exportieren... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Gib die Datei mit dem Zertifikat ein oder ziehe sie per Drag'n'Drop in das Fenster + + + Browse + Durchsuchen + + + Friends of friends + Freunde von Freunden + + + Select now who you want to make friends with. + WƤhle nun aus, wen du als Freund hinzufügen mƶchtest. + + + Show me: + Zeige mir: + + + Make friend with these peers + Diese Nachbarn zu deinen Freunden hinzufügen RetroShare ID RetroShare-ID + + Use RetroShare ID for adding a Friend which is available in your network. + RetroShare-ID benutzen, um einen Freund aus deinem Netzwerk hinzuzufügen. + + + Add Friends RetroShare ID... + RetroShare-ID des Freundes einfügen... + + + Paste Friends RetroShare ID in the box below + RetroShare-ID des Freundes in das Feld unten einfügen + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + RetroShare-ID des Freundes eingeben, z. B. Nachbar@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3076,7 +3500,7 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. Invite your Friends from other Networks to RetroShare. - Laden Sie Ihre Freunde aus anderen Netzwerken zu RetroShare ein. + @@ -3109,7 +3533,27 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.E-Mail - + Invite Friends by Email + Freunde per E-Mail einladen + + + Enter your friends' email addresses (separate each one with a semicolon) + Gib die E-Mail-Adressen deines Freundes an (mehrere Adressen müssen mit Semikolon getrennt werden) + + + Your friends' email addresses: + E-Mail-Adresse deines Freundes: + + + Enter Friends Email addresses + Gib die E-Mail-Adresse deines Freundes ein + + + Subject: + Betreff: + + + @@ -3125,32 +3569,60 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Details der Anfrage - + Peer details Nachbardetails - + Name: Name: + + Email: + E-Mail: + + + Node: + Netzknoten: + Location: Ort: - + Options Optionen - + Enter the certificate manually + Zertifikat manuell eingeben + + + Enter RetroShare ID manually + RetroShare-Kennung manuell eingeben + + + Recommend many friends to each other + Viele Freunde einander empfehlen + + + RetroShare certificate + RetroShare-Zertifikat + + + 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> - + Add friend to group: Freund zur Gruppe hinzufügen: @@ -3160,54 +3632,48 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Freund authentifizieren (PGP-Schlüssel unterzeichnen) - + Please paste below your friend's Retroshare ID - Bitte fügen Sie unten die Retroshare-ID Ihres Freundes ein + Paste ID of your friend from Clipboard - ID eines Freundes aus der Zwischenablage einfügen + Paste - Einfügen + Open - Ɩffnen + Please, paste your friend's Retroshare ID into the box below - Bitte fügen Sie die Retroshare-ID Ihres Freundes in das unten stehende Feld ein + - - Signers: - Unterzeichner: - - - - Known IP: - Bekannte IP: - - - + Add as friend to connect with Als Freund hinzufügen, zu dem verbunden wird - + To accept the Friend Request, click the Finish button. + Abschließen-Knopf anklicken, um die Anfrage zu akzeptieren + + + Sorry, some error appeared Entschuldigung, es trat ein Fehler auf Here is the error message: - Dies ist die Fehlermeldung: + Dies ist die Fehlermeldung: @@ -3220,34 +3686,39 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen.Details über deinen Freund: - + Key validity: Schlüssel-Gültigkeit: - + Profile ID: - + - + + Signers + Unterzeichner + + + <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. Dieser Nachbar ist bereits in deiner Freundliste vorhanden. Das nochmalige Hinzufügen Ƥndert nur seine IP. - + To accept the Friend Request, click the Accept button. - Um die Freundschaftsanfrage anzunehmen, klicken Sie auf die SchaltflƤche Annehmen. + Abnormal size read is bigger than memory block. - Größe der eingehenden Daten ist größer als Speicherblock. + Größe der eingehenden Daten ist größer als Speicherblock @@ -3286,17 +3757,49 @@ Doppelklicken Sie darauf, um seinen Namen im Textschreiber hinzuzufügen. - + Certificate Load Failed Das Zertifikat konnte nicht geladen werden - + Cannot get peer details of PGP key %1 + Kann Nachbardetails von PGP-Schlüssel %1 nicht abrufen + + + Any peer I've not signed + Jeden Nachbarn, den ich nicht unterzeichnet habe + + + Friends of my friends who already trust me + Freunde meiner Freunde, welche mir schon vertrauen + + + Signed peers showing as denied + Unterzeichnete Nachbarn, die geblockt sind + + + Peer name + Nachbarname + + + Also signed by + Auch unterzeichnet von + + + Peer id + Nachbar-ID + + + Certificate appears to be valid + Zertifikat scheint gültig zu sein + + + Not a valid Retroshare certificate! Kein gültiges RetroShare-Zertifikat! - + RetroShare Invitation RetroShare-Einladung @@ -3316,27 +3819,27 @@ 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? - + Accept - Akzeptieren + - + This key is already on your trusted list You have already signed this key - Sie haben diesen Schlüssel bereits unterzeichnet + @@ -3369,42 +3872,82 @@ Warning: In your File-Transfer option, you select allow direct download to No.Du hast eine Freundschaftsanfrage von - + Profile password needed. Identity creation failed - IdentitƤtserstellung fehlgeschlagen + Cannot create an identity linked to your profile without your profile password. - Ohne Ihr Profilpasswort kƶnnen Sie keine mit Ihrem Profil verknüpfte IdentitƤt erstellen. + Signature failed - Unterschrift fehlgeschlagen + Signature failed. Uncheck the key signature box if you want to make friends without signing the friends' certificate - Signatur fehlgeschlagen. Deaktivieren Sie das KontrollkƤstchen für die Schlüsselsignatur, wenn Sie Freundschaften schließen mƶchten, ohne das Zertifikat der Freunde zu signieren + - + Valid Retroshare ID - Gültige Retroshare-ID + Valid certificate - Gültiges Zertifikat + - + Certificate Load Failed:file %1 not found + Fehler beim Laden des Zertifikats: Datei %1 nicht gefunden + + + This Peer %1 is not available in your Network + Der Nutzer %1 ist nicht in deinem Netzwerk verfügbar + + + Use new certificate format (safer, more robust) + Neues Zertifikatsformat benutzen (sicherer und robuster) + + + Use old (backward compatible) certificate format + Altes (rückwƤrtskompatibles) Zertifikatsformat benutzen + + + Remove signatures + Signaturen entfernen + + + RetroShare Invite + RetroShare-Einladung + + + Connect Friend Help + Verbindungshilfe + + + You can copy this text and send it to your friend via email or some other way + Du kannst diesen Text kopieren und an deinen Freund per E-Mail senden oder über einen anderen Weg zukommen lassen + + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Dein Zertifikat wurde in die Zwischenablage kopiert. Du kannst es per E-Mail oder auf andere Weise an deinen Freund senden. + + + Save as... + Speichern unter... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3443,7 +3986,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** Keine *** - + Use as direct source, when available + Wenn verfügbar als direkte Quelle nutzen + + + IP-Addr: IP-Adr.: @@ -3453,7 +4000,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.IP-Adresse - + Show Advanced options Erweiterte Optionen anzeigen @@ -3472,13 +4019,41 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + Viele Freunde einander empfehlen + + + Friend Recommendations + Freundempfehlungen + + + Message: + Nachricht: + + + Recommend friends + Freunde empfehlen + + + To + An + + + Please select at least one friend for recommendation. + Bitte mindestens einen Freund als Empfehlung wƤhlen. + + + Please select at least one friend as recipient. + Bitte mindestens einen EmpfƤnger wƤhlen. + Add key to keyring Schlüssel zum Schlüsselbund hinzufügen. - + This key is already in your keyring Schlüssel ist bereits in deinem Schlüsselbund. @@ -3492,7 +4067,7 @@ even if you don't make friends. Selbst wenn ihr euch nicht anfreundet, kƶnnte es nützlich sein, um Fernnachrichten an diesen Teilnehmer zu senden. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netze inkompatibel sind. @@ -3528,7 +4103,7 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz IP zu Whitelist hinzufügen - + No IP in this certificate! Zertifikat enthƤlt keine IP! @@ -3538,10 +4113,27 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz <p>Dieses Zertifikat enthƤlt keine IP. Du wirst auf Discovery und DHT angewiesen sein un sie herauszufinden. Da du Whitelist-Freigabe forderst wird der Nachbar eine Sicherheitswarnung im Neuigkeitenreiter auslƶsen. Von dort kannst die die IP freigeben.</p> - + + [Unknown] + [Unbekannt] + + + Added with certificate from %1 Hinzugefügt mit Zertifikat von %1 + + Paste Cert of your friend from Clipboard + Zertifikat deines Freundes aus der Zwischenablage einfügen + + + Certificate Load Failed:can't read from file %1 + Fehler beim Laden des Zertifikats: Datei %1 konnte nicht gelesen werden + + + Certificate Load Failed:something is wrong with %1 + Fehler beim Laden des Zertifikats: Mit %1 stimmt etwas nicht + ConnectProgressDialog @@ -3563,7 +4155,7 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz Network - Netzwerk + Netzwerk @@ -3603,7 +4195,7 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz - + UDP Setup UDP-Aufbau @@ -3615,7 +4207,7 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz Status - Status + Status @@ -3631,7 +4223,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant Verbindungsassistent @@ -3641,20 +4233,17 @@ p, li { white-space: pre-wrap; } Ungültige Peer-ID - - + Unknown State Unbekannter Zustand - - + Offline Offline - - + Behind Symmetric NAT Hinter Symmetrischem NAT @@ -3664,14 +4253,12 @@ p, li { white-space: pre-wrap; } Hinter NAT & kein DHT - - + NET Restart Netzneustart - - + Behind NAT Hinter NAT @@ -3681,8 +4268,7 @@ p, li { white-space: pre-wrap; } Kein DHT - - + NET STATE GOOD! NETZZUSTAND GUT! @@ -3707,7 +4293,7 @@ p, li { white-space: pre-wrap; } RS-Nachbarn werden gesucht - + Lookup requires DHT Suche erfordert DHT @@ -3755,12 +4341,12 @@ p, li { white-space: pre-wrap; } Initial connections can take a while, please be patient - Erstverbindungen kƶnnen etwas Zeit in Anspruch nehmen. Bitte gedulde dich + Erstverbindungen kƶnnen etwas Zeit in Anspruch nehmen. Bitte gedulde dich. If an error is detected it will be displayed here - Wenn ein Fehler festgestellt wird, wird er hier angezeigt + Wenn ein Fehler festgestellt wird, wird er hier angezeigt. @@ -3812,7 +4398,7 @@ p, li { white-space: pre-wrap; } DHT Lookup has taken too long - DHT-Suche hat zu lange gedauert + DHT-Suche hat zu lange gedauert. @@ -3822,7 +4408,7 @@ p, li { white-space: pre-wrap; } UDP Connection has taken too long - UDP-Verbindung hat zu lange gedauert + UDP-Verbindung hat zu lange gedauert. @@ -3837,7 +4423,7 @@ p, li { white-space: pre-wrap; } In this case the UDP connection attempt has failed. - In diesem Fall ist der UDP-Verbindungsversuch fehlgeschlagen. + In diesem Fall ist der UDP-Verbindungsversuch fehlgeschlagen @@ -3941,7 +4527,7 @@ p, li { white-space: pre-wrap; } Please contact them to add your Full Certificate - Bitte kontaktiere ihn/sie, damit sie dein vollstƤndiges Zertifikat hinzufügen + Bitte kontaktiere ihn/sie, damit sie dein vollstƤndiges Zertifikat hinzufügen. @@ -3951,7 +4537,7 @@ p, li { white-space: pre-wrap; } They are either offline or their DHT is Off - Er/Sie ist entweder offline oder sein/ihr DHT ist aus + Er/Sie ist entweder offline oder sein/ihr DHT ist aus. @@ -3966,7 +4552,7 @@ p, li { white-space: pre-wrap; } You have previously connected to this Friend - Du warst vorher bereits mit diesem Freund verbunden + Du warst vorher bereits mit diesem Freund verbunden. @@ -3999,7 +4585,7 @@ p, li { white-space: pre-wrap; } Bitte versuche noch einmal ein vollstƤndiges Zertifikat zu importieren - + @@ -4007,8 +4593,7 @@ p, li { white-space: pre-wrap; } N/V - - + UNVERIFIABLE FORWARD! NICHT VERIFIZIERBARE WEITERLEITUNG! @@ -4018,7 +4603,7 @@ p, li { white-space: pre-wrap; } NICHT VERIFIZIERBARE WEITERLEITUNG & KEIN DHT - + Searching Suchen @@ -4030,7 +4615,7 @@ p, li { white-space: pre-wrap; } Only Advanced Retroshare users should switch off the DHT. - Nur fortgeschrittene RetroShare-Benutzer sollten DHT ausschalten. + Nur fortgeschrittene RetroShare-Benutzer sollten DHT ausschalten @@ -4040,7 +4625,7 @@ p, li { white-space: pre-wrap; } They need a Certificate + Node for UDP connections to succeed - Für eine erfolgreiche UDP-Verbindung benƶtigen sie ein Zertifikat und einen Netzknoten + Für eine erfolgreiche UDP-Verbindung benƶtigen sie ein Zertifikat und einen Netzknoten. @@ -4054,19 +4639,19 @@ p, li { white-space: pre-wrap; } Kreisdetails - + Name 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>Der Kreisname, der Kontaktautor und die Liste der eingeladenen Mitglieder sind für alle eingeladenen Mitglieder sichtbar. Wenn der Kreis nicht privat ist, ist er auch für Nachbarknoten der Knoten sichtbar, die die eingeladenen Mitglieder hosten.</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>Der Ersteller eines Kreises ist rein optional. Es ist jedoch für ƶffentliche Kreise nützlich, damit die Leute wissen, mit wem sie Mitgliedschaftsaspekte besprechen kƶnnen.</p></body></html> + @@ -4076,22 +4661,22 @@ p, li { white-space: pre-wrap; } Only &visible to members of: - Nur & sichtbar für Mitglieder von: + - + IDs IDs Profile - Profil + Profil Signed by friend node - Signiert von Freund Knoten + @@ -4099,25 +4684,25 @@ p, li { white-space: pre-wrap; } Filter - + Cancel - Abbrechen + Abbrechen - + Nickname Spitzname - + Invited Members Eingeladene Mitglieder <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>Mitglieder dieser Liste werden automatisch für den Beitritt zum Kreis vorgeschlagen (durch Annahme der Mitgliedschaft). Sie erhalten</p><p>keine Daten, die auf diesen Kreis beschrƤnkt sind, bis sie dies tun.</p></body></html> + @@ -4125,7 +4710,15 @@ p, li { white-space: pre-wrap; } Bekannte Personen - + ID + ID + + + Type + Typ + + + Name: Name: @@ -4147,12 +4740,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>Ɩffentlich verteilte Kreise sind für deine Freunde sichtbar, die dadurch die Daten des Kreises ( Ersteller, Mitglieder, 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> - <html><head/><body><p>Private (auch bekannt als selbstbeschrƤnkte) Kreise sind nur für die eingeladenen Mitglieder dieser Kreise sichtbar. In der Praxis verwendet der Kreis seine eigene Liste eingeladener Mitglieder, um seine eigene Verteilung einzuschrƤnken. </p></body></html> + @@ -4162,22 +4755,26 @@ 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>Kreise kƶnnen auf die Mitglieder eines anderen Kreises beschrƤnkt werden. Nur die Mitglieder dieses zweiten Kreises dürfen den neuen Kreis und seinen Inhalt (Liste der Mitglieder usw.) sehen.</p></body></html> + - - + Only visible to members of: + Nur sichtbar für Mitglieder von: + + + + RetroShare RetroShare - + Please set a name for your Circle Bitte einen Namen für deinen Kreis vergeben. - + No Restriction Circle Selected Kein EinschrƤnkungskreis ausgewƤhlt @@ -4187,26 +4784,12 @@ p, li { white-space: pre-wrap; } Keine EinschrƤnkungen für Kreis gewƤhlt - - Circle created - Kreis erstellt - - - - Your new circle has been created: - Name: %1 - Id: %2. - Ihr neuer Kreis wurde erstellt: - Name: %1 - ID: %2. - - - + [Unknown] - [Unbekannt] + [Unbekannt] - + Add Hinzufügen @@ -4216,7 +4799,7 @@ p, li { white-space: pre-wrap; } Entfernen - + Search Suchen @@ -4231,6 +4814,10 @@ p, li { white-space: pre-wrap; } Signed Unterzeichnet + + Signed by known nodes + Von bekannten Netzknoten unterzeichnet + Edit Circle @@ -4240,13 +4827,17 @@ p, li { white-space: pre-wrap; } [Anonymous Id] - [Anonymous ID] + PGP Identity PGP-IdentitƤt + + Anon Id + Anonyme ID + Circle name @@ -4269,13 +4860,17 @@ p, li { white-space: pre-wrap; } Neuen Kreis erstellen - + Create Erstellen - + PGP Linked Id + PGP-verknüpfte ID + + + Add Member Mitglied hinzufügen @@ -4294,7 +4889,7 @@ p, li { white-space: pre-wrap; } Gruppe erstellen - + Group Name: Gruppenname: @@ -4311,7 +4906,7 @@ p, li { white-space: pre-wrap; } To be defined - Noch zu definieren + @@ -4329,7 +4924,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Neuer Kanalbeitrag @@ -4339,44 +4934,44 @@ p, li { white-space: pre-wrap; } Kanalbeitrag - + Post - Posten + Cancel - Abbrechen + Abbrechen <html><head/><body><p>Choose aspect ratio policy. In 'Auto' mode, the most suitable aspect ratio is chosen for you.</p></body></html> - <html><head/><body><p>WƤhlen Sie das SeitenverhƤltnis. Im Modus "Auto" wird das am besten geeignete SeitenverhƤltnis für Sie ausgewƤhlt.</p></body></html> + Auto - + 1:1 - 1:1 + 1:1 3:4 - 3:4 + 3:4 16:9 - 16:9 + 16:9 <html><head/><body><p>Remove Thumbnail</p></body></html> - <html><head/><body><p>Vorschaubild entfernen</p></body></html> + @@ -4400,11 +4995,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Benutze Drag & Drop / Datei hinzufügen Knopf, um Hashwert für neue Dateien zu erstellen.</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-Links von deinen Freigaben kopieren/einfügen</span></p></body></html> + + Add File to Attach + Datei hinzufügen + Add Channel Thumbnail Miniaturbild hinzufügen + + Message + Nachricht + + + Subject : + Betreff: + @@ -4420,27 +5027,27 @@ p, li { white-space: pre-wrap; } Title - Titel + Titel <html><head/><body><p>Hide</p></body></html> - <html><head/><body><p>Ausblenden</p></body></html> + <html><head/><body><p>Add File</p></body></html> - <html><head/><body><p>Datei hinzufügen</p></body></html> + <html><head/><body><p>Paste retroshare link(s) from clipboard.</p></body></html> - <html><head/><body><p>Retroshare-Link(s) aus der Zwischenablage einfügen.</p></body></html> + <html><head/><body><p>Remove File</p></body></html> - <html><head/><body><p>Datei entfernen</p></body></html> + @@ -4481,7 +5088,7 @@ p, li { white-space: pre-wrap; } Attachments (%1) - AnhƤnge (%1) + @@ -4490,34 +5097,38 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - Diese Datei ist bereits in diesem Beitrag enthalten: + - + Post refers to non shared files - Post bezieht sich auf nicht freigegebene Dateien + This post contains files that you are currently not sharing. Do you still want to post? - Dieser Beitrag enthƤlt Dateien, die Sie derzeit nicht freigeben. Mƶchten Sie trotzdem posten? + Post refers to temporary shared files - Beitrag bezieht sich auf temporƤre freigegebene Dateien + The following files will only be shared for 30 days. Think about adding them to a shared directory. - Die folgenden Dateien werden nur für 30 Tage freigegeben. Denken Sie darüber nach, sie in ein freigegebenes Verzeichnis aufzunehmen. + + + + File already Added and Hashed + Datei wurde schon hinzugefügt und gehasht @@ -4525,54 +5136,55 @@ p, li { white-space: pre-wrap; } Bitte einen Betreff hinzufügen - - Cannot publish post - Beitrag kann nicht verƶffentlicht werden - - - + Load thumbnail picture Miniaturbild laden Show - Zeigen + Hide - Verbergen + Verbergen - + + Generate mass data Massendaten erzeugen - + + Do you really want to generate %1 messages ? + Mƶchtest du wirklich %1 Nachrichten erzeugen? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Du bist dabei, Dateien hinzuzufügen, die du nicht freigegeben hast. Willst du das wirklich tun? Edit Channel Post - Kanalbeitrag bearbeiten + Update - Aktualisieren + Aktualisieren Close this window? - Dieses Fenster schließen? + Do you really want to discard your post? - Wollen Sie Ihren Beitrag wirklich verwerfen? + @@ -4584,7 +5196,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Forumsnachricht verƶffentlichen @@ -4593,6 +5205,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Betreff + Attach File @@ -4613,14 +5229,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + Attach a Picture - Bild anhƤngen + Bild anhƤngen @@ -4633,14 +5249,14 @@ p, li { white-space: pre-wrap; } Du kannst Dateien mit Drag'n'Drop anhƤngen - + Post - Posten + Cancel - Abbrechen + Abbrechen @@ -4650,42 +5266,42 @@ p, li { white-space: pre-wrap; } Edit Message - Nachricht bearbeiten + Update - Aktualisieren + Aktualisieren Text - + - + No Forum Kein Forum - + In Reply to Als Antwort auf - + Title - Titel + Titel It remains %1 characters after HTML conversion. - Es verbleiben %1 Zeichen nach der HTML-Konvertierung. + Warning: This message is too big of %1 characters after HTML conversion. - Warnung: Diese Nachricht ist mit %1 Zeichen zu groß nach der HTML-Konvertierung. + @@ -4707,14 +5323,13 @@ p, li { white-space: pre-wrap; } Cancel Forum Message - Forum-Nachricht abbrechen + Forum Message has not been sent yet! Do you want to discard this message? - Forum Nachricht wurde noch nicht gesendet! -Mƶchten Sie diese Nachricht verwerfen? + @@ -4724,21 +5339,21 @@ Mƶchten Sie diese Nachricht verwerfen? Load Picture File - Bilddatei laden + Bilddatei laden - + No compatible ID for this forum Keine kompatible Kennung für dieses 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. - Keine Ihrer IdentitƤten darf in diesem Forum schreiben. Dies kƶnnte daran liegen, dass das Forum auf einen Kreis beschrƤnkt ist, der keine Ihrer IdentitƤten enthƤlt, oder dass Forum-Flags eine PGP-signierte IdentitƤt erfordern. + - - + + Generate mass data Massendaten erzeugen @@ -4747,6 +5362,10 @@ Mƶchten Sie diese Nachricht verwerfen? Do you really want to generate %1 messages ? Mƶchtest du wirklich %1 Nachrichten erzeugen? + + Send + Senden + Post as @@ -4761,9 +5380,25 @@ Mƶchten Sie diese Nachricht verwerfen? CreateLobbyDialog - + Create Chat Lobby + Chatlobby erstellen + + + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. + Eine Chatlobby ist eine dezentralisierte und anonyme Chatgruppe. Alle Teilnehmer sehen alle Nachrichten. Wenn die Lobby erstellt wurde, kannst du Freunde über den "Freunde"-Reiter einladen. + + + Lobby name: + Lobbyname: + + + Lobby topic: + Lobbythema: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. - Ein Chatroom ist eine dezentralisierte und anonyme Chatgruppe. Alle Teilnehmer erhalten alle Nachrichten. Sobald der Raum erstellt ist, Siekƶnnen andere Freundesknoten mit der SchaltflƤche "Einladen" oben rechts einladen. + @@ -4796,17 +5431,17 @@ Mƶchten Sie diese Nachricht verwerfen? - + Create - Erstellen + Erstellen Cancel - Abbrechen + Abbrechen - + require PGP-signed identities erfordert PGP-signierte IdentitƤten @@ -4821,7 +5456,11 @@ Mƶchten Sie diese Nachricht verwerfen? WƤhle die Freunde mit denen du chatten mƶchtest. - + Invited friends + Freunde einladen + + + Create Chat Room Chatraum erstellen @@ -4829,12 +5468,12 @@ Mƶchten Sie diese Nachricht verwerfen? Put a sensible chat room name here - Geben Sie hier einen sinnvollen Chatroom-Namen ein + Set a descriptive topic here - Legen Sie hier ein beschreibendes Thema fest + @@ -4842,7 +5481,7 @@ Mƶchten Sie diese Nachricht verwerfen? Kontakte: - + Identity to use: Zu verwendende IdentitƤt: @@ -4850,17 +5489,17 @@ Mƶchten Sie diese Nachricht verwerfen? CryptoPage - + Public Information Ɩffentliche Information - + Name: Name: - + Location: Ort: @@ -4870,12 +5509,12 @@ Mƶchten Sie diese Nachricht verwerfen? Ort-ID: - + Software Version: Softwareversion: - + Online since: Online seit: @@ -4887,7 +5526,7 @@ Mƶchten Sie diese Nachricht verwerfen? Statistics: - Statistiken: + @@ -4895,34 +5534,44 @@ Mƶchten Sie diese Nachricht verwerfen? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export Show statistics - Zeige Statistiken + - + Other Information Andere Informationen Profile path: - Profilpfad: + - + Profile - Profil + Profil - + + Certificate + Zertifikat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> - <html><head/><body><p>Diese Option umfasst alle Signaturen Ihres Profilschlüssels. Unterschriften sind nicht zwingend erforderlich, sondern nur eine Mƶglichkeit, Ihr Vertrauen in ein bestimmtes Profil auszudrücken.</p></body></html> + @@ -4930,19 +5579,23 @@ Mƶchten Sie diese Nachricht verwerfen? Signaturen einschließen - + Save Key into a file + Schlüssel in Datei sichern + + + Export Identity - IdentitƤt exportieren + IdentitƤt exportieren RetroShare Identity files (*.asc) - RetroShare-IdentitƤtsdateien (*.asc) + RetroShare-IdentitƤtsdateien (*.asc) Identity saved - IdentitƤt gespeichert + IdentitƤt gespeichert @@ -4951,7 +5604,7 @@ It is encrypted You can now copy it to another computer and use the import button to load it - Deine IdentitƤt wurde erfolgreich gespeichert + Deine IdentitƤt wurde erfolgreich gespeichert Sie ist verschlüsselt Du kannst die IdentitƤt nun auf einen anderen Computer kopieren @@ -4960,12 +5613,12 @@ und den Import zum Laden verwenden Identity not saved - IdentitƤt nicht gespeichert + IdentitƤt nicht gespeichert Your identity was not saved. An error occurred. - Deine IdentitƤt wurde nicht gespeichert. Ein Fehler ist aufgetreten. + Deine IdentitƤt wurde nicht gespeichert. Ein Fehler ist aufgetreten. @@ -5004,50 +5657,50 @@ und den Import zum Laden verwenden - + TextLabel TextLabel - + PGP fingerprint: - PGP-Fingerabdruck: + PGP-Fingerabdruck - + + Node information + Netzknoteninformation + + + PGP Id : PGP-ID : - + Friend nodes: Freundknoten: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> Short format - Kurzformat + <html><head/><body><p>IP history is the list of IP you used accross time. Including this might help your friends reach you. This is optional for privacy reasons.</p></body></html> - <html><head/><body><p>Der IP-Verlauf ist die Liste der IP-Adressen, die Sie im Laufe der Zeit verwendet haben. Wenn Sie dies hinzufügen, kƶnnen Ihre Freunde Sie mƶglicherweise leichter erreichen. Dies ist aus Datenschutzgründen optional.</p></body></html> + Include IP history - IP-Verlauf einbeziehen + @@ -5057,7 +5710,7 @@ und den Import zum Laden verwenden <html><head/><body><p>Saves your profile key pair into a file. This allows you to create a new node for the same profile, by importing this key pair on a different computer. Friends who already accept connections from you will automatically accept connections from that new node after you add them yourself. Your key is exported encrypted and you will need your login password to create a new profile.</p></body></html> - <html><head/><body><p>Speichert Ihr Profilschlüsselpaar in einer Datei. Dadurch kƶnnen Sie einen neuen Knoten für dasselbe Profil erstellen, indem Sie dieses Schlüsselpaar auf einem anderen Computer importieren. Freunde, die bereits Verbindungen von Ihnen akzeptieren, akzeptieren automatisch Verbindungen von diesem neuen Knoten, nachdem Sie sie selbst hinzugefügt haben. Ihr Schlüssel wird verschlüsselt exportiert und Sie benƶtigen Ihr Login-Passwort, um ein neues Profil zu erstellen.</p></body></html> + @@ -5069,6 +5722,14 @@ und den Import zum Laden verwenden Node Netzknoten + + Create new node... + Neuen Netzknoten erstellen... + + + show statistics window + Statistikfenster anzeigen + DHTGraphSource @@ -5114,13 +5775,13 @@ und den Import zum Laden verwenden No peer found in DHT - Kein Peer in DHT gefunden + DLListDelegate - + B B @@ -5142,7 +5803,7 @@ und den Import zum Laden verwenden Faster - Schneller + Schneller @@ -5152,7 +5813,7 @@ und den Import zum Laden verwenden Slower - Langsamer + Langsamer @@ -5394,7 +6055,7 @@ und den Import zum Laden verwenden Restarting - Neustart + @@ -5464,17 +6125,17 @@ und den Import zum Laden verwenden UPNP FORWARD - UPNP WEITERLEITUNG + UPNP WEITERLEIT. NATPMP FORWARD - NATPMP WEITERLEITUNG + NATPMP WEITERLEIT. MANUAL FORWARD - MANUELLE WEITERLEITUNG + MANUELLE WEITERLEIT. @@ -5635,7 +6296,7 @@ und den Import zum Laden verwenden %1 secs ago - vor %1 Sekunden + vor %1 Sek. @@ -5645,7 +6306,7 @@ und den Import zum Laden verwenden Relays - Relais + @@ -5754,7 +6415,7 @@ und den Import zum Laden verwenden Relay - + @@ -5788,7 +6449,7 @@ und den Import zum Laden verwenden DownloadToaster - + Start file Datei ausführen @@ -5796,38 +6457,38 @@ und den Import zum Laden verwenden ExprParamElement - + - + to bis - + ignore case Groß-/Kleinschreibung ignorieren - - - yyyy-MM-dd - + + + dd.MM.yyyy + TT.MM.JJJJ - - + + KB KiB - - + + MB MiB - - + + GB GiB @@ -5835,12 +6496,12 @@ und den Import zum Laden verwenden ExpressionWidget - + Expression Widget Ausdruck OberflƤche - + Delete this expression Diesen Ausdruck lƶschen @@ -5885,7 +6546,7 @@ und den Import zum Laden verwenden Friend Help - Freunde-Hilfe + Freunde-Hilfe @@ -6002,7 +6663,7 @@ und den Import zum Laden verwenden FilesDefs - + Picture Bild @@ -6012,7 +6673,7 @@ und den Import zum Laden verwenden Video - + Audio Audio @@ -6072,21 +6733,11 @@ und den Import zum Laden verwenden C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Dateien von Freunden @@ -6098,7 +6749,7 @@ und den Import zum Laden verwenden # Files - # Dateien + @@ -6128,12 +6779,12 @@ und den Import zum Laden verwenden Column %1 - Spalte %1 + Row %1 - Zeile %1 + @@ -6166,17 +6817,17 @@ und den Import zum Laden verwenden Load emoticons (costly) - Emoticons laden (kostspielig) + Minimum font size - Minimale Schriftgröße + Minimale Schriftgröße Minimum text contrast - Minimaler Text-Kontrast + Minimaler Text-Kontrast @@ -6191,7 +6842,7 @@ und den Import zum Laden verwenden Forums - Foren + Foren @@ -6199,7 +6850,7 @@ und den Import zum Laden verwenden Friends - Freunde + Freunde @@ -6208,9 +6859,9 @@ und den Import zum Laden verwenden - + ID - + @@ -6225,7 +6876,7 @@ und den Import zum Laden verwenden export your friendlist including groups - Exportieren Sie Ihre Freundesliste einschließlich Gruppen + @@ -6235,7 +6886,7 @@ und den Import zum Laden verwenden import your friendlist including groups - Importieren Sie Ihre Freundesliste einschließlich Gruppen + @@ -6250,7 +6901,7 @@ und den Import zum Laden verwenden Gruppen anzeigen - + Group Gruppe @@ -6286,7 +6937,7 @@ und den Import zum Laden verwenden Zu Gruppe hinzufügen - + Search Suchen @@ -6294,7 +6945,7 @@ und den Import zum Laden verwenden Search ID - Kennung suchen + Kennung suchen @@ -6302,7 +6953,7 @@ und den Import zum Laden verwenden Nach Status sortieren - + Profile details Profildetails @@ -6383,8 +7034,7 @@ und den Import zum Laden verwenden (keep in mind that the file is unencrypted!) - -(Beachten Sie, dass die Datei unverschlüsselt ist!) + @@ -6403,25 +7053,23 @@ und den Import zum Laden verwenden at least one peer was not added - -Mindestens ein Peer wurde nicht hinzugefügt + at least one peer was not added to a group - -Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt + Select file for importing your friendlist from - WƤhlen Sie die Datei aus, aus der Sie Ihre Freundesliste importieren mƶchten + Select a file for exporting your friendlist to - WƤhlen Sie eine Datei aus, in die Sie Ihre Freundesliste exportieren mƶchten + @@ -6452,7 +7100,7 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Show Items - Elemente anzeigen + @@ -6525,12 +7173,12 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Please select at least one friend for recommendation. - Bitte mindestens einen Freund als Empfehlung wƤhlen. + Bitte mindestens einen Freund als Empfehlung wƤhlen. Please select at least one friend as recipient. - Bitte mindestens einen EmpfƤnger wƤhlen. + Bitte mindestens einen EmpfƤnger wƤhlen. @@ -6540,13 +7188,13 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt A recommendation message was sent to each of the chosen friends! - An jeden der ausgewƤhlten Freunde wurde eine Empfehlungsnachricht gesendet! + FriendRequestToaster - + Confirm Friend Request Freundschaftsanfrage bestƤtigen @@ -6563,6 +7211,10 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt FriendSelectionWidget + + Search : + Suchen: + Sort by state @@ -6571,7 +7223,7 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Filter only connected - Nur verbundene Filtern + @@ -6584,7 +7236,7 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Freunde suchen - + Mark all Alle markieren @@ -6595,132 +7247,16 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Keine markieren - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Name - - - - Node ID - - - - - Address - Adresse - - - - Status - Status - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Freund hinzufügen - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Statusnachricht bearbeiten - - + + Broadcast Rundschreiben @@ -6803,38 +7339,33 @@ Also check your ports! Schriftart auf den Standard setzen - + Keyring Schlüsselbund - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. RetroShare-Rundschreiben: Nachrichten werden an alle verbundenen Freunde gesendet. - - + + Network Netzwerk - - Friend Server - Freundes-Server - - - + Network graph Netzwerkgraph - - <h1><img width="%1" 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> - - - - + Set your status message here. Stelle hier deine Statusmeldung ein. @@ -6852,32 +7383,27 @@ Also check your ports! Passwort - - SAMv3 support is not available - SAMv3-Unterstützung ist nicht verfügbar - - - - I2P instance address with SAMv3 enabled - I2P-Instanzadresse mit aktiviertem SAMv3 - - - + All fields are required with a minimum of 3 characters Alle Felder sind mit min. 3 Zeichen zu versehen Passwords do not match - Passwƶrter stimmen nicht überein + Passwƶrter stimmen nicht überein. - + Port Port - + + Use BOB + + + + This password is for PGP Das ist das Passwort für PGP @@ -6898,109 +7424,112 @@ Also check your ports! Das Erzeugen deines neuen Zertifikats ist fehlgeschlagen. Vielleicht ist das PGP-Passwort falsch? - + PGP Key Length - PGP-SchlüssellƤnge + - - + + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> - <html><head/><body><p>Geben Sie hier ein sicheres Passwort ein. Dieses Passwort schützt Ihren privaten Knotenschlüssel!</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>Bitte bewegen Sie Ihre Maus, um so viel ZufƤlligkeit wie mƶglich zu sammeln. Zum Erstellen Ihrer Knotenschlüssel sind mindestens 20 % erforderlich.</p></body></html> + - + Standard node Standardknoten - - <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>Ihr Knotenname bezeichnet die Retroshare-Instanz, die</p><p>auf diesem Computer ausgeführt wird.</p></body></html> + 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> + + + + Node name Knotenname - + Node type: - Knotentyp: + Hidden node (over Tor) - Hidden Knoten (über Tor) + Hidden node (Tor/I2P - Manually configured) - Hidden Knoten (Tor/I2P – manuell konfiguriert) + advanced options - erweiterte Optionen + - + <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>Der Profilname identifiziert Sie über das Netzwerk.</p><p>Er wird von Ihren Freunden verwendet, um Verbindungen von Ihnen anzunehmen.</p><p>Das kƶnnen Sie Erstellen Sie mehrere Retroshare-Knoten mit demselben Profil auf verschiedenen Computern.</p><p><br/></p></body></html> + - + Export this profle Dieses Profil exportieren Use existing profile... - Vorhandenes Profil verwenden... + - + <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> - - Use I2P - I2P verwenden - - - + <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>IdentitƤten werden verwendet, wenn Sie in Chatrooms, Foren und Kanalkommentaren schreiben. </p><p>Sie empfangen/senden auch E-Mails über das Retroshare-Netzwerk. Sie kƶnnen</p><p>eine signierte IdentitƤt jetzt erstellen oder dies spƤter tun, wenn Sie sie benƶtigen.</p></body></html> + - + Go! Los! - - + + TextLabel - TextLabel + TextLabel - + Advanced options + Erweiterte Einstellungen + + + hidden address versteckte Adresse - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Dein Profil ist mit einem PGP-Schlüsselpaar verknüpft. RetroShare ignoriert derzeit DSA-Schlüssel. - + <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> @@ -7048,30 +7577,30 @@ und den Import zum Laden verwenden Dein Profil wurde nicht gespeichert. Ein Fehler ist aufgetreten. - + Import profile Profil importieren - + Create new profile and new Retroshare node - Neues Profil und neuen Retroshare-Knoten erstellen + Create new Retroshare node - Neuen Retroshare-Knoten erstellen + - + Tor/I2P address - Tor/I2P-Adresse + Username - Benutzername + @@ -7081,7 +7610,7 @@ und den Import zum Laden verwenden Password again - Passwort wiederholen + @@ -7099,7 +7628,7 @@ und den Import zum Laden verwenden - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7109,7 +7638,12 @@ und den Import zum Laden verwenden - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7119,7 +7653,12 @@ und den Import zum Laden verwenden - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7131,7 +7670,7 @@ und den Import zum Laden verwenden RetroShare profile files (*.asc);;All files (*) - RetroShare-Profildateien (*.asc);;Alle Dateien (*) + @@ -7156,22 +7695,22 @@ und den Import zum Laden verwenden The GXS nickname is too short. Please input at least %1 characters. - Der GXS-Spitzname ist zu kurz. Bitte geben Sie mindestens %1 Zeichen ein. + The GXS nickname is too long. Please reduce the length to %1 characters. - Der GXS-Spitzname ist zu lang. Bitte reduzieren Sie die LƤnge auf %1 Zeichen. + Tor is not available - Tor ist nicht verfügbar + No Tor executable has been found on your system. You need to install Tor before creating a hidden identity. - Es wurde keine ausführbare Tor-Datei auf deinem System gefunden. Du musst Tor installieren, bevor du eine hidden IdentitƤt erstellen kannst. + @@ -7252,22 +7791,22 @@ und den Import zum Laden verwenden When checked, this instance receives new parameters (like RsLink or RsFile) and avoid new one. - Wenn diese Instanz geprüft wird, erhƤlt sie neue Parameter (wie RsLink oder RsFile) und vermeidet neue Parameter. + Use Local Server to get new arguments. - Verwenden Sie Local Server, um neue Argumente zu erhalten. + <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>Installieren Sie RetroShare mit einem Paket-Installer, um</p><p>/usr/share/applications/retroshare.desktop</p></body></html> + !!!The RetroShare's desktop file is missing or wrong!!! - !!!Die Desktop-Datei von RetroShare fehlt oder ist falsch!!! + @@ -7282,32 +7821,32 @@ und den Import zum Laden verwenden seconds - Sekunden + Sekunden You have sufficient rights. - Sie haben genügend Rechte. + You don't have sufficient rights. Run RetroShare as Admin to change this setting. - Sie haben nicht genügend Rechte. Führen Sie RetroShare als Administrator aus, um diese Einstellung zu Ƥndern. + For security reasons the usage of auto-login is discouraged, you can enable it but you are on your own! - Aus Sicherheitsgründen wird von der Verwendung der automatischen Anmeldung abgeraten, Sie kƶnnen sie zwar aktivieren, sind aber auf sich allein gestellt! + Your RetroShare build has auto-login disabled. - In Ihrem RetroShare-Programm ist die automatische Anmeldung deaktiviert. + No Qt-compatible system tray was found on this system. - Auf diesem System wurde kein Qt-kompatibler Systemtray gefunden. + @@ -7345,13 +7884,36 @@ und den Import zum Laden verwenden Erste Schritte - + Invite Friends Freunde einladen - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 ist nichts ohne deine Freunde. Klicke auf &quot;Freunde einladen&quot; um den Prozess zu starten.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Schicke eine Einladungsmail mit deinem &quot;Zertifikat&quot; an deine Freunde.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Versichere dich ihre Einladung zurück zu bekommen... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Du kannst dich nur zu deinen Freunden verbinden, wenn ihr euch gegenseitig hinzugefügt habt.</span></p></body></html> + + + Add Your Friends to RetroShare Füge deine Freunde zu RetroShare hinzu @@ -7361,103 +7923,89 @@ und den Import zum Laden verwenden Freunde hinzufügen - - Connect To Friends - Zu Freunden verbinden - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Erweitert: Ɩffne Firewall Port - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + Zu Freunden verbinden + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Erweitert: Ɩffne Firewall Port + + + Further Help and Support Weitere Hilfe und Support - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website RS-Website ƶffnen @@ -7482,7 +8030,7 @@ p, li { white-space: pre-wrap; } E-Mail-Feedback - + RetroShare Invitation RetroShare-Einladung @@ -7532,12 +8080,12 @@ p, li { white-space: pre-wrap; } RetroShare Feedback - + RetroShare Support RetroShare Support - + It has many features, including built-in chat, messaging, Es hat viele Funktionen wie Chat, Nachrichten, @@ -7587,12 +8135,12 @@ p, li { white-space: pre-wrap; } Receive time - Empfangszeit + Sending time - Sendezeit + @@ -7607,12 +8155,12 @@ p, li { white-space: pre-wrap; } Data hash - Datenhash + Branching factor - Verzweigungsfaktor + @@ -7661,7 +8209,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Gruppenchat anzeigen @@ -7669,7 +8217,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Unbekannt] @@ -7707,72 +8255,72 @@ p, li { white-space: pre-wrap; } Directory content is visible to friend nodes (see list at right) - Der Inhalt des Verzeichnisses ist für Freundesknoten sichtbar (siehe Liste rechts) + Directory content is NOT visible to friend nodes - Der Verzeichnisinhalt ist für Freundesknoten NICHT sichtbar + Directory can be searched anonymously - Das Verzeichnis kann anonym durchsucht werden + Directory cannot be searched anonymously - Das Verzeichnis kann nicht anonym durchsucht werden + Files can be accessed using anonymous tunnels - Auf Dateien kann über anonyme Tunnel zugegriffen werden + Files can be accessed using anonymous & end-to-end encrypted tunnels - Auf Dateien kann über anonyme und Ende-zu-Ende-verschlüsselte Tunnel zugegriffen werden + Files cannot be downloaded anonymously - Dateien kƶnnen nicht anonym heruntergeladen werden + All friend nodes can see this directory - Alle Freundesknoten kƶnnen dieses Verzeichnis sehen + Only visible to friend nodes in groups: %1 - Nur für Freundesknoten in Gruppen sichtbar: %1 + Not visible to friend nodes - Für Freundesknoten nicht sichtbar + Files can be downloaded (but not searched) anonymously - Dateien kƶnnen anonym heruntergeladen (aber nicht durchsucht) werden + Files can be downloaded and searched anonymously - Dateien kƶnnen anonym heruntergeladen und durchsucht werden + Files can be searched (but not downloaded) anonymously - Dateien kƶnnen anonym durchsucht (aber nicht heruntergeladen) werden + No one can anonymously access/search these files. - Niemand kann anonym auf diese Dateien zugreifen bzw. diese durchsuchen. + @@ -7803,22 +8351,22 @@ p, li { white-space: pre-wrap; } Share channel publish permissions - Teilen Sie die Verƶffentlichungsberechtigung für dieses Kanal + 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. - Sie kƶnnen Ihren Freunden erlauben, in Ihrem Kanal zu verƶffentlichen, oder die Verƶffentlichungsberechtigung an eine andere Retroshare-Instanz von Ihnen senden. WƤhlen Sie die Freunde aus, denen Sie erlauben wollen, in diesem Kanal zu verƶffentlichen. Hinweis: Es ist derzeit nicht mƶglich, die Verƶffentlichungsberechtigung für den Kanal zu widerrufen. + Share board admin permissions - Teilen Sie die Verƶffentlichungsberechtigung für dieses Board + You can allow your friends to edit the board. Select them in the list below. Note: it is not possible to revoke Board admin permissions. - Sie kƶnnen Ihren Freunden erlauben, das Board zu bearbeiten. WƤhlen Sie sie in der Liste unten aus. Hinweis: Es ist nicht mƶglich, die Administratorrechte für das Board zu entziehen. + @@ -7835,11 +8383,19 @@ p, li { white-space: pre-wrap; } 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. Du kannst deine Freunde von deinem Forum wissen lassen, indem du es mit ihnen teilst. WƤhle die Freunde, mit denen du das Forum teilen willst. + + Share topic admin permissions + Thema-Administratorrechte teilen + + + 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. + Du kannst deinen Freunden die Bearbeitung des Themas erlauben, indem du sie in der Liste unten auswƤhlst. Hinweis: Der Widerruf von Posted-Administratorrechten ist nicht mƶglich. + GroupTreeWidget - + Title Titel @@ -7852,12 +8408,12 @@ p, li { white-space: pre-wrap; } - + Description Beschreibung - + Number of Unread message @@ -7879,51 +8435,67 @@ p, li { white-space: pre-wrap; } Search entire network... - Suche im gesamten Netzwerk... + - + Sort by Name + Nach Name sortieren + + + Sort by Popularity + Nach Beliebtheit sortieren + + + Sort by Last Post + Nach letztem Beitrag sortieren + + + You are admin (modify names and description using Edit menu) - Sie sind Administrator (Ƥndern Sie Namen und Beschreibung über das Menü Bearbeiten) + You have been granted as publisher (you can post here!) - Sie wurden als Publisher zugelassen (Sie kƶnnen hier posten!) + Id - ID + ID - - + + Last Post Letzter Beitrag - + Name - Name + Name Popularity - Beliebtheit + Beliebtheit - + Never Nie - + Display + Anzeigen + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> - <html><head/><body><p>Sucht ein einzelnes Schlüsselwort im erreichbaren Netz.</p><p>Objekte, die bereits von befreundeten Knoten bereitgestellt wurden, werden nicht gemeldet.</p></body></html> + @@ -7934,7 +8506,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and und @@ -8034,43 +8606,43 @@ p, li { white-space: pre-wrap; } Authenticated tunnels: - Authentifizierte Tunnel: + Authentifizierte Tunnel: Tunnel ID: %1 - Tunnelkennung: %1 + Tunnelkennung: %1 from: %1 (%2) - von: %1 (%2) + to: %1 (%2) - an: %1 (%2) + status: %1 - Status: %1 + Status: %1 total sent: %1 bytes - Gesendet gesamt: %1 bytes + Gesendet gesamt: %1 bytes total recv: %1 bytes - Empfangen gesamt: %1 bytes + Empfangen gesamt: %1 bytes GxsChannelDialog - + Channels KanƤle @@ -8081,22 +8653,22 @@ p, li { white-space: pre-wrap; } Kanal erstellen - + Enable Auto-Download Auto-Download aktivieren - + My Channels Eigene KanƤle - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Abonnierte KanƤle @@ -8116,12 +8688,12 @@ p, li { white-space: pre-wrap; } Kanal-Download-Verzeichnis auswƤhlen - + Disable Auto-Download Auto-Download deaktivieren - + Set download directory Herunterladeverzeichnis festlegen @@ -8156,22 +8728,22 @@ p, li { white-space: pre-wrap; } - + Play - Abspielen + Abspielen - + Open folder Ordner ƶffnen - + Open file - Datei ƶffnen + - + Error Fehler @@ -8191,30 +8763,57 @@ p, li { white-space: pre-wrap; } Überprüfe - + Are you sure that you want to cancel and delete the file? Mƶchtest du wirklich abbrechen und die Datei lƶschen? - + Can't open folder Kann Ordnder nicht ƶffnen - + Play File - Datei abspielen + Datei abspielen File %1 does not exist at location. - Datei %1 existiert nicht. + Datei %1 existiert nicht. + + + + GxsChannelFilesWidget + + Form + Formular + + + Filename + Dateiname + + + Size + Größe + + + Title + Titel + + + Published + Verƶffentlicht + + + Status + Status GxsChannelGroupDialog - + Create New Channel Neuen Kanal erstellen @@ -8252,33 +8851,23 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - Letzte AktivitƤt - - - - TextLabel - TextLabel - - - - Subscribe this Channel - Diesen Kanal abonnieren + + Subscribe to Channel + Kanal abonnieren Subscribe - Abonnieren + Abonnieren Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren - + Expand Erweitern @@ -8293,24 +8882,23 @@ p, li { white-space: pre-wrap; } Kanalbeschreibung - + Loading Lade Publish permission received for channel: - Verƶffentlichungserlaubnis für Kanal erhalten: + New Channel: - Neuer Kanal: + - - Never - Nie + New Channel + Neuer Kanal @@ -8321,7 +8909,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Neuer Kommentar: @@ -8342,7 +8930,7 @@ p, li { white-space: pre-wrap; } - + Play Abspielen @@ -8398,24 +8986,28 @@ p, li { white-space: pre-wrap; } Files Dateien + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Warnung! Du hast weniger als %1 Stunden und %2 Minuten bevor die Datei gelƶscht wird. Denke daran, sie zu speichern. + Hide Verbergen - + New Neu - + 0 0 - - + + Comment Kommentar @@ -8430,19 +9022,23 @@ p, li { white-space: pre-wrap; } Das gefƤllt mir nicht - + Loading + Lade + + + Loading... - Lade... + - + Comments - Kommentare + - + Post - Posten + @@ -8465,39 +9061,154 @@ p, li { white-space: pre-wrap; } Medium abspielen + + GxsChannelPostsWidget + + Post to Channel + In Kanal verƶffentlichen + + + Loading + Lade + + + Search channels + KanƤle durchsuchen + + + Title + Titel + + + Search Title + Titel durchsuchen + + + Message + Nachricht + + + Search Message + Nachricht suchen + + + Filename + Dateiname + + + Search Filename + Dateiname suchen + + + No Channel Selected + Keinen Kanal gewƤhlt + + + Never + Nie + + + Public + Ɩffentlich + + + Restricted to members of circle " + BeschrƤnkt auf Mitglieder des Kreises " + + + Restricted to members of circle + BeschrƤnkt auf Mitglieder des Kreises + + + Your eyes only + Nur Ihre Augen + + + Disable Auto-Download + Auto-Download deaktivieren + + + Enable Auto-Download + Auto-Download aktivieren + + + Show feeds + Zeige Feeds + + + Show files + Zeige Dateien + + + Administrator: + Administrator: + + + Last Post: + Letzter Beitrag: + + + unknown + unbekannt + + + Distribution: + Verteilung: + + + Feeds + Feeds + + + Files + Dateien + + + Subscribers + Abonnenten + + + Description: + Beschreibung: + + + Posts (at neighbor nodes): + BeitrƤge (bei Nachbarknoten) + + GxsChannelPostsWidgetWithModel - + Post to Channel - In Kanal verƶffentlichen + In Kanal verƶffentlichen - + Add new post - Beitrag erstellen + ... - ... + Search channels - KanƤle durchsuchen + KanƤle durchsuchen Channel details - Kanal-Details + Channel title - Kanal-Titel + @@ -8505,18 +9216,18 @@ p, li { white-space: pre-wrap; } TextLabel - TextLabel + TextLabel Distribution: - Verteilung: + Verteilung: <html><head/><body><p>Includes all posts, comments and votes. This number is progressively updated when new friend connect. The local vs. at friends difference may indicate that you would get older posts by increasing the synchronization period.</p></body></html> - <html><head/><body><p>EnthƤlt alle BeitrƤge, Kommentare und Abstimmungen. Diese Zahl + @@ -8524,307 +9235,296 @@ p, li { white-space: pre-wrap; } unknown - unbekannt + unbekannt <html><head/><body><p>This includes posts, comments to posts and votes to comments.</p></body></html> - <html><head/><body><p>Dies umfasst BeitrƤge, Kommentare zu BeitrƤgen und Stimmen zu Kommentaren.</p></body></html> + Last activity: - Letzte AktivitƤt: + Administrator: - Administrator: + Administrator: - Items (locally / at friends): - Artikel (vor Ort / bei Freunden): + Posts (locally / at friends): + Created: - Erstellt: + Sync period: - Sync-Zeitraum: + Posts - BeitrƤge + BeitrƤge <html><head/><body><p>Click to view post. </p><p>Use Ctrl+mouse wheel </p><p>to zoom/unzoom.</p></body></html> - <html><head/><body><p>Klicken Sie, um den Beitrag zu sehen. </p><p>Verwenden Sie Strg+Mausrad</p><p>zum Zoomen/Entzoomen.</p></body></html> + Details - Details + Details Files - Dateien + Dateien - + Comments - Kommentare + Kommentare All files - Alle Dateien + Feeds - Feeds + Feeds - - + + Click to switch to list view - Klicken Sie, um zur Listenansicht zu wechseln + - + Show unread posts only - Nur ungelesene BeitrƤge anzeigen + No files in this post, or no post selected - Keine Dateien in diesem Beitrag, oder kein Beitrag ausgewƤhlt + No files in the channel, or no channel selected - Keine Dateien im Kanal, oder kein Kanal ausgewƤhlt + - + No text to display - Kein Text zum Anzeigen + Search... - Suchen... + No posts available in this channel - Keine BeitrƤge in diesem Kanal vorhanden + - + Switch to list view - Zur Listenansicht wechseln + Switch to grid view - Zur Gitteransicht wechseln + Download files - Dateien herunterladen + Mark as unread - Als ungelesen markieren + Als ungelesen markieren Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren Edit - Bearbeiten + Bearbeiten Click to switch to grid view - Klicken, um zur Rasteransicht zu wechseln + Link creation error - Fehler bei der Link-Erstellung + Link could not be created: - Link konnte nicht erstellt werden: + Download this file: - Diese Datei herunterladen: + Download All these %1 files: - Alle diese %1-Dateien herunterladen: + Totaling: %1 - Gesamtwert: %1 + - + Comments (%1) - Kommentare (%1) + - - Loading... - Lade... - - - - No posts available in this channel. - Keine BeitrƤge in diesem Kanal vorhanden. - - - + [No name] - [Kein Name] + Never - Nie + Nie 5 days - 5 Tage + 5 Tage 2 weeks - 2 Wochen + 2 Wochen 1 month - 1 Monat + 1 Monat 3 months - 3 Monate + 6 months - 6 Monate + 1 year - 1 Jahr + 1 Jahr indefinitly - Unbegrenzt + Unknown - Unbekannt + Unbekannt Public - Ɩffentlich + Ɩffentlich Restricted to members of circle " - BeschrƤnkt auf Mitglieder des Kreises " + BeschrƤnkt auf Mitglieder des Kreises " Restricted to members of circle - BeschrƤnkt auf Mitglieder des Kreises + BeschrƤnkt auf Mitglieder des Kreises Your eyes only - Nurfür Ihre Augen + Nur Ihre Augen You and your friend nodes - Du und deine Freundschaftsknoten + - - + Copy Retroshare link - RetroShare-Link kopieren + - + Subscribed - Abonniert + Abonniert Subscribe - Abonnieren + Abonnieren Channel info missing - Kanalinformationen fehlen + To subscribe, first request the channel information by right-clicking Request Data in the search results. - Um sich zu abonnieren, fordern Sie zunƤchst die Kanalinformationen an, indem Sie in den Suchergebnissen mit der rechten Maustaste auf Daten anfordern klicken. + Channel info requested... - Kanalinformationen angefordert... + No Channel Selected - Kein Kanal ausgewƤhlt + Keinen Kanal gewƤhlt Disable Auto-Download - Auto-Download deaktivieren + Auto-Download deaktivieren Enable Auto-Download - Auto-Download aktivieren + Auto-Download aktivieren @@ -8838,132 +9538,132 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - TextLabel + TextLabel - + Circle name: - Kreisname: + - + Accept - Akzeptieren + Revoke - Widerrufen + Details - Details + Details Remove Item - Eintrag entfernen + Grant membership request - Mitgliedschaftsantrag gewƤhren + Revoke membership - Mitgliedschaft widerrufen + You received a membership request a circle you're administrating: - Sie haben einen Antrag auf Mitgliedschaft in einem von Ihnen verwalteten Kreis erhalten: + Grant membership - Mitgliedschaft gewƤhren + Grant membership to this circle, for this identity - GewƤhrung der Mitgliedschaft in diesem Kreis, für diese IdentitƤt + You received an invitation to join this circle: - Sie haben eine Einladung erhalten, diesem Kreis beizutreten: + Accept invitation - Einladung annehmen + has left this circle. - hat diesen Kreis verlassen. + which you invited, has joined this circle you're administrating. - die Sie eingeladen haben, ist zu diesem Kreis beigetreten, den Sie verwalten. + Revoke membership for that identity - Entzug der Mitgliedschaft für diese IdentitƤt + has joined this circle. - ist diesem Kreis beigetreten. + Your identity %1 has been revoked from this circle. - Ihre IdentitƤt %1 wurde aus diesem Kreis entfernt. + Cancel membership request - Mitgliedsantrag stornieren + Cancel your membership request from that circle - Ihren Mitgliedschaftsantrag aus diesem Kreis stornieren + Your identity %1 as been accepted in this circle. - Ihre IdentitƤt %1 wurde in diesem Kreis akzeptiert. + Cancel membership - Mitgliedschaft kündigen + Cancel your membership from that circle - Ihre Mitgliedschaft in diesem Kreis kündigen + Received event from unknown Circle: - Ereignis von unbekanntem Kreis erhalten: + GxsCommentContainer - + Comment Container Kommentarcontainer @@ -8976,14 +9676,14 @@ p, li { white-space: pre-wrap; } Formular - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> - <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sortieren nach</span></p></body></html> + Hot - Hot + Heiß @@ -8998,7 +9698,7 @@ p, li { white-space: pre-wrap; } Voter ID: - WƤhler-ID: + WƤhler-ID @@ -9006,7 +9706,7 @@ p, li { white-space: pre-wrap; } Aktualisieren - + Comment Kommentar @@ -9045,7 +9745,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Auf Kommentar antworten @@ -9057,7 +9757,7 @@ p, li { white-space: pre-wrap; } Copy Comment - Kommentar kopieren + @@ -9069,21 +9769,6 @@ p, li { white-space: pre-wrap; } Vote Down Dagegen stimmen - - - Show Author - Autor anzeigen - - - - Cannot vote - Kann nicht abstimmen - - - - Error while voting: - Fehler bei der Abstimmung: - GxsCreateCommentDialog @@ -9093,57 +9778,69 @@ p, li { white-space: pre-wrap; } Kommentieren - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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;">Compose new 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;">Neuen Kommentar verfassen</span></p></body></html> + Type in your comment - Geben Sie Ihren Kommentar ein + Cancel - Abbrechen + Abbrechen TextLabel - TextLabel + TextLabel Post as: - Posten als: + - + Post - Posten + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Kommentar</span></p></body></html> + + + Signed by + Unterzeichnet von Reply to Comment - Auf Kommentar antworten + Auf Kommentar antworten Replying to - Antwort auf + Type your reply - Geben Sie Ihre Antwort ein + @@ -9155,17 +9852,17 @@ p, li { white-space: pre-wrap; } You need to create an Identity before you can comment Du musst eine IdentitƤt erstellen, -bevor du kommentieren kannst +bevor du kommentieren kannst. - + It remains %1 characters after HTML conversion. - Es verbleiben %1 Zeichen nach der HTML-Konvertierung. + Warning: This message is too big of %1 characters after HTML conversion. - Warnung: Diese Nachricht ist mit %1 Zeichen zu groß nach der HTML-Konvertierung. + @@ -9173,7 +9870,7 @@ bevor du kommentieren kannst <p>Put one of your identities here to allow others to send feedback and also have moderator rights on the forum. You may as well leave that field blank and keep the forum anonymously administrated.</p> - <p>Geben Sie hier eine Ihrer IdentitƤten ein, damit andere Feedback senden kƶnnen und auch über Moderatorrechte im Forum verfügen. Sie kƶnnen dieses Feld auch leer lassen und das Forum anonym verwalten.</p> + @@ -9198,7 +9895,15 @@ bevor du kommentieren kannst Forum moderators can edit/delete/pinup others posts - Forummoderatoren kƶnnen BeitrƤge bearbeiten, lƶschen oder anheften + + + + Add Forum Admins + Forum-Administratoren hinzufügen + + + Select Forum Admins + Forum-Administratoren auswƤhlen @@ -9209,23 +9914,23 @@ bevor du kommentieren kannst GxsForumGroupItem - + Subscribe to Forum Forum abonnieren Subscribe - Abonnieren + Abonnieren Copy RetroShare link - RetroShare-Link kopieren + - + Expand Erweitern @@ -9242,27 +9947,26 @@ bevor du kommentieren kannst Moderator list - Moderatorenliste + - - TextLabel - TextLabel + Loading + Lade Loading... - Lade... + Moderator list changed - Moderatorenliste geƤndert + Forum updated - Forum aktualisiert + @@ -9278,24 +9982,24 @@ bevor du kommentieren kannst GxsForumMsgItem - - + + Subject: - Betreff: + Betreff: - + Unsubscribe To Forum Forum abbestellen Unsubscribe - Abbestellen + Abbestellen - + Expand Erweitern @@ -9312,20 +10016,24 @@ bevor du kommentieren kannst In Reply to: - Als Antwort auf: + Als Antwort auf: - + Loading + Lade + + + Loading... - Lade... + - + Forum Feed Forumfeed - + Hide Verbergen @@ -9338,66 +10046,63 @@ bevor du kommentieren kannst Formular - + Start new Thread for Selected Forum Ein neues Thema im ausgewƤhlten Forum starten - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Foren durchsuchen - + Last Post + Letzter Beitrag + + + New Thread - Neues Thema + Neues Thema + + + + Threaded View + Hierarchische Ansicht + + + + Flat View + Ebene Ansicht - + Title Titel - - + + Date Datum - + Author Autor - + + Save image + Bild speichern + + + Loading Lade - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9407,7 +10112,12 @@ bevor du kommentieren kannst - + + Lastest post in thread + + + + Reply Message Auf Nachricht antworten @@ -9424,13 +10134,17 @@ bevor du kommentieren kannst Next unread message - NƤchste ungelesene Nachricht + Download all files Alle Dateien herunterladen + + Next unread + NƤchste ungelesene + Search Title @@ -9447,25 +10161,33 @@ bevor du kommentieren kannst Autor durchsuchen - + Content + Inhalt + + + Search Content + Inhalt durchsuchen + + + No name Kein Name - - + + Reply Antwort - + <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> - + Loading... - Lade... + @@ -9506,12 +10228,20 @@ bevor du kommentieren kannst RetroShare-Link kopieren - + Hide Verbergen - + Expand + Erweitern + + + [Banned] + [Gebannt] + + + [unknown] [unbekannt] @@ -9533,7 +10263,7 @@ bevor du kommentieren kannst Only friends nodes in group - Nur Freundesknoten in der Gruppe + @@ -9541,21 +10271,41 @@ bevor du kommentieren kannst Nur Ihre Augen - - + + Distribution Verteilung Owner - Eigentümer + Anti-spam Anti-Spam + + [ ... Redacted message ... ] + [ ... Redigierte Nachricht ... ] + + + Anonymous + Anonym + + + signed + unterzeichnet + + + none + keine + + + [ ... Missing Message ... ] + [ ... Fehlende Nachricht ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9625,14 +10375,14 @@ bevor du kommentieren kannst Ursprüngliche Nachricht - + New thread - + Edit - Bearbeiten + Bearbeiten @@ -9663,7 +10413,7 @@ bevor du kommentieren kannst Give neutral opinion - Neutrale Meinung abgeben + @@ -9683,7 +10433,7 @@ bevor du kommentieren kannst Show author in people tab - Autor auf der Registerkarte Personen anzeigen + @@ -9691,9 +10441,9 @@ bevor du kommentieren kannst - + Show column - Spalte anzeigen + @@ -9708,10 +10458,10 @@ bevor du kommentieren kannst <b>Loading...<b> - <b>Lade...<b> + - + Anonymous/unknown posts forwarded if reputation is positive @@ -9749,54 +10499,53 @@ bevor du kommentieren kannst Last seen at friends: - Zuletzt bei Freunden gesehen: + Moderators - Moderatoren + Missing Message: This message is missing. You should receive it later. - Fehlende Nachricht: -Diese Nachricht fehlt. Sie sollten es spƤter erhalten. + - + No result. - Kein Ergebnis. + Found %1 results. - %1 Ergebnisse gefunden. + - + Failed to retrieve this message. Is the database currently overloaded? - Diese Nachricht konnte nicht abgerufen werden. Ist die Datenbank derzeit überlastet? + No data for this message. Is the database corrupted? - Keine Daten für diese Nachricht. Ist die Datenbank beschƤdigt? + More than one entry for this message. Is the database corrupted? - Mehr als ein Eintrag für diese Nachricht. Ist die Datenbank beschƤdigt? + - + (Latest) - (Neueste) + (Old) - (Alt) + @@ -9855,12 +10604,12 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Foren @@ -9891,16 +10640,35 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Andere Foren + + GxsForumsFillThread + + Waiting + Warten + + + Retrieving + Abrufen + + + Loading + Laden + + GxsGroupDialog - + Name Name - + Add Icon + Icon hinzufügen + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels SchlüsselempfƤnger kƶnnen in eingeschrƤnkten Gruppen verƶffentlichen und kƶnnen private KanƤle ansehen und darin verƶffentlichen @@ -9909,14 +10677,22 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Share Publish Key Verƶffentlichungsschlüssel freigeben + + check peers you would like to share private publish key with + Markiere die Nachbarn, an welche du den privaten Verƶffentlichungsschlüssel verteilen willst + + + Share Key With + Schlüssel verteilen an + - + Description Beschreibung - + Message Distribution Nachrichtenverteilung @@ -9924,7 +10700,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. - + Public Ɩffentlich @@ -9943,6 +10719,14 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. New Thread Neues Thema + + Required + Notwendig + + + Encrypted Msgs + Verschlüsselte Nachr. + Personal Signatures @@ -9984,7 +10768,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Spamschutz - + Comments: Kommentare: @@ -9994,7 +10778,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. TextLabel - TextLabel + TextLabel @@ -10007,14 +10791,14 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Anti-Spam: - + All People - Alle Leute + My Contacts - Meine Kontakte + @@ -10023,14 +10807,14 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. - + Restricted to circle: BeschrƤnkt auf Kreis: - + Limited to your friends - BeschrƤnkt auf deine Freunde + @@ -10045,31 +10829,31 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. - + Message tracking Nachrichtenverfolggung - - + + PGP signature required PGP-Signatur erforderlich - + Never Nie - + Only friends nodes in group - Nur Freundesknoten in der Gruppe + Failed to Prepare Group MetaData: - Gruppenmetadaten konnten nicht vorbereitet werden: + @@ -10077,28 +10861,30 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Bitte Name hinzufügen - + PGP signature from known ID required PGP-Signatur aus bekannter Kennung erforderlich - - - [None] - [Keine] - - - + Load Group Logo Gruppenlogo laden - + Submit Group Changes GruppenƤnderungen übermitteln - + Failed to Prepare Group MetaData - please Review + Aufbereiten der Gruppenmetadaten fehlgeschlagen - bitte überprüfen + + + Will be used to send feedback + Wird zum Senden von Rückmeldungen genutzt werden + + + Owner: Eigentümer: @@ -10108,12 +10894,12 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Gib hier eine aussagekrƤftige Beschreibung ein - + Info Info - + ID ID @@ -10123,14 +10909,14 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Letzter Beitrag - + <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>Nachrichten werden weit über Ihre Freundesknoten hinaus verbreitet, solange die Leute den Kanal/das Forum/den von Ihnen erstellten Beitrag abonnieren.</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>Nachrichten werden an Retroshare-Knoten verteilt, die eine der als Mitglied des Kreises aufgeführten IdentitƤten hosten und auch die Medien abonnieren. Nur diese Knoten kƶnnen sehen, dass dieses Forum/dieser Kanal/dieses gepostete Medium existiert. </p></body></html> + @@ -10140,12 +10926,12 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. <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>Nachrichten werden nur an die ausgewƤhlte Teilmenge Ihrer Freundesknoten verteilt. Sie leiten Nachrichten nicht untereinander weiter, sondern nutzen nur Ihren eigenen Knoten als zentralen Hub, um sie zu verteilen.</p></body></html> + Restricted node group - Auf Knotengruppe + @@ -10155,27 +10941,27 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. <html><head/><body><p>Click to add a Logo</p></body></html> - <html><head/><body><p>Hier klicken, um ein Logo hinzuzufügen</p></body></html> + <html><head/><body><p>The identity here can be used to send feedback.</p></body></html> - <html><head/><body><p>Die IdentitƤt hier kann zum Senden von Feedback verwendet werden.</p></body></html> + Add moderators - Moderatoren hinzufügen + Re&quired - Erforderlich + Encrypted &Msgs - Verschlüsselte &Nachrichten + @@ -10198,12 +10984,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. - - Author: - Autor: - - - + Popularity Beliebtheit @@ -10216,25 +10997,30 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Moderators: - Moderatoren: + - + Created - Erstellt + - + Cancel - Abbrechen + Abbrechen - + Create - Erstellen + Erstellen - + + Author + Autor + + + GxsIdLabel GxsIdLabel @@ -10242,7 +11028,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. GxsGroupFrameDialog - + Loading Lade @@ -10279,17 +11065,17 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Remove this search - Entfernen Sie diese Suche + Remove all searches - Alle Suchanfragen entfernen + Request data - Daten anfordern + @@ -10302,9 +11088,9 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Details bearbeiten - + Synchronise posts of last... - Synchronisieren Sie die BeitrƤge der letzten... + @@ -10351,20 +11137,20 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Store posts for at most... - Speichern Sie BeitrƤge hƶchstens... + Share publish permissions... - Verƶffentlichungsberechtigungen teilen... + - + Search for - Suchen nach + - + Copy RetroShare Link RetroShare-Link kopieren @@ -10387,7 +11173,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. GxsIdChooser - + No Signature Keine Signatur @@ -10400,39 +11186,50 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. GxsIdDetails - + Loading + Lade + + + Not found Nicht gefunden + + No Signature + Keine Signatur + - - + + [Banned] [Gebannt] + + Authentication + Authentifizierung + unknown Key unbekannter Schlüssel - + anonymous + anonym + + + Loading... - Lade... + [None] - [Keine] + - - [Nobody] - [Niemand] - - - + Identity&nbsp;name IdentitƤtsname @@ -10444,7 +11241,11 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Node - Knoten + Netzknoten + + + Signed&nbsp;by + Unterzeichnet&nbsp;von @@ -10452,84 +11253,80 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. [Unbekannt] - - GxsIdLabel - - - [Nobody] - [Niemand] - - GxsIdStatistics Router Statistics - Routerstatistiken + Routerstatistiken GxsIdStatisticsWidget - + Total identities: - Gesamte IdentitƤten: + Usage types - Nutzungsarten + Usage per service - Nutzung pro Service + Identity age (in weeks): - Alter der IdentitƤt (in Wochen): + Last used (hours ago): - Zuletzt verwendet (vor Stunden): + Managed keys - Verwaltete Schlüssel + Verwaltete Schlüssel : Service ID = - : Dienst-ID = + : Dienst-ID = Routing matrix ( - Routingmatrix ( + Routingmatrix ( [Unknown identity] - [Unbekannte IdentitƤt] + [Unbekannte IdentitƤt] GxsIdTreeItemDelegate - + [Unknown] - [Unbekannt] + [Unbekannt] GxsMessageFramePostWidget + + Loading + Laden + Loading... - Lade... + @@ -10542,27 +11339,27 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Random Bias: %1 - ZufƤllige Tendenz: %1 + GXS Groups: - + Service: %1 (%2) - Group ID: %3, policy: %4, status: %5, last contact: %6 - Dienst: %1 (%2) – Gruppen-ID: %3, Richtlinie: %4, Status: %5, letzter Kontakt: %6 + Peer: %1: status: %2/%3, last contact: %4, Master key: %5. - Peer: %1:\t status: %2/%3, \t letzter Kontakt: %4, \t Master-Schlüssel: %5. + Peer: %1: no information available - Peer: %1: keine Informationen verfügbar + @@ -10570,108 +11367,108 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Router Statistics - Routerstatistiken + Routerstatistiken GroupBox - + ID - + Destination - Ziel + Ziel Data status - Datenstatus + Datenstatus Data size - Datengröße + Data hash - Datenhash + Sending time - Sendezeit + Sending time (secs ago) - Sendezeit (vergangene Sekunden) + Sendezeit (vergangene Sekunden) Publish TS - + Number of messages - Anzahl der Nachrichten + Group ID - + Destination ID - Ziel-ID + Gxs Transport Groups: - Gxs-Transportgruppen: + Group ID / Author - Gruppen-ID/Autor + Local size of data - Lokale Datengröße + Subscribed - Abonniert + Abonniert Popularity - Beliebtheit + Beliebtheit View details - Details anzeigen + Unknown Peer - Unbekannter Nachbar + Unbekannter Nachbar Pending data items - Ausstehende Datenelemente + @@ -10689,6 +11486,41 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Nein + + GxsTunnelsDialog + + Authenticated tunnels: + Authentifizierte Tunnel: + + + Tunnel ID: %1 + Tunnelkennung: %1 + + + from: %1 + von: %1 + + + to: %1 + an: %1 + + + status: %1 + Status: %1 + + + total sent: %1 bytes + Gesendet gesamt: %1 bytes + + + total recv: %1 bytes + Empfangen gesamt: %1 bytes + + + Unknown Peer + Unbekannter Nachbar + + HashBox @@ -10713,17 +11545,17 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. Examining shared files... - Prüfe freigegebene Dateien... + Prüfe freigegebene Dateien... Hashing file - Erstelle Prüfsumme + Erstelle Prüfsumme Saving file index... - Speichere Dateiindex... + Speichere Dateiindex... @@ -10906,7 +11738,7 @@ Diese Nachricht fehlt. Sie sollten es spƤter erhalten. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10922,7 +11754,7 @@ p, li { white-space: pre-wrap; } - + Authors Autoren @@ -10941,7 +11773,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -11019,24 +11851,28 @@ p, li { white-space: pre-wrap; } Formular - + Add friend - Freund hinzufügen + Do you need help with Retroshare? - Benƶtigen Sie Hilfe bei Retroshare? + - + <html><head/><body><p>Share your RetroShare ID</p></body></html> - <html><head/><body><p>Teilen Sie Ihre RetroShare-ID</p></body></html> + This is your Retroshare ID. Copy and share with your friends! - Dies ist Ihre Retroshare-ID. Kopieren Sie es und teilen Sie es mit Ihren Freunden! + + + + Add certificate file + Zertifikatsdatei hinzufügen @@ -11047,20 +11883,19 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - <html><head/><body><p>Kopieren Sie Ihre RetroShare-ID in die Zwischenablage</p></body></html> + Open Source cross-platform, private and secure decentralized communication platform. - Plattformübergreifendes Open Source, -Private und sichere dezentrale Kommunikationsplattform. + - + Did you receive a Retroshare ID from a friend? - Haben Sie eine Retroshare-ID von einem Freund erhalten? + @@ -11068,17 +11903,17 @@ Private und sichere dezentrale Kommunikationsplattform. Webhilfe ƶffnen - + Copy your Cert to Clipboard - Dein Zertifikat in die Zwischenablage kopieren + Dein Zertifikat in die Zwischenablage kopieren Save your Cert into a File - Zertifikat als Datei speichern + Zertifikat als Datei speichern - + Send via Email Über E-Mail senden @@ -11090,84 +11925,65 @@ Private und sichere dezentrale Kommunikationsplattform. Recommend friends to each others - Empfehlen Sie einander Freunde weiter + Copy your Retroshare ID to Clipboard - Kopieren Sie Ihre Retroshare-ID in die Zwischenablage - - - - Include current local IP - Aktuelle lokale IP einschließen - - - - Include current external IP - Aktuelle externe IP einschließen - - - - Include my DNS - Meinen DNS einbeziehen - - - - Include all IPs history - Beziehen Sie den gesamten IP-Verlauf ein - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - + + Include all your known IPs - Geben Sie alle Ihre bekannten IP-Adressen an + - + Use old certificate format - Verwenden Sie das alte Zertifikatsformat + Displays the certificate format used up to version 0.6.5 Old Retroshare nodes will not understand the new short format - + - + Use new (short) certificate format - Verwenden Sie das neue (kurze) Zertifikatsformat + - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way - Ihr Retroshare-Zertifikat wurde in die Zwischenablage kopiert, fügen Sie es ein und senden Sie es per E-Mail oder auf andere Weise an Ihren Freund + Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way - Ihre Retroshare-ID wurde in die Zwischenablage kopiert, fügen Sie es ein und senden Sie es per E-Mail oder auf andere Weise an Ihren Freund + RetroShare Invite - RetroShare-Einladung + RetroShare-Einladung - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Speichern als... RetroShare Certificate (*.rsc );;All Files (*) - RetroShare-Zertifikat (*.rsc );;Alle Dateien (*) + RetroShare-Zertifikat (*.rsc );;Alle Dateien (*) @@ -11240,7 +12056,7 @@ p, li { white-space: pre-wrap; } Auto-Ban all identities signed by the same node - Auto-Ban aller IdentitƤten, die von demselben Knoten unterzeichnet wurden + @@ -11389,17 +12205,17 @@ p, li { white-space: pre-wrap; } Negative (Banned by you) - Negativ (von Ihnen verbannt) + Positive (according to your friends) - Positiv (nach Meinung Ihrer Freunde) + Negative (according to your friends) - Negativ (nach Meinung Ihrer Freunde) + @@ -11425,14 +12241,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Alle - + Reputation Reputation @@ -11442,12 +12258,12 @@ p, li { white-space: pre-wrap; } Suchen - + Anonymous Id Anonyme ID - + Create new Identity Neue IdentitƤt erstellen @@ -11457,7 +12273,7 @@ p, li { white-space: pre-wrap; } Neuen Kreis erstellen - + Persons Personen @@ -11472,27 +12288,27 @@ p, li { white-space: pre-wrap; } Person - + Close Schließen - + Ban-option: - + Auto-Ban all identities signed by the same node - Auto-Ban aller IdentitƤten, die von demselben Knoten unterzeichnet wurden + - + Friend votes: - Freund Bewertungen: + - + Positive votes Positive Stimmen @@ -11508,39 +12324,29 @@ p, li { white-space: pre-wrap; } Negative Stimmen - + Created on : - Erstellt am: + - - Auto-Ban profile - Auto-Ban-Profil - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - IdentitƤt editieren - - - + Usage statistics - Nutzungsstatistiken + - + Circles Kreise - + Circle name Kreisname @@ -11560,20 +12366,18 @@ p, li { white-space: pre-wrap; } Persƶnliche Kreise - + - Edit identity IdentitƤt bearbeiten - - + Delete identity IdentitƤt lƶschen - + Chat with this peer Chatte mit diesem Nachbarn @@ -11583,78 +12387,78 @@ p, li { white-space: pre-wrap; } Stellt einen Fernchat mit diesem Nachbarn her - + Owner node ID : - Eigentümerknoten-ID : + Eigentümerknoten-ID - + Identity name : IdentitƤtsname : - + () () - + Identity ID IdentitƤts-ID - + Send message Nachricht senden - + Identity info IdentitƤtsinformationen - + Identity ID : IdentitƤts-ID : - + Owner node name : Eigentümerknotenname : - + Create new... - Neu erstellen... + - + Type: Typ: - + Send Invite Einladung senden - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: Deine Meinung: - + Negative Negativ - + Neutral Neutral @@ -11665,17 +12469,17 @@ p, li { white-space: pre-wrap; } Positiv - + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> - + Overall: Insgesamt: - + Anonymous Anonym @@ -11690,24 +12494,24 @@ p, li { white-space: pre-wrap; } Kennung suchen - + This identity is owned by you Diese IdentitƤt gehƶrt dir - - + + My own identities - Meine IdentitƤten + Meine eigenen IdentitƤten - - + + My contacts Meine Kontakte - + Show Items @@ -11719,15 +12523,10 @@ p, li { white-space: pre-wrap; } Linked to my node - Verknüpft mit meinem Knoten - - - - <h1><img width="%1" 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> - + Other circles Andere Kreise @@ -11737,7 +12536,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: Kreiskennung: @@ -11774,17 +12573,17 @@ p, li { white-space: pre-wrap; } User (Can only request membership). - Benutzer (kann nur die Mitgliedschaft beantragen). + Distribution: - Verteilung: + Verteilung: subscribed (Receive/forward membership requests from others and invite list). - abonniert (Empfang/Weiterleitung von Beitrittsanfragen anderer und Einladungsliste). + @@ -11804,7 +12603,7 @@ p, li { white-space: pre-wrap; } Full member (you have access to data limited to this circle) - Vollmitglied (Sie haben Zugang zu Daten, die auf diesen Kreis beschrƤnkt sind) + @@ -11812,7 +12611,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: IdentitƤtskennung: @@ -11834,7 +12633,7 @@ p, li { white-space: pre-wrap; } Subscription request pending - Abonnementanforderung ausstehend + @@ -11842,14 +12641,14 @@ p, li { white-space: pre-wrap; } unbekannt - + Invited Eingeladen Subscription pending - Abonnement ausstehend + @@ -11857,7 +12656,7 @@ p, li { white-space: pre-wrap; } Mitglied - + Edit Circle Kreis bearbeiten @@ -11869,12 +12668,12 @@ p, li { white-space: pre-wrap; } Request subscription - Abonnement anfordern + Accept circle invitation - Kreiseinladung annehmen + @@ -11884,7 +12683,7 @@ p, li { white-space: pre-wrap; } Cancel subscribe request - Abo-Anfrage abbrechen + @@ -11892,7 +12691,7 @@ p, li { white-space: pre-wrap; } for identity - für IdentitƤt + für IdentitƤt @@ -11902,10 +12701,10 @@ p, li { white-space: pre-wrap; } Grant membership - Mitgliedschaft gewƤhren + - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11913,7 +12712,7 @@ These identities will soon be not supported anymore. - + [Unknown node] [Unbekannter Knoten] @@ -11922,7 +12721,7 @@ These identities will soon be not supported anymore. Unverified signature from node - Ungeprüfte Signatur vom Knoten + @@ -11943,7 +12742,7 @@ These identities will soon be not supported anymore. Identity owned by you, linked to your Retroshare node but not yet validated - IdentitƤt, die Ihnen gehƶrt und mit Ihrem Retroshare-Knoten verknüpft, aber noch nicht validiert ist + @@ -11956,19 +12755,19 @@ These identities will soon be not supported anymore. Anonyme IdentitƤt - + Boards - + GxsMail author - GxsMail Autor + GxsCircles - + @@ -11983,7 +12782,7 @@ These identities will soon be not supported anymore. Group author for group %1 in service %2 - Gruppenautor für Gruppe %1 im Dienst %2 + @@ -11998,7 +12797,7 @@ These identities will soon be not supported anymore. Message - Nachricht + Nachricht @@ -12008,7 +12807,7 @@ These identities will soon be not supported anymore. Message in chat room %1 - Nachricht im Chatraum %1 + @@ -12028,43 +12827,48 @@ These identities will soon be not supported anymore. Membership verification in circle "%1" (%2). - Verifizierung der Mitgliedschaft im Kreis "%1" (%2). + Membership verification in circle (ID=%1). - Verifizierung der Mitgliedschaft im Kreis (ID=%1). + - + information This identity link was copied to your clipboard. Paste it in a mail, or a message to transmit the identity to someone. - Dieser IdentitƤtslink wurde in Ihre Zwischenablage kopiert. Fügen Sie ihn in eine E-Mail oder eine Nachricht ein, um die IdentitƤt an jemanden zu übermitteln. + Copy identity to clipboard - IdentitƤt in die Zwischenablage kopieren + - + Banned Gebannt - + + <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> + + + + positive - positiv + positiv negative - negativ + negativ @@ -12074,17 +12878,17 @@ These identities will soon be not supported anymore. Negative (Banned by you) - Negativ (von Ihnen verbannt) + Positive (according to your friends) - Positiv (nach Meinung Ihrer Freunde) + Negative (according to your friends) - Negativ (nach Meinung Ihrer Freunde) + @@ -12101,11 +12905,19 @@ These identities will soon be not supported anymore. Forums Foren + + Posted + Verƶffentlicht + Chat Chat + + Unknown + Unbekannt + [Unknown] @@ -12126,6 +12938,10 @@ These identities will soon be not supported anymore. Creation of author signature in service %1 + + Message/vote/comment + Nachricht/Stimme/Kommentar + Distant message signature validation. @@ -12139,18 +12955,22 @@ These identities will soon be not supported anymore. Signature validation in distant tunnel system. - Signaturvalidierung im entfernten Tunnelsystem. + Signature in distant tunnel system. - Signatur im entfernten Tunnelsystem. + Generic signature validation. + + Generic signature. + Generische Signatur. + Generic encryption. @@ -12162,7 +12982,7 @@ These identities will soon be not supported anymore. Generische Entschlüsselung. - + Add to Contacts Zu Kontakte hinzufügen @@ -12199,7 +13019,7 @@ These identities will soon be not supported anymore. Too many identities - Zu viele IdentitƤten + @@ -12212,21 +13032,21 @@ These identities will soon be not supported anymore. - - - + + + People Leute - + Your Avatar Click here to change your avatar Dein Avatar - + Linked to neighbor nodes Mit Nachbarknoten verknüpft @@ -12236,7 +13056,7 @@ These identities will soon be not supported anymore. Mit entfernten Netzknoten verknüpft - + Linked to a friend Retroshare node Mit befreundetem RetroShare-Netzknoten verknüpft @@ -12251,7 +13071,7 @@ These identities will soon be not supported anymore. Mit unbekanntem RetroShare-Netzknoten verknüpft - + Chat with this person Mit dieser Person chatten @@ -12266,12 +13086,12 @@ These identities will soon be not supported anymore. Fernchat mit dieser Person abgelehnt. - + Last used: Zuletzt verwendet: - + +50 Known PGP +50 PGP bekannt @@ -12291,12 +13111,12 @@ These identities will soon be not supported anymore. Mƶchtest du diese IdentitƤt wirklich lƶschen? - + Owned by Im Besitz von - + Node name: Netzknotenname: @@ -12306,7 +13126,7 @@ These identities will soon be not supported anymore. Netzknoten-ID : - + Really delete? Wirklich lƶschen? @@ -12314,7 +13134,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname Spitzname @@ -12344,29 +13164,22 @@ These identities will soon be not supported anymore. Pseudonym - + Import image - Bild importieren + Image files (*.jpg *.png);;All files (*) - Bilddateien (*.jpg *.png);;Alle Dateien (*) + - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - Kein Avatar ausgewƤhlt. Von Ihrer neuen IdentitƤt wird automatisch ein Standardbild angezeigt. + + Use the mouse to zoom and adjust the image for your avatar. + - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - Verwenden Sie die Maus, um das Bild für Ihren Avatar zu vergrößern und anzupassen. Drücken Sie Entf, um es zu entfernen. - - - + New identity Neue IdentitƤt @@ -12380,7 +13193,7 @@ These identities will soon be not supported anymore. - + @@ -12390,12 +13203,7 @@ These identities will soon be not supported anymore. N/A - - No avatar chosen - Kein Avatar ausgewƤhlt - - - + Edit identity IdentitƤt bearbeiten @@ -12403,60 +13211,64 @@ These identities will soon be not supported anymore. Update - Aktualisieren + Aktualisieren - - + + Profile password needed. - Profilpasswort erforderlich. + - + - + Identity creation failed - IdentitƤtserstellung fehlgeschlagen + - - + + Cannot create an identity linked to your profile without your profile password. - Ohne Ihr Profilpasswort kƶnnen Sie keine mit Ihrem Profil verknüpfte IdentitƤt erstellen. + - + Identity creation success - Erfolgreiche IdentitƤtserstellung + Your new identity was successfuly created, its ID is %1. - Ihre neue IdentitƤt wurde erfolgreich erstellt, ihre ID ist %1. + Cannot create identity. Something went wrong. - IdentitƤt kann nicht erstellt werden. Etwas ist schief gelaufen. + Cannot create identity. Something went wrong. Check your profile password. - IdentitƤt kann nicht erstellt werden. Etwas ist schief gelaufen. Überprüfen Sie Ihr Profilpasswort. + - + Identity update failed - Die IdentitƤtsaktualisierung ist fehlgeschlagen + Cannot update identity. Something went wrong. Check your profile password. - IdentitƤt kann nicht aktualisiert werden. Etwas ist schief gelaufen. Überprüfen Sie Ihr Profilpasswort. + - + Error getting key! + Fehler beim Holen des Schlüssels! + + + Error KeyID invalid Fehler Schlüssel-ID ungültig @@ -12471,7 +13283,7 @@ These identities will soon be not supported anymore. Unbekannter Klarname - + Create New Identity Neue IdentitƤt erstellen @@ -12481,14 +13293,9 @@ These identities will soon be not supported anymore. Typ - + Choose image... - Bild auswƤhlen... - - - - Remove - Entfernen + @@ -12515,23 +13322,27 @@ These identities will soon be not supported anymore. Hinzufügen - + Create - Erstellen + Erstellen Cancel - Abbrechen + Abbrechen - + Your Avatar Click here to change your avatar Dein Avatar - + Set Avatar + Avatar festlegen + + + Linked to your profile Mit deinem Profil verknüpft @@ -12541,7 +13352,7 @@ These identities will soon be not supported anymore. Du kannst eine oder mehrere IdentitƤten haben. Sie werden genutzt, um in Chatlobbys, Foren und Kanalkommentaren zu schreiben. Sie dienen als Zieladresse für Fernchat und das RetroShare-Fernnachrichtensystem. - + The nickname is too short. Please input at least %1 characters. Der Spitzname ist zu kurz. Bitte mindestens %1 Zeichen eingeben. @@ -12571,18 +13382,18 @@ These identities will soon be not supported anymore. Positive votes - Positive Stimmen + Positive Stimmen 0 - 0 + 0 Negative votes - Negative Stimmen + Negative Stimmen @@ -12600,6 +13411,10 @@ These identities will soon be not supported anymore. PGP name: PGP-Name: + + GXS id: + GXS-ID: + PGP id: @@ -12615,7 +13430,7 @@ These identities will soon be not supported anymore. - + Copy Kopieren @@ -12625,12 +13440,12 @@ These identities will soon be not supported anymore. Entfernen - + %1 's Message History - + Mark all Alle markieren @@ -12649,38 +13464,26 @@ These identities will soon be not supported anymore. Quote + + Send + Senden + ImageUtil - - + + Save image Bild speichern - Save Picture File - Bilddatei speichern - - - - Pictures (*.png *.xpm *.jpg) - Bilder (*.png *.xpm *.jpg) + Cannot save the image, invalid filename + - Cannot save the image, invalid filename - Das Bild kann nicht gespeichert werden, ungültiger Dateiname - - - - Copy image - Bild kopieren - - - - Not an image Kein Bild @@ -12690,99 +13493,84 @@ These identities will soon be not supported anymore. Form - Formular + Formular JSON API Server - + - + Enable RetroShare JSON API Server - RetroShare JSON API Server aktivieren + - + Port: - Port: + Port: - + Listen Address: - Listenadresse: + - - Status: - Status: - - - + 127.0.0.1 - 127.0.0.1 + 127.0.0.1 - + Token: - + <html><head/><body><p>Tokens should spell as &quot;user:password&quot; where both user and password are alphanumeric strings.</p></body></html> - <html><head/><body><p>Tokens sollten als &quot;Benutzer:Passwort&quot; geschrieben werden, wobei sowohl Benutzer als auch Passwort alphanumerische Zeichenfolgen sind.</p></body></html> + Add - Hinzufügen + Hinzufügen Remove - Entfernen + Entfernen - Authenticated Tokens: - Authentifizierte Token: - - - - Registered services: - Registrierte Dienste: + Authenticated Tokens + Apply settings - Einstellungen übernehmen + - + JSON API - - - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare stellt eine JSON-API zur Verfügung, die es anderen Programmen ermƶglicht, mit seinem Kern zu kommunizieren, indem sie Token-gesteuerte HTTP-Anfragen an http://localhost:[port] stellen. Bitte lesen Sie in der Retroshare-Dokumentation nach, wie Sie diese Funktion nutzen kƶnnen. </p> <p>Wenn Sie nicht wissen, was Sie tun, sollten Sie an dieser Seite nichts Ƥndern müssen. Die WeboberflƤche beispielsweise registriert automatisch ihr eigenes Token für die JSON-API, das in der Liste der authentifizierten Token angezeigt wird, nachdem Sie es aktiviert haben.</p>> + LocalSharedFilesDialog - - + + Open File Datei ƶffnen - + Open Folder Ordner ƶffnen - + Checking... Überprüfe... @@ -12792,19 +13580,19 @@ These identities will soon be not supported anymore. Dateien überprüfen - + Recommend in a message to... - Empfehlen Sie in einer Nachricht an... + Share on channel... - Auf Kanal teilen... + Share on forum... - Im Forum teilen... + @@ -12820,7 +13608,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Freund hinzufügen @@ -12836,8 +13624,7 @@ These identities will soon be not supported anymore. - - + Options Optionen @@ -12858,7 +13645,7 @@ These identities will soon be not supported anymore. - + Quit Schließen @@ -12869,12 +13656,12 @@ These identities will soon be not supported anymore. Schnellstart-Assistent - + RetroShare %1 a secure decentralized communication platform RetroShare %1 - eine sichere und dezentralisierte Kommunikationsplattform - + Unfinished unfertig @@ -12903,12 +13690,11 @@ Bitte gib etwas Speicher frei und drücke OK. - Status Status - + Notify Meldungen @@ -12919,35 +13705,31 @@ Bitte gib etwas Speicher frei und drücke OK. - Open Messages Nachrichten ƶffnen - - + Bandwidth Graph Bandbreiten-Graph - + Applications Anwendungen - Help Hilfe - - + Minimize Minimieren - + Maximize Maximieren @@ -12962,12 +13744,7 @@ Bitte gib etwas Speicher frei und drücke OK. RetroShare - - Close window - Fenster schließen - - - + %1 new message %1 neue Nachricht @@ -12997,7 +13774,7 @@ Bitte gib etwas Speicher frei und drücke OK. %1 Freunde verbunden - + Do you really want to exit RetroShare ? Mƶchtest du RetroShare wirklich beenden? @@ -13017,7 +13794,7 @@ Bitte gib etwas Speicher frei und drücke OK. Anzeigen - + Make sure this link has not been forged to drag you to a malicious website. Vergewissere dich, dass dieser Link nicht gefƤlscht ist, um dich auf eine bƶsartige Webseite zu locken. @@ -13029,17 +13806,17 @@ Bitte gib etwas Speicher frei und drücke OK. Never ask me again - Frag mich nie wieder + This will be saved only for this session. - Dies wird nur für diese Sitzung gespeichert. + This will be saved permanently. You'll need to clean RetroShare.conf to revert. - Dies wird dauerhaft gespeichert. Um dies rückgƤngig zu machen, müssen Sie die RetroShare.conf wieder zurücksetzen. + @@ -13062,13 +13839,12 @@ Bitte gib etwas Speicher frei und drücke OK. Serviceberechtigungsmatrix - - + Statistics Statistiken - + Show web interface WeboberflƤche anzeigen @@ -13083,7 +13859,7 @@ Bitte gib etwas Speicher frei und drücke OK. Ordner ist sehr gering (Die aktuelle Grenze ist - + Really quit ? Wirklich beenden? @@ -13092,17 +13868,17 @@ Bitte gib etwas Speicher frei und drücke OK. MessageComposer - + Compose Verfassen - + Contacts Kontakte - + Paragraph Absatz @@ -13138,12 +13914,12 @@ Bitte gib etwas Speicher frei und drücke OK. Überschrift 6 - + Font size Schriftgröße - + Increase font size Schrift vergrößern @@ -13158,32 +13934,32 @@ Bitte gib etwas Speicher frei und drücke OK. Fett - + Italic Kursiv - + Alignment Ausrichtung - + Add an Image Ein Bild hinzufügen - + Sets text font to code style Setzt Schriftart auf Codestil - + Underline Unterstrichen - + Subject: Betreff: @@ -13194,32 +13970,32 @@ Bitte gib etwas Speicher frei und drücke OK. - + Tags Schlagwƶrter - + Address list: Adressliste: - + Recommend this friend Diesen Freund empfehlen - + Set Text color Textfarbe festlegen - + Set Text background color Texthintergrundfarbe festlegen - + Recommended Files Empfohlene Dateien @@ -13289,7 +14065,7 @@ Bitte gib etwas Speicher frei und drücke OK. Blockquote hinzufügen - + Send To: Senden an: @@ -13313,6 +14089,10 @@ Bitte gib etwas Speicher frei und drücke OK. &Justify &Blocksatz + + All addresses (mixed) + Alle Adressen (gemischt) + All people @@ -13324,7 +14104,7 @@ Bitte gib etwas Speicher frei und drücke OK. Meine Kontakte - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hallo, <br> ich empfehle dir einen guten Freund von mir. Du kannst ihm vertrauen, wenn du mir vertraust. <br> @@ -13344,18 +14124,18 @@ Bitte gib etwas Speicher frei und drücke OK. mƶchte mit dir in RetroShare befreundet sein - + Hi %1,<br><br>%2 wants to be friends with you on RetroShare.<br><br>Respond now:<br>%3<br><br>Thanks,<br>The RetroShare Team Hallo %1,<br><br>%2 mƶchte mit dir in RetroShare befreundet sein.<br><br>Jetzt antworten:<br>%3<br><br>Grüße,<br>Das RetroShare Team - - + + Save Message Nachricht speichern - + Message has not been Sent. Do you want to save message to draft box? Nachricht wurde noch nicht gesendet. @@ -13367,17 +14147,7 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? RetroShare Link einfügen - - Will not reply - Wird nicht antworten - - - - There is no point in replying to a notification message! - Es hat keinen Sinn, auf eine Benachrichtigung zu antworten! - - - + Add to "To" Zu "An" hinzufügen @@ -13397,7 +14167,7 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? Als empfohlen hinzufügen - + Original Message Ursprüngliche Nachricht @@ -13407,21 +14177,21 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? Von - + - + To An - - + + Cc Cc - + Sent Gesendet @@ -13436,7 +14206,7 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? Am %1, schrieb %2: - + Re: Re: @@ -13446,30 +14216,30 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? Fwd: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Mƶchtest du die Nachricht ohne Betreff senden ? - + Please insert at least one recipient. Bitte gib mindestens einen EmpfƤnger ein. - + Bcc Bcc - + Unknown Unbekannt @@ -13584,13 +14354,13 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? Details - + Open File... Datei ƶffnen... - + HTML-Files (*.htm *.html);;All Files (*) HTML-Dateien (*.htm *.html);;Alle Dateien (*) @@ -13610,7 +14380,7 @@ Mƶchtest du die Nachricht in den Entwürfen speichern? PDF exportieren - + Message has not been Sent. Do you want to save message ? Nachricht noch nicht versandt. @@ -13632,48 +14402,48 @@ Mƶchtest du die Nachricht speichern ? ZusƤtzliche Datei hinzufügen - + Hi,<br>I want to be friends with you on RetroShare.<br> - Hallo,<br>Ich mƶchte mit dir auf RetroShare befreundet sein.<br> + Invite message - Einladungsnachricht + Respond now: - Jetzt reagieren: + Message Size: %1 - Größe der Nachricht: %1 + It remains %1 characters after HTML conversion. - Es verbleiben %1 Zeichen nach der HTML-Konvertierung. + Warning: This message is too big of %1 characters after HTML conversion. - Warnung: Diese Nachricht ist mit %1 Zeichen zu groß nach der HTML-Konvertierung. + - - + + Close Schließen - + From: Von: - + Friend Nodes Befreundete Netzknoten @@ -13718,13 +14488,13 @@ Mƶchtest du die Nachricht speichern ? Geordnete Liste (Rƶmisch groß) - - + + Thanks, <br> Danke, <br> - + Distant identity: FernidentitƤt: @@ -13734,12 +14504,12 @@ Mƶchtest du die Nachricht speichern ? [Fehlend] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Bitte erstelle eine IdentitƤt, um Fernnachrichten zu signieren oder entferne die fernen Nachbarn aus der Zieladressliste. - + Node name & id: Netzknotenname & ID: @@ -13784,7 +14554,7 @@ Mƶchtest du die Nachricht speichern ? Load Emoticons - Emoticons laden + @@ -13817,7 +14587,7 @@ Mƶchtest du die Nachricht speichern ? Standard - + A new tab Neuem Tab @@ -13827,7 +14597,7 @@ Mƶchtest du die Nachricht speichern ? Neuem Fenster - + Edit Tag Schlagwort bearbeiten @@ -13850,7 +14620,7 @@ Mƶchtest du die Nachricht speichern ? MessageToaster - + Sub: Betreff: @@ -13858,35 +14628,35 @@ Mƶchtest du die Nachricht speichern ? MessageUserNotify - + Message Nachricht You have %1 new mails - Sie haben %1 neue Mails + You have %1 new mail - Sie haben %1 neue Mail + %1 new mails - %1 neue Mails + %1 new mail - %1 neue Mail + MessageWidget - + Recommended Files Empfohlene Dateien @@ -13896,84 +14666,84 @@ Mƶchtest du die Nachricht speichern ? Alle Dateien herunterladen - + Subject: Betreff: - + From: Von: - + To: An: - + Cc: Cc: - + Bcc: Bcc: - + Tags: Schlagwƶrter: - + Reply - Antworten + <html><head/><body><p>Reply to All</p></body></html> - <html><head/><body><p>Allen antworten</p></body></html> + Reply all - Allen antworten + Allen antworten <html><head/><body><p>Forward selected Message</p></body></html> - <html><head/><body><p>AusgewƤhlte Nachricht weiterleiten</p></body></html> + Forward - Weiterleiten + VorwƤrts Delete - Lƶschen + Lƶschen <html><head/><body><p>More actions</p></body></html> - <html><head/><body><p>Weitere Aktionen</p></body></html> + More - Mehr + - + Send Invite - Einladung senden + Einladung senden Message Size: - Nachrichtengröße: + @@ -14004,21 +14774,21 @@ Mƶchtest du die Nachricht speichern ? Save as - Speichern unter + Buttons Text Beside Icon - Button Text neben Icon + Button Text neben Icon Buttons Icon only - Button nur mit Icon + - + Confirm %1 as friend %1 als Freund bestƤtigen @@ -14028,12 +14798,12 @@ Mƶchtest du die Nachricht speichern ? %1 als Freund hinzufügen - + View source - Quelle anzeigen + - + No subject Kein Betreff @@ -14043,48 +14813,33 @@ Mƶchtest du die Nachricht speichern ? Herunterladen - + You got an invite to make friend! You may accept this request. - Du hast eine Freundschaftseinladung erhalten! Du kannst diese Anfrage annehmen. + - + You got an invite to make friend! You may accept this request and send your own Certificate back - Sie haben eine Einladung erhalten, um Freunde zu werden! Sie kƶnnen diese Anfrage annehmen und Ihr eigenes Zertifikat zurückschicken + - - more - mehr - - - + Document source - Quelle des Dokuments + %1 (%2) - - - - - Show less - Weniger anzeigen - - - - Show more - Mehr anzeigen + - + Download all Alle herunterladen - + Print Document Dokument drucken @@ -14099,12 +14854,12 @@ Mƶchtest du die Nachricht speichern ? HTML-Dateien (*.htm *.html);;Alle Dateien (*) - + Load images always for this message Bilde für diese Nachricht immer laden - + Hide the attachment pane Anhangsansicht verstecken @@ -14126,6 +14881,42 @@ Mƶchtest du die Nachricht speichern ? Compose Verfassen + + Reply to selected message + Auf gewƤhlte Nachricht antworten + + + Reply + Antwort + + + Reply all to selected message + Auf gewƤhlte Nachricht an alle EmpfƤnger antworten + + + Reply all + Allen antworten + + + Forward selected message + GewƤhlte Nachricht weiterleiten + + + Forward + VorwƤrts + + + Remove selected message + GewƤhlte Nachricht entfernen + + + Delete + Lƶschen + + + Print selected message + GewƤhlte Nachricht drucken + Print @@ -14204,7 +14995,7 @@ Mƶchtest du die Nachricht speichern ? MessagesDialog - + New Message Neue Nachricht @@ -14214,16 +15005,60 @@ Mƶchtest du die Nachricht speichern ? Verfassen - + Reply to selected message + Auf gewƤhlte Nachricht antworten + + + Reply + Antworten + + + Reply all to selected message + Auf gewƤhlte Nachricht an alle EmpfƤnger antworten + + + Reply all + Allen antworten + + + Forward selected message + GewƤhlte Nachricht weiterleiten + + + Foward + Weiterleiten + + + Remove selected message + GewƤhlte Nachricht entfernen + + + Delete + Lƶschen + + + Print selected message + GewƤhlte Nachricht drucken + + + Print + Drucken + + + Display + Anzeigen + + + - - + + Tags Schlagwƶrter - - + + Inbox Posteingang @@ -14253,17 +15088,21 @@ Mƶchtest du die Nachricht speichern ? Papierkorb - + Total Inbox: Posteingang gesamt: - + Folders + Ordner + + + Quick View Schnellansicht - + Print... Drucken... @@ -14273,6 +15112,26 @@ Mƶchtest du die Nachricht speichern ? Print Preview Druckvorschau + + Buttons Icon Only + Buttons nur mit Icon + + + Buttons Text Beside Icon + Button Text neben Icon + + + Buttons with Text + Buttons mit Text + + + Buttons Text Under Icon + Buttons Text unter dem Icon + + + Set Text Under Icon + Text unter dem Icon + Save As... @@ -14294,7 +15153,7 @@ Mƶchtest du die Nachricht speichern ? Weiterleiten - + Subject Betreff @@ -14304,7 +15163,7 @@ Mƶchtest du die Nachricht speichern ? Von - + Date Datum @@ -14314,7 +15173,39 @@ Mƶchtest du die Nachricht speichern ? Inhalt - + Click to sort by attachments + Klicken, um nach Anhang zu sortieren + + + Click to sort by subject + Klicken, um nach Betreff zu sortieren + + + Click to sort by read + Klicken, um nach Gelesen / Ungelesen zu sortieren + + + Click to sort by from + Klicken, um nach Von zu sortieren + + + Click to sort by date + Klicken, um nach Datum zu sortieren + + + Click to sort by tags + Klicken, um nach Schlagwƶrter zu sortieren + + + Click to sort by star + Klicken, um nach Kennzeichnung zu sortieren + + + Forward selected Message + GewƤhlte Nachricht weiterleiten + + + Search Subject Betreff durchsuchen @@ -14323,11 +15214,6 @@ Mƶchtest du die Nachricht speichern ? Search From Von durchsuchen - - - Search To - - Search Date @@ -14354,14 +15240,14 @@ Mƶchtest du die Nachricht speichern ? AnhƤnge durchsuchen - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - Markiert + Gekennzeichnet @@ -14371,12 +15257,12 @@ Mƶchtest du die Nachricht speichern ? Spam - + Attachment - Anhang + @@ -14406,7 +15292,7 @@ Mƶchtest du die Nachricht speichern ? Mark as Junk - Als Junk markieren + @@ -14435,8 +15321,8 @@ Mƶchtest du die Nachricht speichern ? - Show in People - In Personen anzeigen + Show author in People + @@ -14446,51 +15332,56 @@ Mƶchtest du die Nachricht speichern ? No message available in your %1. - In Ihrem %1 ist keine Nachricht verfügbar. + - + No message using %1 tag available. - Keine Nachricht mit %1-Tag verfügbar. + No %1 message available. - Keine %1-Nachricht verfügbar. + No starred message 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. - Keine markierte Nachricht verfügbar. Mithilfe von Sternen kƶnnen Sie Nachrichten einen besonderen Status zuweisen, um sie leichter auffindbar zu machen. Um eine Nachricht zu markieren, klicken Sie auf den hellgrauen Stern neben einer Nachricht. + - - Deletion is not recommended - Eine Lƶschung wird nicht empfohlen - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - Nachrichten in diesem Feld werden beim Empfang automatisch gelƶscht. Das manuelle Lƶschen einer Nachricht garantiert nicht, dass die Nachricht nicht zugestellt wird. Nachrichten, die nicht zugestellt werden kƶnnen, bleiben jedoch auf unbestimmte Zeit hier. Mƶchten Sie fortfahren und lƶschen? - - - + Drafts Entwürfe - + No Box selected. - Keine Box ausgewƤhlt. + + + + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Es sind keine gekennzeichneten Nachrichten vorhanden. Durch die Kennzeichnung kannst du Nachrichten mit einem speziellen Status versehen, sodass sie leichter zu finden sind. Klicke zum Kennzeichnen einer Nachricht auf den hellgrauen Stern neben der jeweiligen Nachricht. + + + No system messages available. + Keine Systemnachrichten vorhanden. - To - An + An - + Click to sort by to + Klicken, um nach EmpfƤnger zu sortieren + + + This message goes to a distant person. + Diese Nachricht geht zu einer entfernten Person. + + + @@ -14498,10 +15389,30 @@ Mƶchtest du die Nachricht speichern ? Total: Gesamt: + + Messages + Nachrichten + + + Click to sort by signature + Anklicken, um nach Signatur zu sortieren + + + This message was signed and the signature checks + Diese Nachricht wurde signiert und die Signatur stimmt überein. + + + This message was signed but the signature doesn't check + Diese Nachricht wurde signiert und die Signatur stimmt nicht überein. + + + This message comes from a distant person. + Diese Nachricht kommt von einer entfernten Person. + Mail - + @@ -14525,29 +15436,19 @@ Mƶchtest du die Nachricht speichern ? MimeTextEdit - - Save image - Bild speichern - - - - Copy image - Bild kopieren - - - + Paste as plain text Als Klartext einfügen Spoiler - + Select text to hide, then push this button - WƤhlen Sie den auszublendenden Text aus und drücken Sie dann diese Taste + @@ -14565,7 +15466,7 @@ Mƶchtest du die Nachricht speichern ? Send Invite - Einladung senden + Einladung senden @@ -14589,7 +15490,7 @@ Mƶchtest du die Nachricht speichern ? - + Expand Erweitern @@ -14599,19 +15500,19 @@ Mƶchtest du die Nachricht speichern ? Element entfernen - + from - von + von Reply to invite - Auf Einladung antworten + This message invites you to make friend! You may accept this request. - Diese Nachricht lƤdt Sie ein, Freundschaft zu schließen! Sie kƶnnen diese Anfrage annehmen. + @@ -14634,7 +15535,7 @@ Mƶchtest du die Nachricht speichern ? Wartend - + Hide Verbergen @@ -14775,17 +15676,17 @@ Mƶchtest du die Nachricht speichern ? Nachbar-ID - + Remove unused keys... Unbenutzte Schlüssel entfernen... Remove this key - Diesen Schlüssel entfernen + - + Clean keyring Schlüsselbund bereinigen @@ -14803,14 +15704,7 @@ Anmerkungen: Dein alter Schlüsselbund wird gesichert. Die Entfernung kann fehlschlagen, wenn mehrere Instanzen von Retroshare auf der selben Maschine laufen. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - Sie haben %1 akzeptierte Peers unter anderen ausgewƤhlt, - Bist du sicher, dass du sie wieder entfreunden mƶchtest? - - - + Keyring info Schlüsselbund-Informationen @@ -14821,8 +15715,8 @@ Anmerkungen: Dein alter Schlüsselbund wird gesichert. For security, your keyring was previously backed-up to file - %1 Schlüssel wurden aus dem Schlüsselbund entfernt. -Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. + %1 Schlüssel wurden aus dem Schlüsselbund entfernt. +Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. @@ -14846,13 +15740,18 @@ Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Dateninkonsistenz im Schlüsselbund. Dies ist wahrscheinlich ein Bug. Bitte die Entwickler kontaktieren. + + + Export/create a new node + Einen neuen Netzknoten exportieren/erstellen + Trusted keys only Nur vertrauenswürdige Schlüssel - + Search name Name suchen @@ -14862,12 +15761,12 @@ Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. Nachbar-ID suchen - + Profile details... Profildetails... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14876,6 +15775,13 @@ Reported error: Gemeldeter Fehler: + + NetworkPage + + Network + Netzwerk + + NetworkView @@ -14902,299 +15808,296 @@ Reported error: NewFriendList - + Offline Friends - Offline-Freunde + Show Offline Friends - Offline-Freunde anzeigen + Status - Status + Status Show status - Status anzeigen + - + Groups - Gruppen + Gruppen Show groups - Zeige Gruppen + export friendlist - Freundesliste exportieren + Freundesliste exportieren export your friendlist including groups - Exportieren Sie Ihre Freundesliste einschließlich Gruppen + import friendlist - Freundesliste importieren + Freundesliste importieren import your friendlist including groups - Importieren Sie Ihre Freundesliste einschließlich Gruppen + - - + + Search - Suchen + Suchen - + ID - + - + Search ID - Kennung suchen + Kennung suchen Online friends on top - Online-Freunde an der Spitze + - + Show Items - Elemente anzeigen + - + Last contact - Letzter Kontakt + IP - IP + IP - + Group - Gruppe + Gruppe Friend - Freund + Freund Node - Netzknoten + Netzknoten UNKNOWN TYPE - UNBEKANNTER TYP + Edit Group - Gruppe Ƥndern + Gruppe Ƥndern Remove Group - Gruppe entfernen + Gruppe entfernen Profile details - Profildetails + Profildetails Deny connections - Verbindungen ablehnen + Verbindungen ablehnen Add to group - Zu Gruppe hinzufügen + Zu Gruppe hinzufügen Move to group - In Gruppe verschieben + In Gruppe verschieben Create new group - Neue Gruppe erstellen + Neue Gruppe erstellen Remove from group - Aus der Gruppe entfernen + Remove from all groups - Aus allen Gruppen entfernen + Aus allen Gruppen entfernen Chat - Chat + Chat Send message to this node - Nachricht an diesen Knoten senden + Nachricht an diesen Knoten senden Node details - Knotendetails + Knotendetails Recommend this node to... - Diesen Knoten empfehlen an... + Diesen Knoten empfehlen an... Attempt to connect - Verbindung versuchen + Verbindung versuchen Copy certificate link - Zertifikat-Link kopieren + Zertifikat-Link kopieren Remove Friend Node - Freundknoten entfernen + Freundknoten entfernen Paste certificate link - Zertifikat-Link einfügen + Zertifikat-Link einfügen Expand all - Alle erweitern + Alle erweitern Collapse all - Alle reduzieren + Alle reduzieren - + Do you want to remove this node? - Mƶchtest du diesen Netzknoten entfernen? + Mƶchtest du diesen Netzknoten entfernen? Do you want to remove this Friend? - Mƶchtest du diesen Freund entfernen? + Mƶchtest du diesen Freund entfernen? - + Done! - Fertig! + Fertig! Your friendlist is stored at: - Deine Freundesliste wird gespeichert unter: + Deine Freundesliste wird gespeichert unter: (keep in mind that the file is unencrypted!) - -(Beachten Sie, dass die Datei unverschlüsselt ist!) + Your friendlist was imported from: - Deine Freundesliste wurde importiert aus: + Deine Freundesliste wurde importiert aus: Done - but errors happened! - Fertig - aber Fehler sind aufgetreten! + Fertig - aber Fehler sind aufgetreten! at least one peer was not added - -Mindestens ein Peer wurde nicht hinzugefügt + at least one peer was not added to a group - -Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt + Select file for importing your friendlist from - WƤhlen Sie die Datei aus, aus der Sie Ihre Freundesliste importieren mƶchten + XML File (*.xml);;All Files (*) - XML-Datei (*.xml);;Alle Dateien (*) + XML-Datei (*.xml);;Alle Dateien (*) Select a file for exporting your friendlist to - WƤhlen Sie eine Datei aus, in die Sie Ihre Freundesliste exportieren mƶchten + Error - Fehler + Fehler File is not writeable! - Datei ist nicht schreibbar! + Datei ist nicht schreibbar! File is not readable! - Datei ist nicht lesbar! + Datei ist nicht lesbar! @@ -15229,9 +16132,13 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt NewsFeed - + Log entries + ProtokolleintrƤge + + + Activity Stream - AktivitƤtsstream + @@ -15244,7 +16151,11 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Alle entfernen - + This is a test. + Dies ist ein Test. + + + Newest on top Neueste oben @@ -15254,14 +16165,18 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Ƅlteste oben - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Log + Protokoll + + + Activity - AktivitƤt + @@ -15269,22 +16184,22 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt You have %1 logged events - Sie haben %1 protokollierte Ereignisse + You have %1 logged event - Sie haben %1 protokolliertes Ereignis + %1 logged events - %1 protokollierte Ereignisse + %1 logged event - %1 protokolliertes Ereignis + @@ -15314,6 +16229,10 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Blogs Blogs + + Security + Sicherheit + @@ -15335,6 +16254,10 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Message Nachricht + + Connect attempt + Verbindungsversuch + @@ -15351,10 +16274,14 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Ip security IP-Sicherheit + + Log + Protokoll + Activity - AktivitƤt + @@ -15413,6 +16340,10 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Chat rooms ChatrƤume + + Chat Rooms + ChatrƤume + Position @@ -15488,28 +16419,36 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Disable All Toaster temporarily Alle Hinweise vorübergehend deaktivieren + + Feed + Neuigkeiten + Systray Benachrichtigungsfeld + + Count all unread messages + Alle ungelesenen Nachrichten zƤhlen + NotifyQt - + Passphrase required Passphrase erforderlich You need to sign your node's certificate. - Sie müssen das Zertifikat Ihres Knotens signieren. + You need to sign your forum/chatrooms identity. - Sie müssen Ihre Forum-/Chatroom-IdentitƤt unterschreiben. + @@ -15517,12 +16456,12 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Falsches Passwort! - + Please enter your Retroshare passphrase - Bitte geben Sie Ihr Retroshare-Passwort ein + - + Unregistered plugin/executable Nicht registriertes Plug-in/Programm @@ -15537,7 +16476,19 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt Bitte überprüfe deine Systemuhr. - + Examining shared files... + Prüfe freigegebene Dateien... + + + Hashing file + Erstelle Prüfsumme + + + Saving file index... + Speichere Dateiindex... + + + Test Test @@ -15548,19 +16499,17 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt - Unknown title Unbekannter Titel - + - Encrypted message - Verschlüsselte Nachricht + Verschlüsselte Nachr. - + 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). Damit die Chatlobbys richtig funktionieren, muss auf deinem Computer die richtige Zeit eingestellt sein. Bitte prüfe ob dies der Fall ist. (Es wurde eine mƶgliche Zeitabweichung von mehreren Minuten gegenüber deinen Freunden festgestellt.) @@ -15568,7 +16517,7 @@ Mindestens ein Peer wurde nicht zu einer Gruppe hinzugefügt OnlineToaster - + Friend Online Freund Online @@ -15609,17 +16558,21 @@ 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> - <p>Warnung: In diesem Betriebsmodus ist der Tunneldienst deaktiviert. Das bedeutet, dass Sie den Distant-Chat nicht anonym nutzen kƶnnen und der Mail-Dienst langsamer wird.</p><p>Dieser Zustand wird nach dem Neustart gespeichert, vergessen Sie also nicht, dass Sie ihn geƤndert haben!</p> + Turtle routing disabled! - Turtle-Routing deaktiviert! + PGPKeyDialog + + Dialog + Dialog + Profile info @@ -15685,6 +16638,10 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei This profile has signed your own profile key + + Key signatures : + Schlüsselsignaturen : + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> @@ -15710,12 +16667,7 @@ p, li { white-space: pre-wrap; } PGP-Schlüssel - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15724,6 +16676,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + PGP-Schlüssel unterzeichnen + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15760,7 +16716,12 @@ p, li { white-space: pre-wrap; } Signaturen einschließen - + + Options + Optionen + + + <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> @@ -15806,21 +16767,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Fehler: Kann Nachbardetails nicht ermitteln. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Der angegebene Schlüsselalgorithmus wird von RetroShare nicht unterstützt. @@ -15839,7 +16800,7 @@ 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. Das Vertrauensniveau drückt dein eigenes Vertrauen in diesen Schlüssel aus. Es wird weder von der Software genutzt noch geteilt, kann aber zum Merken guter bzw. schlechter Schlüssel nützlich sein. @@ -15891,12 +16852,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. Identity creation failed - IdentitƤtserstellung fehlgeschlagen + Cannot create an identity linked to your profile without your profile password. - Ohne Ihr Profilpasswort kƶnnen Sie keine mit Ihrem Profil verknüpfte IdentitƤt erstellen. + @@ -15908,6 +16869,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Vielleicht ist das Passwort falsch + You haven't set a trust level for this key. @@ -15915,12 +16880,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile RetroShare-Profil - + This is your own PGP key, and it is signed by : Dies ist dein eigener PGP-Schlüssel und er wurde signiert von: @@ -15946,7 +16911,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Chat @@ -15967,7 +16932,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Element entfernen - + Name: Name: @@ -15979,7 +16944,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Trust: - Vertrauen: + Vertrauen: @@ -16004,10 +16969,10 @@ Warning: In your File-Transfer option, you select allow direct download to No. Time offset: - Zeitdifferenz: + - + Write Message Nachricht schreiben @@ -16021,10 +16986,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected Freund verbunden + + Connect Attempt + Verbindungsversuch + Connection refused by peer - Verbindung von Peer abgelehnt + @@ -16034,7 +17003,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Friend Time Offset - Zeitversatz des Freundes + @@ -16045,7 +17014,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown peer - Unbekannter Peer + @@ -16057,7 +17026,11 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - Unbekannt + Unbekannt + + + Unknown Peer + Unbekannter Nachbar @@ -16065,7 +17038,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Verbergen - + Send Message Nachricht senden @@ -16100,7 +17073,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. Drag your circles or people to each other. - Ziehe deine Kreise oder Leute zueinander. + Ziehe deine Kreise oder Leute zueinander @@ -16117,25 +17090,29 @@ Warning: In your File-Transfer option, you select allow direct download to No.Chat with this person as... Mit dieser Person chatten als... + + Send message to this person + Nachricht an diese Person senden + Invite to Circle - Zum Kreis einladen + Send message - Nachricht senden + Nachricht senden Send invite - Einladung senden + Add to Contacts - Zu Kontakte hinzufügen + Zu Kontakte hinzufügen @@ -16173,52 +17150,52 @@ Warning: In your File-Transfer option, you select allow direct download to No. <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>Jeder in Ihrer Kontaktliste hat automatisch eine positive Meinung, wenn dies nicht festgelegt ist. Dadurch kann die Reputation verwendeter Knoten automatisch erhƶht werden. </p></body></html> + use "positive" as the default opinion for contacts (instead of neutral) - use "positive" as the default opinion for contacts (instead of neutral) + Automatically add identities owned by friend nodes to my contacts - Füge automatisch IdentitƤten von Freundesknoten zu meinen Kontakten hinzu + Difference in votes (+/-) to rate an ID negatively: - Unterschied in den Stimmen (+/-), um eine ID negativ zu bewerten: + <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>Wenn eine IdentitƤt mehr negative als positive Stimmen erhƤlt, wechselt sie von ā€žNeutralā€œ zu ā€žNeutralā€œ. zu ā€žNegativ (laut deinen Freunden)ā€œ. Standardmäßig reicht ein Unterschied von einer Stimme aus, aber Sie kƶnnen dies erschweren, indem Sie hier eine hƶhere Zahl auswƤhlen.</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>Wenn eine IdentitƤt mehr positive als negative Stimmen erhƤlt, wechselt sie von ā€žNeutralā€œ zu ā€žNeutralā€œ. zu ā€žPositiv (laut deinen Freunden)ā€œ. Standardmäßig reicht ein Unterschied von einer Stimme aus, aber Sie kƶnnen dies erschweren, indem Sie hier eine hƶhere Zahl auswƤhlen.</p></body></html> + Difference in votes (+/-) to rate an ID positively: - Differenz in den Stimmen (+/-), um eine ID positiv zu bewerten: + Delete banned identities after (0 means indefinitely): - Gesperrte IdentitƤten lƶschen nach (0 bedeutet auf unbestimmte Zeit): + Reset reputation of banned identities after (0 means never): - Reputation gesperrter IdentitƤten zurücksetzen nach (0 bedeutet nie): + <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>Gesperrte IdentitƤten werden nicht gestempelt und verlieren daher ihre AktivitƤt. Sie werden nach einer bestimmten Zeitspanne automatisch gelƶscht.</p></body></html> + @@ -16229,7 +17206,14 @@ Warning: In your File-Transfer option, you select allow direct download to No. <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>Um zu verhindern, dass gelƶschte gesperrte IDs zurückkommen, weil sie z. B. in In Foren oder KanƤlen werden gesperrte IdentitƤten für einige Zeit in einer Liste gespeichert. Danach werden sie ā€žgelƶschtā€œ. aus der Sperrliste entfernt und bei Verwendung in Foren, Chatrooms usw. erneut als nicht gesperrt heruntergeladen.</p></body></html> + + + + + PhotoCommentItem + + Form + Formular @@ -16239,45 +17223,57 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare PhotoShare + + Photo + Foto + TextLabel TextLabel + + Comment + Kommentar + + + Summary + Zusammenfassung + Album / Photo Name - Album-/Fotoname + Details - Details + Details 50 % - + 75 % - + 100 % - + 200 % - + Comments - Kommentare + Kommentare @@ -16292,22 +17288,30 @@ Warning: In your File-Transfer option, you select allow direct download to No. Photo Title: - Fototitel: + Fototitel When - Wann + Wann: ... ... + + Add Comment + Kommentar hinzufügen + + + Write a comment... + Schreibe einen Kommentar... + Album - Album + Album @@ -16374,6 +17378,10 @@ p, li { white-space: pre-wrap; } Create Album Album erstellen + + View Album + Album ansehen + Edit Album Details @@ -16395,17 +17403,17 @@ p, li { white-space: pre-wrap; } Diaschau - + My Albums Eigene Alben - + Subscribed Albums Abonnierte Alben - + Shared Albums Freigegebene Alben @@ -16435,7 +17443,7 @@ kannst musst du eines auswƤhlen! PhotoSlideShow - + Album Name Albumname @@ -16491,44 +17499,44 @@ kannst musst du eines auswƤhlen! Photo View - Fotoansicht + - - + + TextLabel - TextLabel + TextLabel - + Posted by - Gepostet von + - + ago - vor + Copy RetroShare link - RetroShare-Link kopieren + Share - Verteilen + information - Informationen + The Retrohare link was copied to your clipboard. - Der Retrohare-Link wurde in Ihre Zwischenablage kopiert. + @@ -16542,12 +17550,12 @@ kannst musst du eines auswƤhlen! PluginItem - + TextLabel TextLabel - + Show more details about this plugin Mehr Details über dieses Plug-in anzeigen @@ -16602,7 +17610,7 @@ p, li { white-space: pre-wrap; } File name: - Dateiname: + Dateiname: @@ -16612,7 +17620,7 @@ p, li { white-space: pre-wrap; } Status: - Status: + Status: @@ -16630,22 +17638,22 @@ p, li { white-space: pre-wrap; } Error: instance '%1' can't create a widget - Fehler: Instanz ā€ž%1ā€œ kann kein Widget erstellen + Error: failed to remove file %1 (uninstalling plugin '%2') - Fehler: Datei %1 konnte nicht entfernt werden (Plugin ā€ž%2ā€œ wird deinstalliert) + Error (uninstall): no plugin with name '%1' found - Fehler (Deinstallation): Kein Plugin mit dem Namen ā€ž%1ā€œ gefunden + Error (installation): plugin file %1 doesn't exist - Fehler (Installation): Plugin-Datei %1 existiert nicht + @@ -16693,6 +17701,51 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Plug-in Ordner + + [disabled] + [deaktivert] + + + No API number supplied. Please read plugin development manual. + Keine API-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + + + [loading problem] + [Ladeproblem] + + + No SVN number supplied. Please read plugin development manual. + Keine SVN-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + + + Loading error. + Fehler beim Laden. + + + Missing symbol. Wrong version? + Fehlendes Symbol. Falsche Version? + + + No plugin object + Kein Plug-in Objekt + + + Plugins is loaded. + Plug-in ist geladen. + + + Unknown status. + Unbekannter Status. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Lies dies, um über die Plug-in-Entwicklung zu erfahren. Ihre Prüfsumme wird nicht überprüft, normalerweise +schützt dich aber eine Überprüfung des Prüfsumme vor +schƤdlichem Verhalten von Plug-ins. + Plugins @@ -16762,30 +17815,15 @@ p, li { white-space: pre-wrap; } Immer im Vordergrund - - Ban this person (Sets negative opinion) - Diese Person verbannen (setzt negative Meinung) - - - - Give neutral opinion - Neutrale Meinung abgeben - - - - Give positive opinion - Positive Meinung abgeben - - - + Choose window color... - WƤhlen Sie die Fensterfarbe... + - + Dock window - Fenster andocken + @@ -16793,28 +17831,36 @@ p, li { white-space: pre-wrap; } Remote status unknown. - Remote-Status unbekannt. + Can't send message immediately, because there is no tunnel available. - Kann die Nachricht nicht sofort senden, da kein Tunnel verfügbar ist. + Your partner closed the conversation. - Ihr Partner hat das GesprƤch beendet. + Closing this window will end the conversation. Unsent messages will be dropped. - Wenn Sie dieses Fenster schließen, wird die Konversation beendet. Nicht gesendete Nachrichten werden verworfen. + Close conversation? - GesprƤch beenden? + + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Das Schließen dieses Fensters beendet die Unterhaltung, benachrichtigt den GesprƤchspartner und lƶscht den verschlüsselten Tunnel. + + + Kill the tunnel? + Tunnel schließen? @@ -16822,105 +17868,113 @@ p, li { white-space: pre-wrap; } Posted by - Gepostet von + Toggle Message Read Status - Lesestatus der Nachricht umschalten + Lesestatus der Nachricht umschalten New - Neu + Neu - + Vote up - Daumen hoch + Daumen hoch 0 - 0 + 0 Vote down - Daumen runter + Daumen runter \/ - \/ + \/ - - + + Comments - Kommentare + Kommentare Share - Verteilen + Set as read and remove item - Als gelesen markieren und Eintrag entfernen + Als gelesen markieren und Eintrag entfernen Remove Item - Eintrag entfernen + PictureLabel - + - - + + Comment - Kommentar + Kommentar - + Comments - Kommentare + Loading - Lade + Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren Show author in people tab - Autor auf der Registerkarte Personen anzeigen + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - <p><font color="#ff0000"><b>Der Autor dieser Nachricht (mit der ID %1) ist gesperrt.</b> + PostedCreatePostDialog - - Create a new Post - Neuen Beitrag erstellen + Signed by: + Unterzeichnet von: - + Notes + Notizen + + + + Create a new Post + + + + RetroShare RetroShare @@ -16932,124 +17986,110 @@ p, li { white-space: pre-wrap; } Message is too large.<br />actual size: %1 bytes, maximum size: %2 bytes. - Nachricht ist zu groß.<br />Aktuelle Größe: %1 Bytes, maximale Größe: %2 Bytes. + - - Error while creating post - Fehler beim Erstellen eines Beitrags - - - - An error occurred while creating the post. - Beim Erstellen des Beitrags ist ein Fehler aufgetreten. - - - + Load Picture File - Bilddatei laden + Bilddatei laden - + Post image - Bild posten + Do you want to share and link the original image? - Mƶchten Sie das Originalbild teilen und verlinken? + You already added a link.<br />Do you want to replace it? - Sie haben bereits einen Link hinzugefügt.<br />Mƶchten Sie ihn ersetzen? + - - No clipboard image found. - Kein Bild in der Zwischenablage gefunden. - - - - There is no image data in the clipboard to paste - In der Zwischenablage befinden sich keine Bilddaten zum Einfügen - - - + Close this window? - Dieses Fenster schließen? + Do you really want to discard your post? - Wollen Sie Ihren Beitrag wirklich verwerfen? + - + Submit Post + Beitrag einreichen + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + Du reichst einen Link ein. Der Schlüssel für einen erfolgreichen Beitrag ist interessanter Inhalt und eine passende Überschrift. + + + Submit + Einreichen + + + Submit a new Post + Einen neuen Beitrag einreichen + + + Please add a Title Bitte füge einen Titel hinzu Create a Post - Beitrag erstellen + Preview - Vorschau + Vorschau Add Picture - Bild hinzufügen + - + Post size is limited to 32 KB, pictures will be downscaled. - Die Größe der BeitrƤge ist auf 32 KB begrenzt, die Bilder werden verkleinert. + - - Paste image from clipboard - Bild aus Zwischenablage einfügen - - - - Paste Picture - Bild einfügen - - - + Remove image - Bild entfernen + Url - + Post as - Verƶffentlichen als + Verƶffentlichen als - + Post - Posten + Image - Bild + Bild - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. - Sie reichen einen Beitrag ein. Der Schlüssel zu einem erfolgreichen Beitrag ist ein interessanter Inhalt und ein beschreibender Titel. + @@ -17057,7 +18097,7 @@ p, li { white-space: pre-wrap; } Titel - + Link Link @@ -17065,48 +18105,96 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Verƶffentlichte Links + + + Create Topic + Thema erstellen + + + My Topics + Eigene Themen + + + Subscribed Topics + Abonnierte Themen + + + Popular Topics + Beliebte Themen + + + Other Topics + Andere Themen + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards - + Create Board - Board erstellen + My Boards - Meine Boards + Subscribed Boards - Abbonnierte Boards + Popular Boards - PopulƤre Boards + Other Boards - Andere Boards + PostedGroupDialog - + Posted Topic + Posted-Thema + + + Add Topic Admins + Thema-Aministratoren hinzufügen + + + Select Topic Admins + Themenverwalter auswƤhlen + + + Create New Topic + Neues Thema erstellen + + + Edit Topic + Thema bearbeiten + + + Update Topic + Thema aktualisieren + + + Create New Board - Neues Board erstellen + @@ -17121,54 +18209,44 @@ p, li { white-space: pre-wrap; } Edit Board - Board bearbeiten + Update Board - Board aktuallisieren + Add Board Admins - Board-Admins hinzufügen + Select Board Admins - Board-Admins auswƤhlen + PostedGroupItem - - Last activity - Letzte AktivitƤt - - - - TextLabel - TextLabel - - - + Subscribe to Posted Posted abonnieren Subscribe - Abonnieren + Abonnieren Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren - + Expand Erweitern @@ -17180,22 +18258,29 @@ p, li { white-space: pre-wrap; } Board Description - Board Beschreibung + - + Posted Description + Posted Beschreibung + + + Loading + Lade + + + New Posted + Neues Posted + + + Loading... - Lade... + - - Never - Nie - - - + New Board - Neuer Board + @@ -17206,64 +18291,72 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Site + + + + Comments Kommentare - + Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren Show author in people tab - Autor auf der Registerkarte Personen anzeigen + - + Comment Kommentar - + Comments - Kommentare + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - <p><font color="#ff0000"><b>Der Autor dieser Mitteilung (mit ID %1) ist gesperrt.</b> + - + Click to view Picture - Zum Betrachten des Bildes anklicken + Hide - Verbergen + Verbergen - + Vote up Daumen hoch - + Vote down Daumen runter - + \/ + \/ + + + Set as read and remove item Als gelesen markieren und Eintrag entfernen @@ -17273,7 +18366,7 @@ p, li { white-space: pre-wrap; } Neu - + New Comment: Neuer Kommentar: @@ -17283,20 +18376,20 @@ p, li { white-space: pre-wrap; } Kommentarwert - + Name - Name + Name Posted by - Gepostet von + Expand - Erweitern + Erweitern @@ -17306,12 +18399,12 @@ p, li { white-space: pre-wrap; } Share - Teilen + Notes - Notizen + Notizen @@ -17321,322 +18414,360 @@ p, li { white-space: pre-wrap; } TextLabel - TextLabel + TextLabel - + Loading Lade + + By + Von + + + + PostedListWidget + + Form + Formular + + + Hot + Heiß + + + New + Neu + + + Top + Anfang + + + Today + Heute + + + Yesterday + Gestern + + + This Week + diese Woche + + + This Month + diesen Monat + + + This Year + dieses Jahr + + + Submit a new Post + Einen neuen Beitrag einreichen + + + Next + NƤchstes + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Vor dem Abstimmen bitte eine Signier-ID erstellen oder auswƤhlen + + + Previous + Vorherige + + + 1-10 + 1-10 + PostedListWidgetWithModel Form - Formular + Formular Details - Details + Details Board Details - Board Details + - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - <html><head/><body><p>Maximale Anzahl von Datenelementen (einschließlich BeitrƤgen, Kommentaren, Abstimmungen) über Freundschaftsknoten hinweg.</p></body></html> - - - - Items (at friends): - Artikel (bei Freunden): - - - + 0 - 0 + 0 Administrator: - Administrator: + Administrator: - + - + unknown - unbekannt + unbekannt - + Distribution: - Verteilung: + Verteilung: Last activity: - Letzte AktivitƤt: + - + Created - Erstellt + - + TextLabel - TextLabel + TextLabel - + Popularity: - PopularitƤt: + - + + Contributions: + + + + Sync period: - Sync-Zeitraum: + - - Number of subscribed friend nodes - Anzahl der abonnierten Freundesknoten - - - + Posts - BeitrƤge + BeitrƤge - + Create Post - Beitrag erstellen + - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> - <html><head/><body><p><span style="font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI-Symbol'; Schriftgröße: 14pt; Farbe: #24292e; Hintergrundfarbe: #ffffff;">Sortierung auswƤhlen</span></p></body></html> + New - Neu + Neu Top - Top + Anfang Hot - Heiß + Heiß - + Search - Suchen + Suchen Classic view - Klassische Ansicht + Previous - Vorherige + Vorherige 1-10 - 1-10 + 1-10 Next - NƤchstes + NƤchstes <html><head/><body><p>Default identity used when voting</p></body></html> - <html><head/><body><p>Standard-IdentitƤt, die bei der Abstimmung verwendet wird</p></body></html> + - + No files in this post, or no post selected - Keine Dateien in diesem Beitrag, oder kein Beitrag ausgewƤhlt + - + No posts available in this board - Keine BeitrƤge in diesem Board vorhanden + - + Click to switch to card view - Klicken, um zur Kartenansicht zu wechseln + Click to switch to compact view - Klicken, um zur Kompaktansicht zu wechseln + Empty - Leer + - + Copy RetroShare Link - RetroShare-Link kopieren + RetroShare-Link kopieren - - Copy http Link - http-Link kopieren - - - + Show author in People tab - Autor auf der Registerkarte Personen anzeigen + Edit - Bearbeiten + Bearbeiten - - + information - Informationen + - - + The Retrohare link was copied to your clipboard. - Der Retrohare-Link wurde in Ihre Zwischenablage kopiert. + - - + Link creation error - Fehler bei der Link-Erstellung + - - + Link could not be created: - Link konnte nicht erstellt werden: + - + [No name] - [Kein Name] + Subscribed - Abonniert + Abonniert Subscribe - Abonnieren + Abonnieren - + Never - Nie + Nie 5 days - 5 Tage + 5 Tage 2 weeks - 2 Wochen + 2 Wochen 1 month - 1 Monat + 1 Monat 3 months - 3 Monate + 6 months - 6 Monate + 1 year - 1 Jahr + 1 Jahr indefinitly - Unbegrenzt + Unknown - Unbekannt + Unbekannt Public - Ɩffentlich + Ɩffentlich Restricted to members of circle " - BeschrƤnkt auf Mitglieder des Kreises " + BeschrƤnkt auf Mitglieder des Kreises " Restricted to members of circle - BeschrƤnkt auf Mitglieder des Kreises + BeschrƤnkt auf Mitglieder des Kreises Your eyes only - Nur für Ihre Augen + Nur Ihre Augen You and your friend nodes - Sie und Ihr Freund Knotenpunkte + No Channel Selected - Keinen Kanal gewƤhlt - - - - Could not vote - Konnte nicht abstimmen - - - - Error occured while voting: - Bei der Abstimmung ist ein Fehler aufgetreten: + Keinen Kanal gewƤhlt @@ -17646,38 +18777,46 @@ p, li { white-space: pre-wrap; } Tabs Reiter + + Open each topic in a new tab + Jedes Thema in einem neuen Reiter ƶffnen. + Open each board in a new tab - Ɩffnen Sie jedes Board in einem neuen Tab + Boards - + PostedUserNotify + + Posted + Posted + Board Post - Board Beitrag + You have %1 new board posts - Sie haben %1 neue BeitrƤge im Board + You have %1 new board post - Sie haben %1 neuen Board Beitrag + %1 new board post - %1 neuer Beitrag im Board + @@ -17727,16 +18866,16 @@ p, li { white-space: pre-wrap; } Profil-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:'Sans Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17848,7 +18987,7 @@ und den Import zum Laden verwenden ProfileWidget - + Edit status message Statusnachricht Ƥndern @@ -17864,7 +19003,7 @@ und den Import zum Laden verwenden Profil-Manager - + Public Information Ɩffentliche Information @@ -17899,12 +19038,12 @@ und den Import zum Laden verwenden Online seit: - + Other Information Andere Informationen - + My Address Meine Adresse @@ -17942,48 +19081,72 @@ und den Import zum Laden verwenden Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Dein Zertifikat ist in die Zwischenablage kopiert worden. Du kannst es per E-Mail oder auf andere Weise an deinen Freund senden + Dein Zertifikat ist in die Zwischenablage kopiert worden. Du kannst es per E-Mail oder auf andere Weise an deinen Freund senden. PulseAddDialog - + Post From: + Beitrag von: + + + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + Add to Pulse Zu Puls hinzufügen - + filter + filtern + + + URL Adder + URL-Hinzufüger + + + Display As Anzeigen als - + URL URL - + GroupLabel - + IDLabel From: - Von: + Von: - + Head - + Head Shot @@ -18000,26 +19163,26 @@ und den Import zum Laden verwenden Positive - Positiv + Positiv Neutral - Neutral + Neutral Negative - Negativ + Negativ - - + + Whats happening? - Was geschieht? + - + @@ -18028,27 +19191,17 @@ und den Import zum Laden verwenden Drag and Drop Image - Drag and Drop Bild + - - Remove all images - Entfernen Sie alle Bilder - - - + Clear Display As - - Add Picture - Bild hinzufügen - - - + Post - Posten + @@ -18056,14 +19209,18 @@ und den Import zum Laden verwenden Abbrechen - - Post - Posten + Post Pulse to Wire + Puls an Wire senden - + + Post + + + + Reply to Pulse - Antworten + @@ -18073,27 +19230,37 @@ und den Import zum Laden verwenden Republish Pulse - Neu verƶffentlichen + - + Like Pulse - + Hide Pictures - Bilder ausblenden + - + Add Pictures - Bilder hinzufügen + + + + + PulseItem + + From + Von - - Load Picture File - Bilddatei laden + Date + Datum + + + ... + … @@ -18101,15 +19268,15 @@ und den Import zum Laden verwenden Form - Formular + Formular - + Click to view picture - Zum Betrachten des Bildes anklicken + @@ -18117,13 +19284,13 @@ und den Import zum Laden verwenden Image - Bild + Bild PulseReply - + icn @@ -18133,9 +19300,9 @@ und den Import zum Laden verwenden - + REPLY - Antworten + @@ -18147,7 +19314,7 @@ und den Import zum Laden verwenden REPUBLISH - REPUBLIKIEREN + @@ -18157,12 +19324,12 @@ und den Import zum Laden verwenden SHOW - Zeigen + - + FOLLOW - Folgen + @@ -18170,7 +19337,7 @@ und den Import zum Laden verwenden - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18190,7 +19357,7 @@ und den Import zum Laden verwenden - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18220,7 +19387,7 @@ und den Import zum Laden verwenden ... - ... + @@ -18281,7 +19448,7 @@ und den Import zum Laden verwenden REPLY - Antworten + @@ -18293,7 +19460,7 @@ und den Import zum Laden verwenden REPUBLISH - REPUBLIKIEREN + @@ -18303,53 +19470,48 @@ und den Import zum Laden verwenden SHOW - Anzeigen + - + FOLLOW - Folgen + PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - Standort + - - Edit profile - Profil editieren - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18381,16 +19543,16 @@ und den Import zum Laden verwenden - + FOLLOW - Folgen + QObject - - + + Confirmation BestƤtigung @@ -18411,32 +19573,32 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Warning: Retroshare is about to ask your system to open this file. - Warnung: Retroshare fordert Ihr System auf, diese Datei zu ƶffnen. + Before you do so, please make sure that this file does not contain malicious executable code. - Bevor Sie dies tun, stellen Sie bitte sicher, dass diese Datei keinen schƤdlichen ausführbaren Code enthƤlt. + Identity added to People - IdentitƤt zu Personen hinzugefügt + The identity was added to people. You can now chat with it, send messages to it, etc. - Die IdentitƤt wurde zu Personen hinzugefügt. Sie kƶnnen jetzt mit ihm chatten, Nachrichten an ihn senden usw. + Identity cannot be added to People - IdentitƤt kann nicht zu Personen hinzugefügt werden + The identity was not added to people. Some error occured. The link is probably corrupted. - Die IdentitƤt war nicht an Personen gebunden. Es ist ein Fehler aufgetreten. Der Link ist wahrscheinlich beschƤdigt. + @@ -18551,17 +19713,17 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Posted not found - Die gepostete Nachricht wurde nicht gefunden + Posted message not found - Die gepostete Nachricht wurde nicht gefunden + Posted messages not found - Gepostete Nachrichten wurden nicht gefunden + @@ -18571,22 +19733,22 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Click to browse/download this file collection - Klickenr, um diese Dateisammlung zu durchsuchen/herunterzuladen + %1 (%2) - + Identity link (name=%1, ID=%2) - IdentitƤtslink (Name=%1, ID=%2) + %1 (%2 files, %3) - %1 (%2 Dateien, %3) + @@ -18606,7 +19768,7 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Chat room not found - Chatraum nicht gefunden + @@ -18661,12 +19823,12 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Nachbardetails - + File Request canceled Dateianforderung abgebrochen - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Diese Version von RetroShare benutzt das OpenPGP-SDK. Der Schlüsselring des Systems wird nicht mehr verwendet, sondern ein eigener Schlüsselring für alle laufenden Instanzen.<br><br>Du scheinst keinen solchen Schlüsselring zu besitzen, obwohl Schlüssel von existierenden RetroShare-Accounts benƶtigt werden. Vielleicht hast du auch gerade zu dieser Version gewechselt. @@ -18697,45 +19859,41 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Ein unerwarteter Fehler ist aufgetreten. Bitte melde 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! - Tor Manager kann nicht gestartet werden! + Tor cannot be started on your system: - Tor kann auf deinem System nicht gestartet werden: - - + Cannot start Tor - Tor kann nicht gestartet werden + Sorry but Tor cannot be started on your system! The error reported is:" - Tor kann auf deinem System leider nicht gestartet werden! - -Die Fehlermeldung lautet:" + Cannot start a hidden tor service! - Kann einen hidden Tor service nicht starten! + It was not possible to start a hidden service. - Es war nicht mƶglich, einen hidden service zu starten. + - + Multiple instances Mehrere Instanzen @@ -18754,29 +19912,7 @@ Lockdatei: An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - Ein ist ein unerwarteter Fehler wƤhrend des "Single instance lock" aufgetreten -Lock datei: - - - - - Old certificate - Altes Zertifikat - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - Dieser Knoten verwendet alte Zertifikatseinstellungen, die von Ihrer aktuellen OpenSSL-Bibliotheksversion als zu schwach angesehen wird. Sie müssen einen neuen Knoten erstellen, der mƶglicherweise das gleiche Profil verwendet. - - - - Tor error - Tor-Fehler - - - - Cannot run/configure Tor. Make sure it is installed on your system. - Tor kann nicht ausgeführt/konfiguriert werden. Stellen Sie sicher, dass es auf Ihrem System installiert ist. + Ein unerwarteter Fehler wƤhrend des "Single instance lock" ist aufgetreten @@ -18786,17 +19922,17 @@ Lock datei: Tunnel is pending - Tunnel ist in Vorbereitung + (some undelivered messages) - (einige unzustellbare Nachrichten) + End-to-end encrypted conversation established - Ende-zu-Ende-verschlüsselte Konversation aufgebaut + @@ -18860,7 +19996,7 @@ Der gemeldete Fehler ist: Daten weiter - + You appear to have nodes associated to DSA keys: Du scheinst Netzknoten zu besitzen, die mit DSA-Schlüsseln verknüpft sind: @@ -18870,7 +20006,7 @@ Der gemeldete Fehler ist: DSA-Schlüssel werden von dieser Version von RetroShare noch nicht unterstützt. Alle diese Netzknoten kƶnnen nicht benutzt werden. Das tut uns sehr leid. - + enabled aktiviert @@ -18880,7 +20016,7 @@ Der gemeldete Fehler ist: deaktivert - + Move IP %1 to whitelist IP %1 in Whitelist verschieben @@ -18896,7 +20032,7 @@ Der gemeldete Fehler ist: - + %1 seconds ago Vor %1 Sekunden @@ -18964,9 +20100,9 @@ Security: no anonymous IDs Sicherheit: keine anonymen Kennungen - + Join chat room - Treten Sie dem Chatroom bei + @@ -18989,12 +20125,12 @@ Sicherheit: keine anonymen Kennungen unable to parse XML file! - XML-Datei kann nicht geparst werden! + - + Indefinitely - Unbestimmt + @@ -19034,214 +20170,198 @@ Sicherheit: keine anonymen Kennungen Processing - Verarbeitung + Choosing group - Gruppe auswƤhlen + Creating receipt - Quittung erstellen + Signing receipt - Quittung unterschreiben + Serializing - Serialisierung + Creating payload - Payload erstellen + Encrypting payload - Verschlüsselung der Nutzlast + Publishing - Verƶffentlichung + Waiting for receipt - Warte auf die Quittung + Receipt received - Quittung erhalten + Receipt signature failed - Die Signatur der Quittung ist fehlgeschlagen + Encryption failed - Die Verschlüsselung ist fehlgeschlagen + Discovery - Discovery + Discovery Chat - Chat + Chat Messages - Nachrichten + Nachrichten Turtle - + Heartbeat - + File transfer - + Global router - + File database - Datei-Datenbank + Service info - Serviceinformationen + Bandwidth control - Bandbreitenkontrolle + Mail - + Distant mail - Distant-Mail + Service control - Servicekontrolle + Distant chat - Distant-Chat + GXS Tunnel - + Ban list - Bannliste - - - - Name - Name + - Node - Knoten - - - - Address - Adresse - - - - Status - Status + Status - + NXS - + Identities - IdentitƤten + IdentitƤten GXS Photo - + GXS Wiki - + GXS TheWire - + Forums - Foren + Foren Boards - + Channels - KanƤle + KanƤle Circles - Kreise + Kreise Reputation - Reputation + Reputation @@ -19251,12 +20371,12 @@ Sicherheit: keine anonymen Kennungen GXS Transport - + JSon API - + @@ -19270,184 +20390,176 @@ Sicherheit: keine anonymen Kennungen Group admin signature creation - Erstellung der Gruppenadministratorsignatur + Group admin signature validation - Validierung der Gruppenadministratorsignatur + Group author signature creation - Erstellung der Gruppenautorsignatur + Group author signature validation - Validierung der Signatur des Gruppenautors + Message author signature creation - Erstellung der Signatur des Nachrichtenautors + Message author signature validation - Validierung der Signatur des Nachrichtenautors + Routine group author signature check. - Routinemäßige Überprüfung der Gruppenautorensignatur. + Routine message author signature check - Routinemäßige Überprüfung der Signatur des Nachrichtenautors + Chat room signature validation - Validierung der Chatroom-Signatur + Global router message validation - Globale Router-Nachrichtenvalidierung + Global router message creation - Erstellung globaler Router-Nachrichten + DH Key exchange validation for GXS tunnel - DH-Schlüsselaustauschvalidierung für GXS-Tunnel + DH Key exchange creation for GXS tunnel - Erstellung des DH-Schlüsselaustauschs für den GXS-Tunnel + New identity from GXS sync - Neue IdentitƤt durch GXS-Synchronisierung + New friend identity from discovery - Neue FreundesidentitƤt durch Entdeckung + New identity requested from friend node - Neue IdentitƤt vom Freundesknoten angefordert + Generic signature validation - Generische Signaturvalidierung + Generic signature creation - Generische Signaturerstellung + Generic data decryption - Generische Datenentschlüsselung + Generic data encryption - Generische Datenverschlüsselung + Circle membership checking - Überprüfung der Mitgliedschaft im Kreis + Click to pause the hashing process - Klicken, um den Hashing-Vorgang anzuhalten + [Hashing is paused] - [Hashing ist pausiert] + Click to resume the hashing process - Klicken, um den Hashing-Vorgang fortzusetzen + + + + <p>This certificate contains: + <p>Dieses Zertifikat enthƤlt: Idle - UntƤtig + UntƤtig Virtual peers available - Virtuelle Peers verfügbar + Passive - + Active - Aktiv + Aktiv Requesting peers - Peers angefordert + Never - Nie + Nie Tunnel OK - + Tunnel active - Tunnel aktiv + Client - + Server - - - - - - Missing channel post - Fehlender Kanalbeitrag - - - - - [System] - + @@ -19612,7 +20724,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Netzwerkweit @@ -19644,7 +20756,7 @@ p, li { white-space: pre-wrap; } Where do you want to have the buttons for the page? - Wo mƶchten Sie die SchaltflƤchen für die Seite haben? + @@ -19795,7 +20907,7 @@ p, li { white-space: pre-wrap; } Formular - + The loading of embedded images is blocked. Das Laden eingebetteter Bilder ist blockiert. @@ -19808,7 +20920,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Standardmäßig erlaubt @@ -19845,72 +20957,72 @@ p, li { white-space: pre-wrap; } Location info exchange between friends. Helps to find actual address in case of dynamic IPs<br>Without it you will have to rely on DHT only for getting fresh addresses - Austausch von Standortinformationen zwischen Freunden. Hilft beim Ermitteln der aktuellen Adresse im Falle von dynamischen IPs<br> Ohne sie sind Sie nur auf DHT angewiesen, um an die neue Adressen zu kommen + Used by direct F2F chat, distant chat and chat lobbies - Wird von direkten F2F-Chats, Distanzchats und Chat-Lobbys verwendet + Mailing service. Also required for direct f2f chat - Mailing-Dienst. Auch für direkten f2f-Chat erforderlich + Anonymous routing. Used by file transfers and file search,<br> distant chat, distant mail and distant channels/etc sync - Anonymous routing. Verwendet für Dateiübertragungen und Dateisuche,,<br> Distanz-Chat, Distanz-Mail und Distanz-KanƤle/etc-Synchronisation + Checks if peers alive - Prüft, ob Peers aktiv sind + File transfer. If you kill it - you won't be able to dl files from friend shares. Anonymous access unnaffected - Dateiübertragung. Wenn Sie es abschalten, kƶnnen Sie keine Dateien von Freunden herunterladen. Anonymer Zugriff nicht betroffen + Used by distant mail for immediate delivery using anonymous tunnels (turtle router) - Wird von Distant-Mails für die sofortige Zustellung über anonyme Tunnel verwendet (Turtle-Router) + Exchange shared directories info, aka browsable(visible) files - Austausch von Informationen über gemeinsam genutzte Verzeichnisse, d. h. durchsuchbare (sichtbare) Dateien + Allows your node to tell to your friends which service are ON on your side, and vice-versa - Ermƶglicht Ihrem Knotenpunkt, Ihren Freunden mitzuteilen, welche Dienste auf Ihrer Seite eingeschaltet sind, und umgekehrt + Speed management - Verwaltung der Geschwindigkeit + Used by distant chat, distant mail, and distant channels sync for transfer data using anonymous tunnels - Verwendet von Distanz-Chat, Distanz-Mail und Distanz-Kanal-Synchronisation für die Datenübertragung über anonyme Tunnel + IP filter lists exchange - Austausch von IP-Filterlisten + Share user status like online, away, busy with friends - Teilen Sie den Benutzerstatus, z. B. online, abwesend oder mit Freunden beschƤftigt + Identity data exchange. Required by all identities-related functions like chats, forums, mail, etc - IdentitƤtsdatenaustausch. Erforderlich für alle identitƤtsbezogenen Funktionen wie Chats, Foren, E-Mail usw + @@ -19945,22 +21057,22 @@ p, li { white-space: pre-wrap; } Votes exchange - bans/upvotes for Identities - Stimmenaustausch - Sperren/Upvotes für IdentitƤten + Used by distant mail for deferred delivery - stored at friends when target offline - Wird von Distant-Mail für die verzƶgerte Zustellung verwendet – bei Freunden gespeichert, wenn das Ziel offline ist + Measures the Round Trip Time between you and your friends - Misst die Hin- und Rücklaufzeit zwischen Ihnen und Ihren Freunden + unknown - unbekannt + unbekannt @@ -19981,63 +21093,61 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - Quelltext anzeigen + - - Save image - Bild speichern - - - - Copy image - Bild kopieren - - - + Document source - Quelle des Dokuments + RSTreeWidget - + Tree View Options Baumansichtoptionen - + Show Header - Kopfzeile anzeigen + Sort by column … - Nach Spalte sortieren ... + Sort Descending Order - Sortierung absteigend + Sort Ascending Order - Aufsteigend sortieren + [no title] - [kein Titel] + Show column … - Spalte anzeigen ... + + + + Show column... + Spalte anzeigen... + + + [no title] + [kein Titel] @@ -20063,7 +21173,7 @@ p, li { white-space: pre-wrap; } Download... - Herunterladen... + @@ -20073,7 +21183,7 @@ p, li { white-space: pre-wrap; } Recommend in a message to... - Empfehlen Sie in einer Nachricht an... + @@ -20086,12 +21196,12 @@ p, li { white-space: pre-wrap; } [All friend nodes] - [Alle Freundesknoten] + Only - Nur + Nur @@ -20101,7 +21211,7 @@ p, li { white-space: pre-wrap; } This node hasn't sent any directory information yet. - Dieser Knoten hat noch keine Verzeichnisinformationen gesendet. + @@ -20109,234 +21219,234 @@ p, li { white-space: pre-wrap; } Paragraph formatting - Absatzformatierung + Font size - Schriftgröße + Schriftgröße Text foreground color - Vordergrundfarbe des Textes + . - + Text background color - Text-Hintergrundfarbe + Undo (CTRL+Z) - RückgƤngig (STRG+Z) + Undo - RückgƤngig + Redo - Wiederholen + Cut (CTRL+X) - Ausschneiden (STRG+X) + Cut - Ausschneiden + Copy (CTRL+C) - Kopieren (STRG+C) + Copy - Kopieren + Kopieren Paste (CTRL+V) - Einfügen (STRG+V) + Paste - Einfügen + Link (CTRL+L) - Link (STRG+L) + Link - Link + Link Bold - Fett + Fett Italic (CTRL+I) - Kursiv (STRG+I) + Italic - Kursiv + Kursiv Underline (CTRL+U) - Unterstrichen (STRG+U) + Underline - Unterstrichen + Unterstrichen Bullet list (CTRL+-) - AufzƤhlungsliste (STRG+-) + Bullet list - AufzƤhlungsliste + Ordered list (CTRL+=) - Geordnete Liste (STRG+=) + Ordered list - Geordnete Liste + Decrease indentation (CTRL+,) - Einzug verkleinern (STRG+,) + Increase indentation (CTRL+.) - Einrückung vergrößern (STRG+.) + Attach a Picture - Bild anhƤngen + Bild anhƤngen Text - + TextLabel - TextLabel + TextLabel Standard - + Heading 1 - Überschrift 1 + Überschrift 1 Heading 2 - Überschrift 2 + Überschrift 2 Heading 3 - Überschrift 3 + Überschrift 3 Heading 4 - Überschrift 4 + Überschrift 4 Monospace - + Remove character formatting - Zeichenformatierung entfernen + Remove all formatting - Alle Formatierungen entfernen + Edit document source - Dokumentquelle bearbeiten + Document source - Quelle des Dokuments + Create a link - Einen Link erstellen + Link URL: - + Load Picture File - Bilddatei laden + Bilddatei laden It remains %1 characters after HTML conversion. - Es verbleiben %1 Zeichen nach der HTML-Konvertierung. + Warning: This message is too big of %1 characters after HTML conversion. - Warnung: Diese Nachricht ist mit %1 Zeichen zu groß nach der HTML-Konvertierung. + Text (optional) - + @@ -20406,32 +21516,32 @@ p, li { white-space: pre-wrap; } Save Collection File. - Kollektionsdatei speichern. + Kollektionsdatei speichern. File already exists. - Datei existiert bereits. + Datei existiert bereits. What do you want to do? - Was willst du tun? + Was willst du tun? Overwrite - Überschreiben + Überschreiben Merge - Zusammenfügen + Zusammenfügen Cancel - Abbrechen + Abbrechen @@ -20454,12 +21564,12 @@ p, li { white-space: pre-wrap; } Destination: - Ziel: + Right click to change download directory - Rechtsklick zum Ƅndern des Download-Verzeichnisses + @@ -20570,17 +21680,17 @@ Die betroffenen Dateien sind rot markiert Download files - Dateien herunterladen + Specify... - Spezifizieren... + Choose directory - Verzeichnis wƤhlen + @@ -20622,12 +21732,12 @@ Die betroffenen Dateien sind rot markiert Do you want to remove them and all their children, too? - Mƶchten Sie alle und ihre untergeordneten Elemente ebenfalls entfernen? + Do you want to remove this file from the list? - Mƶchten Sie diese Datei aus der Liste entfernen? + @@ -20701,49 +21811,49 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil RsDownloadListModel - + Name i.e: file name - Name + Name Size i.e: file size - Größe + Größe Completed - Fertiggestellt + Fertiggestellt Speed i.e: Download speed - Geschwindigkeit + Geschwindigkeit Progress / Availability i.e: % downloaded - Fortschritt/Verfügbarkeit + Fortschritt/Verfügbarkeit Sources i.e: Sources - Quellen + Quellen Status - Status + Status Speed / Queue position - Geschwindigkeit/Warteschlangenposition + Geschwindigkeit/Warteschlangenposition @@ -20754,12 +21864,12 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil Download time i.e: Estimated Time of Arrival / Time left - Restzeit + Restzeit Hash - Prüfsumme + Prüfsumme @@ -20822,34 +21932,34 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil RsFriendListModel - + Name - Name + Name Id - ID + ID Last contact - Letzter Kontakt + IP - IP + IP - + Profile ID - Profil-ID + (Not yet validated) - (Noch nicht bestƤtigt) + @@ -20857,7 +21967,7 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil Title - Titel + Titel @@ -20867,53 +21977,55 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil Date - Datum + Datum Author - Autor + Autor Information for this identity is currently missing. - Informationen zu dieser IdentitƤt fehlen derzeit. + You have banned this ID. The message will not be displayed nor forwarded to your friends. - Sie haben diese ID verbannt. Die Nachricht wird weder -angezeigt oder an Ihre Freunde weitergeleitet. + 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. - Sie haben keine Meinung zu dieser Person abgegeben, - und Ihre Freunde stimmen nicht positiv ab: Die Spam-Verordnung -verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. + Message will be forwarded to your friends. - Die Nachricht wird an Ihre Freunde weitergeleitet. + - + [ ... Redacted message ... ] - [ ... Redigierte Nachricht ... ] + [ ... Redigierte Nachricht ... ] [Notification] - [Benachrichtigung] + [Unknown] - [Unbekannt] + [Unbekannt] + + + + [ ... Missing Message ... ] + [ ... Fehlende Nachricht ... ] @@ -20921,84 +22033,72 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. Date - Datum + Datum From - Von - - - - To - An + Von Subject - Betreff + Betreff Tags - Schlagwƶrter + Schlagwƶrter Click to sort by attachments - Klicken, um nach Anhang zu sortieren + Klicken, um nach Anhang zu sortieren Click to sort by subject - Klicken, um nach Betreff zu sortieren + Klicken, um nach Betreff zu sortieren - Click to sort by read status - Klicken, um nach Lesestatus zu sortieren + Click to sort by read + Klicken, um nach Gelesen / Ungelesen zu sortieren - Click to sort by author - Klicken, um nach Autor zu sortieren - - - - Click to sort by destination - Klicken, um nach Zielort zu sortieren + Click to sort by from + Klicken, um nach Von zu sortieren Click to sort by date - Klicken, um nach Datum zu sortieren + Klicken, um nach Datum zu sortieren Click to sort by tags - Klicken, um nach Schlagwƶrter zu sortieren + Klicken, um nach Schlagwƶrter zu sortieren Click to sort by star - Klicken, um nach Kennzeichnung zu sortieren + Klicken, um nach Kennzeichnung zu sortieren Click to sort by junk status - Klicken, um nach Junk-Status zu sortieren + - - - + [Notification] - [Benachrichtigung] + [Unknown] - [Unbekannt] + [Unbekannt] @@ -21012,7 +22112,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. Rshare - + Resets ALL stored RetroShare settings. Setzt alle RetroShare-Einstellungen zurück. @@ -21025,7 +22125,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. filename - Dateiname + @@ -21035,7 +22135,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. level - + @@ -21045,7 +22145,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. style - Stil + @@ -21055,7 +22155,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. stylesheet - + @@ -21065,7 +22165,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. language - Sprache + @@ -21073,7 +22173,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Setzt die Sprache. - + Unable to open log file '%1': %2 Logdatei "%1": %2 kann nicht geƶffnet werden @@ -21081,7 +22181,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. Invalid operating mode specified: - Ungültige Betriebsart angegeben: + @@ -21094,37 +22194,41 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Datenverzeichnis konnte nicht erstellt werden: %1 - + Revision + Revision + + + opmode - + Sets RetroShare's operating mode. - Legt den Betriebsmodus von RetroShare fest. + RsLinkURL - + Open RsLink with protocol retroshare:// - RsLink mit Protokoll retroshare:// ƶffnen + Open RsFile with or without arg. - RsFile mit oder ohne Arg ƶffnen. + RetroShare GUI Usage Information - RetroShare GUI-Nutzungsinformationen + - + Invalid language code specified: Ungültige Sprach-Codierung ausgewƤhlt: @@ -21142,10 +22246,10 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. RshareSettings - + Registry Access Error. Maybe you need Administrator right. - Fehler beim Zugriff auf die Registrierung. Mƶglicherweise benƶtigen Sie Administratorrechte. + @@ -21159,12 +22263,12 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. SearchDialog - + Enter a keyword here (at least 3 char long) Gib einen Suchbegriff ein (min. 3 Zeichen) - + Start Search Suche starten @@ -21226,7 +22330,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Leeren - + KeyWords Schlüsselwƶrter @@ -21241,7 +22345,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Such-ID - + Filename Dateiname @@ -21341,33 +22445,33 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Auswahl herunterladen - + File Name Dateiname - + Download Herunterladen - + Copy RetroShare Link RetroShare-Link kopieren - + Send RetroShare Link RetroShare-Link senden Mark as bad - Als schlecht markieren + - + Download Notice Download-Hinweis @@ -21404,7 +22508,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Alle entfernen - + Folder Ordner @@ -21412,20 +22516,20 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. Obtained via - ErhƤltlich über + - + New RetroShare Link(s) Neu(e) RetroShare-Link(s) - + Open Folder Ordner ƶffnen - + Create Collection... Kollektion erstellen... @@ -21445,7 +22549,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Von Kollektion herunterladen... - + Collection Kollektion @@ -21453,7 +22557,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. SecurityIpItem - + Peer details Nachbardetails @@ -21469,22 +22573,22 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Element entfernen - + IP address: IP-Adresse: - + Peer ID: Nachbar-ID: - + Location: Ort: - + Peer Name: Nachbarname: @@ -21501,7 +22605,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Verbergen - + but reported: aber gemeldet: @@ -21526,8 +22630,8 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.<p>Dies ist die IP, von der dein Freund behauptet, dass er mit ihr verbunden ist. Wenn du deine IP gerade geƤndert hast, ist dies ein Fehlalarm. Falls nicht, bedeutet dies, dass deine Verbindung zu diesem Freund durch einen zwischengeschalteten Nachbarn weitergeleitet wird, was verdƤchtig wƤre.</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>Diese Warnung ist hier um dich vor Netzwerktrafficweiterleitungsattacken zu schützen. In so einem Fall sieht der Freund mit dem du verbunden bist nicht deine externe IP sondern die IP des Angreifers.</p><p><br/></p><p>Wenn du allerdings deine IP gerade geƤndert hast (einige Netzprovider erzwingen eine Ƅnderung der IP in regelmäßigem Abstand), dann bedeutet diese Warnung, dass dein Freund sich zu deiner neuen IP verbunden hat, bevor Retroshare etwas über den IP-Wechsel herausgefunden hat. In diesem Fall ist nicht falsch.</p><p><br/></p><p>Du kannst dies Warnung ganz einfach unterdrücken, indem du deine eigene IP zur Whitelist hinzufügst (z.B. den IP-Bereich deines Netzproviders) oder diese Warnung komplett in Optionen-&gt;Meldungen-&gt;Feed deaktivierst.</p></body></html> @@ -21535,7 +22639,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. SecurityItem - + wants to be friend with you on RetroShare mƶchte mit dir in RetroShare befreundet sein @@ -21566,7 +22670,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. - + Expand Erweitern @@ -21588,7 +22692,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. Trust: - Vertrauen: + Vertrauen: @@ -21611,12 +22715,12 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Status: - + Write Message Nachricht schreiben - + Connect Attempt Verbindungsversuch @@ -21636,32 +22740,31 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Unbekannter (ausgehender) Verbindungsversuch - + Unknown Security Issue Unbekanntes Sicherheitsproblem - - SSL request - SSL-Anfrage + + A unknown peer + - - An unknown peer - Ein unbekannter Peer - - - + Unknown - Unbekannt + Unbekannt Profile ID: - Profil-ID: + - + Unknown Peer + Unbekannter Nachbar + + + Hide Verbergen @@ -21671,7 +22774,7 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Mƶchtest du diesen Freund entfernen? - + Certificate has wrong signature!! This peer is not who he claims to be. Zertifikat hat die falsche Signatur!! Dieser Nachbar ist nicht, wer er vorgibt zu sein. @@ -21681,12 +22784,12 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Fehlendes/beschƤdigtes SSL-Zertifikat. Kein echter Retroshare-Benutzer - + Certificate caused an internal error. Zertifikat verursachte einen internen Fehler. - + Peer/node not in friendlist (PGP id= Nachbar/Netzknoten nicht in Freundesliste (PGP-ID= @@ -21745,14 +22848,14 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird. - + Local Address Lokale Adresse - + NAT - + @@ -21771,22 +22874,22 @@ verhindert, dass die Nachricht an Ihre Freunde weitergeleitet wird.Port: - + Local network Lokales Netz - + External ip address finder Externer IP Adressen Finder - + UPnP UPnP - + Known / Previous IPs: Bekannte / vorherige IPs: @@ -21802,16 +22905,21 @@ wird es helfen Verbindungen aufzubauen, trotz geringer Anzahl von Freunden. Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. - - - + + Allow RetroShare to ask my ip to these websites: + RetroShare erlauben, folgende Webseiten nach deiner IP zu fragen: + + + + + kB/s KiB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Akzeptable Ports reichen von 10 bis 65535. Normalerweise sind Ports unter 1024 von deinem System reserviert. @@ -21821,49 +22929,23 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. Akzeptable Ports reichen von 10 bis 65535. Normalerweise sind Ports unter 1024 von deinem System reserviert. - + Onion Address Onion-Adresse - + Discovery On (recommended) Discovery Ein (empfohlen) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - Tor wurde von Retroshare automatisch konfiguriert. Hier sollten Sie keine Ƅnderungen vornehmenen. - - - - sec - - local - lokal - - - - external - Externe - - - - - -List of found external IP: - - - -Liste der gefundenen externen IP: - - - - + Discovery Off Discovery Aus @@ -21873,7 +22955,7 @@ Liste der gefundenen externen IP: Versteckt - Siehe Konfiguration - + I2P Address I2P-Adresse @@ -21898,129 +22980,141 @@ Liste der gefundenen externen IP: eingehend in Ordnung - - - + + Proxy seems to work. Proxy scheint zu funktionieren. - - + I2P proxy is not enabled I2P-Proxy ist nicht aktiviert - - SAMv3 is running and accessible - SAMv3 lƤuft und ist zugƤnglich + + BOB is running and accessible + - SAMv3 is not accessible! Is i2p running and SAM enabled? - SAMv3 ist nicht zugƤnglich! LƤuft i2p und ist SAM aktiviert? + BOB is not accessible! Is it running? + - - Your key uses the following algorithms: %1 and %2 - Ihr Schlüssel verwendet die folgenden Algorithmen: %1 und %2 - - - - - unkown key type - unbekannter Schlüsseltyp - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - RetroShare verwendet SAMv3, um einen %1-Tunnel bei %2:%3 einzurichten -(ID: %4) - -Wenn Sie Optionen Ƥndern, verwenden Sie die SchaltflƤchen unten, um SAMv3 neu zu starten. - - + - - Offline, no SAM session is established yet. - - Offline, es wurde noch keine SAM-Sitzung eingerichtet. - - - - - SAM is trying to establish a session ... this can take some time. - - SAM versucht, eine Sitzung aufzubauen ... dies kann einige Zeit dauern. - - - - - SAM session established! Now setting up a forward session ... - - SAM-Sitzung eingerichtet! Richten Sie jetzt eine Weiterleitungssitzung ein ... - - - - - Online, SAM is working as exptected - - Online, SAM funktioniert wie erwartet - - - - - You key uses %1 for signing and %2 for crypto - Ihr Schlüssel verwendet %1 zum Signieren und %2 für die Verschlüsselung - - - - stop SAM tunnel first to generate a new key - Stoppen Sie zunƤchst den SAM-Tunnel, um einen neuen Schlüssel zu generieren - - - - stop SAM tunnel first to load a key - Stoppen Sie zuerst den SAM-Tunnel, um einen Schlüssel zu laden - - - - stop SAM tunnel first to disable SAM - Stoppen Sie zuerst den SAM-Tunnel, um SAM zu deaktivieren - - - + client server - Server + unknown - unbekannt + 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 - Fordern Sie einen neuen Serverschlüssel an + load server key from base64 - Serverschlüssel von Base64 laden + - + + 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. Du bist durch den versteckten Dienst erreichbar. @@ -22029,17 +23123,15 @@ Wenn Sie Optionen Ƥndern, verwenden Sie die SchaltflƤchen unten, um SAMv3 neu The proxy is not enabled or broken. Are all services up and running fine?? Also check your ports! - Der Proxy ist nicht aktiviert oder defekt. -Sind alle Dienste betriebsbereit? -Überprüfen Sie auch Ihre Ports! + - + [Hidden mode] [Versteckter Modus] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Dies lƶscht die Liste der bekannten Adressen. Diese Funktion ist nützlich, wenn deine Adressliste aus irgendeinem Grund ungültige/irrelevante/abgelaufene Adressen enthƤlt, von denen du nicht willst, dass sie an deine Freunde als Kontaktadressen weitergegeben werden.</p></body></html> @@ -22049,7 +23141,7 @@ Sind alle Dienste betriebsbereit? Leeren - + Download limit (KB/s) Download-Limit (KB/s) @@ -22064,24 +23156,23 @@ Sind alle Dienste betriebsbereit? Upload-Limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>Die Uploadbegrenzung deckt die gesamte Saoftware ab. Eine zu kleine Uploadbegrenzung kann letztendlich Dienste mit niedriger PrioritƤt (Foren, KanƤle) blockieren. Ein Minimumwert von 50KB/s wird empfohlen.</p></body></html> - + WARNING: These values don't take into account the Relays. - WARNUNG: -Diese Werte berücksichtigen nicht die Relais. + - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - <html><head/><body><p>Konfiguriere deinen Tor und I2P SOCKS Proxy hier. Damit kannst du dich auch mit hidden Knoten verbinden.</p><p> </p></body></html> + - + 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: @@ -22089,38 +23180,57 @@ Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> le 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-Standard: 127.0.0.1:9050. In der Torrc-Konfiguration einstellen und hier aktualisieren. - -I2P-Socks-Proxy: Informationen zum Einrichten eines Client-Tunnels finden Sie unter http://127.0.0.1:7657/i2ptunnelmgr: -Tunnel-Assistent -> Client-Tunnel -> SOCKS 4/4a/5 -> geben Sie einen Namen ein -> lassen Sie ā€žOutproxiesā€œ leer -> geben Sie den Port ein (merken Sie sich!) [Vielleicht mƶchten Sie auch die Erreichbarkeit auf 127.0.0.1 setzen] -> Weiter -> 'Auto Start' ankreuzen -> Fertig! -Geben Sie nun die Adresse (z. B. 127.0.0.1) und den Port ein, den Sie zuvor für den I2P-Proxy ausgewƤhlt haben. - -Sie kƶnnen sich mit versteckten Knoten verbinden, auch wenn Sie einen Standardknoten betreiben. Warum also nicht Tor und/oder I2P einrichten? + - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings - aktiviert erweiterte Einstellungen + advanced mode - Erweiterter Modus + - + + I2P Basic Open Bridge + + + + I2P Instance address - I2P-Instanzadresse + 127.0.0.1 - 127.0.0.1 + 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address - Adresse + @@ -22130,57 +23240,62 @@ Sie kƶnnen sich mit versteckten Knoten verbinden, auch wenn Sie einen Standardk generate new - neu erstellen + Tunnel length (in/out) - TunnellƤnge (ein/aus) + Tunnel quantity (in/out) - Tunnelmenge (ein/aus) + Tunnel variance (in/out) - Tunnelvarianz (ein/aus) + <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>Server Key - Wenn ein Key gesetzt wird, wird er verwendet um einen hidden<br/>Service für I2P einzurichten. Ansonsten wird nur ein Client-Tunnel erstellt.</p></body></html> + load key - Ladeschlüssel + - + Start - Start + Start Restart - Neustart + Stop - Stop + Stop - + + BOB status + + + + Incoming - Eingehend + Eingehend <html><head/><body><p>Setup your hidden address (and port if needed)</p></body></html> - <html><head/><body><p>Einstellen der hidden Adresse (und Port, falls erforderlich)</p></body></html> + @@ -22206,78 +23321,42 @@ 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. - Um Verbindungen zu empfangen, müssen Sie zunƤchst einen versteckten Tor/I2P-Service einrichten. - -Für Tor: Siehe torrc und Dokumentation für HOWTO-Details. - -Für I2P: Informationen zum Einrichten eines Servertunnels finden Sie unter http://127.0.0.1:7657/i2ptunnelmgr: -Tunnel-Assistent -> Servertunnel -> Standard -> Geben Sie einen Namen ein -> Geben Sie die Adresse und den Port ein, den Ihr RS verwendet (siehe Lokale Adresse oben) -> Aktivieren Sie ā€žAutostartā€œ -> Fertig! - -Sobald dies erledigt ist, fügen Sie die Onion/I2P (Base32)-Adresse in das Feld oben ein. -Dies ist Ihre externe Adresse im Tor/I2P-Netzwerk. -Stellen Sie abschließend sicher, dass die Ports mit der Konfiguration übereinstimmen. - -Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Sie auch die Tor-Protokolle. + - - Automatic I2P - Automatisch I2P - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - Aktivieren Sie I2P SAMv3 - eine Ƅnderung dieser Einstellung erfordert einen Neustart, um vollstƤndig wirksam zu werden - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - SAM zugƤnglich - - - - SAM status - - - - + Relay - Relais + Enable Relay Connections - Aktivieren von Relais-Verbindungen + Use Relay Servers - Verwenden Sie Relay-Server + Relay options - Relaisoptionen + Number - Nummer + Bandwidth per link - Bandbreite pro Verbindung + Total Bandwidth - Gesamtbandbreite + @@ -22297,17 +23376,17 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Total: - Gesamt: + Gesamt: - + Warning: This bandwidth adds up to the max bandwidth. - Warnung: Diese Bandbreite summiert sich zur maximalen Bandbreite. + Relay Server Setup - Relay-Server-Setup + @@ -22317,7 +23396,7 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Server DHT Key - Server-DHT-Schlüssel + @@ -22325,7 +23404,7 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen 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>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> @@ -22337,7 +23416,7 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Netzwerk - + IP Filters IP-Filter @@ -22360,7 +23439,7 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen - + Status Status @@ -22420,35 +23499,24 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Zu Whitelist hinzufügen - + Hidden Service Configuration Versteckte Dienstkonfiguration - - Allow RetroShare to ask my ip to these DNS servers: - Erlauben Sie RetroShare, meine IP bei diesen DNS-Servern zu erfragen: - - - - - List of OpenDns servers used. - Liste der verwendeten OpenDns-Server. - - - + <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 - + @@ -22457,18 +23525,18 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen - + <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 ausgehend Okay + - + Service Address Dienstadresse @@ -22503,12 +23571,12 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Bitte geben Sie eine Dienstadresse ein - + IP Range IP-Bereich - + Reported by DHT for IP masquerading Von DHT für IP-Maskierung gemeldet @@ -22531,22 +23599,22 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Von dir hinzugefügt - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>IPs auf der Whitelist werden aus folgenden Quellen gesammelt: IPs eines manuell ausgetauschten Zertifikats, von dir in diesem Fenster oder in den Sicherheitseingabeelementen eingegebene IP-Bereiche.</p><p>Das Standardverhalten von RetroShare ist (1) Verbindungen zu Nachbarn mit IP-Adressen in der Whitelist immer zulassen, auch wenn die IP ebenfalls in der Blacklist eingetragen ist; (2) optional erfordern, dass die IPs in der Whitelist eingetragen sind. Du kannst dieses Verhalten für jeden Nachbarn im &quot;Details&quot;-Fenster eines jeden RetroShare-Netzknotens Ƥndern.</p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>DHT erlaubt es dir Verbindungdsanfragen von deinen Freunden mit Hilfe von BitTorrent's DHT zu beantworten. Es verbessert die KonnektivitƤt enorm. Im DHT werden keine Informationen gespeichert. Es dient nur als Proxysystem um Verbindung mit anderen Retroshare Netzknoten aufzunehmen.</p><p>Der Discovery Dienst sendet node namen und ids deiner vertreuenswürdigen Konakte an verbundene Nachbarn, um ihnen bei der Wahl neuer Freunde zu helfen. Die Freundschaft wird jedoch nie automatisch hergestellt und beide Nachbarn müssen sich immer noch gegenseitig vertrauen, um eine Verbindung zu erlauben. </p></body></html> - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>Die Kugel wird grün, sobald es RetroShare gelingt, deine eigene IP von den unten aufgeführten Webseiten zu bekommen - sofern du diese Aktion aktiviert hast. RetroShare nutzt auch noch andere Wege, um deine IP herauszufinden.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Diese Liste wird automatisch mit Informationen aus veschiedenen Quellen gefüllt: Maskierte Nachbarn gemeldet vom DHT, von dir eingetragene IP Bereiche und von deinen Freunden übermittelte IP Bereiche. Die Grundeinstellung sollte dich gegen groß angelegte Verbindungsweiterleitungsattacken schützen.</p><p>Automatisches eintragen von markierten IPs kan die IPs deiner Freunde auf die Blacklist setzen. Benutze in diesem Fall das Kontextmenü, um sie auf die Whitelist zu verschieben.</p></body></html> @@ -22581,9 +23649,9 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Automatisch Bereiche DHT-maskierender IPs sperren, beginnend ab - + Outgoing Manual Tor/I2P - Ausgehend manuelles Tor/I2P + @@ -22591,12 +23659,12 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Tor Socks Proxy - + Tor outgoing Okay - Tor ausgehend Okay + Tor ausgehend o. k. - + Tor proxy is not enabled Tor-Proxy ist nicht aktiviert @@ -22676,7 +23744,7 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen ShareKey - + check peers you would like to share private publish key with WƤhle die Nachbarn, mit denen du den privaten Verƶffentlichungsschlüssel teilen mƶchtest @@ -22686,12 +23754,12 @@ Wenn Sie Probleme beim Herstellen einer Verbindung über Tor haben, überprüfen Für Freund teilen - + Share Teilen - + 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. Du kannst deine Freunde von deinem Kanal wissen lassen, indem du ihn mit ihnen teilst. @@ -22711,9 +23779,9 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Ordnerfreigabe-Manager - + Shared directory - Freigegebenes Verzeichnis + @@ -22731,17 +23799,17 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Sichtbarkeit - + Add new - Neu hinzufügen + - + Cancel Abbrechen - + Add a Share Directory Freigabe hinzufügen @@ -22751,7 +23819,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Entfernen - + Apply and close Anwenden und Schließen @@ -22773,7 +23841,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Choose directory to share... - Verzeichnis zum Freigeben auswƤhlen... + @@ -22783,32 +23851,32 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. [Unset] (Double click to change) - [Ungesetzt] (Doppelklick zum Ƅndern) + Double click to select which groups of friends can see the files - Doppelklick, um auszuwƤhlen, welche Gruppen von Freunden die Dateien sehen dürfen + Double click to change the name that friends will see. - Doppelklicken Sie darauf, um den Namen zu Ƥndern, den Ihre Freunde sehen werden. + Double click to change shared directory path - Doppelklick zum Ƅndern des gemeinsamen Verzeichnispfades + Directory does not exist! Double click to change shared directory path - Das Verzeichnis existiert nicht! Doppelklicken Sie, um den Pfad zum gemeinsamen Verzeichnis zu Ƥndern + [All friend nodes] - [Alle Freundesknoten] + @@ -22823,7 +23891,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Choose a directory to share - WƤhlen Sie ein Verzeichnis zur Freigabe + @@ -22842,7 +23910,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Ordner nicht gefunden oder Ordnername nicht akzeptiert. - + 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. Dies ist eine Liste freigegebener Ordner. Du kannst mit den Knƶpfen unten Ordner hinzufügen und entfernen. Wenn du einen neuen Ordner hinzufügst sind alle Dateien darin von Anfang an freigegeben. Du kannst für jeden freigegebenen Ordner die Freigabeflags separat festlegen. @@ -22850,14 +23918,14 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. SharedFilesDialog - + Files Dateien Configure shared directories - Freigegebene Verzeichnisse konfigurieren + @@ -22901,16 +23969,11 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - <html><head/><body><p>Erzwingt die erneute Überprüfung aller freigegebenen Verzeichnisse. WƤhrend sich die automatische Dateiprüfung aus Effizienzgründen nur um neue/entfernte Dateien kümmert, erzwingt diese SchaltflƤche die erneute Prüfung aller Dateien und führt mƶglicherweise ein erneutes Hashing vorhandener Dateien durch, die sich mƶglicherweise geƤndert haben. </p></body></html> - - - check files Dateien prüfen - + Download selected Auswahl herunterladen @@ -22920,7 +23983,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Herunterladen - + Copy retroshare Links to Clipboard RetroShare-Links in die Zwischenablage kopieren @@ -22935,9 +23998,9 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. RetroShare-Links senden - + Some files have been omitted - Einige Dateien wurden ausgelassen + @@ -22951,14 +24014,14 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Empfehlung(en) - + Create Collection... Kollektion erstellen... Stop sharing this file - Freigabe dieser Datei beenden + @@ -22976,39 +24039,39 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Von Kollektion herunterladen... - + Some files have been omitted because they have not been indexed yet. - Einige Dateien wurden ausgelassen, weil sie noch nicht indexiert wurden. + Search string should be at least 3 characters long. - Der Suchbegriff sollte mindestens 3 Zeichen lang sein. + More than 3000 results. Add more/longer search words to select less. - Mehr als 3000 Ergebnisse. Fügen Sie mehr/lƤngere Suchbegriffe hinzu, um weniger auszuwƤhlen. + Warning: You reach max (%1) files in flat list. No more will be added. - Warnung: Sie haben die maximale Anzahl (%1) von Dateien in der Flat-Liste erreicht. Es werden keine weiteren hinzugefügt. + No result. - Kein Ergebnis. + More than %1 results. Add more/longer search words to select less. - Mehr als %1 Ergebnisse. Fügen Sie mehr/lƤngere Suchbegriffe hinzu, um weniger auszuwƤhlen. + Found %1 results. - %1 Ergebnisse gefunden. + @@ -23031,7 +24094,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. New Msg - Neue Nachricht + Neue Nachr. @@ -23119,12 +24182,12 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. SplashScreen - + Load configuration Konfiguration laden - + Create interface OberflƤche erstellen @@ -23148,7 +24211,7 @@ WƤhle die Freunde, mit denen du den Kanal teilen willst. Passwort speichern - + Log In Anmelden @@ -23168,11 +24231,7 @@ Die aktuellen IdentitƤten/Orte werden nicht geƤndert. 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> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><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;">Neues Profil/Knoten</span></a></p></body></html> + @@ -23312,7 +24371,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. Identities - IdentitƤten + IdentitƤten @@ -23322,7 +24381,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. Gxs Transport - + @@ -23505,7 +24564,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. Statusnachricht - + Message: Nachricht: @@ -23750,7 +24809,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Alle Schlagwƶrter entfernen @@ -23778,161 +24837,117 @@ p, li { white-space: pre-wrap; } Dialog - Dialog + Dialog Setting up Tor... - Einrichten von Tor... + - - + Tor status: - + - - - + Unknown Unbekannt Not started - Nicht gestartet + - - Hidden address: - Hidden adresse: + + Hidden service address: + - - + + Tor bootstrap status: + + + + + Not set - Nicht festgelegt + Onion address: - Onion adresse: + - - Error - Fehler - - - - Not connected - Nicht verbunden - - - - Connecting - Verbinde - - - - Socket connected - Socket verbunden - - - - Authenticating - Authentifizierung - - - - Authenticated - Authentifiziert - - - - Hidden service ready - Hidden Service bereit - - - - Tor offline - - - - - Tor ready - Tor bereit - - - + Check that Tor is accessible in your executable path - Prüfe, ob Tor in deinem ausführbaren Pfad zugƤnglich ist + - + [Waiting for Tor...] - [Warten auf Tor...] + TorStatus - + Tor Tor <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - <p>Diese Version von Retroshare benutzt Tor, um sich mit deinen vertrauenswürdigen Knoten zu verbinden.</p> + - + Tor is currently offline - Tor ist derzeit offline + Tor is OK - Tor ist OK + - No tor configuration - Keine Tor-Konfiguration + - + Tor proxy is OK - Tor-Proxy ist OK + Tor proxy is not available - Tor-Proxy ist nicht verfügbar + I2P - + i2p proxy is OK - i2p-Proxy ist OK + i2p proxy is not available - i2p-Proxy ist nicht verfügbar + TransferPage - + Transfer options Übertragungsoptionen @@ -23943,37 +24958,32 @@ p, li { white-space: pre-wrap; } Maximale gleichzeitige Downloads: - + Shared Directories - Freigegebene Verzeichnisse + Automatically share incoming directory (Recommended) - Eingehende Ordner automatisch freigeben (Empfohlen) + Eingehende Ordner automatisch freigeben (Empfohlen) - - Directories - Verzeichnisse - - - - Configure shared directories - Freigegebene Verzeichnisse konfigurieren - - - - Auto-check shared directories every - Freigegebene Verzeichnisse automatisch überprüfen - - - - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> + + Edit Share - + + Directories + + + + + Auto-check shared directories every + + + + minute(s) Minute(n) @@ -23985,7 +24995,7 @@ p, li { white-space: pre-wrap; } follow symbolic links - symbolischen Links folgen + @@ -23995,12 +25005,12 @@ p, li { white-space: pre-wrap; } Ignore duplicate files/directories - Doppelte Dateien/Verzeichnisse ignorieren + Maximum depth (0=unlimited): - Maximale Tiefe (0=unbegrenzt): + @@ -24010,7 +25020,7 @@ p, li { white-space: pre-wrap; } Ignore files ending with: - Ignoriere Dateien, die mit: + @@ -24020,7 +25030,7 @@ p, li { white-space: pre-wrap; } ignore files starting with: - Dateien ignorieren, die mit: + @@ -24046,19 +25056,19 @@ p, li { white-space: pre-wrap; } Automatically donwload RsCollection file content (Not recommended) - Inhalt der RsCollection-Datei automatisch herunterladen (nicht empfohlen) + Partials Directory - Partials-Verzeichnis + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.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:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24067,14 +25077,9 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - Mindestschriftgröße für freigegebene Dateien - - - + Maximum uploads per friend (0 = no limit) - Maximale Uploads pro Freund (0 = keine Begrenzung) + @@ -24094,15 +25099,10 @@ p, li { white-space: pre-wrap; } Allow direct download: - Direkten Download zulassen: - - - - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - + Streaming Streaming @@ -24154,12 +25154,12 @@ p, li { white-space: pre-wrap; } Per user - Pro Benutzer + Trust friend nodes with banned files - Vertrauen Sie befreundeten Knoten mit gebannten Dateien + @@ -24167,9 +25167,14 @@ p, li { white-space: pre-wrap; } Max. weiterzuleitende Tunnelanfragen pro Sekunde: - + + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>bewirkt dass die Übertragung 1MB große Dateistücke in aufsteigender Ordnung anfordert, so dass eine Vorschau wƤhrend des Downloads ermƶgllicht wird. <span style=" font-weight:600;">ZufƤllig</span> ist rein zufƤllig und begünstigt Schwarmverhalten. <span style=" font-weight:600;">Progressiv</span> ist ein Kompromiss der das nƤchste Teilstück zufƤllig innerhalb von weniger als 50 MB nach dem Ende der patiellen Datei auswƤhlt. Das erlaubt etwas ZufƤlligket wƤhrend es hohe Initialisationzeiten für leere Dateien vehindert.</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 wird alle Übertragungen und das Speichern von Konfigurationsdaten aussetzen, wenn der freie Festplattenspeicher unter dieses Limit fƤllt. Auf einigen Systemen verhindert dies Informationsverlust. Ein Hinweisfenster wird dich warnen, wenn das passiert.</p></body></html> + <html><head/><body><p>RetroShare wird alle Übertragungen und das Speichern von Konfigurationsdaten aussetzen, wenn der freie Festplattenspeicher unter dieses Limit fƤllt. Auf einigen Systemen verhindert dies Informationsverlust. Ein Hinweisfenster wird dich warnen, wenn das passiert.</p></body></html> @@ -24177,34 +25182,24 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Dieser Wert kontrolliert, wie viele Tunnel-Anfragen dein Nachbar pro Sekunde weiterleiten darf.</p><p>Wenn du eine große Internet-Bandbreite hast, kannst du diesen auf 30–40 erhƶhen, um statistisch lƤngere Tunnel zu ermƶglichen. Vorsicht! Dies erzeugt viele kleine Pakete die deine eigenen Dateitransfers merklich verlangsamen kƶnnen.</p><p>Voreinstellung ist 20. Wenn du dir nicht sicher bist, belasse es dabei.</p></body></html> - - Warning - Warnung - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - Auf Windows-Systemen kann das zufƤllige Schreiben in die Mitte großer leerer Dateien dazu führen, dass die Software mehrere Sekunden lang hƤngen bleibt. Mƶchten Sie diese Option trotzdem verwenden (andernfalls ā€žprogressivā€œ verwenden)? - - - + Set Incoming Directory - Eingehendes Verzeichnis festlegen + Invalid Input. Have you got the right to write on it? - Ungültige Eingabe. Haben Sie die Rechte, darauf zu schreiben? + Set Partials Directory - Partialverzeichnis festlegen + Invalid Input. It can't be an already shared directory. - Ungültige Eingabe. Es kann sich nicht um ein bereits freigegebenes Verzeichnis handeln. + @@ -24215,47 +25210,63 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Download abgeschlossen You have %1 completed transfers - Sie haben %1 transfer abgeschlossen + You have %1 completed transfer - Sie haben %1 transfer abgeschlossen + %1 completed transfers - %1 transfers abgeschlossen + %1 completed transfer - %1 transfer abgeschlossen + + + + You have %1 completed downloads + Du hast %1 fertige Downloads + + + You have %1 completed download + Du hast %1 fertigen Download + + + %1 completed downloads + %1 fertige Downloads + + + %1 completed download + %1 fertiger Download TransfersDialog - - + + Downloads Downloads - + Uploads Uploads - + Name i.e: file name Name @@ -24342,7 +25353,7 @@ p, li { white-space: pre-wrap; } Peer i.e: user name / tunnel id - Nachbar + Nachbar @@ -24462,12 +25473,7 @@ p, li { white-space: pre-wrap; } Spezifizieren... - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; Dateiübertragung</h1><p>Retroshare bietet zwei Mƶglichkeiten, Dateien zu übertragen: direkte Übertragungen von Ihren Freunden und anonyme, getunnelte Fernübertragungen. Außerdem ist der Dateitransfer quellenübergreifend und erlaubt das SchwƤrmen (Sie kƶnnen beim Herunterladen eine Quelle sein)</p><p>Sie kƶnnen Dateien über das Symbol <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> in der linken Seitenleiste teilen. Diese Dateien werden in der Registerkarte "Meine Dateien" aufgelistet. Sie kƶnnen für jede Freundesgruppe entscheiden, ob sie diese Dateien in der Registerkarte "Dateien von Freunden" sehen kƶnnen oder nicht</p><p>Die Registerkarte "Suchen" zeigt Dateien aus den Dateilisten Ihrer Freunde und entfernte Dateien an, die über das Multi-Hop-Tunnelsystem anonym erreicht werden kƶnnen.</p> - - - + Move in Queue... In Warteschlange verschieben... @@ -24492,7 +25498,7 @@ p, li { white-space: pre-wrap; } Ordner auswƤhlen - + Anonymous end-to-end encrypted tunnel 0x Anonymer Ende-zu-Ende-verschlüsselter Tunnel 0x @@ -24500,7 +25506,7 @@ p, li { white-space: pre-wrap; } Tunnel - + @@ -24513,7 +25519,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24546,17 +25552,7 @@ p, li { white-space: pre-wrap; } Datei %1 ist nicht komplett. Falls es eine Mediadatei ist, dann versuche "Vorschau". - - Warning - Warnung - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - Auf Windows-Systemen kann das Schreiben in der Mitte großer leerer Dateien dazu führen, dass die Software für einige Sekunden hƤngen bleibt. Mƶchten Sie diese Option trotzdem verwenden? - - - + Change file name Dateinamen Ƥndern @@ -24571,7 +25567,7 @@ p, li { white-space: pre-wrap; } Bitte gib einen neuen -- und gültigen -- Dateinamen ein - + Expand all Alle erweitern @@ -24674,42 +25670,47 @@ p, li { white-space: pre-wrap; } Peer - Nachbar + Nachbar Show Peer Column - Peer-Spalte anzeigen + Show Transferred Column - Übertragene Spalte anzeigen + Progress - Fortschritt + Fortschritt Show Progress Column - Fortschrittsspalte anzeigen + - + + <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> + + + + Columns Spalten - + File Transfers Dateiübertragungen - + Path Pfad @@ -24719,7 +25720,7 @@ p, li { white-space: pre-wrap; } Pfadspalte anzeigen - + Could not delete preview file Konnte Vorschaudatei nicht lƶschen @@ -24729,7 +25730,7 @@ p, li { white-space: pre-wrap; } Nochmal versuchen? - + Create Collection... Kollektion erstellen... @@ -24744,17 +25745,17 @@ p, li { white-space: pre-wrap; } Kollektion ansehen... - + Collection Kollektion %1 tunnels - %1 Tunnel + - + Anonymous tunnel 0x Anonymer Tunnel 0x @@ -24787,12 +25788,12 @@ p, li { white-space: pre-wrap; } Show Empty - Leere anzeigen + Temporary shared files - TemporƤre freigegebene Dateien + @@ -24803,7 +25804,7 @@ p, li { white-space: pre-wrap; } Empty - Leer + @@ -24814,7 +25815,7 @@ p, li { white-space: pre-wrap; } Friends Directories [updating...] - Verzeichnisse von Freunden [Aktualisierung...] + @@ -24824,7 +25825,7 @@ p, li { white-space: pre-wrap; } My Directories [updating...] - Meine Verzeichnisse [Aktualisierung...] + @@ -24834,7 +25835,7 @@ p, li { white-space: pre-wrap; } # Files - # Dateien + @@ -24883,7 +25884,7 @@ p, li { white-space: pre-wrap; } Unknown Peer - Unbekannter Nachbar + Unbekannter Nachbar @@ -24927,7 +25928,7 @@ p, li { white-space: pre-wrap; } Request id: %1 %3 secs ago from %2 %4 (%5 hits) - Anfrage-ID: vor %1 %3 Sekunden von %2 %4 (%5 Treffer) + @@ -24973,7 +25974,11 @@ p, li { white-space: pre-wrap; } File transfer tunnels - Dateiübertragungstunnel + + + + Anonymous tunnels + Anonyme Tunnel @@ -24983,7 +25988,7 @@ p, li { white-space: pre-wrap; } GXS sync tunnels - GXS sync Tunnel + @@ -25168,49 +26173,48 @@ p, li { white-space: pre-wrap; } Formular - + Enable Retroshare WEB Interface RetroShare-WeboberflƤche aktivieren - - Status: - Status: - - - + Web parameters Web-Parameter Password: - Passwort: + Web interface directory: - Verzeichnis der Webschnittstelle: + <html><head/><body><p>Select directory for webinterface files (advanced)</p></body></html> - <html><head/><body><p>Verzeichnis für Webinterface-Dateien auswƤhlen (erweitert)</p></body></html> + Apply settings - Einstellungen übernehmen + Start web browser - Starten Sie den Webbrowser + <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> - <html><head/><body><p>Hinweis: Diese Einstellungen haben keinen Einfluss auf den retroshare-Service, der über einen Kommandozeilenschalter verfügt, um die Web-Schnittstelle zu aktivieren und den Listening-Port auszuwƤhlen.</p></body></html> + + + + Port: + Port: @@ -25218,27 +26222,21 @@ p, li { white-space: pre-wrap; } Zugriff von allen IP-Adressen erlauben (standardmäßig nur localhost) - + Apply setting and start browser + Einstellung anwenden und Browser starten + + + Please select the directory were to find retroshare webinterface files - Bitte wƤhlen Sie das Verzeichnis aus, in dem sich die retroshare webui dateien befinden + - - Missing passphrase - Passwort fehlt - - - - Please set a passphrase to proect the access to the WEB interface. - Bitte legen Sie eine Passwort fest, um den Zugriff auf die WEB-Schnittstelle zu schützen. - - - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - + Webinterface not enabled WeboberflƤche nicht aktiviert @@ -25248,12 +26246,12 @@ p, li { white-space: pre-wrap; } Die WeboberflƤche ist nicht aktiviert. Aktivieren Sie sie unter Einstellungen -> WeboberflƤche. - + failed to start Webinterface Start der WeboberflƤche fehlgeschlagen - + Webinterface WeboberflƤche @@ -25374,7 +26372,7 @@ p, li { white-space: pre-wrap; } Cancel - Abbrechen + Abbrechen @@ -25390,7 +26388,11 @@ p, li { white-space: pre-wrap; } Wiki-Seiten - + New Group + Neue Gruppe + + + Page Name Seitenname @@ -25405,7 +26407,7 @@ p, li { white-space: pre-wrap; } Orig. ID - + << << @@ -25462,7 +26464,7 @@ p, li { white-space: pre-wrap; } Create Group - Gruppe erstellen + Gruppe erstellen @@ -25493,7 +26495,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Bearbeitungsverlauf der Seite @@ -25528,7 +26530,7 @@ p, li { white-space: pre-wrap; } Seiten-ID - + \/ \/ @@ -25558,18 +26560,14 @@ p, li { white-space: pre-wrap; } Schlagwƶrter - - History - Verlauf - - - + + Show Edit History Bearbeitungsverlauf anzeigen - + Status Status @@ -25590,7 +26588,7 @@ p, li { white-space: pre-wrap; } RückgƤngig machen - + Submit Absenden @@ -25662,20 +26660,29 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + TimeRange + Create Account - Account erstellen + Post Pulse - Beitrag erstellen + - + + Refresh + Aktualisieren + + + Settings - Einstellungen + @@ -25685,84 +26692,152 @@ p, li { white-space: pre-wrap; } Others - Andere + Andere - + Who to Follow - Wem folgen + HomePage - + < - + > - + - + Most Recent - + Show Posts from - BeitrƤge anzeigen von + All Time - Allzeit + Last 24 hours - Letzte 24 Stunden + Last 7 days - Letzte 7 Tage + Last 30 days - Letzte 30 Tage + - + Last Month + Letzter Monat + + + Last Week + Letzte Woche + + + Today + Heute + + + New + Neu + + + from + von + + + until + bis + + + Search/Filter + Suchen/Filtern + + + Network Wide + Netzwerkweit + + + Manage Accounts + Konten verwalten + + + Showing: + Zeige: + + + Yourself Du + + Friends + Freunde + Following Folgend - + Custom + Benutzerdefiniert + + + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + CheckBox + CheckBox + + + Post Pulse to Wire + Puls an Wire senden + + + RetroShare - RetroShare + RetroShare Please create or choose Wire Groupd first - Bitte erstelle oder wƤhlen Sie ihr Wire Account + The Wire - The Wire + The Wire @@ -25770,37 +26845,37 @@ p, li { white-space: pre-wrap; } Create New Wire - Neuen Account erstellen + Create - Erstellen + Erstellen Wire - + Edit Wire - Account bearbeiten + Update Wire - Account aktualisieren + Add Wire Admins - Admins hinzufügen + Select Wire Admins - Admins auswƤhlen + @@ -25808,44 +26883,37 @@ p, li { white-space: pre-wrap; } Form - Formular + Formular + + + + Masthead + - - MastHead background Image - Hintergrundbild + - + Select Image - Bild auswƤhlen + - + Tagline: - Schlagwort: + - Remove - Entfernen - - - Location: - Ort: + Ort: - + Load Masthead - Hintergrund Bild - - - - Use the mouse to zoom and adjust the image for your background. - Benutzen Sie die Maus, um das Bild zu zoomen und für Ihren Hintergrund anzupassen. + @@ -25853,13 +26921,13 @@ p, li { white-space: pre-wrap; } Form - Formular + Formular Avatar - Avatar + Avatar @@ -25869,12 +26937,12 @@ p, li { white-space: pre-wrap; } Type - Typ + Typ \/ - \/ + \/ @@ -25889,43 +26957,13 @@ p, li { white-space: pre-wrap; } Edit Profile - Profil editieren - - - - Own - Eigene - - - - N/A - - - Following - Folgend - - - - Unfollow - Entfolgen - - - - Other - Andere - - - - Follow - Folgen - misc - + Unknown Unknown (size) Unbekannt @@ -25965,7 +27003,7 @@ p, li { white-space: pre-wrap; } PB petabytes (1024 terabytes) - + @@ -26003,7 +27041,7 @@ p, li { white-space: pre-wrap; } %1J %2T - + k e.g: 3.1 k Ki @@ -26034,15 +27072,19 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) - Bilder (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Bilder (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) pgpid_item_model - + Do you accept connections signed by this profile? - Akzeptieren Sie von diesem Profil signierte Verbindungen? + @@ -26052,22 +27094,22 @@ p, li { white-space: pre-wrap; } This column indicates the trust level you indicated and whether you signed the profile PGP key - In dieser Spalte wird die von Ihnen angegebene Vertrauensstufe angezeigt und ob Sie den PGP-Schlüssel des Profils signiert haben + Did that peer sign your own profile PGP key - Hat dieser Peer Ihren eigenen Profil-PGP-Schlüssel signiert + PGP Key Id of that profile - PGP-Schlüssel-ID dieses Profils + Last time this key was used (received time, or to check connection) - Wann dieser Schlüssel zuletzt verwendet wurde (Empfangszeit oder zur Überprüfung der Verbindung) + @@ -26082,12 +27124,12 @@ p, li { white-space: pre-wrap; } Trust level - Vertrauens Level + Has signed your key? - Haben Sie Ihren Schlüssel signiert? + @@ -26107,17 +27149,17 @@ p, li { white-space: pre-wrap; } Marginally trusted peer - Wenig vertrauenswürdiger Peer + Fully trusted peer - Vƶllig vertrauenswürdige rPeer + Untrusted peer - Nicht vertrauenswürdiger Peer + @@ -26157,7 +27199,7 @@ p, li { white-space: pre-wrap; } Denied - Verweigert + @@ -26168,8 +27210,7 @@ p, li { white-space: pre-wrap; } has authenticated you. Right-click and select 'make friend' to be able to connect. - hat dich authentifiziert. -Klicken Sie mit der rechten Maustaste und wƤhlen Sie ā€žFreundschaft schließenā€œ, um eine Verbindung herzustellen. + @@ -26177,17 +27218,17 @@ Klicken Sie mit der rechten Maustaste und wƤhlen Sie ā€žFreundschaft schließen Plugin disabled. Click the enable button and restart Retroshare - Plugin deaktiviert. Klicken Sie auf die SchaltflƤche "Aktivieren" und starten Sie Retroshare neu + [disabled] - [deaktivert] + [deaktivert] No API number supplied. Please read plugin development manual. - Keine API-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + Keine API-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. @@ -26196,37 +27237,37 @@ Klicken Sie mit der rechten Maustaste und wƤhlen Sie ā€žFreundschaft schließen [loading problem] - [Ladeproblem] + [Ladeproblem] No SVN number supplied. Please read plugin development manual. - Keine SVN-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + Keine SVN-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. Loading error. - Fehler beim Laden. + Fehler beim Laden. Missing symbol. Wrong version? - Fehlendes Symbol. Falsche Version? + Fehlendes Symbol. Falsche Version? No plugin object - Kein Plug-in Objekt + Kein Plug-in Objekt Plugins is loaded. - Plug-in ist geladen. + Plug-in ist geladen. Unknown status. - Unbekannter Status. + Unbekannter Status. @@ -26246,7 +27287,7 @@ schƤdlichem Verhalten von Plug-ins. Plugins - Plug-ins + Plug-ins diff --git a/retroshare-gui/src/lang/retroshare_el.ts b/retroshare-gui/src/lang/retroshare_el.ts index 1b43e7f05..a334a32f9 100644 --- a/retroshare-gui/src/lang/retroshare_el.ts +++ b/retroshare-gui/src/lang/retroshare_el.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Προσθήκη ĻƒĻ‡ĪæĪ»ĪÆĪæĻ… + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Ī£ĻĪ½ĪøĪµĻ„Ī· Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· - + Search Criteria ĪšĻĪ¹Ļ„Ī®ĻĪ¹Ī± Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ - + Add a further search criterion. Προσθήκη κριτηρίου Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ @@ -137,7 +144,7 @@ Επαναφορά κριτηρίου Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ - + Cancels the search. Διακοπη Ī±Ī½Ī±Ī¶Ī·Ļ„Ī·ĻƒĪ·Ļ‚ @@ -157,6 +164,177 @@ Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· + + AlbumCreateDialog + + 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) + Αλλαγή μεγέθους ĪµĪ¹ĪŗĻŒĪ½Ļ‰Ī½ (< 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;"> +<p style=" margin-top:0px; 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;"> 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 + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· εικονιΓιων του άλμπουμ + + AlbumDialog @@ -165,11 +343,19 @@ Album Άλμπουμ + + Album Thumbnail + ΕικονιΓια του άλμπουμ + TextLabel Ετικέτα ĪšĪµĪ¹Ī¼Ī­Ī½ĪæĻ… + + Summary + Περίληψη + Album Title: @@ -185,6 +371,34 @@ 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"> @@ -269,7 +483,7 @@ p, li { white-space: pre-wrap; }āŽ Where: - ĪŒĻ€ĪæĻ…: + @@ -553,7 +767,7 @@ 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. Ī ĻĪæĪµĪ¹Ī“ĪæĻ€ĪæĪÆĪ·ĻƒĪ·: Οι Ļ…Ļ€Ī·ĻĪµĻƒĪÆĪµĻ‚ ĪµĪ“ĻŽ είναι πειραματικές. Ī’ĪæĪ·ĪøĪ®ĻƒĻ„Īµ μας να τις Ī“ĪæĪŗĪ¹Ī¼Ī¬ĻƒĪæĻ…Ī¼Īµ. @@ -569,6 +783,14 @@ p, li { white-space: pre-wrap; } Circles ĪšĻĪŗĪ»ĪæĪ¹ + + GxsForums + GxsForums + + + GxsChannels + GxsChannels + The Wire @@ -580,23 +802,10 @@ p, li { white-space: pre-wrap; } Φωτογραφίες - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + Προσθήκη Άβαταρ + Remove ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· - + Set your Avatar picture ĪŸĻĪ¹ĻƒĪ¼ĻŒĻ‚ ĪµĪ¹ĪŗĻŒĪ½Ī±Ļ‚ Avatar @@ -658,6 +871,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + ĪœĪµĻ„Ī±Ļ†ĻŒĻĻ„Ļ‰ĻƒĪ· μικρογραφίας + AvatarWidget @@ -726,10 +943,22 @@ p, li { white-space: pre-wrap; } Επαναφορά - + Receive Rate + Rate ελλειφθει + + + Send Rate + Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī· Rate + + + Always on Top Παντα Ī¼Ļ€ĻĪæĻƒĻ„Ī± + + Style + Στιλ + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ p, li { white-space: pre-wrap; } % Opaque % ΑΓιαφανεια + + Save + Ī‘Ļ€ĪæĪøĪ®ĪŗĪµĻ…ĻƒĪ· + + + Cancel + Διακοπη + Since: Ī‘Ļ€ĻŒ: + + Hide Settings + Ī‘Ļ€ĻŒĪŗĻĻ…ĻˆĪ· ĻĻ…ĪøĪ¼ĪÆĻƒĪµĻ‰Ī½ + BandwidthStatsWidget @@ -822,9 +1063,9 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment - Ī£Ļ‡ĻŒĪ»Ī¹Īæ + @@ -852,12 +1093,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -865,7 +1106,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -885,7 +1126,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -923,7 +1164,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -943,7 +1184,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -973,7 +1214,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status Ī‘Ī½Ī±Ī³Ī½Ļ‰ĻƒĪ· ĪŗĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ·Ļ‚ της εναλλαγης μυνηματος @@ -983,7 +1224,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -991,12 +1232,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this ĪœĪæĻ… αρέσει - + 0 0 @@ -1016,18 +1257,18 @@ p, li { white-space: pre-wrap; } ΕικονιΓιο - + New Comment - + Copy RetroShare Link - + Expand @@ -1042,19 +1283,19 @@ p, li { white-space: pre-wrap; } - + Name - + Comm value Comment - Ī£Ļ‡ĻŒĪ»Ī¹Īæ + @@ -1216,17 +1457,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels Κανάλια - + Tabs ĪšĪ±ĻĻ„Ī­Ī»ĪµĻ‚ - + General Γενικά @@ -1236,17 +1477,7 @@ p, li { white-space: pre-wrap; } - - Downloads - Ī›Ī®ĻˆĪµĪ¹Ļ‚ - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Άνοιγμα κάθε ĪŗĪ±Ī½Ī±Ī»Ī¹ĪæĻ σε νέα καρτέλα @@ -1254,7 +1485,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1277,7 +1508,7 @@ into the image, so as to ChannelsCommentsItem - + I like this ĪœĪæĻ… αρέσει @@ -1302,18 +1533,18 @@ into the image, so as to ΕικονιΓιο - + New Comment - + Copy RetroShare Link - + Expand @@ -1328,7 +1559,7 @@ into the image, so as to - + Name @@ -1338,7 +1569,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1346,7 +1587,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1537,7 +1778,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ· του προθαλαμου ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ļ‰Ī½ @@ -1549,6 +1790,22 @@ into the image, so as to Chats + + You have %1 new messages + ĪˆĻ‡ĪµĻ„Īµ %1 νέα Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„Ī± + + + You have %1 new message + ĪˆĻ‡ĪµĻ„Īµ %1 νέο μήνυμα + + + %1 new messages + %1 νέα Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„Ī± + + + %1 new message + %1 νέο μήνυμα + You have %1 mentions @@ -1570,14 +1827,13 @@ into the image, so as to - - + Unknown Lobby Ī†Ī³Ī½Ļ‰ĻƒĻ„Ī· Ī‘ĪÆĪøĪæĻ…ĻƒĪ± - - + + Remove All Ī‘Ļ†Ī±ĪÆĻĪµĻƒĪ· ĪŒĪ»Ļ‰Ī½ @@ -1585,13 +1841,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Όνομα - + Count Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĪ¼ĪæĻ‚ @@ -1601,7 +1857,29 @@ into the image, so as to Θέμα - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1611,7 +1889,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1668,12 +1946,12 @@ 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: @@ -1683,31 +1961,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Δημιουργια προθαλαμου ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ļ‰Ī½ + + + [No topic provided] [Δεν υπαρχει κανενα θεμα] - - + Selected lobby info + Πληροφοριες επιλεγμενου προθαλαμου ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ļ‰Ī½ + + + Private ΙΓιωτικα - - - + Public Ī”Ī·Ī¼ĪæĻƒĪ¹Ī± - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1717,25 +1995,42 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĻƒĻ„Ī¹Ļ‚ Ī‘ĪÆĪøĪæĻ…ĻƒĪµĻ‚ Συνομιλίας - + Search Name Ī‘Ī½Ī¶Ī®Ļ„Ī·ĻƒĪ· ĪŸĪ½ĻŒĪ¼Ī±Ļ„ĪæĻ‚ - + Subscribed + Εγγεγραμμένος + + + Columns Στήλες + + Yes + ĪĪ±Ī¹ + + + No + ĪŒĻ‡Ī¹ + Chat rooms @@ -1747,47 +2042,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: Θέμα: - + Type: Τυπος: - + Security: Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±: - + Peers: - - - - - - + + + + + + TextLabel Ετικετα κειμενου @@ -1802,24 +2097,13 @@ Double click a chat room to enter and chat. Δεν υπάρχουν Ī±Ī½ĻŽĪ½Ļ…Ī¼ĪµĻ‚ Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„ĪµĻ‚ - + Show Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· - - Private Subscribed - - - - - - Public Subscribed - - - - + column ĻƒĻ„Ī®Ī»Ī· @@ -1833,7 +2117,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Ī‘Ļ€ĪæĪ¼Ī±ĪŗĻĻ…Ī½ĻƒĪ· ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪ¹ĪæĻ… @@ -1878,7 +2162,7 @@ Double click a chat room to enter and chat. ChatPage - + General Γενικά @@ -1893,7 +2177,19 @@ Double click a chat room to enter and chat. - + Chat Settings + Ī”Ļ…ĪøĪ¼Ī¹ĻƒĪµĪ¹Ļ‚ ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ļ‰Ī½ + + + Enable Emoticons Private Chat + Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Emoticons Private Chat + + + Enable Emoticons Group Chat + Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪ¹Ī·ĻƒĪ· της ομαΓικης ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ī±Ļ‚ με εικονιΓια + + + Enable custom fonts Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ļ€ĻĪæĻƒĪ±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½Ļ‰Ī½ Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĻ‰Ī½ @@ -1902,6 +2198,10 @@ Double click a chat room to enter and chat. Enable custom font size Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ļ€ĻĪæĻƒĪ±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½ĪæĻ… μέγεθους Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĻ‰Ī½ + + Minimum font size + Ī•Ī»Ī¬Ļ‡Ī¹ĻƒĻ„Īæ μέγεθος Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ + Enable bold @@ -1913,7 +2213,7 @@ Double click a chat room to enter and chat. Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· πλάγιας γραφής - + General settings @@ -1938,7 +2238,11 @@ Double click a chat room to enter and chat. - + Chat Lobby + Chat Ī»ĻŒĪ¼Ļ€Ī¹ + + + Blink tab icon Ī‘Ī½Ī±Ī²ĪæĻƒĪ²Ī®Ī½ĪµĪ¹ το εικονίΓιο ĻƒĻ„Ī·Ī»ĪæĪøĪ­Ļ„Ī· @@ -1947,6 +2251,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + ΙΓιωτικη ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»Ī¹Ī± + Open Window for new chat @@ -1968,7 +2276,11 @@ Double click a chat room to enter and chat. Ī‘Ī½Ī±Ī²ĪæĻƒĪ²Ī®Ī½ĪµĪ¹ το εικονίΓιο παράθυρου/tab - + Chat Font + Ī“ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬ ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚ + + + Change Chat Font Αλλαγή της Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ της ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚ @@ -1978,10 +2290,14 @@ Double click a chat room to enter and chat. Ī“ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬ ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚: - + History Ī™ĻƒĻ„ĪæĻĪ¹ĪŗĻŒ + + Style + Στιλ + @@ -1996,13 +2312,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + ΟμαΓική ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ± + Private chat ΙΓιωτική ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ± - + Choose your default font for Chat. @@ -2072,22 +2392,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2097,17 +2407,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2154,7 +2454,7 @@ Double click a chat room to enter and chat. Description: - Περιγραφη: + @@ -2204,7 +2504,11 @@ Double click a chat room to enter and chat. ĪœĪ­Ī³Ī¹ĻƒĻ„Ī· περίοΓος Ī±Ļ€ĪæĪøĪ®ĪŗĪµĻ…ĻƒĪ·Ļ‚, σε μέρες (0 = κράτα όλα) - + Search by default + Προκαθορισμένη Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· + + + Case sensitive Ī”Ī¹Ī¬ĪŗĻĪ¹ĻƒĪ· Ļ€ĪµĪ¶ĻŽĪ½-κεφαλαίων @@ -2243,6 +2547,10 @@ Double click a chat room to enter and chat. Threshold for automatic search + + Default identity for chat lobbies: + Προκαθορισμένη Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī± για της Ī±ĪÆĪøĪæĻ…ĻƒĪµĻ‚ ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚: + Show Bar by default @@ -2310,7 +2618,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚ @@ -2346,7 +2654,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Κλεισιμο @@ -2381,12 +2689,12 @@ Double click a chat room to enter and chat. Italic - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2466,6 +2774,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2503,7 +2816,7 @@ Double click a chat room to enter and chat. - + is typing... γράφει... @@ -2525,7 +2838,7 @@ after HTML conversion. - + Do you really want to physically delete the history? Ī˜Ī­Ī»ĪµĻ„Īµ πραγματικά να Ī“Ī¹Ī±Ī³ĻĪ¬ĻˆĪµĻ„Īµ το Ī¹ĻƒĻ„ĪæĻĪ¹ĪŗĻŒ; @@ -2575,7 +2888,7 @@ after HTML conversion. Είναι Ī±Ļ€Ī±ĻƒĻ‡ĪæĪ»Ī·Ī¼Ī­Ī½ĪæĻ‚ και Γεν μπορεί να Ī±Ļ€Ī±Ī½Ļ„Ī®ĻƒĪµĪ¹ - + Find Case Sensitively @@ -2597,7 +2910,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Ī•ĻĻĪµĻƒĪ· Ī ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½ĪæĻ… </b><br/><i>Ctrl+Shift+G</i> @@ -2612,12 +2925,16 @@ after HTML conversion. <b>Ī•ĻĻĪµĻƒĪ·</b><br/><i>Ctrl+F</i> - + (Status) (ĪšĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·) - + Set text font & color + ĪšĪ±ĪøĪæĻĪ¹ĻƒĪ¼ĻŒĻ‚ Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ & Ļ‡ĻĻŽĪ¼Ī±Ļ„ĪæĻ‚ κειμένου + + + Attach a File Ī•Ļ€Ī¹ĻƒĻĪ½Ī±ĻˆĪ· αρχείου @@ -2633,12 +2950,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Ī•Ļ€Ī¹ĻƒĪ®Ī¼Ī±Ī½ĻƒĪ· επιλεγμένου κειμένου</b><br><i>Ctrl+M</i> - + Person id: @@ -2649,12 +2966,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪÆĪ± βρέθηκαν. @@ -2674,7 +2991,7 @@ Double click on it to add his name on text writer. Ī Ī»Ī·ĪŗĻ„ĻĪæĪ»ĪæĪ³ĪµĪÆĻƒĻ„Īµ μήνυμα ĪµĪ“ĻŽ - + Don't stop to color after @@ -2700,7 +3017,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· Ī»ĪµĻ€Ļ„ĪæĪ¼ĪµĻĪµĪ¹ĻŽĪ½: @@ -2722,7 +3039,7 @@ Double click on it to add his name on text writer. - + Personal Circles Ī ĻĪæĻƒĻ‰Ļ€Ī¹ĪŗĪæĪÆ ĪŗĻĪŗĪ»ĪæĪ¹ @@ -2748,7 +3065,7 @@ Double click on it to add his name on text writer. - + Friends Φίλοι @@ -2808,7 +3125,7 @@ Double click on it to add his name on text writer. Φίλοι φίλων - + External Circles (Admin) @@ -2824,7 +3141,7 @@ Double click on it to add his name on text writer. - + Circles ĪšĻĪŗĪ»ĪæĪ¹ @@ -2876,40 +3193,40 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. Σφάλμα: οι peer λεπτομέρειες Γεν μπορουν να παρθουν. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2919,7 +3236,7 @@ Double click on it to add his name on text writer. ĪšĻĻ…Ļ€Ļ„ĪæĪ³ĻĪ¬Ļ†Ī·ĻƒĪ· - + Not connected Μη ĻƒĻ…Ī½Ī“ĪµĪ“ĪµĪ¼Ī­Ī½ĪæĻ‚ @@ -3001,22 +3318,17 @@ 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>Ī· <b>Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī± του ĪŗĻŒĪ¼Ī²ĪæĻ…</b> και <b>όνομα</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3036,7 +3348,7 @@ Double click on it to add his name on text writer. - + with με @@ -3053,16 +3365,104 @@ 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 + &Δημιουργια φίλου με επιλεγμένους φίλους Ī±Ļ€ĻŒ τους φίλους μου + + + Include signatures + Περιλαμβάνουν υπογραφές + + + Copy your Cert to Clipboard + Ī‘Ī½Ļ„Ī¹Ī³ĻĪ¬ĻˆĪµĻ„Īµ ĻƒĪ±Ļ‚ Cert Ļ€ĻĻŒĻ‡ĪµĪ¹ĻĪæ + + + Save your Cert into a File + Ī‘Ļ€ĪæĪøĪ·ĪŗĪµĻĻƒĪµĻ„Īµ Cert ĻƒĪ±Ļ‚ σε ένα αρχείο + + + Run Email program + Ī•ĪŗĻ„ĪµĪ»Ī­ĻƒĻ„Īµ το Ļ€ĻĻŒĪ³ĻĪ±Ī¼Ī¼Ī± Ī·Ī»ĪµĪŗĻ„ĻĪæĪ½Ī¹ĪŗĪæĻ ταχυΓρομείου + Open Cert of your friend from File + + Certificate files + Αρχεία Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ + + + Use PGP certificates saved in files. + Χρήση Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĻŽĪ½ PGP αποθηκευμένα σε αρχεία. + + + 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 RetroShare ID + + Use RetroShare ID for adding a Friend which is available in your network. + Χρήση RetroShare ID για την Ļ€ĻĪæĻƒĪøĪ®ĪŗĪ· ĪµĪ½ĻŒĻ‚ φίλου που είναι Γιαθέσιμα ĻƒĻ„Īæ Ī“ĪÆĪŗĻ„Ļ…ĻŒ ĻƒĪ±Ļ‚. + + + Add Friends RetroShare ID... + Προσθηκη των RetroShare ID... + + + Paste Friends RetroShare ID in the box below + Ī•Ļ€Ī¹ĪŗĻŒĪ»Ī»Ī·ĻƒĪ· τους φίλους eMule ομάΓα + Ultra ID ĻƒĻ„Īæ παρακάτω Ļ€Ī»Ī±ĪÆĻƒĪ¹Īæ + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Ī•Ī¹ĻƒĪ±Ī³Ī¬Ī³ĪµĻ„Īµ το RetroShare ID του φίλου ĻƒĪ±Ļ‚, Ļ€.χ. Peer@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3104,7 +3504,27 @@ Double click on it to add his name on text writer. Email - + Invite Friends by Email + Πρόσκληση φίλων μέ Email + + + Enter your friends' email addresses (separate each one with a semicolon) + Ī•Ī¹ĻƒĪ±Ī³Ļ‰Ī³Ī· email Ī“Ī¹ĪµĻ…ĪøĻĪ½ĻƒĪµĻ‰Ī½ των φιλων ĻƒĪ±Ļ‚ (Ī¾ĪµĻ‡Ļ‰ĻĪ¹ĻƒĻ„Ī¬ τον καθένα με ένα ĪµĻĻ‰Ļ„Ī·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ) + + + Your friends' email addresses: + Ī— Email Ī“Ī¹ĪµĻ…ĪøĻ…Ī½ĻƒĪ· των φιλων ĻƒĪ±Ļ‚: + + + Enter Friends Email addresses + Ī•Ī¹ĻƒĪ±Ī³ĪµĻ„Īµ τις Email Ī“Ī¹ĪµĻ…ĪøĻ…Ī½ĻƒĪµĪ¹Ļ‚ φιλων + + + Subject: + Θέμα: + + + @@ -3120,32 +3540,44 @@ Double click on it to add his name on text writer. Λεπτομέρειες ĻƒĻ‡ĪµĻ„Ī¹ĪŗĪ¬ με το αίτημα - + Peer details Peer λεπτομέρειες - + Name: Όνομα: + + Email: + Email: + + + Node: + ĪšĻŒĪ¼Ī²ĪæĻ‚: + Location: Ī¤ĪæĻ€ĪæĪøĪµĻƒĪÆĪ±: - + Options Επιλογές - + Enter the certificate manually + Ī•Ī¹ĻƒĪ¬Ī³ĪµĻ„Ī±Ī¹ το Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĻŒ Ļ‡ĪµĪ¹ĻĪæĪ½Ī±ĪŗĻ„Ī¹ĪŗĻŒĻ‚ + + + <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: Προσθηκη φίλου ĻƒĻ„Ī·Ī½ ΟμάΓα: @@ -3155,7 +3587,7 @@ Double click on it to add his name on text writer. ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚ Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ φίλου (υπογραφη PGP κλειΓίου) - + Please paste below your friend's Retroshare ID @@ -3180,22 +3612,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Πρόσθηκη ως φίλο-για να ĻƒĻ…Ī½Ī“ĪµĪøĪµĪÆĻ„Īµ με - + To accept the Friend Request, click the Finish button. + Για να αποΓεχθείε την Ī±ĪÆĻ„Ī·ĻƒĪ· του φίλου, Ļ€Ī±Ļ„Ī®ĻƒĻ„Īµ το Ļ€Ī»Ī±Ī¹ĻƒĪ¹Īæ Τέλος. + + + Sorry, some error appeared Ī£Ļ…Ī³Ī³Ī½ĻŽĪ¼Ī·, ĪµĪ¼Ļ†Ī±Ī½ĪÆĻƒĻ„Ī·ĪŗĻ‚ κάποιο ĻƒĻ†Ī±Ī»Ī¼Ī± @@ -3215,27 +3641,32 @@ Double click on it to add his name on text writer. Λεπτομέρειες ĻƒĻ‡ĪµĻ„Ī¹ĪŗĪ¬ με τον φίλο ĻƒĪ±Ļ‚: - + Key validity: Ī™ĻƒĻ‡ĻĻ‚ ĪŗĪ»ĪµĪ¹Ī“Ī¹ĪæĻ: - + Profile ID: - + + 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. Ī‘Ļ…Ļ„ĻŒĻ‚ Īæ ĪæĪ¼ĻŒĻ„Ī¹Ī¼ĪæĻ‚ είναι ήΓη ĻƒĻ„Ī·Ī½ Ī»Ī¹ĻƒĻ„Ī± φιλων. Ī ĻĪæĻƒĪøĪ­Ļ„ĪæĪ½Ļ„Ī±Ļ‚ μπορεί να ĻĻ…ĪøĪ¼Ī¹ĻƒĻ„ĪµĪÆ μόνο Ī· Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· ip. - + To accept the Friend Request, click the Accept button. @@ -3281,17 +3712,45 @@ Double click on it to add his name on text writer. - + Certificate Load Failed Ī— Ļ†ĪæĻĻ„Ļ‰ĻƒĪ· του Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ… απετυχε - + Cannot get peer details of PGP key %1 + Οι peer λεπτομέρειες του κλειΓιου 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 + Peer id + + + Not a valid Retroshare certificate! - + RetroShare Invitation Πρόσκληση RetroShare @@ -3311,12 +3770,12 @@ 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? - + @@ -3324,7 +3783,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3364,7 +3823,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ĪˆĻ‡ĪµĻ„Īµ ένα αίτημα φίλιας Ī±Ļ€ĻŒ - + Profile password needed. @@ -3389,7 +3848,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3399,7 +3858,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + Ī— Ļ†ĪæĻĻ„Ļ‰ĻƒĪ· του Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ… απετυχε: αρχείο %1 Γεν βρέθηκε + + + This Peer %1 is not available in your Network + Ī‘Ļ…Ļ„ĻŒĻ‚ Īæ ĪæĪ¼ĻŒĻ„Ī¹Ī¼ĪæĻ‚ %1 Γεν είναι Ī“Ī¹Ī±ĪøĪ­ĻƒĪ¹Ī¼ĪæĻ‚ ĻƒĻ„Īæ Ī“ĪÆĪŗĻ„Ļ…ĻŒ ĻƒĪ±Ļ‚ + + + Use new certificate format (safer, more robust) + Χρήση νέας μορφής Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ (Ī±ĻƒĻ†Ī±Ī»Ī­ĻƒĻ„ĪµĻĪ·, πιο Ī¹ĻƒĻ‡Ļ…ĻĪ®) + + + Use old (backward compatible) certificate format + Χρήση παλιάς μορφής Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ (ĻƒĻ…Ī¼Ī²Ī±Ļ„Ī®) + + + Remove signatures + Ī‘Ļ†Ī±Ī¹ĻĪ­ĻƒĪ· υπογραφων + + + RetroShare Invite + Πρόσκληση RetroShare + + + Connect Friend Help + Βοήθεια ĻƒĻ…Ī½Ī“ĪµĻƒĪ·Ļ‚ με φίλο + + + You can copy this text and send it to your friend via email or some other way + ĪœĻ€ĪæĻĪµĪÆĻ„Īµ να Ī±Ī½Ļ„Ī¹Ī³ĻĪ¬ĻˆĪµĻ„Īµ το κείμενο και να το ĻƒĻ„ĪµĪÆĪ»ĪµĻ„Īµ σε φίλο ĻƒĪ±Ļ‚ Ī¼Ī­ĻƒĻ‰ email Ī® με κάποιο άλλον Ļ„ĻĻŒĻ€Īæ + + + 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 (*) @@ -3438,7 +3937,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** ĪšĪ±Ī½Ī­Ī½Ī±Ļ‚ *** - + Use as direct source, when available + Use as direct source, when available + + + IP-Addr: @@ -3448,7 +3951,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· IP - + Show Advanced options @@ -3467,13 +3970,33 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> + + Friend Recommendations + Ī£Ļ…ĻƒĻ„Ī¬ĻƒĪµĪ¹Ļ‚ Φίλων + + + Message: + ĪœĪ®Ī½Ļ…Ī¼Ī±: + + + Recommend friends + Προτείνετε φίλους + + + To + Προς + + + Please select at least one friend as recipient. + Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ επιλέξτε Ļ„ĪæĻ…Ī»Ī¬Ļ‡Ī¹ĻƒĻ„ĪæĪ½ ένα φίλο ως παραλήπτη. + Add key to keyring - + This key is already in your keyring @@ -3486,7 +4009,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3521,7 +4044,7 @@ even if you don't make friends. Πρόσθεση του IP ĻƒĻ„Ī·Ī½ Ī»ĪÆĻƒĻ„Ī± αποΓοχής - + No IP in this certificate! @@ -3531,7 +4054,12 @@ even if you don't make friends. - + + [Unknown] + [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] + + + Added with certificate from %1 @@ -3596,7 +4124,7 @@ even if you don't make friends. - + UDP Setup @@ -3624,7 +4152,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3634,20 +4162,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State Ī†Ī³Ī½Ļ‰ĻƒĻ„Ī· ĪšĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ· - - + Offline Χωρίς ĻƒĻĪ½Ī“ĪµĻƒĪ· - - + Behind Symmetric NAT @@ -3657,14 +4182,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3674,8 +4197,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3700,7 +4222,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3992,7 +4514,7 @@ p, li { white-space: pre-wrap; } - + @@ -4000,8 +4522,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! @@ -4011,7 +4532,7 @@ p, li { white-space: pre-wrap; } - + Searching Γίνεται Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· @@ -4047,12 +4568,12 @@ p, li { white-space: pre-wrap; } Λεπτομέρειες ĪŗĻĪŗĪ»ĪæĻ… - + 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> @@ -4072,7 +4593,7 @@ p, li { white-space: pre-wrap; } - + IDs Ī¤Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„ĪµĻ‚ @@ -4092,18 +4613,18 @@ p, li { white-space: pre-wrap; } Φίλτρο - + Cancel - + Nickname ĪØĪµĻ…Ī“ĻŽĪ½Ļ…Ī¼Īæ - + Invited Members @@ -4118,7 +4639,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + Τυπος + + + Name: @@ -4158,19 +4687,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle ĪŸĻĪÆĻƒĻ„Īµ ένα όνομα για τον ĪŗĻĪŗĪ»Īæ ĻƒĪ±Ļ‚ - + No Restriction Circle Selected ĪšĪ±Ī½Ī­Ī½Ī±Ļ‚ Ļ€ĪµĻĪ¹ĪæĻĪ¹ĻƒĪ¼ĻŒĻ‚ ĪŗĻĪŗĪ»ĪæĻ… εχει επιλέγθει @@ -4180,24 +4709,12 @@ p, li { white-space: pre-wrap; } Δεν υπάρχουν Ļ€ĪµĻĪ¹ĪæĻĪ¹ĻƒĪ¼ĪæĪÆ επιλεγμένου ĪšĻĪŗĪ»ĪæĻ… - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] - + Add Προσθηκη @@ -4207,7 +4724,7 @@ p, li { white-space: pre-wrap; } Ī‘Ļ†Ī±ĪÆĻĪµĻƒĪ· - + Search Ī‘Ī½Ī±Ī¶Ī·Ļ„Ī·ĻƒĪ· @@ -4260,13 +4777,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4285,7 +4802,7 @@ p, li { white-space: pre-wrap; } Δημιουργια μιας ομαΓας - + Group Name: Όνομα ομάΓας: @@ -4320,7 +4837,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post ĪĪµĪæ Ļ€ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± ĻƒĻ„Īæ καναλι @@ -4330,7 +4847,7 @@ p, li { white-space: pre-wrap; } Ī ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± ĻƒĻ„Īæ καναλι - + Post @@ -4391,11 +4908,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;"><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 : + Θέμα: + @@ -4481,17 +5010,17 @@ p, li { white-space: pre-wrap; }āŽ - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4510,18 +5039,17 @@ p, li { white-space: pre-wrap; }āŽ The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Το αρχείο εχει Ļ€ĻĪæĻƒĪøĪ­ĪøĪµĪ¹ και κατακερματίζεται + Please add a Subject Παρακαλείσθε να Ļ€ĻĪæĻƒĪøĪ­ĻƒĪµĻ„Īµ ένα θέμα - - Cannot publish post - - - - + Load thumbnail picture Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· εικονιΓιου εικονας @@ -4536,12 +5064,18 @@ p, li { white-space: pre-wrap; }āŽ - + + 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? Ī•ĪÆĻƒĻ„Īµ έτοιμοι να Ļ€ĻĪæĻƒĪøĪ­ĻƒĪµĻ„Īµ τα αρχεία που ĻƒĻ„Ī·Ī½ Ļ€ĻĪ±Ī³Ī¼Ī±Ļ„Ī¹ĪŗĻŒĻ„Ī·Ļ„Ī± Γεν Ī¼ĪæĪ¹ĻĪ¬Ī¶ĪµĻƒĻ„Īµ. Ī•ĪÆĻƒĻ„Īµ βέβαιοι ĻŒĻ„Ī¹ θέλετε να ĻƒĻ…Ī¼Ī²ĪµĪÆ Ī±Ļ…Ļ„ĻŒ; @@ -4575,7 +5109,7 @@ p, li { white-space: pre-wrap; }āŽ CreateGxsForumMsg - + Post Forum Message Ī ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± μυνηματος ĻƒĻ„Īæ φορουμ @@ -4584,6 +5118,10 @@ p, li { white-space: pre-wrap; }āŽ Forum Φορουμ + + Subject + Θέμα: + Attach File @@ -4604,8 +5142,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4624,7 +5162,7 @@ p, li { white-space: pre-wrap; } ĪœĻ€ĪæĻĪµĪÆĻ„Īµ να ĪµĻ€Ī¹ĻƒĻ…Ī½Ī¬ĻˆĪµĻ„Īµ αρχεία Ī¼Ī­ĻƒĻ‰ drag and drop σε Ī±Ļ…Ļ„ĻŒ το παράθυρο - + Post @@ -4654,17 +5192,17 @@ p, li { white-space: pre-wrap; } - + No Forum Κανενα Ļ†ĻŒĻĪæĻ…Ī¼ - + In Reply to Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· ĻƒĻ„ĪæĪ½ - + Title Τίτλος @@ -4717,7 +5255,7 @@ Do you want to discard this message? Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· αρχειου εικονας - + No compatible ID for this forum @@ -4727,8 +5265,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4737,6 +5275,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? + + Send + Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī· + Post as @@ -4751,7 +5293,23 @@ Do you want to discard this message? CreateLobbyDialog - + 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. + Ένα chat Ī»ĻŒĪ¼Ļ€Ī¹ είναι μια αποκεντρωμένη και Ī±Ī½ĻŽĪ½Ļ…Ī¼Ī· ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ± ομάΓας. Όλοι οι ĻƒĻ…Ī¼Ī¼ĪµĻ„Ī­Ļ‡ĪæĪ½Ļ„ĪµĻ‚ Γέχονται όλα τα Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„Ī±. Ī‘Ļ†ĪæĻ Γημιουργηθεί το Ī»ĻŒĪ¼Ļ€Ī¹ μπορείτε να Ļ€ĻĪæĻƒĪŗĪ±Ī»Ī­ĻƒĪµĻ„Īµ άλλους φίλους Ī±Ļ€ĻŒ την καρτέλα "φίλοι". + + + Lobby name: + Ονομα προθαλαμου: + + + Lobby topic: + Θεμα προθαλαμου: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4786,7 +5344,7 @@ Do you want to discard this message? - + Create @@ -4796,7 +5354,7 @@ Do you want to discard this message? - + require PGP-signed identities @@ -4811,7 +5369,11 @@ Do you want to discard this message? Επιλέξτε τους φίλους με τους οποιους θέλετε να κανετε μια ομαΓική ĻƒĻ…Ī¶Ī®Ļ„Ī·ĻƒĪ·. - + Invited friends + Προσκληση φιλων + + + Create Chat Room @@ -4832,7 +5394,7 @@ Do you want to discard this message? Επαφες: - + Identity to use: @@ -4840,17 +5402,17 @@ Do you want to discard this message? CryptoPage - + Public Information Ī”Ī·Ī¼ĪæĻƒĪ¹ĪµĻ‚ πληροφοριες - + Name: Ονομα: - + Location: Τοπος: @@ -4860,12 +5422,12 @@ Do you want to discard this message? ID Τοπου: - + Software Version: ΈκΓοση Ī»ĪæĪ³Ī¹ĻƒĪ¼Ī¹ĪŗĪæĻ: - + Online since: Online Ī±Ļ€ĻŒ: @@ -4885,7 +5447,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4895,7 +5462,7 @@ Do you want to discard this message? - + Other Information Άλλες πληροφορίες @@ -4905,12 +5472,17 @@ Do you want to discard this message? - + Profile - + + Certificate + Ī Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĻŒ + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4920,7 +5492,11 @@ Do you want to discard this message? Περιλαμβάνουν υπογραφές - + Save Key into a file + Ī‘Ļ€ĪæĪøĪ·ĪŗĪµĻĻƒĻ„Īµ το κλειΓί σε ένα αρχείο + + + Export Identity Εξαγωγή Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ @@ -4990,33 +5566,33 @@ and use the import button to load it - + TextLabel Ετικετα κειμενου - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5106,7 +5682,7 @@ and use the import button to load it DLListDelegate - + B Ī’ @@ -5774,7 +6350,7 @@ and use the import button to load it DownloadToaster - + Start file Έναρξη αρχείου @@ -5782,38 +6358,38 @@ and use the import button to load it ExprParamElement - + - + to να - + ignore case ανεξαρτήτως Ļ€ĪµĪ¶ĻŽĪ½ - - - yyyy-MM-dd - + + + dd.MM.yyyy + ΑΔ.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5821,12 +6397,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget ĪˆĪŗĻ†ĻĪ±ĻƒĪ· Widget - + Delete this expression Διαγράφη αυτής της Ī­ĪŗĻ†ĻĪ±ĻƒĪ·Ļ‚ @@ -5988,7 +6564,7 @@ and use the import button to load it FilesDefs - + Picture Εικονα @@ -5998,7 +6574,7 @@ and use the import button to load it Βιντεο - + Audio Ήχος @@ -6058,21 +6634,11 @@ and use the import button to load it C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories ĪšĪ±Ļ„Ī±Ī»ĪæĪ³ĪæĪ¹ φιλων @@ -6194,7 +6760,7 @@ and use the import button to load it - + ID ID @@ -6236,7 +6802,7 @@ and use the import button to load it Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· ομάΓων - + Group ΟμάΓα @@ -6272,7 +6838,7 @@ and use the import button to load it Προσθηκη σε ομαΓα - + Search Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· @@ -6288,7 +6854,7 @@ and use the import button to load it - + Profile details @@ -6501,7 +7067,7 @@ at least one peer was not added to a group To - Στον + @@ -6527,7 +7093,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request Ī•Ļ€Ī¹Ī²ĪµĪ²Ī±ĪÆĻ‰ĻƒĪ· αίτημα φίλου @@ -6544,6 +7110,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + Ī‘Ī½Ī±Ī¶Ī·Ļ„Ī·ĻƒĪ· : + Sort by state @@ -6565,7 +7135,7 @@ at least one peer was not added to a group Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· φίλων - + Mark all Ī•Ļ€Ī¹ĻƒĪ·Ī¼Ī¬Ī½ĻƒĪ· ĻŒĪ»Ļ‰Ī½ @@ -6576,132 +7146,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Δημιουργια φιλου - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪ¹Ī± μήνυματος ĪŗĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·Ļ‚ - - + + Broadcast ΔαΓιοφωνική Ī¼ĪµĻ„Ī¬Ī“ĪæĻƒĪ· @@ -6784,38 +7238,33 @@ Also check your ports! Επαναφορα της προεπιλεγμενης Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ±Ļ‚ - + 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 Δίκτυο - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6833,17 +7282,7 @@ Also check your ports! ĪšĻ‰Ī“Ī¹ĪŗĪæĻ‚ - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Τα πεΓία είναι υποχρεωτικά με Ļ„ĪæĻ…Ī»Ī¬Ļ‡Ī¹ĻƒĻ„ĪæĪ½ 3 χαρακτήρες @@ -6853,12 +7292,17 @@ Also check your ports! - + Port ΄ποΓοχη - + + Use BOB + + + + This password is for PGP @@ -6879,38 +7323,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6930,12 +7374,12 @@ Also check your ports! - + <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 @@ -6945,43 +7389,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7025,13 +7464,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7041,7 +7480,7 @@ and use the import button to load it - + Tor/I2P address @@ -7076,7 +7515,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7086,7 +7525,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7096,7 +7540,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7322,13 +7771,36 @@ and use the import button to load it ĪžĪµĪŗĪ¹Ī½ĻŽĪ½Ļ„Ī±Ļ‚ - + 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;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">āŽ +<html><head><meta name="qrichtext" content="1" /><style type="text/css">āŽ +p, li { white-space: pre-wrap; }āŽ +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of shared folders. You can add and remove folders using the buttons at the bottom.</span></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">When you add a new folder, intially all files in that folder are shared.</span></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory:</span><span style=" font-size:8pt;"> </span></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">Browsable</span><span style=" font-family:'Sans'; font-size:8pt;">: files are browsable from your direct friends.</span></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">Network Wide</span><span style=" font-family:'Sans'; font-size:8pt;">: files can be downloaded by anybody through anonymous tunnels.</span></p></body></html> + + + + Add Your Friends to RetroShare Ī ĻĪæĻƒĪøĪµĻƒĻ„Īµ του φιλους ĻƒĪ±Ļ‚ ĻƒĻ„Īæ RetroShare @@ -7338,103 +7810,89 @@ and use the import button to load it Προσθηκη φιλων - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Για προχωρημένους: Ανοιγμα της υποΓοχης του Firewall - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + ΣυνΓεθείτε με τους φίλους + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Για προχωρημένους: Ανοιγμα της υποΓοχης του Firewall + + + Further Help and Support Περαιτέρω βοήθεια και Ļ…Ļ€ĪæĻƒĻ„Ī®ĻĪ¹Ī¾Ī· - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Ανοιγμα της RS Ī™ĻƒĻ„ĪæĻƒĪµĪ»Ī¹Ī“Ī±Ļ‚ @@ -7459,7 +7917,7 @@ p, li { white-space: pre-wrap; } Email Ī±Ī½Ī±Ļ„ĻĪæĻ†ĪæĪ“ĻŒĻ„Ī·ĻƒĪ· - + RetroShare Invitation RetroShare Προσκληση @@ -7509,12 +7967,12 @@ p, li { white-space: pre-wrap; } RetroShare Ī±Ī½Ī±Ļ„ĻĪæĻ†ĪæĪ“ĻŒĻ„Ī·ĻƒĪ· - + RetroShare Support Ī„Ļ€ĪæĻƒĻ„Ī·ĻĪ¹Ī¾Ī· RetroShare - + It has many features, including built-in chat, messaging, @@ -7638,7 +8096,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· ομαΓικής ĻƒĻ…Ī½ĪæĪ¼Ī¹Ī»ĪÆĪ±Ļ‚ @@ -7646,7 +8104,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] @@ -7816,7 +8274,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Τίτλος @@ -7829,12 +8287,12 @@ p, li { white-space: pre-wrap; } - + Description Περιγραφή - + Number of Unread message @@ -7859,7 +8317,19 @@ p, li { white-space: pre-wrap; } - + Sort by Name + Ταξινόμηση κατά όνομα + + + Sort by Popularity + Ταξινόμηση κατά Ī“Ī·Ī¼ĪæĻ„Ī¹ĪŗĻŒĻ„Ī·Ļ„Ī± + + + Sort by Last Post + Ταξινόμηση κατά το τελευταιο Ļ€ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± + + + You are admin (modify names and description using Edit menu) @@ -7874,14 +8344,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - Τελευταία Ī”Ī·Ī¼ĪæĻƒĪÆĪµĻ…ĻƒĪ· + - + Name @@ -7892,13 +8362,17 @@ p, li { white-space: pre-wrap; } Ī”Ī·Ī¼ĪæĻ„Ī¹ĪŗĻŒĻ„Ī·Ļ„Ī± - + Never - + Display + Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7911,7 +8385,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and και @@ -8047,7 +8521,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Κανάλια @@ -8058,22 +8532,22 @@ p, li { white-space: pre-wrap; } Δημιουργία ĪŗĪ±Ī½Ī±Ī»Ī¹ĪæĻ - + Enable Auto-Download Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī·Ļ‚ Ī»Ī®ĻˆĪ·Ļ‚ - + My Channels Τα κανάλια μου - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Εγγεγραμμένα Κανάλια @@ -8093,12 +8567,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download Ī‘Ļ€ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· της Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī·Ļ‚ Ī»Ī®ĻˆĪ·Ļ‚ - + Set download directory @@ -8133,22 +8607,22 @@ p, li { white-space: pre-wrap; } - + Play Παιξιμο - + Open folder Άνοιγμα φακέλου - + Open file - + Error Σφαλμα @@ -8168,17 +8642,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? Ī•ĪÆĻƒĻ„Īµ βέβαιοι ĻŒĻ„Ī¹ θέλετε να Ī±ĪŗĻ…ĻĻŽĻƒĪµĻ„Īµ και να Ī“Ī¹Ī±Ī³ĻĪ¬ĻˆĪµĻ„Īµ το αρχείο; - + Can't open folder Ο φάκελος Γεν ανοίγει - + Play File Αναπαραγωγή αρχείου @@ -8188,10 +8662,37 @@ p, li { white-space: pre-wrap; } Το αρχείο %1 Γεν υπάρχει ĻƒĻ„Ī·Ī½ Ļ„ĪæĻ€ĪæĪøĪµĻƒĪÆĪ±. + + GxsChannelFilesWidget + + Form + Φόρμα + + + Filename + Όνομα αρχείου + + + Size + ĪœĪ­Ī³ĪµĪøĪæĻ‚ + + + Title + Τίτλος + + + Published + Ī”Ī·Ī¼ĪæĻƒĪ¹ĪµĻĻ„Ī·ĪŗĪµ + + + Status + ĪšĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ· + + GxsChannelGroupDialog - + Create New Channel Δημιουργία ĪĪ­ĪæĻ… ĪšĪ±Ī½Ī±Ī»Ī¹ĪæĻ @@ -8229,19 +8730,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Εγγραφή ĻƒĻ„Īæ Κανάλι @@ -8255,7 +8746,7 @@ p, li { white-space: pre-wrap; } - + Expand Ī•Ļ€Ī­ĪŗĻ„Ī±ĻƒĪ· @@ -8270,7 +8761,7 @@ p, li { white-space: pre-wrap; } Περιγραφή ĪšĪ±Ī½Ī±Ī»Ī¹ĪæĻ - + Loading Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· @@ -8285,9 +8776,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + ĪĪ­Īæ Κανάλι @@ -8298,7 +8788,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8319,7 +8809,7 @@ p, li { white-space: pre-wrap; } - + Play Παιξιμο @@ -8375,24 +8865,28 @@ 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 και το %2 λεπτά πριν Ī±Ļ€ĻŒ Ī±Ļ…Ļ„ĻŒ το αρχείο έχει Γιαγραφεί ĪøĪµĻ‰ĻĪæĻĪ½ Ī±Ļ€ĪæĪøĪ·ĪŗĪµĻĪæĪ½Ļ„Ī¬Ļ‚. + Hide Ī‘Ļ€ĻŒĪŗĻĻ…ĻˆĪ· - + New ĪĪ­Īæ - + 0 0 - - + + Comment Ī£Ļ‡ĻŒĪ»Ī¹Īæ @@ -8407,17 +8901,21 @@ p, li { white-space: pre-wrap; } Δεν μου αρέσει - + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + + Loading... - + Comments - + Post @@ -8442,16 +8940,83 @@ p, li { white-space: pre-wrap; } Παιξιμο Ļ€ĪæĪ»Ļ…Ī¼ĪµĻƒĻ‰Ī½ + + GxsChannelPostsWidget + + Post to Channel + Ī ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± ĻƒĻ„Īæ καναλι + + + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + + Search channels + Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĪŗĪ±Ī½Ī±Ī»Ī¹ĻŽĪ½ + + + Title + Τίτλος + + + Search Title + Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· τίτλου + + + Message + ĪœĪ®Ī½Ļ…Ī¼Ī± + + + Search Message + Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĪœĪ·Ī½ĻĪ¼Ī±Ļ„ĪæĻ‚ + + + Filename + Όνομα αρχείου + + + Search Filename + Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĪŸĪ½ĻŒĪ¼Ī±Ļ„ĪæĻ‚ Αρχείου + + + No Channel Selected + Δεν υπάρχει επιλεγμένο κανάλι + + + Disable Auto-Download + Ī‘Ļ€ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī·Ļ‚ Ī»Ī®ĻˆĪ·Ļ‚ + + + Enable Auto-Download + Ī•Ī½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī·Ļ‚ Ī»Ī®ĻˆĪ·Ļ‚ + + + Show files + Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· αρχείων + + + Feeds + Feeds + + + Files + Αρχεία + + + Description: + Περιγραφή: + + GxsChannelPostsWidgetWithModel - + Post to Channel Ī ĪæĻƒĻ„Ī±ĻĪ¹ĻƒĪ¼Ī± ĻƒĻ„Īæ καναλι - + Add new post @@ -8521,7 +9086,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8557,7 +9122,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8572,13 +9137,13 @@ p, li { white-space: pre-wrap; } Feeds - - + + Click to switch to list view - + Show unread posts only @@ -8593,7 +9158,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8608,7 +9173,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8668,22 +9233,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8758,13 +9313,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Εγγεγραμμένος @@ -8796,7 +9350,7 @@ p, li { white-space: pre-wrap; } Disable Auto-Download - Ī‘Ļ€ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· της Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī·Ļ‚ Ī»Ī®ĻˆĪ·Ļ‚ + @@ -8815,17 +9369,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8940,7 +9494,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Ī£Ļ‡ĻŒĪ»Ī¹Īæ @@ -8953,7 +9507,7 @@ p, li { white-space: pre-wrap; } Φόρμα - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8983,7 +9537,7 @@ p, li { white-space: pre-wrap; } Ī‘Ī½Ī±Ī½Ī­Ļ‰ĻƒĪ· - + Comment Ī£Ļ‡ĻŒĪ»Ī¹Īæ @@ -9022,7 +9576,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· ĻƒĻ„Īæ ĻƒĻ‡ĻŒĪ»Ī¹Īæ @@ -9046,21 +9600,6 @@ p, li { white-space: pre-wrap; } Vote Down ĪØĪ·Ļ†ĪÆĻƒĻ„Īµ κάτω - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9070,7 +9609,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; } @@ -9099,10 +9638,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Comment</span></p></body></html> + + + Signed by + ΄πογράφεται Ī±Ļ€ĻŒ + Reply to Comment @@ -9130,7 +9685,7 @@ before you can comment Πρέπει να Ī“Ī·Ī¼Ī¹ĪæĻ…ĻĪ³Ī®ĻƒĪµĻ„Īµ μια Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī± για να μπορείτε να ĻƒĻ‡ĪæĪ»Ī¹Ī¬ĻƒĪµĻ„Īµ - + It remains %1 characters after HTML conversion. @@ -9181,7 +9736,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum Εγγραφείτε ĻƒĻ„Īæ Ļ†ĻŒĻĪæĻ…Ī¼ @@ -9197,7 +9752,7 @@ before you can comment - + Expand Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· @@ -9217,9 +9772,8 @@ before you can comment - - TextLabel - + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· @@ -9250,13 +9804,13 @@ before you can comment GxsForumMsgItem - - + + Subject: Θέμα: - + Unsubscribe To Forum Διαγραφείτε Ī±Ļ€ĻŒ το Ļ†ĻŒĻĪæĻ…Ī¼ @@ -9267,7 +9821,7 @@ before you can comment - + Expand Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· @@ -9287,17 +9841,21 @@ before you can comment - + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + + Loading... - + Forum Feed - + Hide Ī‘Ļ€ĻŒĪŗĻĻ…ĻˆĪ· @@ -9310,66 +9868,63 @@ before you can comment Φόρμα - + Start new Thread for Selected Forum Έναρξη νέας Ī¼Ī·Ī½Ļ…Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ ĻƒĻ„Īæ επιλεγμενο Ļ†ĻŒĻĪæĻ…Ī¼ - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĻƒĻ„Ī± Ļ†ĻŒĻĪæĻ…Ī¼ - + Last Post + Τελευταιο Ļ€ĪæĻƒĻ„ + + + New Thread ĪĪ­Īæ θεμα + + + Threaded View + Περασμένη ĪŗĪ»Ļ‰ĻƒĻ„Ī® Ī¬Ļ€ĪæĻˆĪ· + + + + Flat View + ΕπίπεΓη προβολή + - + Title Τίτλος - - + + Date Ημερομηνία - + Author Δημιουργος - + + Save image + + + + Loading Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9379,7 +9934,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message ĪœĪ®Ī½Ļ…Ī¼Ī± Ī±Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ·Ļ‚ @@ -9403,6 +9963,10 @@ before you can comment Download all files Ī›Ī®ĻˆĪ· ĻŒĪ»Ļ‰Ī½ των αρχείων + + Next unread + Ī•Ļ€ĻŒĪ¼ĪµĪ½Īæ μη Ī±Ī½Ī±Ī³Ī½Ļ‰ĻƒĪ¼Ī­Ī½Īæ + Search Title @@ -9419,23 +9983,31 @@ before you can comment Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĻƒĻ…Ī³Ī³ĻĪ±Ļ†Ī­Ī± - + Content + Ī ĪµĻĪ¹ĪµĻ‡ĻŒĪ¼ĪµĪ½Īæ + + + Search Content + Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· περιεχομένου + + + No name Δεν υπάρχει όνομα - - + + Reply Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· - + <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> - + Loading... @@ -9478,12 +10050,16 @@ before you can comment Αντιγραφη του Λινκ - + Hide Ī‘Ļ€ĻŒĪŗĻĻ…ĻˆĪ· - + Expand + Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· + + + [unknown] @@ -9513,8 +10089,8 @@ before you can comment - - + + Distribution @@ -9528,6 +10104,22 @@ before you can comment Anti-spam + + Anonymous + Ī‘Ī½ĻŽĪ½Ļ…Ī¼ĪæĻ‚ + + + signed + Ļ…Ļ€Ī­Ī³ĻĪ±ĻˆĪµ + + + none + κανένας + + + [ ... Missing Message ... ] + [ ... Λείπει ενα μήνυμα...] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9597,12 +10189,12 @@ before you can comment Ī‘ĻĻ‡Ī¹ĪŗĻŒ μήνυμα - + New thread - + Edit Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± @@ -9663,7 +10255,7 @@ before you can comment - + Show column @@ -9683,7 +10275,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9735,7 +10327,7 @@ This message is missing. You should receive it later. - + No result. @@ -9745,7 +10337,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9760,7 +10352,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9826,12 +10418,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Ī¦ĻŒĻĪæĻ…Ī¼ @@ -9862,16 +10454,35 @@ This message is missing. You should receive it later. Άλλα Ļ†ĻŒĻĪæĻ…Ī¼ + + GxsForumsFillThread + + Waiting + Αναμονή + + + Retrieving + Ī‘Ī½Ī¬ĪŗĻ„Ī·ĻƒĪ· + + + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + GxsGroupDialog - + Name Όνομα - + Add Icon + Προσθήκη εικονίΓιου + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Οι βασικοι αποΓέκτες μπορουν να Ī“Ī·Ī¼ĪæĻƒĪ¹ĪµĻĪæĻ…Ī½ σε Ļ€ĪµĻĪ¹ĪæĻĪÆĻƒĪ¼ĪµĪ½ĪæĪ¹ ομαΓα και μπορουν να βλεπουν και να Ī“Ī·Ī¼ĪæĻƒĪ¹ĪµĻĪæĻ…Ī½ Ī¹Ī“Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒĻ… Τ΄ΠΟ΄ καναλια @@ -9880,14 +10491,22 @@ This message is missing. You should receive it later. Share Publish Key Μοιρασμα Ī“Ī·Ī¼ĪæĻƒĪ¹ĪæĻ… κλειΓίου + + check peers you would like to share private publish key with + Ελέγξτε τους ομοτυμους που θα θέλατε να Ī¼ĪæĪ¹ĻĪ±ĻƒĻ„ĪµĪÆĻ„Īµ το ιΓιωτικο ĻƒĪ±Ļ‚ κλειΓι Ī“Ī·Ī¼ĪæĻƒĪ¹ĪµĻ…ĻƒĪ·Ļ‚ + + + Share Key With + Μοιρασμα κλειΓιου με + - + Description Περιγραφή - + Message Distribution ĪœĪ®Ī½Ļ…Ī¼Ī± Γιανομής @@ -9895,7 +10514,7 @@ This message is missing. You should receive it later. - + Public Ī”Ī·Ī¼ĪæĻƒĪ¹Ī± @@ -9914,6 +10533,14 @@ This message is missing. You should receive it later. New Thread ĪĪ­Īæ θεμα + + Required + Απαιτείται + + + Encrypted Msgs + ĪšĻĻ…Ļ€Ļ„ĪæĪ³ĻĪ±Ļ†Ī·Ī¼Ī­Ī½Ī± Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„Ī± + Personal Signatures @@ -9955,7 +10582,7 @@ This message is missing. You should receive it later. - + Comments: Ī£Ļ‡ĻŒĪ»Ī¹Ī±: @@ -9978,7 +10605,7 @@ This message is missing. You should receive it later. - + All People @@ -9994,12 +10621,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10016,23 +10643,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10048,28 +10675,22 @@ This message is missing. You should receive it later. Ī ĻĪæĻƒĪøĪ­ĻƒĻ„Īµ ένα όνομα - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo Ī›ĪæĪ³ĻŒĻ„Ļ…Ļ€Īæ ομάΓας Ļ†ĻŒĻĻ„Ļ‰ĻƒĪ·Ļ‚ - + Submit Group Changes - + Owner: @@ -10079,12 +10700,12 @@ This message is missing. You should receive it later. - + Info Πληροφορίες - + ID ID @@ -10094,7 +10715,7 @@ This message is missing. You should receive it later. Τελευταία Ī”Ī·Ī¼ĪæĻƒĪÆĪµĻ…ĻƒĪ· - + <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> @@ -10169,12 +10790,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity Ī”Ī·Ī¼ĪæĻ„Ī¹ĪŗĻŒĻ„Ī·Ļ„Ī± @@ -10190,22 +10806,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create - + + Author + Δημιουργος + + + GxsIdLabel GxsIdLabel @@ -10213,7 +10834,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· @@ -10273,7 +10894,7 @@ This message is missing. You should receive it later. Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± Ī›ĪµĻ€Ļ„ĪæĪ¼ĪµĻĪµĪ¹ĻŽĪ½ - + Synchronise posts of last... @@ -10330,12 +10951,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link Αντιγραφή του RetroShare Ī£Ļ…Ī½Ī“Ī­ĻƒĪ¼ĪæĻ… @@ -10358,7 +10979,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Καμία υπογραφή @@ -10371,14 +10992,22 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + + Not found Δεν βρέθηκε + + No Signature + Καμία υπογραφή + - - + + [Banned] @@ -10388,7 +11017,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10398,12 +11027,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10423,14 +11047,6 @@ This message is missing. You should receive it later. [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10442,7 +11058,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10490,13 +11106,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] GxsMessageFramePostWidget + + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + Loading... @@ -10877,7 +11497,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10893,7 +11513,7 @@ p, li { white-space: pre-wrap; } - + Authors Δημιουργοι @@ -10912,7 +11532,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10992,7 +11612,7 @@ p, li { white-space: pre-wrap; }āŽ - + Add friend @@ -11002,7 +11622,7 @@ p, li { white-space: pre-wrap; }āŽ - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11030,7 +11650,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11040,7 +11660,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard Ī‘Ī½Ļ„Ī¹Ī³ĻĪ¬ĻˆĪµĻ„Īµ ĻƒĪ±Ļ‚ Cert Ļ€ĻĻŒĻ‡ĪµĪ¹ĻĪæ @@ -11050,7 +11670,7 @@ private and secure decentralized communication platform. Ī‘Ļ€ĪæĪøĪ·ĪŗĪµĻĻƒĪµĻ„Īµ Cert ĻƒĪ±Ļ‚ σε ένα αρχείο - + Send via Email @@ -11070,37 +11690,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11112,12 +11708,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11132,7 +11728,12 @@ new short format Πρόσκληση RetroShare - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11397,14 +11998,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Όλα - + Reputation Φήμη @@ -11414,12 +12015,12 @@ p, li { white-space: pre-wrap; } Ī‘Ī½Ī±Ī¶Ī·Ļ„Ī·ĻƒĪ· - + Anonymous Id - + Create new Identity Δημιουργια νέας Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ @@ -11429,7 +12030,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11444,27 +12045,27 @@ p, li { white-space: pre-wrap; } - + Close Κλεισιμο - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11480,39 +12081,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles ĪšĻĪŗĪ»ĪæĪ¹ - + Circle name @@ -11532,20 +12123,18 @@ p, li { white-space: pre-wrap; } Ī ĻĪæĻƒĻ‰Ļ€Ī¹ĪŗĪæĪÆ ĪŗĻĪŗĪ»ĪæĪ¹ - + - Edit identity Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± Ī¤Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ - - + Delete identity Διαγραφή Ī¤Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ - + Chat with this peer @@ -11555,78 +12144,78 @@ p, li { white-space: pre-wrap; } - + 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: Ī— Ī¬Ļ€ĪæĻˆĪ® ĻƒĪ±Ļ‚: - + Negative Ī‘ĻĪ½Ī·Ļ„Ī¹ĪŗĻŒ - + Neutral @@ -11637,17 +12226,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 Ī‘Ī½ĻŽĪ½Ļ…Ī¼ĪæĻ‚ @@ -11662,24 +12251,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11694,12 +12283,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11709,7 +12293,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11784,7 +12368,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11814,7 +12398,7 @@ p, li { white-space: pre-wrap; } Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ - + Invited @@ -11829,7 +12413,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11877,7 +12461,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. @@ -11885,7 +12469,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11928,7 +12512,7 @@ These identities will soon be not supported anymore. - + Boards @@ -12008,7 +12592,7 @@ These identities will soon be not supported anymore. - + information @@ -12024,12 +12608,17 @@ 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> + + + + positive @@ -12134,7 +12723,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12184,21 +12773,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar Το άβατάρ ĻƒĪ±Ļ‚ - + Linked to neighbor nodes @@ -12208,7 +12797,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12223,7 +12812,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12238,12 +12827,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12263,12 +12852,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12278,7 +12867,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12286,7 +12875,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname ĪØĪµĻ…Ī“ĻŽĪ½Ļ…Ī¼Īæ @@ -12316,13 +12905,7 @@ These identities will soon be not supported anymore. ĪØĪµĻ…Ī“ĻŽĪ½Ļ…Ī¼Īæ - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity ĪĪ­Ī± Ļ„Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī± @@ -12336,7 +12919,7 @@ These identities will soon be not supported anymore. - + @@ -12346,12 +12929,7 @@ These identities will soon be not supported anymore. N/A - - No avatar chosen - - - - + Edit identity Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± Ī¤Ī±Ļ…Ļ„ĻŒĻ„Ī·Ļ„Ī±Ļ‚ @@ -12362,27 +12940,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12402,7 +12980,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12412,18 +12990,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12433,7 +13005,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12443,7 +13020,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12453,15 +13030,10 @@ These identities will soon be not supported anymore. Τυπος - + Choose image... - - - Remove - ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· - @@ -12487,7 +13059,7 @@ These identities will soon be not supported anymore. Προσθηκη - + Create @@ -12497,13 +13069,13 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar Το άβατάρ ĻƒĪ±Ļ‚ - + Linked to your profile @@ -12513,7 +13085,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12587,7 +13159,7 @@ These identities will soon be not supported anymore. - + Copy Αντίγραφη @@ -12597,12 +13169,12 @@ These identities will soon be not supported anymore. ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· - + %1 's Message History - + Mark all Ī•Ļ€Ī¹ĻƒĪ·Ī¼Ī¬Ī½ĻƒĪ· ĻŒĪ»Ļ‰Ī½ @@ -12621,38 +13193,26 @@ These identities will soon be not supported anymore. Quote Ī‘Ļ€ĻŒĻƒĻ€Ī±ĻƒĪ¼Ī± + + Send + Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī· + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12670,32 +13230,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: ΄ποΓοχη: - + Listen Address: - - Status: - ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ·: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12716,12 +13271,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12730,31 +13280,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Άνοιγμα αρχείου - + Open Folder Άνοιγμα φακέλου - + Checking... ĪˆĪ»ĪµĪ³Ļ‡ĪæĻ‚... @@ -12764,7 +13309,7 @@ These identities will soon be not supported anymore. Ελέγχος αρχειων - + Recommend in a message to... @@ -12792,7 +13337,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Προσθήκη φίλου @@ -12808,8 +13353,7 @@ These identities will soon be not supported anymore. - - + Options Επιλογές @@ -12830,7 +13374,7 @@ These identities will soon be not supported anymore. - + Quit Ī‘Ļ€ĪæĻ‡Ļ‰ĻĪ·ĻƒĪ· @@ -12841,12 +13385,12 @@ These identities will soon be not supported anymore. ĪŸĪ“Ī·Ī³ĻŒĻ‚ γρήγορης έναρξης - + RetroShare %1 a secure decentralized communication platform Το RetroShare %1 ειναι μια Ļ€Ī»Ī±Ļ„Ļ†ĻŒĻĪ¼Ī± Ī±ĻƒĻ†Ī±Ī»ĪæĻĻ‚ αποκεντρωμένης επικοινωνίας - + Unfinished Ημιτελής @@ -12875,12 +13419,11 @@ These identities will soon be not supported anymore. - Status ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ· - + Notify ĪšĪæĪ¹Ī½ĪæĻ€ĪæĪ¹Ī·ĻƒĪ· @@ -12891,35 +13434,31 @@ These identities will soon be not supported anymore. - Open Messages Ανοιγμα μυνηματων - - + Bandwidth Graph Διάγραμμα ĪµĻĻĪæĻ…Ļ‚ Ī¶ĻŽĪ½Ī·Ļ‚ - + Applications Εφαρμογές - Help Βοήθεια - - + Minimize Ī•Ī»Ī±Ļ‡Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ· - + Maximize ĪœĪµĪ³Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ· @@ -12934,12 +13473,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message νέο μήνυμα %1 @@ -12969,7 +13503,7 @@ These identities will soon be not supported anymore. %1 φίλοι που ĻƒĻ…Ī½Ī“Ī­ĪæĪ½Ļ„Ī±Ī¹ - + Do you really want to exit RetroShare ? Ī˜Ī­Ī»ĪµĻ„Īµ πραγματικά να Ī±Ļ€ĪæĻ‡Ļ‰ĻĪ·ĻƒĪµĻ„Īµ απο το RetroShare ? @@ -12989,7 +13523,7 @@ These identities will soon be not supported anymore. Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ· - + Make sure this link has not been forged to drag you to a malicious website. Βεβαιωθείτε ĻŒĻ„Ī¹ αυτή Ī· ĻƒĻĪ½Ī“ĪµĻƒĪ· Γεν ĻƒĻ†Ļ…ĻĪ·Ī»Ī±Ļ„Ī®ĪøĪ·ĪŗĪµ για να ĻƒĪ±Ļ‚ ĻƒĻĻĪµĪ¹ σε μια ĪŗĪ±ĪŗĻŒĪ²ĪæĻ…Ī»Ī· Ī¹ĻƒĻ„ĪæĻƒĪµĪ»ĪÆĪ“Ī±. @@ -13034,13 +13568,12 @@ These identities will soon be not supported anymore. - - + Statistics Ī£Ļ„Ī±Ļ„Ī¹ĻƒĻ„Ī¹ĪŗĪ­Ļ‚ - + Show web interface @@ -13055,7 +13588,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13064,17 +13597,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose Ī£Ļ…Ī½ĪøĪ­ĻƒĪ· - + Contacts Επαφές - + Paragraph Παράγραφος @@ -13110,12 +13643,12 @@ These identities will soon be not supported anymore. ΕπικεφαλιΓα 6 - + Font size ĪœĪ­Ī³ĪµĪøĪæĻ‚ Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ - + Increase font size Ī‘ĻĪ¾Ī·ĻƒĪ· μεγέθους Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ @@ -13130,32 +13663,32 @@ These identities will soon be not supported anymore. Bold - + Italic Italic - + Alignment Ī•Ļ…ĪøĻ…Ī³ĻĪ¬Ī¼Ī¼Ī¹ĻƒĪ· - + Add an Image Ī ĻĪæĻƒĪøĪ­ĻƒĻ„Īµ μια εικόνα - + Sets text font to code style Ορίζει ĪŗĻŽĪ“Ī¹ĪŗĪ± ĻƒĻ„Ļ…Ī» Ī³ĻĪ±Ī¼Ī¼Ī±Ļ„ĪæĻƒĪµĪ¹ĻĪ¬Ļ‚ κειμένου - + Underline Ī„Ļ€ĪæĪ³ĻĪ¬Ī¼Ī¼Ī¹ĻƒĪ· - + Subject: Θέμα: @@ -13166,32 +13699,32 @@ These identities will soon be not supported anymore. - + Tags Ετικέτες - + Address list: - + Recommend this friend - + Set Text color ĪšĪ±ĪøĪæĻĪÆĻƒĻ„Īµ το Ļ‡ĻĻŽĪ¼Ī± του κειμένου - + Set Text background color - + Recommended Files Ī£Ļ…Ī½Ī¹ĻƒĻ„Ī¬Ī¼ĪµĪ½Ī± αρχεία @@ -13261,7 +13794,7 @@ These identities will soon be not supported anymore. Ī ĻĪæĻƒĪøĪ­ĻƒĻ„Īµ Blockquote - + Send To: Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī® σε: @@ -13301,7 +13834,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Γεια ĻƒĪ±Ļ‚, <br>θα ήθελα να ĻƒĪ±Ļ‚ĻƒĻ…ĻƒĻ„Ī®ĻƒĻ‰ ένα καλό φίλο μου, μπορείτε να τον ĪµĪ¼Ļ€Ī¹ĻƒĻ„ĪµĻ…ĪøĪµĪÆĻ„Īµ πάρα Ļ€ĪæĪ»Ļ ĻŒĻ„Ī±Ī½ μπορείτε και με ĪµĪ¼Ļ€Ī¹ĻƒĻ„ĪµĻĪµĻƒĻ„Ī±Ī¹. <br> @@ -13321,18 +13854,18 @@ These identities will soon be not supported anymore. θέλει να είναι φίλος μαζί ĻƒĪ±Ļ‚ ĻƒĻ„Īæ 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 Γεια ĻƒĪæĻ… % 1, <br><br>%2 θέλει να είναι φίλοι μαζί ĻƒĪ±Ļ‚ ĻƒĻ‡ĪµĻ„Ī¹ĪŗĪ¬ ĻƒĻ„Īæ RetroShare.<br><br>Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· Ļ„ĻŽĻĪ±: <br>%3 <br><br>ĪµĻ…Ļ‡Ī±ĻĪ¹ĻƒĻ„ĻŽ, <br>Ī· ομάΓα του RetroShare - - + + Save Message Ī‘Ļ€ĪæĪøĪ·ĪŗĪµĻĻƒĪ· μυνηματος - + Message has not been Sent. Do you want to save message to draft box? ĪœĪ®Ī½Ļ…Ī¼Ī± Γεν έχει ĻƒĻ„Ī±Ī»ĪµĪÆ. @@ -13344,17 +13877,7 @@ Do you want to save message to draft box? Ī•Ļ€Ī¹ĪŗĪæĪ»Ī»Ī·ĻƒĪ· του Λινκ - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Προσθηκη του "Σε" @@ -13374,7 +13897,7 @@ Do you want to save message to draft box? Προσθήκη ως προτείνομενο - + Original Message Αυθεντικο μήνυμα @@ -13384,21 +13907,21 @@ Do you want to save message to draft box? Απο - + - + To Στον - - + + Cc CC - + Sent Σταλθηκε @@ -13413,7 +13936,7 @@ Do you want to save message to draft box? Στις % 1, %2 έγραψε: - + Re: Re: @@ -13423,30 +13946,30 @@ Do you want to save message to draft box? Fwd: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Ī˜Ī­Ī»ĪµĻ„Īµ να ĻƒĻ„ĪµĪÆĪ»ĪµĻ„Īµ το μήνυμα χωρίς υποκείμενο; - + Please insert at least one recipient. Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ ĪµĪ¹ĻƒĪ¬Ī³ĪµĻ„Īµ Ļ„ĪæĻ…Ī»Ī¬Ļ‡Ī¹ĻƒĻ„ĪæĪ½ έναν παραλήπτη. - + Bcc Bcc - + Unknown Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ @@ -13561,13 +14084,13 @@ Do you want to save message to draft box? Λεπετομέρειες - + Open File... Ανοιγμα αρχειου... - + HTML-Files (*.htm *.html);;All Files (*) Αρχεία HTML (*.htm * .html)??Όλα τα αρχεία (*) @@ -13587,7 +14110,7 @@ Do you want to save message to draft box? Εξαγωγή PDF - + Message has not been Sent. Do you want to save message ? ĪœĪ®Ī½Ļ…Ī¼Ī± Γεν έχει ĻƒĻ„Ī±Ī»ĪµĪÆ. @@ -13609,7 +14132,7 @@ Do you want to save message ? Προσθηκη επιπλεον αρχειου - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13639,18 +14162,18 @@ Do you want to save message ? - - + + Close Κλεισιμο - + From: Ī‘Ļ€ĻŒ: - + Bullet list (disc) @@ -13690,13 +14213,13 @@ Do you want to save message ? - - + + Thanks, <br> Ī•Ļ…Ļ‡Ī±ĻĪ¹ĻƒĻ„ĪæĻĪ¼Īµ, <br> - + Distant identity: @@ -13706,12 +14229,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: @@ -13789,7 +14312,7 @@ Do you want to save message ? Προεπιλογή - + A new tab Μια νέα καρτέλα @@ -13799,7 +14322,7 @@ Do you want to save message ? Ένα νέο παράθυρο - + Edit Tag Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪ¹Ī± ετικέτας @@ -13822,7 +14345,7 @@ Do you want to save message ? MessageToaster - + Sub: Θεμα: @@ -13830,7 +14353,7 @@ Do you want to save message ? MessageUserNotify - + Message ĪœĻ…Ī½Ī·Ī¼Ī± @@ -13858,7 +14381,7 @@ Do you want to save message ? MessageWidget - + Recommended Files Ī£Ļ…Ī½Ī¹ĻƒĻ„Ī¬Ī¼ĪµĪ½Ī± αρχεία @@ -13868,37 +14391,37 @@ Do you want to save message ? Ī›Ļ…ĻˆĪ· ολων των ĻƒĻ…Ī½Ī¹ĻƒĻ„Ļ‰Ī¼ĪµĪ½Ļ‰Ī½ αρχειων - + Subject: Θέμα: - + From: Ī‘Ļ€ĻŒ: - + To: Σε: - + Cc: CC: - + Bcc: BCC: - + Tags: Ετικέτες: - + Reply Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· @@ -13938,7 +14461,7 @@ Do you want to save message ? - + Send Invite @@ -13982,7 +14505,7 @@ Do you want to save message ? Buttons Text Beside Icon - Πλαισια κειμένου Γίπλα Ī±Ļ€ĻŒ το εικονίΓιο + @@ -13990,7 +14513,7 @@ Do you want to save message ? - + Confirm %1 as friend Ī•Ļ€Ī¹Ī²ĪµĪ²Ī±Ī¹ĻŽĻƒĪµĪ¹ %1 ως φίλο @@ -14000,12 +14523,12 @@ Do you want to save message ? Προσθήκη %1 ως φίλος - + View source - + No subject Χωρις θεμα @@ -14015,22 +14538,17 @@ Do you want to save message ? Ī›Ļ…ĻˆĪ· - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14039,24 +14557,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all Ī›Ļ…ĻˆĪ· ολων - + Print Document Ī•ĪŗĻ„ĻĻ€Ļ‰ĻƒĪ· εγγράφου @@ -14071,12 +14579,12 @@ Do you want to save message ? Αρχεία HTML (*.htm * .html)??Όλα τα αρχεία (*) - + Load images always for this message - + Hide the attachment pane @@ -14098,6 +14606,42 @@ Do you want to save 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 @@ -14176,7 +14720,7 @@ Do you want to save message ? MessagesDialog - + New Message ĪĪ­Īæ μήνυμα @@ -14186,16 +14730,60 @@ Do you want to save message ? Ī£Ļ…Ī½ĪøĪ­ĻƒĪ· - + Reply to selected message + Ī‘Ļ€Ī±Ī½Ļ„Ī®ĻƒĪµĻ„Īµ σε επιλεγμένο μήνυμα + + + Reply + Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· + + + Reply all to selected message + Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· όλα σε επιλεγμένο μήνυμα + + + Reply all + Ī‘Ļ€Ī¬Ī½Ļ„Ī·ĻƒĪ· σε ĻŒĪ»ĪæĻ…Ļ‚ + + + Forward selected message + Ī ĻĪæĻŽĪøĪ·ĻƒĪ· του επιλεγμένου Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„ĪæĻ‚ + + + Foward + Foward + + + Remove selected message + ĪšĪ±Ļ„Ī¬ĻĪ³Ī·ĻƒĪ· του επιλεγμένου Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„ĪæĻ‚ + + + Delete + Διαγραφη + + + Print selected message + Ī•ĪŗĻ„ĻĻ€Ļ‰ĻƒĪ· επιλεγμένου Ī¼Ī·Ī½ĻĪ¼Ī±Ļ„ĪæĻ‚ + + + Print + Ī•ĪŗĻ„Ļ…Ļ€Ļ‰ĻƒĪ· + + + Display + Οθονη + + + - - + + Tags Ετικέτες - - + + Inbox "Ī•Ī¹ĻƒĪµĻĻ‡ĻŒĪ¼ĪµĪ½Ī±" @@ -14225,17 +14813,21 @@ Do you want to save message ? ΣκουπίΓια - + Total Inbox: Ī£Ļ…Ī½ĪæĪ»Ī¹ĪŗĻŒĻ‚ φάκελος"Ī•Ī¹ĻƒĪµĻĻ‡ĻŒĪ¼ĪµĪ½Ī±": - + Folders + Φάκελοι + + + Quick View Ī Ī”ĪŸĪ’ĪŸĪ›Ī— - + Print... Ī•ĪŗĻ„ĻĻ€Ļ‰ĻƒĪ·... @@ -14245,6 +14837,26 @@ Do you want to save message ? Print Preview Ī ĻĪæĪµĻ€Ī¹ĻƒĪŗĻŒĻ€Ī·ĻƒĪ· ĪµĪŗĻ„ĻĻ€Ļ‰ĻƒĪ·Ļ‚ + + Buttons Icon Only + ĪšĪæĻ…Ī¼Ļ€Ī¹Ī¬ εικόνα μόνο + + + Buttons Text Beside Icon + ĪšĪæĻ…Ī¼Ļ€Ī¹Ī¬ κειμένου Γίπλα Ī±Ļ€ĻŒ το εικονίΓιο + + + Buttons with Text + Πλαισια με κείμενο + + + Buttons Text Under Icon + Πλαισια κειμένου κάτω Ī±Ļ€ĻŒ το εικονίΓιο + + + Set Text Under Icon + ĪŸĻĪ¹ĻƒĪ¼ĻŒĻ‚ κειμένου κάτω Ī±Ļ€ĻŒ το εικονίΓιο + Save As... @@ -14266,7 +14878,7 @@ Do you want to save message ? ĪœĪ®Ī½Ļ…Ī¼Ī± προς τα ĪµĪ¼Ļ€ĻĻŒĻ‚ - + Subject Θέμα: @@ -14276,7 +14888,7 @@ Do you want to save message ? Απο - + Date Ημερομηνία @@ -14286,7 +14898,39 @@ Do you want to save message ? Ī ĪµĻĪ¹ĪµĻ‡ĻŒĪ¼ĪµĪ½Īæ - + Click to sort by attachments + ĪšĪ¬Ī½Ļ„Īµ κλικ ĻƒĻ„Īæ κουμπί για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ με ĻƒĻ…Ī½Ī·Ī¼Ī¼Ī­Ī½Ī± + + + Click to sort by subject + ĪšĪ¬Ī½Ļ„Īµ κλικ ĻƒĻ„Īæ κουμπί για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ με θέμα + + + Click to sort by read + ĪšĪ¬Ī½Ļ„Īµ κλικ για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ Ī±Ļ€ĻŒ 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 Θέμα Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ @@ -14295,11 +14939,6 @@ Do you want to save message ? Search From Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· Ī±Ļ€ĻŒ - - - Search To - - Search Date @@ -14326,14 +14965,14 @@ 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 strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - + Ī ĻĻ‰Ļ„Ī±Ī³Ļ‰Ī½ĪÆĻƒĻ„Ī·ĻƒĪµ @@ -14407,7 +15046,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14421,7 +15060,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14436,33 +15075,34 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts ΣχέΓια - + No Box selected. - - To - Στον + 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 + ĪšĪ¬Ī½Ļ„Īµ κλικ ĻƒĻ„Īæ κουμπί για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ με βάση να + + + @@ -14470,6 +15110,10 @@ Do you want to save message ? Total: Ī£ĻĪ½ĪæĪ»Īæ: + + Messages + ĪœĪ·Ī½ĻĪ¼Ī±Ļ„Ī± + Mail @@ -14497,17 +15141,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14561,7 +15195,7 @@ Do you want to save message ? - + Expand Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· @@ -14571,7 +15205,7 @@ Do you want to save message ? Ī‘Ļ€ĪæĪ¼Ī±ĪŗĻĻ…Ī½ĻƒĪ· ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪ¹ĪæĻ… - + from Ī±Ļ€ĻŒ @@ -14606,7 +15240,7 @@ Do you want to save message ? Msg σε ĪµĪŗĪŗĻĪµĪ¼ĻŒĻ„Ī·Ļ„Ī± - + Hide Ī‘Ļ€ĪæĪŗĻĻ…ĻˆĪ· @@ -14747,7 +15381,7 @@ Do you want to save message ? Peer ID - + Remove unused keys... ĪšĪ±Ļ„Ī¬ĻĪ³Ī·ĻƒĪ· Ī±Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪÆĪ·Ļ„Ļ‰Ī½ ĪŗĪ»ĪµĪ¹Ī“Ī¹ĻŽĪ½... @@ -14757,7 +15391,7 @@ Do you want to save message ? - + Clean keyring Ī•ĪŗĪŗĪ±ĪøĪ±ĻĪ¹ĻƒĪ· κλειΓοθήκης @@ -14775,13 +15409,7 @@ Notes: Your old keyring will be backed up. Ī— Ī±Ļ†Ī±ĪÆĻĪµĻƒĪ· μπορεί να Ī±Ļ€ĪæĻ„ĻĻ‡ĪµĪ¹ κατά την ĪµĪŗĻ„Ī­Ī»ĪµĻƒĪ· Ļ€ĪæĪ»Ī»Ī±Ļ€Ī»ĻŽĪ½ Retroshare Ļ€Ī±ĻĪæĻ…ĻƒĪÆĻ‰Ī½ ĻƒĻ„Īæ ίΓιο μηχάνημα. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Πληροφορίες κλειΓοθήκων @@ -14817,13 +15445,18 @@ For security, your keyring was previously backed-up to file Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Ī‘ĻƒĻ…Ī½Ī­Ļ€ĪµĪ¹Ī± ΓεΓομένων ĻƒĻ„Ī·Ī½ κλειΓοθήκη. Ī‘Ļ…Ļ„ĻŒ είναι Ļ€Ī¹ĪøĪ±Ī½ĻŒĻ„Ī±Ļ„Ī± ένα bug. Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī®ĻƒĻ„Īµ με τους Ļ€ĻĪæĪ³ĻĪ±Ī¼Ī¼Ī±Ļ„Ī¹ĻƒĻ„Ī­Ļ‚. + + + Export/create a new node + + Trusted keys only - + Search name Ī‘Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ· ĪæĪ½ĻŒĪ¼Ī±Ļ„ĪæĻ‚ @@ -14833,18 +15466,25 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: + + NetworkPage + + Network + Δίκτυο + + NetworkView @@ -14871,7 +15511,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14892,7 +15532,7 @@ Reported error: - + Groups ĪŸĪ¼Ī±Ī“ĪµĻ‚ @@ -14922,19 +15562,19 @@ Reported error: - - + + Search - + ID ID - + Search ID @@ -14944,12 +15584,12 @@ Reported error: - + Show Items - + Last contact @@ -14959,7 +15599,7 @@ Reported error: - + Group ΟμάΓα @@ -15074,7 +15714,7 @@ Reported error: Ī£ĻĪ¼Ļ€Ļ„Ļ…Ī¾Ī· ĻŒĪ»Ļ‰Ī½ - + Do you want to remove this node? @@ -15084,7 +15724,7 @@ Reported error: Ī˜Ī­Ī»ĪµĻ„Īµ να Ī“Ī¹Ī±Ī³ĻĪ±ĻˆĪµĻ„Īµ Ī±Ļ…Ļ„ĻŒĪ½ τον φίλο? - + Done! Έγινε! @@ -15193,7 +15833,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15208,7 +15848,11 @@ at least one peer was not added to a group ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· ολων - + This is a test. + Ī‘Ļ…Ļ„ĻŒ είναι μια Γοκιμη. + + + Newest on top @@ -15218,12 +15862,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15278,6 +15922,10 @@ at least one peer was not added to a group Blogs Ī™ĻƒĻ„ĪæĪ»ĪæĪ³Ī¹Ī± + + Security + Ī‘ĻƒĻ†Ī±Ī»ĪµĪ¹Ī± + @@ -15299,6 +15947,10 @@ at least one peer was not added to a group Message ĪœĻ…Ī½Ī·Ī¼Ī± + + Connect attempt + Ī£Ļ…Ī½Ī“Ī­ĻƒĪ· Ļ€ĻĪæĻƒĻ€Ī¬ĪøĪµĪ¹Ī±Ļ‚ + @@ -15452,6 +16104,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + Feed + Systray @@ -15461,7 +16117,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15481,12 +16137,12 @@ at least one peer was not added to a group Λάθος ĪŗĻ‰Ī“Ī¹ĪŗĻŒĻ‚! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Μη καταγεγραμμένου plugin/ĪµĪŗĻ„ĪµĪ»Ī­ĻƒĪ¹Ī¼Īæ @@ -15501,7 +16157,19 @@ at least one peer was not added to a group Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ ελέγξτε το ρολόι του ĻƒĻ…ĻƒĻ„Ī®Ī¼Ī±Ļ„ĻŒĻ‚ ĻƒĪ±Ļ‚. - + Examining shared files... + Ī•Ī¾Ī­Ļ„Ī±ĻƒĪ· ĪŗĪæĪ¹Ī½ĻŒĻ‡ĻĪ·ĻƒĻ„Ļ‰Ī½ αρχείων... + + + Hashing file + ĪšĪ±Ļ„Ī±ĪŗĪµĻĪ¼Ī±Ļ„Ī¹ĻƒĪ¼ĪæĻ‚ αρχείου + + + Saving file index... + Ī‘Ļ€ĪæĪøĪ®ĪŗĪµĻ…ĻƒĪ· αρχείου ευρετηρίου... + + + Test Δοκιμή @@ -15512,19 +16180,17 @@ at least one peer was not added to a group - 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). @@ -15532,7 +16198,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online Φίλος Online @@ -15584,6 +16250,10 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers PGPKeyDialog + + Dialog + Ī”Ī¹Ī±Ī»ĻŒĪ³ĪæĻ‚ + Profile info @@ -15674,12 +16344,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15688,6 +16353,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + ΄πογραφη PGP κλειΓίου + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15724,7 +16393,12 @@ 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> @@ -15770,21 +16444,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Σφάλμα: οι peer λεπτομέρειες Γεν μπορουν να παρθουν. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Ο Ļ€Ī±ĻĪµĻ‡ĻŒĪ¼ĪµĪ½ĪæĻ‚ Ī±Ī»Ī³ĻŒĻĪ¹ĪøĪ¼ĪæĻ‚ ĪŗĪ»ĪµĪ¹Ī“Ī¹ĪæĻ Γεν Ļ…Ļ€ĪæĻƒĻ„Ī·ĻĪÆĪ¶ĪµĻ„Ī±Ī¹ Ī±Ļ€ĻŒ το RetroShareāŽ (κλειΓιά RSA μόνο Ļ…Ļ€ĪæĻƒĻ„Ī·ĻĪÆĪ¶ĪæĪ½Ļ„Ī±Ī¹ προς το Ļ€Ī±ĻĻŒĪ½) @@ -15802,7 +16476,7 @@ 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. @@ -15871,6 +16545,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Μαλλον Īæ κωΓικος ειναι λαθος + You haven't set a trust level for this key. @@ -15878,12 +16556,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15909,7 +16587,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Συνομιλια @@ -15930,7 +16608,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Ī‘Ļ€ĪæĪ¼Ī±ĪŗĻĻ…Ī½ĻƒĪ· ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪ¹ĪæĻ… - + Name: Ονομα: @@ -15970,7 +16648,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Ī•Ī¹ĻƒĪ±Ī³Ļ‰Ī³Ī· μυνηματος @@ -15984,6 +16662,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected Φίλος ĻƒĻ…Ī½Ī“ĪµĪøĪ·ĪŗĪµ + + Connect Attempt + Ī£Ļ…Ī½Ī“Ī­ĻƒĪ· Ļ€ĻĪæĻƒĻ€Ī¬ĪøĪµĪ¹Ī±Ļ‚ + Connection refused by peer @@ -16022,13 +16704,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ + + Unknown Peer + Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ Peer + Hide Ī‘Ļ€ĪæĪŗĻĻ…ĻˆĪ· - + Send Message Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī® ĪœĪ·Ī½ĻĪ¼Ī±Ļ„ĪæĻ‚ @@ -16195,6 +16881,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + Φορμα + + PhotoDialog @@ -16202,11 +16895,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare PhotoShare + + Photo + Φωτογραφία + TextLabel Ετικετα κειμενου + + Comment + Σχολιο + + + Summary + Περίληψη + Album / Photo Name @@ -16267,6 +16972,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Προσθήκη ĻƒĻ‡ĪæĪ»ĪÆĪæĻ… + + + Write a comment... + Ī“ĻĪ¬ĻˆĻ„Īµ ένα ĻƒĻ‡ĻŒĪ»Ī¹Īæ... + Album @@ -16337,6 +17050,10 @@ p, li { white-space: pre-wrap; }āŽ Create Album Δημιουργία άλμπουμ + + View Album + Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ· άλμπουμ + Edit Album Details @@ -16358,17 +17075,17 @@ p, li { white-space: pre-wrap; }āŽ Προβολή Ī“Ī¹Ī±Ļ†Ī±Ī½ĪµĪ¹ĻŽĪ½ - + My Albums Τα αλμπουμ μου - + Subscribed Albums Εγγεγραμμένα Αλμπουμ - + Shared Albums ĪšĪæĪ¹Ī½ĻŒĻ‡ĻĪ·ĻƒĻ„Ī± άλμπουμ @@ -16397,7 +17114,7 @@ requesting to edit it! PhotoSlideShow - + Album Name Όνομα άλμπουμ @@ -16456,19 +17173,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16504,12 +17221,12 @@ requesting to edit it! PluginItem - + TextLabel Ετικετα κειμενου - + Show more details about this plugin Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ· Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĻ‰Ī½ λεπτομέρειων ĻƒĻ‡ĪµĻ„Ī¹ĪŗĪ¬ με Ī±Ļ…Ļ„ĻŒ το plugin @@ -16655,6 +17372,41 @@ p, li { white-space: pre-wrap; }āŽ Plugin look-up directories Plugin look-up ĪŗĪ±Ļ„Ī±Ī»ĻŒĪ³ĪæĻ…Ļ‚ + + No API number supplied. Please read plugin development manual. + Δεν περεχετε Ī±ĻĪ¹ĪøĪ¼ĻŒĻ‚ API. Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ Ī“Ī¹Ī±Ī²Ī¬ĻƒĻ„Īµ το εγχειρίΓιο ανάπτυξης plugin. + + + No SVN number supplied. Please read plugin development manual. + Δεν παρεχετε Ī±ĻĪ¹ĪøĪ¼ĻŒĻ‚ SVN. Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ Ī“Ī¹Ī±Ī²Ī¬ĻƒĻ„Īµ το εγχειρίΓιο ανάπτυξης plugin. + + + Loading error. + Σφάλμα Ļ†ĻŒĻĻ„Ļ‰ĻƒĪ·Ļ‚. + + + Missing symbol. Wrong version? + Λείπει το ĻƒĻĪ¼Ī²ĪæĪ»Īæ. Λάθος έκΓοση; + + + No plugin object + Κανένα αντικείμενο plugin + + + Plugins is loaded. + Plugins είναι φορτωμένο. + + + Unknown status. + Ī†Ī³Ī½Ļ‰ĻƒĻ„Ī· ĪŗĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Ελέγξτε Ī±Ļ…Ļ„ĻŒ για την ανάπτυξη των plugins. Αυτοί Γεν θα ελεγχθεί για τον ĪŗĪ±Ļ„Ī±ĪŗĪµĻĪ¼Ī±Ļ„Ī¹ĻƒĪ¼ĻŒ. Ī©ĻƒĻ„ĻŒĻƒĪæ, Ļ…Ļ€ĻŒ κανονικές ĻƒĻ…Ī½ĪøĪ®ĪŗĪµĻ‚, έλεγχος hash ĻƒĪ±Ļ‚ Ļ€ĻĪæĻƒĻ„Ī±Ļ„ĪµĻĪµĪ¹ Ī±Ļ€ĻŒ ĪŗĪ±ĪŗĻŒĪ²ĪæĻ…Ī»Ī· ĻƒĻ…Ī¼Ļ€ĪµĻĪ¹Ļ†ĪæĻĪ¬ του Γημιουργημένο plugins. + Plugins @@ -16724,27 +17476,12 @@ p, li { white-space: pre-wrap; }āŽ ĪŸĻĪ¹ĻƒĪ¼ĻŒĻ‚ παράθυρο ĻƒĻ„Ī·Ī½ κορυφή - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16797,7 +17534,7 @@ p, li { white-space: pre-wrap; }āŽ - + Vote up @@ -16817,8 +17554,8 @@ p, li { white-space: pre-wrap; }āŽ \/ - - + + Comments @@ -16843,13 +17580,13 @@ p, li { white-space: pre-wrap; }āŽ - - + + Comment - Ī£Ļ‡ĻŒĪ»Ī¹Īæ + - + Comments @@ -16877,12 +17614,20 @@ p, li { white-space: pre-wrap; }āŽ PostedCreatePostDialog - + Signed by: + ΄πογράφεται Ī±Ļ€ĻŒ: + + + Notes + Ī£Ī·Ī¼ĪµĪ¹ĻŽĻƒĪµĪ¹Ļ‚ + + + Create a new Post - + RetroShare RetroShare @@ -16897,22 +17642,12 @@ p, li { white-space: pre-wrap; }āŽ - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· αρχειου εικονας - + Post image @@ -16928,17 +17663,7 @@ p, li { white-space: pre-wrap; }āŽ - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16948,7 +17673,15 @@ p, li { white-space: pre-wrap; }āŽ - + Submit Post + ΄ποβάλει ĪøĪ­ĻƒĪ·Ļ‚ + + + Submit + ΄ποβολη + + + Please add a Title Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ Ļ€ĻĪæĻƒĪøĪ­ĻƒĻ„Īµ Τίτλο @@ -16968,22 +17701,12 @@ p, li { white-space: pre-wrap; }āŽ - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16998,7 +17721,7 @@ p, li { white-space: pre-wrap; }āŽ Ī”Ī·Ī¼ĪæĻƒĪÆĪµĻ…ĻƒĪ· ως - + Post @@ -17009,7 +17732,7 @@ p, li { white-space: pre-wrap; }āŽ Ī•Ī¹ĪŗĻŒĪ½Ī± - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17019,7 +17742,7 @@ p, li { white-space: pre-wrap; }āŽ Τίτλος - + Link Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚ @@ -17027,12 +17750,32 @@ p, li { white-space: pre-wrap; }āŽ PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Ī”Ī·Ī¼ĪæĻƒĪ¹ĪµĻĪøĪ·ĪŗĪµ ĻƒĻ…Ī½Ī“Ī­ĻƒĪµĪ¹Ļ‚ + + + My Topics + Τα θέματα μου + + + Subscribed Topics + Εγγεγραμμένα θέματα + + + Popular Topics + Δημοφιλής θέματα + + + Other Topics + Άλλα θέματα + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17066,7 +17809,27 @@ p, li { white-space: pre-wrap; }āŽ PostedGroupDialog - + Posted Topic + Το θεμα καταχωρήθηκε + + + Add Topic Admins + Προσθήκη θέματων Ī“Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ļ‰Ī½ + + + Select Topic Admins + Επιλέξτε το θέμα Admins + + + Create New Topic + Ī”Ī·Ī¼Ī¹ĪæĻ…ĻĪ³Ī®ĻƒĻ„Īµ ĪĪ­Īæ Θέμα + + + Edit Topic + Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± Ī˜Ī­Ī¼Ī±Ļ„ĪæĻ‚ + + + Create New Board @@ -17104,17 +17867,7 @@ p, li { white-space: pre-wrap; }āŽ PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17130,7 +17883,7 @@ p, li { white-space: pre-wrap; }āŽ - + Expand Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· @@ -17145,17 +17898,16 @@ p, li { white-space: pre-wrap; }āŽ - + Loading + Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + + Loading... - - Never - - - - + New Board @@ -17168,18 +17920,22 @@ p, li { white-space: pre-wrap; }āŽ PostedItem - + 0 0 - - + Site + Ī¤ĪæĻ€ĪæĪøĪµĻƒĪÆĪ± + + + + Comments Σχολια - + Copy RetroShare Link @@ -17190,12 +17946,12 @@ p, li { white-space: pre-wrap; }āŽ - + Comment Ī£Ļ‡ĻŒĪ»Ī¹Īæ - + Comments @@ -17205,7 +17961,7 @@ p, li { white-space: pre-wrap; }āŽ - + Click to view Picture @@ -17215,17 +17971,21 @@ p, li { white-space: pre-wrap; }āŽ - + Vote up - + Vote down - + \/ + \/ + + + Set as read and remove item ĪŸĻĪ¹ĻƒĪ¼ĪæĻ‚ ως Ī±Ī½Ī±Ī³Ī½Ļ‰ĻƒĪ¼Ī­Ī½Īæ και ĪŗĪ±Ļ„Ī¬ĻĪ³Ī·ĻƒĪ· ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪÆĪæĻ… @@ -17235,7 +17995,7 @@ p, li { white-space: pre-wrap; }āŽ ĪĪµĪæ - + New Comment: @@ -17245,7 +18005,7 @@ p, li { white-space: pre-wrap; }āŽ - + Name @@ -17286,10 +18046,69 @@ p, li { white-space: pre-wrap; }āŽ - + Loading Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· + + By + Ī‘Ļ€ĻŒ + + + + PostedListWidget + + Form + Φορμα + + + Hot + Ī–ĪµĻƒĻ„ĻŒ + + + New + ĪĪµĪæ + + + Top + ĪšĪæĻĻ…Ļ†Ī® + + + Today + Σήμερα + + + Yesterday + Χθες + + + This Week + Αυτή την εβΓομάΓα + + + This Month + Ī‘Ļ…Ļ„ĻŒ το μήνα + + + This Year + Φέτος + + + Next + Ī•Ļ€ĻŒĪ¼ĪµĪ½Īæ + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Ī”Ī·Ī¼Ī¹ĪæĻ…ĻĪ³Ī®ĻƒĻ„Īµ Ī® επιλέξτε ένα Id υπογραφής πριν Ī±Ļ€ĻŒ την ĻˆĪ·Ļ†ĪæĻ†ĪæĻĪÆĪ± + + + Previous + Ī ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Ī· + PostedListWidgetWithModel @@ -17309,17 +18128,7 @@ p, li { white-space: pre-wrap; }āŽ - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17329,15 +18138,15 @@ p, li { white-space: pre-wrap; }āŽ - + - + unknown Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ - + Distribution: @@ -17347,42 +18156,42 @@ p, li { white-space: pre-wrap; }āŽ - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Ī”Ī·Ī¼ĪæĻƒĪ¹ĪµĻĻƒĪµĪ¹Ļ‚ - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17402,7 +18211,7 @@ p, li { white-space: pre-wrap; }āŽ Ī–ĪµĻƒĻ„ĻŒ - + Search @@ -17432,17 +18241,17 @@ p, li { white-space: pre-wrap; }āŽ - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17457,17 +18266,12 @@ p, li { white-space: pre-wrap; }āŽ - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17477,31 +18281,27 @@ p, li { white-space: pre-wrap; }āŽ Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17516,7 +18316,7 @@ p, li { white-space: pre-wrap; }āŽ Εγγραφη - + Never @@ -17590,16 +18390,6 @@ p, li { white-space: pre-wrap; }āŽ No Channel Selected Δεν υπάρχει επιλεγμένο κανάλι - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17621,6 +18411,10 @@ p, li { white-space: pre-wrap; }āŽ PostedUserNotify + + Posted + ĪšĪ±Ļ„Ī±Ļ‡Ļ‰ĻĪ®ĪøĪ·ĪŗĪµ + Board Post @@ -17689,16 +18483,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17806,7 +18600,7 @@ and use the import button to load it ProfileWidget - + Edit status message Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪ¹Ī± μήνυματος ĪŗĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·Ļ‚ @@ -17822,7 +18616,7 @@ and use the import button to load it Ī”Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ī·Ļ‚ προφιλ - + Public Information Ī”Ī·Ī¼ĪæĻƒĪ¹ĪµĻ‚ πληροφοριες @@ -17857,12 +18651,12 @@ and use the import button to load it Online Ī±Ļ€ĻŒ: - + Other Information Άλλες πληροφορίες - + My Address Ī— Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ® μου @@ -17906,27 +18700,51 @@ and use the import button to load it PulseAddDialog - + Post From: + ĪšĪ±Ļ„Ī±Ļ‡ĻŽĻĪ·ĻƒĪ· Ī±Ļ€ĻŒ: + + + Account 1 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ 1 + + + Account 2 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĪæĻ‚ 2 + + + Account 3 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ 3 + + + Add to Pulse Προσθηκη ĻƒĻ„Īæ Pulse - + filter + φίλτρο + + + URL Adder + URL Ī±ĪøĻĪæĪ¹ĻƒĻ„Ī®Ļ‚ + + + Display As Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· ως - + URL URL - + GroupLabel - + IDLabel @@ -17936,12 +18754,12 @@ and use the import button to load it Ī‘Ļ€ĻŒ: - + Head - + Head Shot @@ -17971,13 +18789,13 @@ and use the import button to load it Ī‘ĻĪ½Ī·Ļ„Ī¹ĪŗĻŒ - - + + Whats happening? - + @@ -17989,22 +18807,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18013,13 +18821,17 @@ and use the import button to load it Cancel Διακοπη + + Post Pulse to Wire + Θέση Ļ€Ī±Ī»Ī¼ĻŒ για ĻƒĻĻĪ¼Ī± + Post - + Reply to Pulse @@ -18034,24 +18846,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Ī¦ĪæĻĻ„Ļ‰ĻƒĪ· αρχειου εικονας + From + Απο + + + Date + Ημερομηνία + + + ... + ... @@ -18062,7 +18884,7 @@ and use the import button to load it - + @@ -18081,7 +18903,7 @@ and use the import button to load it PulseReply - + icn @@ -18091,7 +18913,7 @@ and use the import button to load it - + REPLY @@ -18118,7 +18940,7 @@ and use the import button to load it - + FOLLOW @@ -18128,7 +18950,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18148,7 +18970,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18264,7 +19086,7 @@ and use the import button to load it - + FOLLOW @@ -18272,42 +19094,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18339,7 +19156,7 @@ and use the import button to load it - + FOLLOW @@ -18347,8 +19164,8 @@ and use the import button to load it QObject - - + + Confirmation Ī•Ļ€Ī¹Ī²ĪµĪ²Ī±ĪÆĻ‰ĻƒĪ· @@ -18618,12 +19435,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Peer λεπτομέρειες - + 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. Αυτή Ī· έκΓοση του RetroShare Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹ĪµĪÆ το OpenPGP-SDK. Ως παρενέργεια, Γεν Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹ĪµĪÆ το κοινό ĻƒĻĻƒĻ„Ī·Ī¼Ī± Ī“Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ·Ļ‚ ĪŗĪ»ĪµĪ¹Ī“Ī¹ĻŽĪ½ του PGP, αλλά έχει είναι Γική ĪœĪ Ī”Ī•Ī›ĪŸĪš ĻƒĻ…Ī¼Ī¼ĪµĻĪÆĪ¶ĪæĪ½Ļ„Ī±Ī¹ ĻŒĪ»ĪµĻ‚ οι Ļ€Ī±ĻĪæĻ…ĻƒĪÆĪµĻ‚ RetroShare. <br><br>Δεν φαίνεται να έχουν ένα τέτοιο Ī¼Ļ€ĻĪµĪ»ĻŒĪŗ, αν και τα κλειΓιά του PGP αναφέρονται Ī±Ļ€ĻŒ τους υπάρχοντες Ī»ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĪæĻĻ‚ eMule ομάΓα + Ultra, Ļ€Ī¹ĪøĪ±Ī½ĻŽĻ‚ επειΓή έχετε αλλάξει μόνο σε αυτήν την νέα έκΓοση του Ī»ĪæĪ³Ī¹ĻƒĪ¼Ī¹ĪŗĪæĻ. @@ -18654,7 +19471,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Ī Ī±ĻĪæĻ…ĻƒĪ¹Ī¬ĻƒĻ„Ī·ĪŗĪµ μη αναμενόμενο ĻƒĻ†Ī¬Ī»Ī¼Ī±. Ī Ī±ĻĪ±ĪŗĪ±Ī»ĪæĻĪ¼Īµ να το αναφέρετε» RsInit::InitRetroShare Ī±Ļ€ĻĪæĻƒĪ“ĻŒĪŗĪ·Ļ„Ī· ĪµĻ€Ī¹ĻƒĻ„ĻĪæĻ†Ī® ĪŗĻ‰Ī“Ī¹ĪŗĻŒĻ‚ % 1Ā». - + Cannot start Tor Manager! @@ -18688,7 +19505,7 @@ The error reported is:" - + Multiple instances Πολλές ĪµĪ¼Ļ†Ī±Ī½ĪÆĻƒĪµĪ¹Ļ‚ @@ -18709,26 +19526,6 @@ The error reported is:" Ī Ī±ĻĪæĻ…ĻƒĪ¹Ī¬ĻƒĻ„Ī·ĪŗĪµ μη αναμενόμενο ĻƒĻ†Ī¬Ī»Ī¼Ī± ĻŒĻ„Ī±Ī½ το Retroshare Ļ€ĻĪæĻƒĻ€Ī¬ĪøĪ·ĻƒĪµ να Ī±Ļ€ĪæĪŗĻ„Ī®ĻƒĪµĪ¹ το μόνο παράΓειγμα κλείΓωμα κλειΓωμένο αρχείο: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18808,7 +19605,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18818,7 +19615,7 @@ Reported error is: - + enabled ενεργοποιημένο @@ -18828,7 +19625,7 @@ Reported error is: απενεργοποιημένο - + Move IP %1 to whitelist @@ -18844,7 +19641,7 @@ Reported error is: - + %1 seconds ago %1 Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī± πριν @@ -18911,7 +19708,7 @@ Security: no anonymous IDs - + Join chat room @@ -18939,7 +19736,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19119,29 +19916,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - - - - - Address - - - - - Status - + NXS @@ -19334,6 +20115,10 @@ Security: no anonymous IDs Click to resume the hashing process + + <p>This certificate contains: + <p>Ī‘Ļ…Ļ„ĻŒ το Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĻŒ περιλαμβάνει: + Idle @@ -19384,18 +20169,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19560,7 +20333,7 @@ p, li { white-space: pre-wrap; }āŽ - + Network Wide Δίκτυο ευρείας @@ -19734,7 +20507,7 @@ p, li { white-space: pre-wrap; } Φορμα - + The loading of embedded images is blocked. @@ -19747,7 +20520,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19920,22 +20693,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19943,12 +20706,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20638,7 +21401,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20759,7 +21522,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20779,7 +21542,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20835,7 +21598,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20849,6 +21612,11 @@ prevents the message to be forwarded to your friends. [Unknown] [Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ] + + + [ ... Missing Message ... ] + [ ... Λείπει ενα μήνυμα...] + RsMessageModel @@ -20862,11 +21630,6 @@ prevents the message to be forwarded to your friends. From - - - To - Στον - Subject @@ -20889,18 +21652,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + ĪšĪ¬Ī½Ļ„Īµ κλικ για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ Ī±Ļ€ĻŒ read - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + ĪšĪ¬Ī½Ļ„Īµ κλικ ĻƒĻ„Īæ κουμπί για να Ļ„Ī±Ī¾Ī¹Ī½ĪæĪ¼Ī®ĻƒĪµĻ„Īµ Ī±Ļ€ĻŒ Ī±Ļ€ĻŒ @@ -20923,9 +21681,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20946,7 +21702,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Επαναφέρει όλα της αποθηκευμένα ĻĻ…ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚ της RetroShare. @@ -21007,7 +21763,7 @@ prevents the message to be forwarded to your friends. Ορίζει το eMule ομάΓα + Ultra του Ī³Ī»ĻŽĻƒĻƒĪ±. - + Unable to open log file '%1': %2 Δεν είναι Γυνατή Ī· Ī±Ī½ĪæĪ¹Ļ‡Ļ„ĻŒ αρχείο καταγραφής '% 1': %2 @@ -21028,7 +21784,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -21058,7 +21814,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21076,7 +21832,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21093,12 +21849,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Ī•Ī¹ĻƒĪ¬Ī³ĪµĻ„Īµ μια λέξη-κλειΓί ĪµĪ“ĻŽ (Ļ„ĪæĻ…Ī»Ī¬Ļ‡Ī¹ĻƒĻ„ĪæĪ½ 3 char μακρά) - + Start Search Έναρξη Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ @@ -21159,7 +21915,7 @@ prevents the message to be forwarded to your friends. Ī•ĪŗĪŗĪ±ĪøĪ±ĻĪ¹ĻƒĪ· - + KeyWords Λέξεις-κλειΓιά @@ -21174,7 +21930,7 @@ prevents the message to be forwarded to your friends. Ī‘Ī½Ī±Ī³Ī½Ļ‰ĻĪ¹ĻƒĻ„Ī¹ĪŗĻŒ Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ - + Filename Όνομα αρχείου @@ -21274,23 +22030,23 @@ prevents the message to be forwarded to your friends. Ī›Ļ…ĻˆĪ· επιλεγμενου - + File Name Ονομα αρχειου - + Download Ī›Ļ…ĻˆĪ· - + Copy RetroShare Link Αντιγραφη του Λινκ - + Send RetroShare Link Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī· ενος RetroShare λινκ @@ -21300,7 +22056,7 @@ prevents the message to be forwarded to your friends. - + Download Notice Ī›Ļ…ĻˆĪ· Ī±Ī½Ī±ĪŗĪæĪÆĪ½Ļ‰ĻƒĪ·Ļ‚ @@ -21337,7 +22093,7 @@ prevents the message to be forwarded to your friends. ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· ολων - + Folder Φάκελος @@ -21348,17 +22104,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) ĪĪ­Ī± RetroShare Λινκ(s) - + Open Folder Άνοιγμα Φακέλου - + Create Collection... Δημιουργία Συλλογής ... @@ -21378,7 +22134,7 @@ prevents the message to be forwarded to your friends. Ī›Ļ…ĻˆĪ· απο ĻƒĻ…Ī»Ī»ĪæĪ³Ī· αρχειων... - + Collection Συλλογή @@ -21386,7 +22142,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Peer λεπτομέρειες @@ -21402,22 +22158,22 @@ prevents the message to be forwarded to your friends. Ī‘Ļ€ĪæĪ¼Ī±ĪŗĻĻ…Ī½ĻƒĪ· ĻƒĻ„ĪæĪ¹Ļ‡ĪµĪ¹ĪæĻ… - + IP address: Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· IP: - + Peer ID: Peer ID: - + Location: Τοπος: - + Peer Name: @@ -21434,7 +22190,7 @@ prevents the message to be forwarded to your friends. Ī‘Ļ€ĪæĪŗĻĻ…ĻˆĪ· - + but reported: @@ -21459,8 +22215,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21468,7 +22224,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare θέλει να είναι φίλος μαζί ĻƒĪ±Ļ‚ ĻƒĻ„Īæ RetroShare @@ -21499,7 +22255,7 @@ prevents the message to be forwarded to your friends. - + Expand Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· @@ -21544,12 +22300,12 @@ prevents the message to be forwarded to your friends. ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ·: - + Write Message Ī•Ī¹ĻƒĪ±Ī³Ļ‰Ī³Ī· μυνηματος - + Connect Attempt Ī£Ļ…Ī½Ī“Ī­ĻƒĻ„Īµ την Ļ€ĻĪæĻƒĻ€Ī¬ĪøĪµĪ¹Ī± @@ -21569,22 +22325,17 @@ prevents the message to be forwarded to your friends. Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ (ĪµĪ¾ĪµĻĻ‡ĻŒĪ¼ĪµĪ½Ī·) ĻƒĻĪ½Ī“ĪµĻƒĪ· Ļ€ĻĪæĻƒĻ€Ī¬ĪøĪµĪ¹Ī± - + Unknown Security Issue Ī‘Ī³Ī½Ļ‰ĻƒĻ„Īæ θεμα Ī±ĻƒĻ†Ī±Ī»ĪµĪ¹Ī±Ļ‚ - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ @@ -21594,7 +22345,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ Peer + + + Hide Ī‘Ļ€ĪæĪŗĻĻ…ĻˆĪ· @@ -21604,7 +22359,7 @@ prevents the message to be forwarded to your friends. Ī˜Ī­Ī»ĪµĻ„Īµ να Ī“Ī¹Ī±Ī³ĻĪ±ĻˆĪµĻ„Īµ Ī±Ļ…Ļ„ĻŒĪ½ τον φίλο? - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21614,12 +22369,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21678,12 +22433,12 @@ prevents the message to be forwarded to your friends. - + Local Address Τοπική Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· - + NAT @@ -21704,22 +22459,22 @@ prevents the message to be forwarded to your friends. ΄ποΓοχη: - + Local network Ī¤ĪæĻ€Ī¹ĪŗĻŒ Γίκτυο - + External ip address finder Ī‘Ī½Ī±Ī¶Ī·Ļ„Ī·ĻƒĪ· εξωτερικής ip Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚ - + UPnP UPnP - + Known / Previous IPs: Ī“Ī½Ļ‰ĻƒĻ„Ī± / Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Ī± IPs: @@ -21732,16 +22487,21 @@ behind a firewall or a VPN. Εάν ĪŗĪ±Ļ„Ī±ĻĪ³Ī®ĻƒĪµĻ„Īµ την επιλογή αυτή, το RetroShare μπορεί να καθορίσει μόνο IP ĻƒĪ±Ļ‚ ĻŒĻ„Ī±Ī½ ĻƒĻ…Ī½Ī“Ī­ĪµĻƒĻ„Īµ σε κάποιον. Αφήνοντας Ī±Ļ…Ļ„ĻŒ ελέγχεται βοηθά τη ĻƒĻĪ½Ī“ĪµĻƒĪ· ĻŒĻ„Ī±Ī½ έχετε Ī¼ĪµĻĪ¹ĪŗĪæĻĻ‚ φίλους. Βοηθά ĪµĻ€ĪÆĻƒĪ·Ļ‚ εάν ĪµĪÆĻƒĻ„Īµ Ļ€ĪÆĻƒĻ‰ Ī±Ļ€ĻŒ ένα τείχος Ļ€ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ Ī® ένα VPN. - - - + + Allow RetroShare to ask my ip to these websites: + Επιτρέπει το eMule ομάΓα + Ultra να ĻĻ‰Ļ„Ī®ĻƒĻ‰ ip μου σε Ī±Ļ…Ļ„ĪæĻĻ‚ τους Ī¹ĻƒĻ„ĪæĻ‡ĻŽĻĪæĻ…Ļ‚: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21751,46 +22511,23 @@ behind a firewall or a VPN. - + Onion Address Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· Onion - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21800,7 +22537,7 @@ List of found external IP: - + I2P Address @@ -21825,95 +22562,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21928,7 +22607,71 @@ When changing options use the buttons at the bottom to restart SAMv3. Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ - + + + + 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 @@ -21938,7 +22681,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21950,12 +22708,12 @@ 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> @@ -21965,7 +22723,7 @@ Also check your ports! Ī•ĪŗĪŗĪ±ĪøĪ±ĻĪ¹ĻƒĪ· - + Download limit (KB/s) @@ -21980,23 +22738,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22007,7 +22765,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22017,7 +22785,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22027,7 +22800,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22067,7 +22850,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Εναρξη @@ -22082,7 +22865,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Ī Ī±Ļ…ĻƒĪ· - + + BOB status + + + + Incoming Ī•Ī¹ĻƒĪµĻĻ‡ĻŒĪ¼ĪµĪ½Ī± @@ -22118,32 +22906,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22198,7 +22961,7 @@ If you have issues connecting over Tor check the Tor logs too. Ī£ĻĪ½ĪæĪ»Īæ: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22223,7 +22986,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22235,7 +22998,7 @@ If you have issues connecting over Tor check the Tor logs too. Δίκτυο - + IP Filters @@ -22258,7 +23021,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ· @@ -22318,28 +23081,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22355,18 +23107,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22401,12 +23153,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22429,22 +23181,22 @@ 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> @@ -22479,7 +23231,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22489,12 +23241,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22574,7 +23326,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with Ελέγξτε τους ομοτυμους που θα θέλατε να Ī¼ĪæĪ¹ĻĪ±ĻƒĻ„ĪµĪÆĻ„Īµ το ιΓιωτικο ĻƒĪ±Ļ‚ κλειΓι Ī“Ī·Ī¼ĪæĻƒĪ¹ĪµĻ…ĻƒĪ·Ļ‚ @@ -22584,12 +23336,12 @@ 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. @@ -22608,7 +23360,7 @@ Select the Friends with which you want to Share your Channel. Μοιρασμα Ī“Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ī· - + Shared directory @@ -22628,17 +23380,17 @@ Select the Friends with which you want to Share your Channel. ĪŸĻĪ±Ļ„ĻŒĻ„Ī·Ļ„Ī± - + Add new - + Cancel - + Add a Share Directory Ī ĻĪæĻƒĪøĪ­ĻƒĻ„Īµ έναν κατάλογο μεριΓίου @@ -22648,7 +23400,7 @@ Select the Friends with which you want to Share your Channel. ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· - + Apply and close Ī£Ļ…ĻƒĻ‡Ī­Ļ„Ī¹ĻƒĪ· και κλείσιμο @@ -22739,7 +23491,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. @@ -22747,7 +23499,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files Αρχεια @@ -22798,16 +23550,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files Ελεγχος αρχειων - + Download selected Ī›Ļ…ĻˆĪ· επιλεγμενου @@ -22817,7 +23564,7 @@ Select the Friends with which you want to Share your Channel. Ī›Ļ…ĻˆĪ· - + Copy retroshare Links to Clipboard Αντιγραφη των retroshare Λινκ ĻƒĻ„Īæ Clipboard @@ -22832,7 +23579,7 @@ Select the Friends with which you want to Share your Channel. Ī‘Ļ€ĪæĻƒĻ„ĪæĪ»Ī· των retroshare Λινκ - + Some files have been omitted @@ -22848,7 +23595,7 @@ Select the Friends with which you want to Share your Channel. Recommendation(s) - + Create Collection... Δημιουργία Συλλογής ... @@ -22873,7 +23620,7 @@ Select the Friends with which you want to Share your Channel. Ī›Ļ…ĻˆĪ· απο ĻƒĻ…Ī»Ī»ĪæĪ³Ī· αρχειων... - + Some files have been omitted because they have not been indexed yet. @@ -23016,12 +23763,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration Ī”ĻĪøĪ¼Ī¹ĻƒĪ· παραμέτρων - + Create interface Δημιουργία Ī“Ī¹Ī±ĻƒĻĪ½Ī“ĪµĻƒĪ·Ļ‚ @@ -23045,7 +23792,7 @@ Select the Friends with which you want to Share your Channel. Ī•ĪŗĪøĻ…Ī¼Ī·ĻƒĪ· του κωΓικου - + Log In Ī£Ļ…Ī½Ī“Ī­ĻƒĪ· @@ -23384,7 +24131,7 @@ This choice can be reverted in settings. ĪœĪ®Ī½Ļ…Ī¼Ī± ĪŗĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·Ļ‚ - + Message: ĪœĪ®Ī½Ļ…Ī¼Ī±: @@ -23629,7 +24376,7 @@ p, li { white-space: pre-wrap; }āŽ TagsMenu - + Remove All Tags Ī‘Ļ†Ī±Ī¹ĻĪ­ĻƒĪ· ολων των ετικετων @@ -23665,15 +24412,12 @@ p, li { white-space: pre-wrap; }āŽ - - + Tor status: - - - + Unknown Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ @@ -23683,13 +24427,18 @@ p, li { white-space: pre-wrap; }āŽ - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23699,57 +24448,12 @@ p, li { white-space: pre-wrap; }āŽ - - Error - - - - - Not connected - Μη ĻƒĻ…Ī½Ī“ĪµĪ“ĪµĪ¼Ī­Ī½ĪæĻ‚ - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23757,7 +24461,7 @@ p, li { white-space: pre-wrap; }āŽ TorStatus - + Tor @@ -23767,7 +24471,7 @@ p, li { white-space: pre-wrap; }āŽ - + Tor is currently offline @@ -23778,12 +24482,11 @@ p, li { white-space: pre-wrap; }āŽ - No tor configuration - + Tor proxy is OK @@ -23811,7 +24514,7 @@ p, li { white-space: pre-wrap; }āŽ TransferPage - + Transfer options Επιλογές μεταφοράς @@ -23822,7 +24525,7 @@ p, li { white-space: pre-wrap; }āŽ ĪœĪ­Ī³Ī¹ĻƒĻ„Ī· Ļ„Ī±Ļ…Ļ„ĻŒĻ‡ĻĪæĪ½Ī· Ī»Ļ…ĻˆĪ·: - + Shared Directories @@ -23832,27 +24535,22 @@ p, li { white-space: pre-wrap; }āŽ Διαμοιράζονται Ī±Ļ…Ļ„ĻŒĪ¼Ī±Ļ„Ī± τα Ī•Ī¹ĻƒĪµĻĻ‡ĻŒĪ¼ĪµĪ½Ī± κατάλογο (ĻƒĻ…Ī½Ī¹ĻƒĻ„Ī¬Ļ„Ī±Ī¹) - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23937,7 +24635,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23946,12 +24644,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23976,12 +24669,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Streaming @@ -24046,7 +24734,12 @@ p, li { white-space: pre-wrap; } Max. σήραγγα Αίτ. Γιαβιβάζονται ανά Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Īæ: - + + <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> @@ -24056,17 +24749,7 @@ p, li { white-space: pre-wrap; } - - Warning - Ī ĻĪæĪµĪ¹Ī“ĪæĻ€ĪæĪÆĪ·ĻƒĪ· - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24094,7 +24777,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed ĪŸĪ»ĪæĪŗĪ»Ī·ĻĻ‰ĻƒĪ· Ī»Ļ…ĻˆĪ·Ļ‚ @@ -24118,23 +24801,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + ĪˆĻ‡ĪµĻ„Īµ %1 ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪ¼ĪµĪ½Ī· Ī»Ļ…ĻˆĪ· + + + You have %1 completed download + Ī— λήψη %1 ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪøĪ·ĪŗĪµ + + + %1 completed downloads + %1 ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪ¼ĪµĪ½Ī· Ī»Ļ…ĻˆĪ· + + + %1 completed download + %1 ĪæĪ»ĪæĪŗĪ»Ī·ĻĻŽĪ¼ĪµĪ½Ī· Ī»Ļ…ĻˆĪ· + TransfersDialog - - + + Downloads Ī›Ī®ĻˆĪµĪ¹Ļ‚ - + Uploads Ī ĻĪæĻƒĪøĪ®ĪŗĪµĻ‚ - + Name i.e: file name Ονομα @@ -24341,12 +25040,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> - - - - + Move in Queue... ĪœĪµĻ„Ī±ĪŗĪÆĪ½Ī·ĻƒĪ· ĻƒĻ„Ī·Ī½ ουρά... @@ -24371,7 +25065,7 @@ p, li { white-space: pre-wrap; } Επιλογη κατάλογου - + Anonymous end-to-end encrypted tunnel 0x @@ -24392,7 +25086,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24425,17 +25119,7 @@ p, li { white-space: pre-wrap; } Το αρχείο %1 Γεν έχει ολοκληρωθεί. Εάν είναι ένα αρχείο Ļ€ĪæĪ»Ļ…Ī¼Ī­ĻƒĻ‰Ī½, Ļ€ĻĪæĻƒĻ€Ī±ĪøĪ®ĻƒĻ„Īµ να κάνετε Ļ€ĻĪæĪµĻ€Ī¹ĻƒĪŗĻŒĻ€Ī·ĻƒĪ·. - - Warning - Ī ĻĪæĪµĪ¹Ī“ĪæĻ€ĪæĪÆĪ·ĻƒĪ· - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Αλλαγή ĻŒĪ½ĪæĪ¼Ī±Ļ„ĪæĻ‚ αρχείου @@ -24450,7 +25134,7 @@ p, li { white-space: pre-wrap; } Ī Ī±ĻĪ±ĪŗĪ±Ī»ĪæĻĪ¼Īµ ĪµĪ¹ĻƒĪ¬Ī³ĪµĻ„Īµ ένα νέο--και έγκυρο--όνομα αρχείου - + Expand all Ī•Ļ€ĪµĪŗĻ„Ī±ĻƒĪ· ολων @@ -24577,18 +25261,23 @@ 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> + + + + Columns Στήλες - + File Transfers - + Path ΔιαΓρομή @@ -24598,7 +25287,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24608,7 +25297,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... Δημιουργία Συλλογής ... @@ -24623,7 +25312,7 @@ p, li { white-space: pre-wrap; } Ī•Ī¼Ļ†Ī¬Ī½Ī¹ĻƒĪ· Συλλογής ... - + Collection Συλλογή @@ -24633,7 +25322,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -25047,17 +25736,12 @@ p, li { white-space: pre-wrap; } Φορμα - + Enable Retroshare WEB Interface - - Status: - ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ·: - - - + Web parameters Παράμετροι Ī“Ī¹ĪŗĻ„ĻĪæĻ… @@ -25097,27 +25781,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25127,12 +25801,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25269,7 +25943,11 @@ p, li { white-space: pre-wrap; } ΣελίΓες wiki - + New Group + ĪĪ­Ī± ομάΓα + + + Page Name Όνομα ĻƒĪµĪ»ĪÆĪ“Ī±Ļ‚ @@ -25284,7 +25962,7 @@ p, li { white-space: pre-wrap; } Orig Id - + << << @@ -25372,7 +26050,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History ΣελίΓα ĪµĻ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ±Ļ‚ Ī¹ĻƒĻ„ĪæĻĪÆĪŗĪæĻ… @@ -25407,7 +26085,7 @@ p, li { white-space: pre-wrap; } PageId - + \/ \/ @@ -25437,18 +26115,14 @@ p, li { white-space: pre-wrap; } Ετικέτες - - History - Ī™ĻƒĻ„ĪæĻĪ¹ĪŗĻŒ - - - + + Show Edit History Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ· Ī¹ĻƒĻ„ĪæĻĪ¹ĪŗĻŒĻ… - + Status ĪšĪ±Ļ„Ī±ĻƒĻ„Ī±ĻƒĪ· @@ -25469,7 +26143,7 @@ p, li { white-space: pre-wrap; } Επαναφορά - + Submit ΄ποβολη @@ -25541,6 +26215,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + TimeRange + Create Account @@ -25552,7 +26230,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Ī‘Ī½Ī±Ī½Ī­Ļ‰ĻƒĪ· + + + Settings @@ -25567,7 +26254,7 @@ p, li { white-space: pre-wrap; } Άλλοι - + Who to Follow @@ -25587,7 +26274,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25617,17 +26304,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Ī ĪµĻĪ±ĻƒĪ¼Ī­Ī½ĪæĻ‚ μήνας + + + Last Week + Ī ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Ī· εβΓομάΓα + + + Today + Σήμερα + + + New + ĪĪµĪæ + + + from + Ī±Ļ€ĻŒ + + + until + μέχρι + + + Search/Filter + Φίλτρο Ī±Ī½Ī±Ī¶Ī®Ļ„Ī·ĻƒĪ·Ļ‚ + + + Network Wide + Δίκτυο ευρείας + + + Manage Accounts + Ī”Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· Ī»ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŽĪ½ + + + Showing: + Ī•Ī¼Ļ†Ī±Ī½Ī¹ĻƒĪ·: + + + Yourself τον ĪµĪ±Ļ…Ļ„ĻŒ ĻƒĪ±Ļ‚ + + Friends + Φίλοι + Following ĪœĪµĻ„Ī¬ - + Custom + Προσαρμογη + + + Account 1 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ 1 + + + Account 2 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĪæĻ‚ 2 + + + Account 3 + Ī›ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ 3 + + + CheckBox + Πλαίσιο ελέγχου + + + Post Pulse to Wire + Θέση Ļ€Ī±Ī»Ī¼ĻŒ για ĻƒĻĻĪ¼Ī± + + + RetroShare RetroShare @@ -25690,42 +26445,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - ĪœĪµĻ„Ī±ĪŗĪ¹Ī½Ī·ĻƒĪ· - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25770,41 +26518,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - ĪœĪµĻ„Ī¬ - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ @@ -25882,7 +26600,7 @@ p, li { white-space: pre-wrap; } % 1y % 2d - + k e.g: 3.1 k k @@ -25915,11 +26633,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Ī•Ī¹ĪŗĻŒĪ½ĪµĻ‚ (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_en.ts b/retroshare-gui/src/lang/retroshare_en.ts index 74a7b83b3..d11bfb453 100644 --- a/retroshare-gui/src/lang/retroshare_en.ts +++ b/retroshare-gui/src/lang/retroshare_en.ts @@ -121,12 +121,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +136,7 @@ - + Cancels the search. @@ -540,7 +540,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. @@ -566,23 +566,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +612,7 @@ p, li { white-space: pre-wrap; } - + Set your Avatar picture @@ -712,7 +699,7 @@ p, li { white-space: pre-wrap; } - + Always on Top @@ -808,7 +795,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +825,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +838,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +858,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +896,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +916,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +946,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +956,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -977,12 +964,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +989,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand @@ -1028,12 +1015,12 @@ p, li { white-space: pre-wrap; } - + Name - + Comm value @@ -1202,17 +1189,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1209,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1217,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1240,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1265,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand @@ -1314,7 +1291,7 @@ into the image, so as to - + Name @@ -1324,7 +1301,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1332,7 +1319,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1523,7 +1510,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1543,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1557,13 @@ into the image, so as to ChatLobbyWidget - - + + Name - + Count @@ -1587,7 +1573,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1605,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1662,12 @@ 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: @@ -1669,42 +1677,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,22 +1703,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1744,47 +1738,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1793,7 @@ Double click a chat room to enter and chat. - + Show @@ -1819,7 +1813,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item @@ -1864,7 +1858,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1873,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1893,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1918,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1948,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1958,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +1982,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2052,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2067,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2164,7 @@ Double click a chat room to enter and chat. - + Case sensitive @@ -2296,7 +2270,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2306,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2341,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2426,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2468,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2490,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2540,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2562,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2577,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2598,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2614,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2639,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2665,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2687,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2713,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2773,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2789,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2841,45 @@ Double click on it to add his name on text writer. - + RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2889,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +2971,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +2996,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3064,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3080,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: @@ -3121,17 +3095,17 @@ Double click on it to add his name on text writer. - + Options - + <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: @@ -3141,7 +3115,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3140,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3165,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3236,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3266,12 @@ 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? - + @@ -3310,7 +3279,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3319,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3344,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3354,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3393,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3403,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3428,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3441,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3476,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3486,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3556,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3584,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3594,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3614,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3629,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3654,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3946,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3954,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3964,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4000,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4058,7 +4025,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4045,18 @@ p, li { white-space: pre-wrap; } - + Cancel - + Nickname - + Invited Members @@ -4104,7 +4071,7 @@ p, li { white-space: pre-wrap; } - + Name: @@ -4144,19 +4111,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4133,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add @@ -4193,7 +4148,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4201,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4226,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4261,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4271,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4416,17 @@ p, li { white-space: pre-wrap; } - + RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4451,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4466,18 @@ p, li { white-space: pre-wrap; } - + + 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? @@ -4555,7 +4511,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4521,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4536,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4560,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4590,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title @@ -4697,7 +4653,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4663,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4687,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4722,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4732,7 @@ Do you want to discard this message? - + require PGP-signed identities @@ -4791,7 +4747,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4768,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4776,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: - + Location: @@ -4840,12 +4796,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4821,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4836,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4846,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4866,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4936,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5052,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5720,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5728,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5767,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5934,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5944,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6004,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6130,7 @@ and use the import button to load it - + ID @@ -6216,7 +6172,7 @@ and use the import button to load it - + Group @@ -6252,7 +6208,7 @@ and use the import button to load it - + Search @@ -6268,7 +6224,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6461,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6499,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6510,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6602,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6646,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6656,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6687,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6738,12 @@ Also check your ports! - + <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 @@ -6923,43 +6753,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6828,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6844,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6879,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6889,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6904,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7135,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7165,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7205,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7272,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7322,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7451,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7459,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7629,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -7807,12 +7642,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7672,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7687,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name @@ -7870,13 +7705,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7724,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7860,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7871,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7906,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7946,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +7981,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8169,7 +8004,7 @@ p, li { white-space: pre-wrap; } GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8042,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8058,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -8248,7 +8073,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8087,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8096,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8117,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8179,18 @@ p, li { white-space: pre-wrap; } - + New - + 0 - - + + Comment @@ -8385,17 +8205,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8423,13 +8243,13 @@ p, li { white-space: pre-wrap; } GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8319,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8355,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8370,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8391,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8406,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8466,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8546,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8602,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8727,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8740,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8770,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8809,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8833,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8842,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; } @@ -9077,7 +8871,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8902,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +8953,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +8969,7 @@ before you can comment - + Expand @@ -9194,11 +8988,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9017,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9034,7 @@ before you can comment - + Expand @@ -9265,17 +9054,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide @@ -9288,66 +9077,59 @@ before you can comment - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + New Thread + + + Threaded View + + + + + Flat View + + - + Title - - + + Date - + Author - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9139,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9184,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9456,12 +9243,12 @@ before you can comment - + Hide - + [unknown] @@ -9491,8 +9278,8 @@ before you can comment - - + + Distribution @@ -9575,12 +9362,12 @@ before you can comment - + New thread - + Edit @@ -9641,7 +9428,7 @@ before you can comment - + Show column @@ -9661,7 +9448,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9500,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9510,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9525,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9591,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9844,12 +9631,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9647,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9660,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9720,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9743,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9759,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9781,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9813,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9838,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9853,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +9928,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +9944,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create - + + Author + + + + GxsIdLabel @@ -10191,7 +9972,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10032,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10089,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10117,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10130,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10147,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10157,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10177,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10188,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10236,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10623,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10639,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10658,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10732,7 @@ p, li { white-space: pre-wrap; } - + Add friend @@ -10974,7 +10742,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10770,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10780,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10790,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10810,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10828,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10848,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11118,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11135,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11150,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11165,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11201,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11243,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11264,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11609,17 +11346,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 @@ -11634,24 +11371,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11403,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11413,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11488,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11518,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11801,7 +11533,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11581,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. @@ -11857,7 +11589,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11632,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11712,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11728,17 @@ 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> + + + + positive @@ -12106,7 +11843,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11893,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11917,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +11932,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +11947,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +11972,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +11987,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +11995,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12025,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12039,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12049,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12060,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12100,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12110,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12125,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12140,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12150,10 @@ These identities will soon be not supported anymore. - + Choose image... - - - Remove - - @@ -12459,7 +12179,7 @@ These identities will soon be not supported anymore. - + Create @@ -12469,13 +12189,13 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12205,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12279,7 @@ These identities will soon be not supported anymore. - + Copy @@ -12569,12 +12289,12 @@ These identities will soon be not supported anymore. - + %1 's Message History - + Mark all @@ -12597,34 +12317,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12346,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12387,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12396,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12425,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12453,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12469,7 @@ These identities will soon be not supported anymore. - - + Options @@ -12802,7 +12490,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12501,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12531,11 @@ These identities will soon be not supported anymore. - Status - + Notify @@ -12859,35 +12546,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help - - + Minimize - + Maximize @@ -12902,12 +12585,7 @@ These identities will soon be not supported anymore. - - Close window - - - - + %1 new message @@ -12937,7 +12615,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12635,7 @@ These identities will soon be not supported anymore. - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12680,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12700,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12709,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12755,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12775,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12811,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12906,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +12946,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +12966,18 @@ 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? @@ -13311,17 +12988,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13008,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13018,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13380,7 +13047,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13057,30 @@ Do you want to save message to draft box? - - - + + + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13528,13 +13195,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13221,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13242,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13272,18 @@ Do you want to save message ? - - + + Close - + From: - + Bullet list (disc) @@ -13656,13 +13323,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13339,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: @@ -13755,7 +13422,7 @@ Do you want to save message ? - + A new tab @@ -13765,7 +13432,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13455,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13463,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13491,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13501,37 @@ Do you want to save message ? - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13571,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13623,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13633,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13648,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13667,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13689,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14142,7 +13794,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13804,16 @@ Do you want to save message ? - + - - + + Tags - - + + Inbox @@ -14191,17 +13843,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13884,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13894,7 @@ Do you want to save message ? - + Date @@ -14252,7 +13904,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13913,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +13939,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14020,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14034,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14049,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14095,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14149,7 @@ Do you want to save message ? - + Expand @@ -14537,7 +14159,7 @@ Do you want to save message ? - + from @@ -14572,7 +14194,7 @@ Do you want to save message ? - + Hide @@ -14713,7 +14335,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14345,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14359,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14392,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14413,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14451,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14472,7 @@ Reported error: - + Groups @@ -14881,19 +14502,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14524,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14539,7 @@ Reported error: - + Group @@ -15033,7 +14654,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14664,7 @@ Reported error: - + Done! @@ -15150,7 +14771,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14786,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14796,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15418,7 +15039,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15059,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15079,7 @@ at least one peer was not added to a group - + Test @@ -15469,19 +15090,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15108,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15247,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15292,12 @@ 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> @@ -15724,21 +15343,21 @@ 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) @@ -15756,7 +15375,7 @@ 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. @@ -15832,12 +15451,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15482,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15503,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Name: @@ -15924,7 +15543,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15601,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Send Message @@ -16300,17 +15919,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +15958,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16017,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16065,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16281,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16339,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16755,8 +16359,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16385,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16419,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare @@ -16835,22 +16439,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16460,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16470,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16490,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16510,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16521,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16531,7 @@ p, li { white-space: pre-wrap; } - + Link @@ -16965,12 +16539,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16578,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16616,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16632,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -17083,17 +16647,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16665,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16687,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16702,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16712,17 @@ p, li { white-space: pre-wrap; } - + Vote up - + Vote down - + Set as read and remove item @@ -17173,7 +16732,7 @@ p, li { white-space: pre-wrap; } - + New Comment: @@ -17183,7 +16742,7 @@ p, li { white-space: pre-wrap; } - + Name @@ -17224,7 +16783,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -17247,17 +16806,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16816,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17285,42 +16834,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +16889,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +16919,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +16944,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +16959,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +16994,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17068,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17157,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17274,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17290,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17325,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17374,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17404,12 @@ and use the import button to load it - + Head - + Head Shot @@ -17909,13 +17439,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17457,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17477,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,25 +17492,20 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures - - - Load Picture File - - PulseMessage @@ -18000,7 +17515,7 @@ and use the import button to load it - + @@ -18019,7 +17534,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17544,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17571,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17581,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17601,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17717,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17725,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17787,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17795,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18064,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18100,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18134,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18153,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18232,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18242,7 @@ Reported error is: - + enabled @@ -18762,7 +18252,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18268,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18335,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18363,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18543,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - - - - - Address - - - - - Status - + NXS @@ -19318,18 +18792,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +18931,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19098,7 @@ p, li { white-space: pre-wrap; } - + The loading of embedded images is blocked. @@ -19649,7 +19111,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19284,17 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - + Save image - - Copy image - - - - + Document source @@ -19845,12 +19302,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +19995,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20659,7 +20116,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20679,7 +20136,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20192,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20206,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20224,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20789,17 +20246,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20275,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20296,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20357,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20378,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20408,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20426,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20443,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20509,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20524,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20624,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20650,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21237,7 +20687,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21248,17 +20698,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20728,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20736,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20752,22 @@ prevents the message to be forwarded to your friends. - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20784,7 @@ prevents the message to be forwarded to your friends. - + but reported: @@ -21359,8 +20809,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20818,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20849,7 @@ prevents the message to be forwarded to your friends. - + Expand @@ -21444,12 +20894,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +20919,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21484,17 +20939,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide @@ -21504,7 +20949,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +20959,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21023,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21604,22 +21049,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21077,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21101,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21127,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21152,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21197,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21838,7 +21271,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21298,12 @@ 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> @@ -21865,7 +21313,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21328,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21355,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21375,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21390,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21440,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21455,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21496,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21551,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21576,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21588,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21611,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status @@ -22218,28 +21671,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21697,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21743,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21771,22 @@ 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> @@ -22379,7 +21821,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21831,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +21916,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +21926,12 @@ 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. @@ -22508,7 +21950,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +21970,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel - + Add a Share Directory @@ -22548,7 +21990,7 @@ Select the Friends with which you want to Share your Channel. - + Apply and close @@ -22639,7 +22081,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. @@ -22647,7 +22089,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22140,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22154,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22732,7 +22169,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22185,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22210,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22353,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22382,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23284,7 +22721,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +22958,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +22994,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23575,13 +23009,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23030,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23043,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23053,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23064,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23096,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23107,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23117,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23217,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23226,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23251,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23316,12 @@ 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> @@ -23948,17 +23331,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23359,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23387,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name @@ -24233,12 +23606,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> - - - - + Move in Queue... @@ -24263,7 +23631,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23652,7 @@ p, li { white-space: pre-wrap; } - + @@ -24317,17 +23685,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23700,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23827,23 @@ 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> + + + + Columns - + File Transfers - + Path @@ -24490,7 +23853,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23863,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +23878,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +23888,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24302,12 @@ p, li { white-space: pre-wrap; } - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24347,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24367,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24509,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24524,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24612,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24647,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24677,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status @@ -25361,7 +24705,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24788,12 @@ p, li { white-space: pre-wrap; } - + + Refresh + + + + Settings @@ -25459,7 +24808,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24828,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24858,7 @@ p, li { white-space: pre-wrap; } - + Yourself @@ -25519,7 +24868,7 @@ p, li { white-space: pre-wrap; } - + RetroShare @@ -25582,42 +24931,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25004,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25774,7 +25086,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25123,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_es.qm b/retroshare-gui/src/lang/retroshare_es.qm index 782b9d443..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 cc21a60c3..3df49a47e 100644 --- a/retroshare-gui/src/lang/retroshare_es.ts +++ b/retroshare-gui/src/lang/retroshare_es.ts @@ -84,6 +84,13 @@ Sólo nodo oculto + + AddCommentDialog + + Add Comment + AƱadir un comentario + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: BĆŗsqueda avanzada - + Search Criteria Criterios de bĆŗsqueda - + Add a further search criterion. AƱadir un criterio de bĆŗsqueda adicional. @@ -137,7 +144,7 @@ Reinicializa el criterio de bĆŗsqueda. - + Cancels the search. Cancela la bĆŗsqueda. @@ -157,6 +164,177 @@ Buscar + + AlbumCreateDialog + + Create Album + Crear Ć”lbum + + + Album Name: + Nombre del Ć”lbum: + + + Category: + CategorĆ­a: + + + Animals + Animales + + + Family + Familia + + + Friends + Amigos + + + Flowers + Flores + + + Holiday + Festivo + + + Landscapes + Paisajes + + + Pets + Mascotas + + + Portraits + Retratos + + + Travel + Viajes + + + Work + Trabajo + + + Random + Aleatorio + + + Caption: + TĆ­tulo: + + + Where: + Dónde: + + + Photographer: + Fotógrafo: + + + Description: + Descripción: + + + Share Options + Opciones de compartición + + + Policy: + PolĆ­tica: + + + Quality: + Calidad: + + + Comments: + Comentarios: + + + Identity: + Identidad: + + + Public + PĆŗblico + + + Restricted + Restringido + + + Resize Images (< 1Mb) + Redimensionar imĆ”genes (< 1Mb) + + + Resize Images (< 10Mb) + Redimensionar imĆ”genes (< 10Mb) + + + Send Original Images + Enviar imĆ”genes originales + + + No Comments Allowed + No se permiten comentarios + + + Authenticated Comments + Comentarios autenticados + + + Any Comments Allowed + Permitir cualquier comentario + + + Publish with Identity + Publicar con identidad + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> Arrastrar y soltar para insertar imĆ”genes. A continuación pulse en una imagen para editar los detalles.</span></p></body></html> + + + Back + AtrĆ”s + + + Add Photos + AƱadir fotos + + + Publish Album + Publicar Ć”lbum + + + Untitle Album + Ɓlbum sin tĆ­tulo + + + Say something about this album... + Diga algo sobre este Ć”lbum... + + + Where were these taken? + ĀæDónde estaban tomadas? + + + Load Album Thumbnail + Cargar miniatura del Ć”lbum + + AlbumDialog @@ -165,11 +343,19 @@ Album Ɓlbum + + Album Thumbnail + Miniatura del Ć”lbum + TextLabel Texto de la etiqueta + + Summary + Resumen + Album Title: @@ -185,6 +371,34 @@ Caption TĆ­tulo + + Where: + Dónde: + + + When + CuĆ”ndo + + + Description: + Descripción: + + + Share Options + Opciones de compartición + + + Comments + Comentarios + + + Publish Identity + Publicar identidad + + + Visibility + Visibilidad + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -269,7 +483,7 @@ p, li { white-space: pre-wrap; } Where: - Donde: + @@ -553,7 +767,7 @@ 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. Advertencia: Los servicios aquĆ­ son experimentales. Por favor, ayĆŗdenos a probarlos. @@ -569,6 +783,14 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Circles CĆ­rculos + + GxsForums + GxsForos + + + GxsChannels + GxsCanales + The Wire @@ -580,23 +802,10 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Fotos - - AspectRatioPixmapLabel - - - Save image - Guardar imagen - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Browse... + + Add Avatar + AƱadir avatar + Remove Eliminar - + Set your Avatar picture Establecer imagen de avatar @@ -658,6 +871,10 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Cargar avatar + AvatarWidget @@ -726,10 +943,22 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Reinicializar - + Receive Rate + Tasa de recepción + + + Send Rate + Tasa de envĆ­o + + + Always on Top Siempre encima + + Style + Estilo + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro % Opaque % Transparencia + + Save + Guardar + + + Cancel + Cancelar + Since: Desde: + + Hide Settings + Ocultar ajustes + BandwidthStatsWidget @@ -822,7 +1063,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro BoardPostDisplayWidgetBase - + Comment Comentario @@ -852,12 +1093,12 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Copiar enlace de RetroShare - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>El autor de este mensaje (con Identificación %1) estĆ” excluĆ­do.</b> - + ago @@ -865,7 +1106,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro BoardPostDisplayWidget_card - + Vote up Votar positivo @@ -885,7 +1126,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro \/ - + Posted by @@ -923,7 +1164,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro BoardPostDisplayWidget_compact - + Vote up Votar positivo @@ -943,7 +1184,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro \/ - + Click to view picture @@ -973,7 +1214,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Compartir - + Toggle Message Read Status Cambiar el estado de lectura del mensaje @@ -983,7 +1224,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Nuevo - + TextLabel @@ -991,12 +1232,12 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro BoardsCommentsItem - + I like this Esto me gusta - + 0 0 @@ -1016,18 +1257,18 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro Avatar - + New Comment - + Copy RetroShare Link Copiar enlace de RetroShare - + Expand @@ -1042,12 +1283,12 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro - + Name Nombre - + Comm value @@ -1216,17 +1457,17 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro ChannelPage - + Channels Canales - + Tabs PestaƱas - + General General @@ -1236,17 +1477,11 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro - - Downloads - Descargas + Load posts in background (Thread) + Cargar mensajes en segundo plano (hilo) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Abrir cada canal en una nueva pestaƱa @@ -1254,7 +1489,7 @@ Pero recuerde: Todos los datos aquĆ­ *SE PERDERƁN* cuando se actualicen los pro ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Esto me gusta @@ -1302,18 +1537,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link Copiar enlace de RetroShare - + Expand @@ -1328,7 +1563,7 @@ into the image, so as to - + Name Nombre @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + Comentario + + + + Comments + Comentarios + + + Hide Ocultar @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name Nombre @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Mostrar sala de chat @@ -1549,6 +1794,22 @@ into the image, so as to Chats Chats + + You have %1 new messages + Tiene %1 nuevos mensajes + + + You have %1 new message + Tiene %1 nuevo mensaje + + + %1 new messages + %1 nuevos mensajes + + + %1 new message + %1 nuevo mensaje + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby Sala desconocida - - + + Remove All Borrar todo @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nombre - + Count Recuento @@ -1601,7 +1861,33 @@ into the image, so as to Tema - + + Private Subscribed chat rooms + Salas de chat privadas suscritas + + + + + Public Subscribed chat rooms + Salas de chat pĆŗblicas suscritas + + + + Private chat rooms + Salas de chat privadas + + + + + Public chat rooms + Salas de chat pĆŗblicas + + + <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;Salas de chat</h1> <p>Las salas de chat funcionan de forma bastante parecida al IRC. Le permiten hablar de forma anónima con montones de personas sin necesidad de hacer amigos.</p> <p>Una sala de chat puede ser pĆŗblica (sus amigos la ven) o privada (sus amigos no pueden verla, a menos que les invite con <img src=":/images/add_24x24.png" width=%2/>). Una vez haya sido invitado a una sala privada, podrĆ” verla cuando la estĆ©n usando sus amigos.</p> <p>La lista de la izquierda muestra salas de chat en las que estĆ”n participando sus amigos. Puede <ul> <li>Hacer clic para crear una nueva sala de chat</li> <li>Hacer doble clic en una sala de chat para entrar, chatear, y mostrarla a sus amigos.</li> </ul> Aviso: Para que las salas de chat funcionen adecuadamente, su computadora tiene que estar en hora. Ā”Compruebe el reloj de su sistema! </p> + + + Create chat room Crear sala de chat @@ -1611,7 +1897,7 @@ into the image, so as to Abandonar esta sala - + Create a non anonymous identity and enter this room Crear una identidad no anónima y entrar en esta sala @@ -1670,12 +1956,12 @@ Seleccione salas de chat a la izquierda para mostrar detalles. Haga doble clic en una sala de chat para entrar y conversar. - + %1 invites you to chat room named %2 %1 le invita a una sala de chat llamada %2 - + Choose a non anonymous identity for this chat room: Escoja una identidad no anónima para esta sala de chat: @@ -1685,31 +1971,31 @@ Haga doble clic en una sala de chat para entrar y conversar. Escoja una identidad para esta sala de chat: - + Create chat lobby + Crear sala de chat + + + [No topic provided] [No se ha proporcionado tema] - - + Selected lobby info + Información sobre la sala + + + Private Privada - - - + Public PĆŗblica - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted Identificaciones anónimas aceptadas @@ -1719,25 +2005,42 @@ Haga doble clic en una sala de chat para entrar y conversar. Suprimir autosuscripción - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe AƱadir autosuscripción - + Search Chat lobbies Buscar salas de chat - + Search Name Buscar por nombre - + Subscribed + Suscrito + + + Columns Columnas + + Yes + SĆ­ + + + No + No + Chat rooms @@ -1749,47 +2052,47 @@ Haga doble clic en una sala de chat para entrar y conversar. - + Chat Room info - + Chat room Name: Nombre de la sala de chat: - + Chat room Id: Identificador de la sala de chat: - + Topic: Tema: - + Type: Tipo: - + Security: Seguridad: - + Peers: Vecinos: - - - - - - + + + + + + TextLabel Etiqueta de texto @@ -1804,24 +2107,13 @@ Haga doble clic en una sala de chat para entrar y conversar. Sin identificaciones anónimas - + Show Mostrar - - Private Subscribed - - - - - - Public Subscribed - - - - + column columna @@ -1835,7 +2127,7 @@ Haga doble clic en una sala de chat para entrar y conversar. ChatMsgItem - + Remove Item Eliminar elemento @@ -1880,22 +2172,46 @@ Haga doble clic en una sala de chat para entrar y conversar. ChatPage - + General General + + Distant Chat + Chat distante + Everyone Todos + + Contacts + Contactos + Nobody Nadie - + Accept encrypted distant chat from + Aceptar chat distante cifrado de + + + Chat Settings + Ajustes del chat + + + Enable Emoticons Private Chat + Habilitar emoticonos en conversación privada + + + Enable Emoticons Group Chat + Habilitar emoticonos en conversación en grupo + + + Enable custom fonts Habilitar fuentes personalizadas @@ -1904,6 +2220,10 @@ Haga doble clic en una sala de chat para entrar y conversar. Enable custom font size Habilitar tamaƱo de fuente personalizado + + Minimum font size + TamaƱo mĆ­nimo de fuente + Enable bold @@ -1915,7 +2235,7 @@ Haga doble clic en una sala de chat para entrar y conversar. Habilitar cursiva - + General settings @@ -1940,7 +2260,11 @@ Haga doble clic en una sala de chat para entrar y conversar. Cargar imĆ”genes incrustadas - + Chat Lobby + Sala de chat + + + Blink tab icon Icono de pestaƱa intermitente @@ -1949,6 +2273,10 @@ Haga doble clic en una sala de chat para entrar y conversar. Do not send typing notifications No enviar notificaciones de actividad de escritura + + Private Chat + Chat privado + Open Window for new chat @@ -1970,7 +2298,11 @@ Haga doble clic en una sala de chat para entrar y conversar. Icono de ventana/pestaƱa intermitente - + Chat Font + Fuente del chat + + + Change Chat Font Cambiar fuente del chat @@ -1980,10 +2312,14 @@ Haga doble clic en una sala de chat para entrar y conversar. Fuente del chat: - + History Historial + + Style + Estilo + @@ -1998,13 +2334,17 @@ Haga doble clic en una sala de chat para entrar y conversar. Variant: Variante: + + Group chat + Chat en grupo + Private chat Chat privado - + Choose your default font for Chat. Escoja su fuente predeterminada para Chat. @@ -2068,28 +2408,22 @@ Haga doble clic en una sala de chat para entrar y conversar. <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">En esta pestaƱa puedes configurar cuantos mensajes guardarĆ” en disco RetroShare y cuantas conversaciones previas mostrarĆ” para los distintos sistemas de chateo. El periodo mĆ”ximo de almacenado permite eliminar mensajes viejos y evita que el historial de chateo se llene de conversaciones intrascendentes (salas de chateo y chateo distante)</p></body></html> + + Chatlobbies + Salasdechat + Enabled: Habilitar: - + Search Buscar - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2433,7 @@ Haga doble clic en una sala de chat para entrar y conversar. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Salas de chat @@ -2206,7 +2530,11 @@ Haga doble clic en una sala de chat para entrar y conversar. MĆ”ximo periodo de almacenamiento, en dĆ­as (0=mantener todo): - + Search by default + BĆŗsqueda por defecto + + + Case sensitive Discriminar minĆŗsculas/mayĆŗsculas @@ -2245,6 +2573,10 @@ Haga doble clic en una sala de chat para entrar y conversar. Threshold for automatic search Umbral para bĆŗsqueda automĆ”tica + + Default identity for chat lobbies: + Identidad por defecto para las salas de conversación: + Show Bar by default @@ -2312,7 +2644,7 @@ Haga doble clic en una sala de chat para entrar y conversar. ChatToaster - + Show Chat Mostrar chat @@ -2348,7 +2680,7 @@ Haga doble clic en una sala de chat para entrar y conversar. ChatWidget - + Close Cerrar @@ -2383,12 +2715,12 @@ Haga doble clic en una sala de chat para entrar y conversar. Cursiva - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Insertar emoticono @@ -2397,6 +2729,10 @@ Haga doble clic en una sala de chat para entrar y conversar. Attach a Picture Adjuntar una imagen + + <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 @@ -2468,6 +2804,11 @@ Haga doble clic en una sala de chat para entrar y conversar. Insert horizontal rule Insertar regla horizontal + + + Save image + Guardar imagen + Import sticker @@ -2505,7 +2846,7 @@ Haga doble clic en una sala de chat para entrar y conversar. - + is typing... estĆ” escribiendo... @@ -2529,7 +2870,7 @@ after HTML conversion. Escoja su fuente. - + Do you really want to physically delete the history? ĀæSeguro que quiere borrar el historial? @@ -2579,7 +2920,7 @@ after HTML conversion. estĆ” ocupado e igual no contesta - + Find Case Sensitively Buscar discriminando mayĆŗsculas/minĆŗsculas @@ -2601,7 +2942,7 @@ after HTML conversion. No detenerse a colorear despuĆ©s de que X elementos se encontrasen (necesita mĆ”s CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Buscar anterior</b><br/><i>Ctrl+MayĆŗs+G</i> @@ -2616,12 +2957,16 @@ after HTML conversion. <b>Buscar </b><br/><i>Ctrl+F</i> - + (Status) (Estado) - + Set text font & color + Configurar fuente de texto y color + + + Attach a File Adjuntar un archivo @@ -2637,12 +2982,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Marcar este texto seleccionado</b><br><i>Ctrl+M</i> - + Person id: Identificación persona: @@ -2654,12 +2999,12 @@ 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 - + items found. elementos encontrados. @@ -2679,7 +3024,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Escriba un mensaje aquĆ­ - + Don't stop to color after No parar de colorear tras @@ -2705,7 +3050,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. CirclesDialog - + Showing details: Mostrando detalles: @@ -2727,7 +3072,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - + Personal Circles CĆ­rculos personales @@ -2753,7 +3098,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - + Friends Amigos @@ -2813,7 +3158,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Amigos de sus amigos - + External Circles (Admin) CĆ­rculos externos (Admin) @@ -2829,7 +3174,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - + Circles CĆ­rculos @@ -2881,48 +3226,43 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - + RetroShare RetroShare - + - + Error : cannot get peer details. Error: No se pueden obtener los detalles del vecino. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2934,7 +3274,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Cifrado - + Not connected No conectado @@ -3016,17 +3356,25 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.ninguno - + <p>This certificate contains: <p>Este certificado contiene: - + <li>a <b>node ID</b> and <b>name</b> <li>una <b>identificación de nodo</b> y <b>nombre</b> - + an <b>onion address</b> and <b>port</b> + una <b>dirección .onion</b> y <b>puerto</b> + + + an <b>IP address</b> and <b>port</b> + una <b>dirección IP</b> y <b>puerto</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Puede usar este certificado para hacer nuevos amigos. EnvĆ­elo por correo electrónico, o proporciónelo en mano.</p> @@ -3041,7 +3389,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.<html><head/><body><p>Este es el mĆ©todo de cifrado usado por <span style=" font-weight:600;">OpenSSL</span>. La conexión a nodos amigos</p><p>siempre se cifra fuertemente, y si estĆ” presente el DHE (intercambio de claves Diffie-Hellman)</p><p>la conexión ademĆ”s usa &quot;secreto perfecto hacia delante&quot; (perfect forward secrecy).</p></body></html> - + with con @@ -3058,16 +3406,118 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Connect Friend Wizard Asistente para conectarse con los amigos + + Add a new Friend + AƱadir un amigo nuevo + + + &You get a certificate file from your friend + &Obtener un archivo de certificado de su amigo + + + &Make friend with selected friends of my friends + Hacer a&migos con los amigos de mis amigos seleccionados + + + &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) + + + Include signatures + Incluir firmas + + + Copy your Cert to Clipboard + Copiar su certificado al portapapeles + + + Save your Cert into a File + Guardar su certificado en un archivo + + + Run Email program + Abrir programa de email + Open Cert of your friend from File Abrir certificado de su amigo desde fichero + + Open certificate + Abrir certificado + + + Please, paste your friend's Retroshare certificate into the box below + Por favor, pegue el certificado Retroshare de su amigo en el recuadro de debajo + + + Certificate files + Archivos de certificados PGP + + + Use PGP certificates saved in files. + Usar certificados PGP guardados en archivos. + + + Import friend's certificate... + 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 PGP y enviĆ”rselo a un amigo. TambiĆ©n puede usar un archivo generado anteriormente. + + + Export my certificate... + Exportar mi certificado PGP... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Arrastre y suelte el certificado de sus amigos en esta ventana o especifique la ruta aquĆ­ + + + Browse + Navegar + + + Friends of friends + Amigos de amigos + + + Select now who you want to make friends with. + Elija ahora quienes quiere hacer sus amigos. + + + Show me: + Mostrarme: + + + Make friend with these peers + Hacer amistad con estos vecinos + RetroShare ID ID de RetroShare + + Use RetroShare ID for adding a Friend which is available in your network. + Utilize la ID de RetroShare para aƱadir a amigos que estĆ©n disponibles en su red. + + + Add Friends RetroShare ID... + AƱadir la ID de RetroShare del amigo... + + + Paste Friends RetroShare ID in the box below + Pegar el ID de amigos de RetroShare en el siguiente cuadro + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Introduzca el ID de RetroShare de su amigo, p,ej. Peer@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3109,7 +3559,27 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Correo electrónico - + Invite Friends by Email + Invitar a amigos por correo electrónico + + + Enter your friends' email addresses (separate each one with a semicolon) + Introduzca las direcciones de email de sus amigos (separadas cada una con un punto y coma) + + + Your friends' email addresses: + Direcciones de correo de sus amigos: + + + Enter Friends Email addresses + Introduzca la dirección de correo de su amigo + + + Subject: + Asunto: + + + @@ -3125,32 +3595,78 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Detalles de la solicitud - + Peer details Detalles del vecino - + Name: Nombre: + + Email: + Email: + + + Node: + Nodo: + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Por favor, observe que RetroShare requerirĆ” cantidades excesivas de ancho de banda, memoria y CPU si aƱade demasiados amigos. Puede aƱadir tantos amigos como quiera, pero mĆ”s de 40 probablemente requerirĆ” demasiados +recursos. + Location: Lugar: - + Options Opciones - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Este asistente le ayudarĆ” a conectar a su(s) amigo(s) a la red RetroShare.<br>Seleccione cómo desea aƱadir un amigo: + + + Enter the certificate manually + Introduzca el certificado manualmente + + + Enter RetroShare ID manually + Introduzca la identificación de RetroShare manualmente + + + &Send an Invitation by Web Mail Providers + &Enviar una invitación mediante proveedores de correo web + + + Recommend many friends to each other + Intercambie muchas recomendaciones de amigos con sus amigos + + + 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> - + Add friend to group: AƱadir amigo a grupo: @@ -3160,7 +3676,7 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Autenticar amigo (firmar la clave PGP) - + Please paste below your friend's Retroshare ID @@ -3185,22 +3701,16 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with AƱadir como amigo al conectarse con - + To accept the Friend Request, click the Finish button. + Para aceptar la solicitud de amigo, pulse en el botón Finalizar. + + + Sorry, some error appeared Lo siento, ha ocurrido un error @@ -3220,27 +3730,32 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto.Detalles acerca de su amigo: - + Key validity: Validez de la clave: - + Profile ID: - + + Signers + Firmantes + + + <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 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> - + This peer is already on your friend list. Adding it might just set it's ip address. Este vecino ya estĆ” en su lista de amigos. AƱadiendolo sólo podrĆ” establecer su dirección ip. - + To accept the Friend Request, click the Accept button. @@ -3286,17 +3801,49 @@ Haga doble clic sobre este para aƱadir su nombre en el compositor de texto. - + Certificate Load Failed Error al cargar el certificado - + Cannot get peer details of PGP key %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 claves PGP + + + Friends of my friends who already trust me + Amigos de amigos que me han firmado la clave PGP + + + Signed peers showing as denied + Vecinos bloqueados a quienes he firmado la llave PGP + + + Peer name + Nombre del vecino + + + Also signed by + Tambien firmado por + + + Peer id + ID del vecino + + + Certificate appears to be valid + El certificado parece ser vĆ”lido + + + Not a valid Retroshare certificate! Ā”No es un certificado RetroShare vĆ”lido! - + RetroShare Invitation Invitación de RetroShare @@ -3318,12 +3865,12 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc - + 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Ć­? - + @@ -3331,7 +3878,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc - + This key is already on your trusted list Esta clave ya estĆ” en su lista de confianza @@ -3371,7 +3918,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Tiene una solicitud de amistad de - + Profile password needed. @@ -3396,7 +3943,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc - + Valid Retroshare ID @@ -3406,7 +3953,47 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc - + Certificate Load Failed:file %1 not found + La carga del certificado PGP ha fallado: archivo %1 no encontrado + + + This Peer %1 is not available in your Network + Este vecino %1 no estĆ” disponible en su red + + + Use new certificate format (safer, more robust) + Usar el nuevo formato de certificado (mĆ”s seguro y robusto) + + + Use old (backward compatible) certificate format + Usar el viejo formato de certificado (compatible con versiones anteriores) + + + Remove signatures + Quitar las firmas + + + RetroShare Invite + Invitar a RetroShare + + + Connect Friend Help + Ayuda para conectar con sus amigos + + + You can copy this text and send it to your friend via email or some other way + Puede copiar este texto y enviarlo a su amigo por email o de alguna otra forma + + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Su certificado se ha copiado al portapapeles. PĆ©guelo y envĆ­eselo a un amigo por email u otro medio + + + Save as... + Guardar como... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3445,7 +4032,11 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc *** NingĆŗno *** - + Use as direct source, when available + Utilizar como fuente directa, cuando estĆ© disponible + + + IP-Addr: Dir-IP: @@ -3455,7 +4046,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Dirección-IP - + Show Advanced options Mostrar opciones avanzadas @@ -3464,6 +4055,10 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc <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 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 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> @@ -3474,13 +4069,45 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc <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 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> + + Recommend many friends to each others + Recomendar varios amigos a los demĆ”s + + + Friend Recommendations + Recomendaciones de amigo + + + The text below is your Retroshare certificate. You have to provide it to your friend + El texto de debajo es su certificado Retroshare. Tiene que proporcionĆ”rselo a su amigo. + + + Message: + Mensage: + + + Recommend friends + Recomendar amigos + + + To + A + + + Please select at least one friend for recommendation. + Por favor, seleccione al menos un amigo por recomendación. + + + Please select at least one friend as recipient. + Por favor, seleccione al menos un amigo como destinatario. + Add key to keyring AƱadir al grupo de claves ('keyring') - + This key is already in your keyring Esta clave ya estĆ” en su grupo de claves ('keyring') @@ -3496,7 +4123,7 @@ mensajes distantes a este vecino incluso si no hace amigos. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. El certificado tiene un nĆŗmero de versión incorrecto. Recuerde que las redes de v0.6 y v0.5 son incompatibles. @@ -3531,7 +4158,7 @@ incluso si no hace amigos. AƱadir IP a la lista blanca - + No IP in this certificate! Ā”No hay IP en este certificado! @@ -3541,10 +4168,27 @@ incluso si no hace amigos. <p>Este certificado no tiene IP. DependerĆ” del descubrimiento y la DHT (tabla distribuida de hashes) para encontrarlo. A causa de que usted requiere que se limpie la lista blanca, el 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> - + + [Unknown] + + + + Added with certificate from %1 AƱadido con el certificado de %1 + + Paste Cert of your friend from Clipboard + Pegar certificado de su amigo desde el Portapapeles + + + Certificate Load Failed:can't read from file %1 + La carga del certificado falló: No se pudo leer del archivo %1 + + + Certificate Load Failed:something is wrong with %1 + La carga del certificado falló: Hay algo mal con %1 + ConnectProgressDialog @@ -3606,7 +4250,7 @@ incluso si no hace amigos. - + UDP Setup Configurar UDP @@ -3642,7 +4286,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-family:'Lucida Grande'; font-size:13pt;">puede cerrarlo.</span></p></body></html> - + Connection Assistant Asistente de conexión @@ -3652,20 +4296,17 @@ p, li { white-space: pre-wrap; } ID del vecino invĆ”lido - - + Unknown State Estado desconocido - - + Offline Desconectado - - + Behind Symmetric NAT DetrĆ”s de NAT simĆ©trico @@ -3675,14 +4316,12 @@ p, li { white-space: pre-wrap; } DetrĆ”s de NAT y sin DHT - - + NET Restart Reiniciar red - - + Behind NAT DetrĆ”s de NAT @@ -3692,8 +4331,7 @@ p, li { white-space: pre-wrap; } Sin DHT - - + NET STATE GOOD! ESTADO DE LA RED BUENO! @@ -3718,7 +4356,7 @@ p, li { white-space: pre-wrap; } Encontrando vecinos de RS - + Lookup requires DHT La bĆŗsqueda requiere DHT @@ -4010,7 +4648,7 @@ p, li { white-space: pre-wrap; } Por favor, intenta volver a importar el certificado completo - + @@ -4018,8 +4656,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! REENVƍO NO VERIFICABLE! @@ -4029,7 +4666,7 @@ p, li { white-space: pre-wrap; } REENVƍO NO VERIFICABLE Y SIN DHT - + Searching Buscando @@ -4065,12 +4702,12 @@ p, li { white-space: pre-wrap; } Detalles del cĆ­rculo - + Name Nombre - + <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> @@ -4090,7 +4727,7 @@ p, li { white-space: pre-wrap; } - + IDs IDs @@ -4110,18 +4747,18 @@ p, li { white-space: pre-wrap; } Filtrar - + Cancel Cancelar - + Nickname Apodo - + Invited Members Miembros invitados @@ -4136,7 +4773,15 @@ p, li { white-space: pre-wrap; } Personas conocidas - + ID + ID + + + Type + Tipo + + + Name: Nombre: @@ -4176,19 +4821,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Los cĆ­rculos se pueden restringir a los miembros de otro cĆ­rculo. Sólo los miembros de ese segundo cĆ­rculo tendrĆ”n permitido ver el nuevo cĆ­rculo y su contenido (lista de miembros, etc.).</p></body></html> - - + Only visible to members of: + Sólo visible para los miembros de: + + + + RetroShare RetroShare - + Please set a name for your Circle Por favor elija un nombre para su cĆ­rculo - + No Restriction Circle Selected CĆ­rculo seleccionado sin restricciones @@ -4198,24 +4847,12 @@ p, li { white-space: pre-wrap; } No hay limitaciones en el cĆ­rculo seleccionado - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add AƱadir @@ -4225,7 +4862,7 @@ p, li { white-space: pre-wrap; } Eliminar - + Search Buscar @@ -4240,6 +4877,10 @@ p, li { white-space: pre-wrap; } Signed Firmado + + Signed by known nodes + Firmado por nodos conocidos + Edit Circle @@ -4256,6 +4897,10 @@ p, li { white-space: pre-wrap; } PGP Identity Identidad PGP + + Anon Id + Identidad anónima + Circle name @@ -4278,13 +4923,17 @@ p, li { white-space: pre-wrap; } Crear nuevo cĆ­rculo - + Create Crear - + PGP Linked Id + Identidad vinculada a PGP + + + Add Member AƱadir miembro @@ -4303,7 +4952,7 @@ p, li { white-space: pre-wrap; } Crear un grupo - + Group Name: Nombre del grupo: @@ -4338,7 +4987,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nuevo mensaje del canal @@ -4348,7 +4997,7 @@ p, li { white-space: pre-wrap; } Mensaje del canal - + Post @@ -4409,11 +5058,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Utilice arrastrar y soltar / Botón aƱadir archivos, para nuevos hash de archivos</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;"> Copiar/pegar enlaces de RetroShare desde sus recursos compartidos</span></p></body></html> + + Add File to Attach + Adjuntar archivo + Add Channel Thumbnail AƱadir imagen al canal + + Message + Mensaje + + + Subject : + Asunto: + @@ -4499,17 +5160,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4528,18 +5189,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Archivo ya aƱadido y hash generado + Please add a Subject Por favor, aƱada un asunto - - Cannot publish post - - - - + Load thumbnail picture Cargar imagen en miniatura @@ -4554,12 +5214,18 @@ p, li { white-space: pre-wrap; } Ocultar - + + Generate mass data Generar datos masivos - + + Do you really want to generate %1 messages ? + ĀæDe veras quiere generar %1 mensajes? + + + You are about to add files you're not actually sharing. Do you still want this to happen? EstĆ” a punto de aƱadir archivos que actualmente no estĆ” compartiendo. ĀæSeguro que quiere continuar? @@ -4593,7 +5259,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Enviar mensaje al foro @@ -4602,6 +5268,10 @@ p, li { white-space: pre-wrap; } Forum Foro + + Subject + Asunto + Attach File @@ -4622,8 +5292,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4642,7 +5312,7 @@ p, li { white-space: pre-wrap; } En esta ventana puede adjuntar archivos mediante arrastrar y soltar - + Post @@ -4672,17 +5342,17 @@ p, li { white-space: pre-wrap; } - + No Forum NingĆŗn foro - + In Reply to En respuesta a - + Title TĆ­tulo @@ -4736,7 +5406,7 @@ Do you want to discard this message? Cargar archivo de imagen - + No compatible ID for this forum Identificación no compatible para este foro @@ -4746,8 +5416,8 @@ Do you want to discard this message? Ninguna de sus identidades tiene permitido publicar en este foro. Esto se podrĆ­a deber a que el foro se estĆ© limitando a un cĆ­rculo que no contiene ninguna de sus identidades, o a que los indicativos del foro requieran una identidad firmada-con-PGP. - - + + Generate mass data Generar datos masivos @@ -4756,6 +5426,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? ĀæDe veras quiere generar %1 mensajes? + + Send + Enviar + Post as @@ -4770,7 +5444,23 @@ Do you want to discard this message? CreateLobbyDialog - + Create Chat Lobby + Crear sala de chat + + + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. + Un "Chat lobby" es una sala de chat en grupo descentralizada y anónima. Todos los participantes reciben todos los mensajes. Una vez que se crea la sala puede invitar a otros amigos de la ficha de Amigos. + + + Lobby name: + Nombre de la sala: + + + Lobby topic: + Tema de la sala: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4805,7 +5495,7 @@ Do you want to discard this message? - + Create Crear @@ -4815,7 +5505,11 @@ Do you want to discard this message? Cancelar - + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Si marca esto, sólo se pueden usar las identificaciones firmadas-con-PGP para unirse y hablar en esta sala. Esta limitación previene el spam anónimo ya que se hace posible para, al menos algunas personas en la sala, localizar el nodo spammer.</p></body></html> + + + require PGP-signed identities requiere identidades firmadas-con-PGP @@ -4830,7 +5524,11 @@ Do you want to discard this message? Seleccione los amigos para el chat de grupo. - + Invited friends + Amigos invitados + + + Create Chat Room Crear sala de chat @@ -4851,7 +5549,7 @@ Do you want to discard this message? Contactos: - + Identity to use: Identidad a usar: @@ -4859,17 +5557,17 @@ Do you want to discard this message? CryptoPage - + Public Information Información pĆŗblica - + Name: Nombre: - + Location: Lugar: @@ -4879,12 +5577,12 @@ Do you want to discard this message? ID del lugar: - + Software Version: Versión del programa: - + Online since: En lĆ­nea desde: @@ -4904,7 +5602,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4914,7 +5617,7 @@ Do you want to discard this message? - + Other Information Otra información @@ -4924,12 +5627,17 @@ Do you want to discard this message? - + Profile Perfil - + + Certificate + Certificado + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4939,7 +5647,11 @@ Do you want to discard this message? Incluir firmas - + Save Key into a file + Guardar mi clave en un archivo + + + Export Identity Exportar identidad @@ -5013,33 +5725,33 @@ y utilizar el botón Importar para cargarla - + TextLabel Texto de la etiqueta - + PGP fingerprint: Huella de validación de clave PGP: - + + Node information + Información del nodo + + + PGP Id : Identificación de PGP : - + Friend nodes: Nodos amigos: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5078,6 +5790,14 @@ y utilizar el botón Importar para cargarla Node Nodo + + Create new node... + Crear nuevo nodo... + + + show statistics window + mostrar ventana de estadĆ­sticas + DHTGraphSource @@ -5094,6 +5814,10 @@ y utilizar el botón Importar para cargarla DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare usar la DHT (tabla de hashes dinĆ”mica) de Bittorrent como un proxy (interpuesto) para conexiones. No "almacena" su IP en la DHT. En su lugar, la DHT es usada por sus amigos para llegar a usted mientras se procesan peticiones DHT estĆ”ndar. El indicador de estado se volverĆ” verde tan pronto como Retroshare obtenga una respuesta DHT de uno de sus amigos.</p> + <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 trusted nodes 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 trusted nodes.</p> @@ -5129,7 +5853,7 @@ y utilizar el botón Importar para cargarla DLListDelegate - + B B @@ -5797,7 +6521,7 @@ y utilizar el botón Importar para cargarla DownloadToaster - + Start file Abrir archivo @@ -5805,38 +6529,38 @@ y utilizar el botón Importar para cargarla ExprParamElement - + - + to a - + ignore case Ignorar MayĆŗs/MinĆŗs - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5844,12 +6568,12 @@ y utilizar el botón Importar para cargarla ExpressionWidget - + Expression Widget Widget de expresiones - + Delete this expression Borrar esta expresión @@ -6011,7 +6735,7 @@ y utilizar el botón Importar para cargarla FilesDefs - + Picture Imagen @@ -6021,7 +6745,7 @@ y utilizar el botón Importar para cargarla VĆ­deo - + Audio Audio @@ -6081,21 +6805,11 @@ y utilizar el botón Importar para cargarla C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Carpetas de amigos @@ -6217,7 +6931,7 @@ y utilizar el botón Importar para cargarla - + ID Identidad @@ -6252,6 +6966,10 @@ y utilizar el botón Importar para cargarla Show State Mostrar estado + + Trusted nodes + Nodos de confianza + @@ -6259,7 +6977,7 @@ y utilizar el botón Importar para cargarla Mostrar grupos - + Group Grupo @@ -6295,7 +7013,7 @@ y utilizar el botón Importar para cargarla AƱadir a grupo - + Search Buscar @@ -6311,7 +7029,7 @@ y utilizar el botón Importar para cargarla Ordenar por estado - + Profile details Detalles del perfil @@ -6555,7 +7273,7 @@ al menos un vecino no fue aƱadido al grupo FriendRequestToaster - + Confirm Friend Request Confirmar solicitud de amistad @@ -6572,6 +7290,10 @@ al menos un vecino no fue aƱadido al grupo FriendSelectionWidget + + Search : + Buscar: + Sort by state @@ -6593,7 +7315,7 @@ al menos un vecino no fue aƱadido al grupo Buscar a amigos - + Mark all Marcar todo @@ -6604,134 +7326,16 @@ al menos un vecino no fue aƱadido al grupo No marcar nada - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Nombre - - - - Node ID - - - - - Address - Dirección - - - - Status - Estado - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Hacer amigo - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - El proxy no estĆ” habilitado o estĆ” estropeado. -¿¿EstĆ”n todos los servicios en marcha y ejecutĆ”ndose correctamente?? -Ā”Compruebe tambiĆ©n sus puertos! - - FriendsDialog - + Edit status message Editar mensaje de estado - - + + Broadcast Difusión @@ -6814,38 +7418,33 @@ Also check your ports! Restablecer la fuente por defecto - + Keyring Juego de claves - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Red</h1> <p>La pestaƱa de Red muestra sus nodos RetroShare amigos: los nodos RetroShare vecinos que estĆ”n conectados a usted. </p> <p>Puede agrupar nodos juntos para permitir un nivel de regulación mĆ”s fino del acceso a la información, por ejemplo para permitir que sólo algunos nodos vean algunos de sus archivos.</p> <p>A la derecha, encontrarĆ” 3 pestaƱas Ćŗtiles: <ul> <li>Difusión envĆ­a mensajes a todos los nodos conectados a la vez</li> <li>GrĆ”fica de red local muestra la red alrededor de usted, basĆ”ndose en la información de descubrimiento</li> <li>El juego de claves contiene claves de nodos que ha recopilado, en su mayorĆ­a redirigidos hacia usted por sus nodos amigos</li> </ul> </p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Chat de difusión de RetroShare: Los mensajes se envĆ­an a todos los amigos conectados. - - + + Network Red - - Friend Server - - - - + Network graph GrĆ”fica de la red - - <h1><img width="%1" 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> - - - - + Set your status message here. Configure su mensaje de estado aquĆ­. @@ -6863,17 +7462,7 @@ Also check your ports! ContraseƱa - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Todos los campos requieren como mĆ­nimo 3 letras @@ -6883,12 +7472,17 @@ Also check your ports! Las contraseƱas no coinciden - + Port Puerto - + + Use BOB + Usar BOB + + + This password is for PGP Esta contraseƱa es para PGP @@ -6909,38 +7503,50 @@ Also check your ports! Ā”Fallo al generar su nuevo certificado, quizĆ” la contraseƱa PGP estĆ” mal! - + Options + 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 - + Node type: @@ -6960,12 +7566,12 @@ Also check your ports! - + <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 @@ -6975,43 +7581,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + Advanced options + Opciones avanzadas + + + hidden address dirección oculta - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Su perfil estĆ” asociado con un par de claves PGP. RetroShare actualmente ignora las claves DSA. - + <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> @@ -7059,13 +7664,13 @@ y usar el botón Importar para cargarlo Su perfil no fue guardado. Ocurrió un error. - + Import profile Perfil importado - + Create new profile and new Retroshare node Crear nuevo perfil y nuevo nodo RetroShare @@ -7075,7 +7680,7 @@ y usar el botón Importar para cargarlo Crear nuevo nodo RetroShare - + Tor/I2P address Dirección Tor/I2P @@ -7110,7 +7715,7 @@ y usar el botón Importar para cargarlo - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7120,7 +7725,12 @@ y usar el botón Importar para cargarlo - + + BOB support is not available + + + + <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> @@ -7130,7 +7740,12 @@ y usar el botón Importar para cargarlo <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 @@ -7356,13 +7971,36 @@ y usar el botón Importar para cargarlo Primeros pasos - + Invite Friends Invitar a los 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;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } + </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> + <p style=" 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 no es nada sin sus amigos. Pulse en el botón para iniciar el proceso.</span></p> + <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> + <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">EnvĆ­e por correo electrónico una invitación con su &quot;Certificado ID&quot; a sus amigos.</span></p> + <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> + <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">AsegĆŗrese de obtener de vuelta la invitación de su amigo... </span></p> + <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Sólo puede conectarse con amigos, si se han aƱadido unos a otros.</span></p></body></html> + + + Add Your Friends to RetroShare AƱadir a sus amigos a RetroShare @@ -7372,103 +8010,136 @@ y usar el botón Importar para cargarlo AƱadir amigos - - Connect To Friends - Conectar con amigos - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Ā”Permanezca conectado al mismo tiempo que sus amigos, y Retroshare conectarĆ” automĆ”ticamente con usted!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Su cliente necesita encontrar la red Retroshare antes de poder hacer conexiones.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Esto lleva entre 5-30 minutos la primera vez que inicie Retroshare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">El indicador de la DHT (en la barra de estado) se vuelve verde cuando puede realizar conexiones.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Tras un par de minutos, el indicador de NAT (tambiĆ©n en la barra de estado) cambia a amarillo o verde.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Si permanece rojo, entonces tiene un cortafuegos molesto, con el que RetroShare lucha para conectar a travĆ©s de Ć©l.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Vea la sección Ayuda Adicional para mĆ”s recomendaciones sobre cómo conectar.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Avanzado: Abrir el puerto del cortafuegos +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Puede mejorar su rendimiento de Retroshare abriendo un puerto externo. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Esto acelerarĆ” las conexiones y permitirĆ” a mĆ”s personas conectar con usted. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">La forma mĆ”s fĆ”cil de hacer esto es habilitando UPnP en su dispositivo inalĆ”mbrico o router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Como cada router es diferente, necesitarĆ” averiguar el modelo de su router y buscar las instrucciones en Internet.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Si nada de esto tiene sentido para usted, no se preocupe por ello, Retroshare todavĆ­a funcionarĆ”.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">ĀæTiene problemas iniciĆ”ndose con RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Mire al wiki de preguntas frecuentes (FAQ). Este es un poco antiguo, estamos tratando de actualizarlo.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Revise los foros en lĆ­nea. Formule preguntas y discuta caracterĆ­sticas.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Pruebe en los foros internos de RetroShare </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Estos entran en lĆ­nea una vez este conectado a amigos.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) Si aĆŗn estĆ” estancado, escrĆ­banos un correo.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Disfrute del Retrosharing</span></p></body></html> - + + Connect To Friends + Conectar con amigos + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> + + + + Advanced: Open Firewall Port + Avanzado: Abrir el puerto del cortafuegos + + + Further Help and Support MĆ”s ayuda y soporte tĆ©cnico - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Abrir sitio web de RS @@ -7493,7 +8164,7 @@ p, li { white-space: pre-wrap; } Email para enviar comentarios - + RetroShare Invitation Invitación de RetroShare @@ -7543,12 +8214,12 @@ p, li { white-space: pre-wrap; } Comentarios de RetroShare - + RetroShare Support Soporte de RetroShare - + It has many features, including built-in chat, messaging, Tiene muchas caracterĆ­sticas, incluyendo un chan integrado, mensajerĆ­a, @@ -7672,7 +8343,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Mostrar chat de grupo @@ -7680,7 +8351,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Desconocido] @@ -7846,11 +8517,19 @@ p, li { white-space: pre-wrap; } 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. Puede dejar que sus amigos sepan de su foro al compartirlo con ellos. Seleccione a los amigos con los que quiera compartir su foro. + + Share topic admin permissions + Compartir permisos de administrador del hilo + + + 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 Posted. + GroupTreeWidget - + Title TĆ­tulo @@ -7863,12 +8542,12 @@ p, li { white-space: pre-wrap; } - + Description Descripción - + Number of Unread message @@ -7893,7 +8572,35 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Ordenar en orden descendente + + + Sort Ascending Order + Ordenar en orden ascendente + + + Sort by Name + Ordenar por nombre + + + Sort by Popularity + Ordenar por popularidad + + + Sort by Last Post + Ordenar por Ćŗltima entrada + + + Sort by Number of Posts + Ordenar por nĆŗmero de mensajes + + + Sort by Unread + Ordenar por no leĆ­dos + + + You are admin (modify names and description using Edit menu) Usted es administrador (modifique nombres y descripciones usando el menĆŗ Editar) @@ -7908,14 +8615,14 @@ p, li { white-space: pre-wrap; } ID - - + + Last Post Última publicación - + Name Nombre @@ -7926,13 +8633,17 @@ p, li { white-space: pre-wrap; } Popularidad - + Never Nunca - + Display + Mostrar + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7945,7 +8656,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and y @@ -8081,7 +8792,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Canales @@ -8092,22 +8803,26 @@ p, li { white-space: pre-wrap; } Crear canal - + Enable Auto-Download Activar descarga automĆ”tica - + My Channels Mis canales - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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> + + + + <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> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Canales suscritos @@ -8127,12 +8842,12 @@ p, li { white-space: pre-wrap; } Seleccione el directorio de descarga del canal - + Disable Auto-Download Desactivar descarga automĆ”tica - + Set download directory Establecer directorio de descarga @@ -8167,22 +8882,22 @@ p, li { white-space: pre-wrap; } - + Play Reproducir - + Open folder Abrir carpeta - + Open file - + Error Error @@ -8202,17 +8917,17 @@ p, li { white-space: pre-wrap; } Comprobando - + Are you sure that you want to cancel and delete the file? ĀæEstĆ” seguro de que quiere cancelar y borrar el archivo? - + Can't open folder No se pudo abrir la carpeta - + Play File Reproducir archivo @@ -8222,10 +8937,37 @@ p, li { white-space: pre-wrap; } Archivo %1 no estĆ” en ese lugar. + + GxsChannelFilesWidget + + Form + Formulario + + + Filename + Nombre del archivo + + + Size + TamaƱo + + + Title + TĆ­tulo + + + Published + Publicado + + + Status + Estado + + GxsChannelGroupDialog - + Create New Channel Crear nuevo canal @@ -8263,19 +9005,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Suscribirse al canal @@ -8289,7 +9021,7 @@ p, li { white-space: pre-wrap; } - + Expand Expandir @@ -8304,7 +9036,7 @@ p, li { white-space: pre-wrap; } Descripción del canal - + Loading Cargando @@ -8319,9 +9051,8 @@ p, li { white-space: pre-wrap; } - - Never - Nunca + New Channel + Nuevo canal @@ -8332,7 +9063,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Nuevo comentario: @@ -8353,7 +9084,7 @@ p, li { white-space: pre-wrap; } - + Play Reproducir @@ -8409,24 +9140,28 @@ p, li { white-space: pre-wrap; } Files Archivos + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Ā”Aviso! Tiene menos de %1 horas y %2 minutos antes que este archivo sea eliminado, considere la posibilidad de guardarlo. + Hide Ocultar - + New Nuevo - + 0 0 - - + + Comment Comentario @@ -8441,17 +9176,21 @@ p, li { white-space: pre-wrap; } Esto no me gusta - + Loading + Cargando + + + Loading... - + Comments Comentarios - + Post @@ -8476,16 +9215,139 @@ p, li { white-space: pre-wrap; } Reproducir medio + + GxsChannelPostsWidget + + Post to Channel + Mensaje al canal + + + Add new post + AƱadir nuevo mensaje + + + Loading + Cargando + + + Search channels + Buscar canales + + + Title + TĆ­tulo + + + Search Title + Buscar por tĆ­tulo + + + Message + Mensaje + + + Search Message + Buscar mensaje + + + Filename + Nombre del archivo + + + Search Filename + Buscar nombre de archivo + + + No Channel Selected + NingĆŗn canal seleccionado + + + Never + Nunca + + + Public + PĆŗblico + + + Restricted to members of circle " + Restringido a los miembros del cĆ­rculo " + + + Restricted to members of circle + Restringido a los miembros del cĆ­rculo + + + Your eyes only + Sólo para sus ojos + + + You and your friend nodes + Usted y sus nodos amigos + + + Disable Auto-Download + Desactivar descarga automĆ”tica + + + Enable Auto-Download + Activar descarga automĆ”tica + + + Show feeds + Mostrar novedades (feeds) + + + Show files + Mostrar archivos + + + Administrator: + Administrador: + + + Last Post: + Último post: + + + unknown + desconocido + + + Distribution: + Distribución: + + + Feeds + Novedades (feeds) + + + Files + Archivos + + + Subscribers + Suscriptores + + + Description: + Descripción: + + + Posts (at neighbor nodes): + Publicaciones (en nodos vecinos): + + GxsChannelPostsWidgetWithModel - + Post to Channel Mensaje al canal - + Add new post AƱadir nuevo mensaje @@ -8555,7 +9417,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8591,7 +9453,7 @@ p, li { white-space: pre-wrap; } - + Comments Comentarios @@ -8606,13 +9468,13 @@ p, li { white-space: pre-wrap; } Novedades (feeds) - - + + Click to switch to list view - + Show unread posts only @@ -8627,7 +9489,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8642,7 +9504,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8702,22 +9564,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8792,13 +9644,12 @@ p, li { white-space: pre-wrap; } Usted y sus nodos amigos - - + Copy Retroshare link - + Subscribed Suscrito @@ -8849,17 +9700,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8879,11 +9730,27 @@ p, li { white-space: pre-wrap; } Remove Item Eliminar elemento + + for identity + 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: + @@ -8974,7 +9841,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Comentarios aquĆ­ @@ -8987,7 +9854,7 @@ p, li { white-space: pre-wrap; } Formulario - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9017,7 +9884,7 @@ p, li { white-space: pre-wrap; } Refrescar - + Comment Comentario @@ -9056,7 +9923,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Responder al comentario @@ -9080,21 +9947,6 @@ p, li { white-space: pre-wrap; } Vote Down Votar negativo - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9104,7 +9956,7 @@ p, li { white-space: pre-wrap; } Hacer comentario - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9133,10 +9985,22 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> + + + Signed by + Firmado por + Reply to Comment @@ -9164,7 +10028,7 @@ before you can comment Es necesario crear una identidadāŽ antes de poder comentar - + It remains %1 characters after HTML conversion. @@ -9206,6 +10070,14 @@ before you can comment Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + AƱadir administradores al foro + + + Select Forum Admins + Seleccionar administradores del foro + Create @@ -9215,7 +10087,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum Suscribirse al foro @@ -9231,7 +10103,7 @@ before you can comment - + Expand Expandir @@ -9251,9 +10123,8 @@ before you can comment - - TextLabel - + Loading + Cargando @@ -9284,13 +10155,13 @@ before you can comment GxsForumMsgItem - - + + Subject: Tema: - + Unsubscribe To Forum Anular suscripción al foro @@ -9301,7 +10172,7 @@ before you can comment - + Expand Expandir @@ -9321,17 +10192,21 @@ before you can comment En respuesta a: - + Loading + Cargando + + + Loading... - + Forum Feed Novedad (feed) del canal - + Hide Ocultar @@ -9344,66 +10219,63 @@ before you can comment Formulario - + Start new Thread for Selected Forum Iniciar nuevo tema para el foro seleccionado - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Buscar foros - + Last Post + Último mensaje + + + New Thread Nuevo hilo + + + Threaded View + Vista por discusión + + + + Flat View + Vista plana + - + Title TĆ­tulo - - + + Date Fecha - + Author Autor - + + Save image + Guardar imagen + + + Loading Cargando - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9413,7 +10285,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message Responder mensaje @@ -9437,6 +10314,10 @@ before you can comment Download all files Descargar todos los archivos + + Next unread + Siguiente no leĆ­do + Search Title @@ -9453,23 +10334,35 @@ before you can comment Buscar por autor - + Content + Contenido + + + Search Content + Buscar por contenido + + + <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> + + + No name Sin nombre - - + + Reply Responder - + <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> - + Loading... @@ -9512,12 +10405,20 @@ before you can comment Copiar enlace de RetroShare - + Hide Ocultar - + Expand + Expandir + + + [Banned] + [Excluido] + + + [unknown] [desconocido] @@ -9547,8 +10448,8 @@ before you can comment Sólo para sus ojos - - + + Distribution Distribución @@ -9562,6 +10463,26 @@ before you can comment Anti-spam Anti-spam + + [ ... Redacted message ... ] + [ ... Mensaje redactado ... ] + + + Anonymous + Anónimo + + + signed + firmado + + + none + ninguno + + + [ ... Missing Message ... ] + [ ... Mensaje perdido ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9631,12 +10552,16 @@ before you can comment Mensaje original - + New thread Nuevo hilo - + Read status + Estado de lectura + + + Edit Editar @@ -9697,7 +10622,7 @@ before you can comment Reputación del autor - + Show column @@ -9717,7 +10642,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive Posts anónimos/desconocidos reenviados si la reputación es positiva @@ -9769,7 +10694,7 @@ This message is missing. You should receive it later. - + No result. @@ -9779,7 +10704,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9794,7 +10719,30 @@ This message is missing. You should receive it later. - + 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) @@ -9803,6 +10751,10 @@ This message is missing. You should receive it later. (Old) (Antiguo) + + You cant act on the author to a non-existant Message + No puede actuar sobre el autor de un mensaje no-existente + From @@ -9860,12 +10812,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> - + Forums Foros @@ -9896,16 +10848,35 @@ This message is missing. You should receive it later. Otros foros + + GxsForumsFillThread + + Waiting + Esperando + + + Retrieving + Recuperando + + + Loading + Cargando + + GxsGroupDialog - + Name Nombre - + Add Icon + AƱadir icono + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Los destinatarios de la clave pueden publicar en grupos de tipo restringido, y pueden ver y publicar en canales de tipo privado @@ -9914,14 +10885,22 @@ This message is missing. You should receive it later. Share Publish Key Compartir clave de publicación + + check peers you would like to share private publish key with + marque los vecinos con los que desea compartir la clave privada de publicación + + + Share Key With + Compartir clave con + - + Description Descripción - + Message Distribution Distribución del mensaje @@ -9929,7 +10908,7 @@ This message is missing. You should receive it later. - + Public PĆŗblico @@ -9948,6 +10927,14 @@ This message is missing. You should receive it later. New Thread Nuevo hilo + + Required + Requerido + + + Encrypted Msgs + Mensajes cifrados + Personal Signatures @@ -9989,7 +10976,7 @@ This message is missing. You should receive it later. Protección-del-spam - + Comments: Comentarios: @@ -10012,7 +10999,7 @@ This message is missing. You should receive it later. Anti-spam: - + All People @@ -10028,12 +11015,12 @@ This message is missing. You should receive it later. - + Restricted to circle: Restringido al cĆ­rculo: - + Limited to your friends Limitado a sus amigos @@ -10050,23 +11037,23 @@ This message is missing. You should receive it later. - + Message tracking Rastreo de mensaje - - + + PGP signature required Se requiere firma PGP - + Never Nunca - + Only friends nodes in group Sólo nodos amigos en el grupo @@ -10082,28 +11069,30 @@ This message is missing. You should receive it later. Por favor aƱadir un nombre - + PGP signature from known ID required Se requiere firma PGP de identificación conocida - - - [None] - - - - + Load Group Logo Cargar el logo del grupo - + Submit Group Changes Enviar cambios del grupo - + Failed to Prepare Group MetaData - please Review + Fallo al preparar Metadatos del grupo - por favor revise + + + Will be used to send feedback + Se usarĆ” para enviar comentarios + + + Owner: Propietario: @@ -10113,12 +11102,12 @@ This message is missing. You should receive it later. Configure una descripción explicativa aquĆ­ - + Info Información - + ID ID @@ -10128,7 +11117,7 @@ This message is missing. You should receive it later. Último mensaje - + <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> @@ -10203,12 +11192,7 @@ This message is missing. You should receive it later. Desfavorecer identificaciones no firmadas e identificaciones desde nodos desconocidos - - Author: - - - - + Popularity Popularidad @@ -10224,22 +11208,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Cancelar - + Create Crear - + + Author + Autor + + + GxsIdLabel GxsEtiquetaIdentificación @@ -10247,7 +11236,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Cargando @@ -10307,7 +11296,7 @@ This message is missing. You should receive it later. Editar detalles - + Synchronise posts of last... Sincronizar posts de los Ćŗltimos... @@ -10364,12 +11353,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + Compartir permisos de publicación + + + Copy RetroShare Link Copiar enlace de RetroShare @@ -10392,7 +11385,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Sin Firma @@ -10405,24 +11398,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Cargando + + + Not found No encontrado + + No Signature + Sin Firma + - - + + [Banned] [Excluido] + + Authentication + Autentificación + unknown Key clave desconocida - + anonymous + anónimo + + + Loading... @@ -10432,12 +11441,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Nombre&nbsp;de&nbsp;identidad @@ -10451,20 +11455,16 @@ This message is missing. You should receive it later. Node Nodo + + Signed&nbsp;by + Firmado&nbsp;por + [Unknown] [Desconocida] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10476,7 +11476,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10524,13 +11524,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + Cargando + Loading... @@ -10647,6 +11651,10 @@ This message is missing. You should receive it later. 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 @@ -10662,6 +11670,10 @@ This message is missing. You should receive it later. Popularity Popularidad + + Details + Detalles + @@ -10694,6 +11706,41 @@ This message is missing. You should receive it later. No + + GxsTunnelsDialog + + Authenticated tunnels: + TĆŗneles autentificados: + + + Tunnel ID: %1 + Identificador de tĆŗnel: %1 + + + from: %1 + de: %1 + + + to: %1 + a: %1 + + + status: %1 + estado: %1 + + + total sent: %1 bytes + total envd: %1 bytes + + + total recv: %1 bytes + total recb: %1 bytes + + + Unknown Peer + Vecino desconocido + + HashBox @@ -10906,12 +11953,48 @@ This message is missing. You should receive it later. About Acerca de + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10927,7 +12010,7 @@ p, li { white-space: pre-wrap; } - + Authors Autores @@ -10946,7 +12029,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10959,6 +12042,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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;">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;">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;">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> + License Agreement @@ -11020,34 +12133,50 @@ p, li { white-space: pre-wrap; } Formulario - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - <html><head/><body><p>Copia tu ID de RetroShare al portapapeles</p></body></html> + - + Add friend - Agregar amigo + Did you receive a Retroshare ID from a friend? - ĀæRecibiste una identificación de Retroshare de una amiga? + Do you need help with Retroshare? - ĀæNecesitas ayuda con Retroshare? + - + <html><head/><body><p>Share your RetroShare ID</p></body></html> - <html><head/><body><p>Comparte tu ID de RetroShare</p></body></html> + This is your Retroshare ID. Copy and share with your friends! - Este es tu ID de Retroshare. Ā”Cópialo y compĆ”rtelo con tus amigos! + + + + 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 @@ -11055,6 +12184,10 @@ p, li { white-space: pre-wrap; } ... ... + + 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, @@ -11064,12 +12197,20 @@ private and secure decentralized communication platform. 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 @@ -11079,7 +12220,7 @@ de código abierto, multi-sistema, privada y segura. Guardar su certificado en un fichero - + Send via Email Enviar vĆ­a correo electrónico @@ -11096,40 +12237,16 @@ de código abierto, multi-sistema, privada y segura. Copy your Retroshare ID to Clipboard - Copia tu ID de Retroshare al portapapeles - - - - Include current local IP - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11141,12 +12258,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11155,11 +12277,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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 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... @@ -11173,7 +12303,7 @@ new short format Home - Casa + PĆ”gina principal @@ -11431,14 +12561,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Todo - + Reputation Reputación @@ -11448,12 +12578,12 @@ p, li { white-space: pre-wrap; } Buscar - + Anonymous Id ID anónima - + Create new Identity Crear nueva identidad @@ -11463,7 +12593,7 @@ p, li { white-space: pre-wrap; } Crear nuevo cĆ­rculo - + Persons Personas @@ -11478,27 +12608,27 @@ p, li { white-space: pre-wrap; } Persona - + Close Cerrar - + 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 - + Friend votes: Votos de amigos: - + Positive votes Votos positivos @@ -11514,39 +12644,29 @@ p, li { white-space: pre-wrap; } Votos negativos - + Created on : - Creado el : + - - Auto-Ban profile - Perfil de prohibición automĆ”tica - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - Editar identidad - - - + Usage statistics EstadĆ­sticas de uso - + Circles CĆ­rculos - + Circle name Nombre del cĆ­rculo @@ -11566,20 +12686,18 @@ p, li { white-space: pre-wrap; } CĆ­rculos personales - + - Edit identity Editar identidad - - + Delete identity Borrar indentidad - + Chat with this peer Charlar con este vecino @@ -11589,78 +12707,98 @@ p, li { white-space: pre-wrap; } Abre un chat a distancia con este vecino - + Owner node ID : - Identificación del nodo: + Identificación del nodo propietario : - + Identity name : - Nombre de identidad: + Nombre de la identidad : - + () () - + Identity ID Identificación de la identidad - + Send message Enviar mensaje - + Identity info Información de la identidad - + Identity ID : Identificación de la identidad : - + Owner node name : Nombre del nodo propietario : - + Create new... Crear nueva... - + Type: Tipo: - + Send Invite Enviar invitación - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> <html><head/><body><p>La opinión media de los nodos vecinos acerca de esta identidad. Negativo es malo,</p><p>positivo es bueno. Cero es neutral.</p></body></html> - + Your opinion: Su opinión: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> + + + Negative Negativo - + Neutral Neutral @@ -11671,17 +12809,17 @@ p, li { white-space: pre-wrap; } Positivo - + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> <html><head/><body><p>Puntuación de reputación global, contando la suya y las de sus amigos.</p><p>Negativo es malo, positivo es bueno, cero es neutral. Si la puntuación es demasiado baja,</p><p>la identidad se seƱalarĆ” como mala, y serĆ” rechazada en foros, salas de chat,</p><p>canales, etc.</p></body></html> - + Overall: Global: - + Anonymous Anónimo @@ -11696,24 +12834,24 @@ p, li { white-space: pre-wrap; } Buscar identificación - + This identity is owned by you Esta identidad es propiedad de usted - - + + My own identities Mis propias identidades - - + + My contacts Mis contactos - + Show Items Mostrar elementos @@ -11728,12 +12866,7 @@ p, li { white-space: pre-wrap; } Enlazado a mi nodo - - <h1><img width="%1" 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> - - - - + Other circles Otros cĆ­rculos @@ -11743,7 +12876,7 @@ p, li { white-space: pre-wrap; } CĆ­rculos a los que pertenezco - + Circle ID: Identificación del cĆ­rculo: @@ -11818,7 +12951,7 @@ p, li { white-space: pre-wrap; } No es miembro (no tiene acceso a datos limitados a este cĆ­rculo) - + Identity ID: Identificación de identidad: @@ -11848,7 +12981,7 @@ p, li { white-space: pre-wrap; } desconocido - + Invited Invitado @@ -11863,7 +12996,7 @@ p, li { white-space: pre-wrap; } Miembro - + Edit Circle Editar cĆ­rculo @@ -11911,7 +13044,7 @@ p, li { white-space: pre-wrap; } Conceder membresĆ­a - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11922,7 +13055,7 @@ Debe deshacerse de ella ahora y usar una nueva. Estas identidades pronto dejarĆ”n de estar soportadas. - + [Unknown node] [Nodo desconocido] @@ -11965,7 +13098,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Identidad anónima - + Boards @@ -12045,7 +13178,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + information información @@ -12061,12 +13194,29 @@ Estas identidades pronto dejarĆ”n de estar soportadas. 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? + + + Banned Excluido - + + <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 @@ -12110,11 +13260,19 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Forums Foros + + Posted + Posted + Chat Chat + + Unknown + Desconocido + [Unknown] @@ -12135,6 +13293,14 @@ Estas identidades pronto dejarĆ”n de estar soportadas. 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. @@ -12155,11 +13321,19 @@ Estas identidades pronto dejarĆ”n de estar soportadas. 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. @@ -12171,7 +13345,11 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Descifrado genĆ©rico. - + Membership verification in circle %1. + Verificación de membresĆ­a en el cĆ­rculo %1. + + + Add to Contacts AƱadir a contactos @@ -12221,21 +13399,21 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Hola,<br>quiero que seamos amigos en RetroShare.<br> - - - + + + People Personas - + Your Avatar Click here to change your avatar Su avatar - + Linked to neighbor nodes Enlazado hacia nodos vecinos @@ -12245,7 +13423,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Enlazado hacia nodos distantes - + Linked to a friend Retroshare node Enlazado hacia un nodo de RetroShare amigo @@ -12260,7 +13438,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Enlazado hacia un nodo RetroShare desconocido - + Chat with this person Conversar con esta persona @@ -12275,12 +13453,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Conversación distante rechazada con esta persona. - + Last used: Usado por Ćŗltima vez: - + +50 Known PGP +50 PGP conocidos @@ -12300,12 +13478,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. ĀæDe verdad quiere borrar esta identidad? - + Owned by Propiedad de - + Node name: Nombre del nodo: @@ -12315,7 +13493,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Identificación del nodo: - + Really delete? ĀæEstĆ” seguro de borrar? @@ -12323,7 +13501,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. IdEditDialog - + Nickname Apodo @@ -12353,7 +13531,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Seudónimo - + Import image @@ -12363,19 +13541,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Nueva identidad @@ -12389,7 +13560,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + @@ -12399,12 +13570,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. N/A - - No avatar chosen - - - - + Edit identity Editar identidad @@ -12415,27 +13581,27 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Actualizar - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12455,7 +13621,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Identity update failed @@ -12465,7 +13631,11 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Error getting key! + Ā”Error al obtener la clave! + + + Error KeyID invalid Error, ID de la clave no vĆ”lida @@ -12480,7 +13650,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Nombre real desconocido - + Create New Identity Crear nueva identidad @@ -12490,15 +13660,10 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Tipo - + Choose image... - - - Remove - - @@ -12524,7 +13689,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. AƱadir - + Create Crear @@ -12534,13 +13699,17 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Cancelar - + Your Avatar Click here to change your avatar Su avatar - + Set Avatar + Establecer avatar + + + Linked to your profile Enlazado a su perfil @@ -12550,7 +13719,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Puede tener una o mĆ”s identidades. Se usan cuando escribe un salas de chat, foros y comentarios de canales. ActĆŗan como el destinatario para conversaciones distantes y el sistema de correo distante de RetroShare. - + The nickname is too short. Please input at least %1 characters. El apodo es demasiado corto. Por favor, introduzca al menos %1 caracteres. @@ -12609,6 +13778,10 @@ Estas identidades pronto dejarĆ”n de estar soportadas. PGP name: Nombre de PGP: + + GXS id: + Identificación de GXS: + PGP id: @@ -12624,7 +13797,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Copy Copiar @@ -12634,12 +13807,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Quitar - + %1 's Message History - + Mark all Marcar todo @@ -12658,38 +13831,26 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Quote Citar + + Send + Enviar + ImageUtil - - + + Save image Guardar imagen - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename No se puede guardar la imagen, nombre de fichero no vĆ”lido - - Copy image - - - - - + Not an image No es una imagen @@ -12707,32 +13868,27 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Enable RetroShare JSON API Server - + Port: Puerto: - + Listen Address: - - Status: - Estado: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12753,12 +13909,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12767,31 +13918,26 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Abrir archivo - + Open Folder Abrir carpeta - + Checking... Comprobando... @@ -12801,7 +13947,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Comprobar archivos - + Recommend in a message to... Recomendar en un mensaje a... @@ -12829,7 +13975,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. MainWindow - + Add Friend AƱadir a amigo @@ -12845,8 +13991,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - - + Options Opciones @@ -12867,7 +14012,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Quit Cerrar @@ -12878,12 +14023,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Asistente para el inicio rĆ”pido - + RetroShare %1 a secure decentralized communication platform RetroShare %1 es una plataforma de comunicación descentralizada y segura - + Unfinished Incompleto @@ -12912,12 +14057,11 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - Status Estado - + Notify Notificación @@ -12928,35 +14072,31 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - Open Messages Abrir mensajes - - + Bandwidth Graph GrĆ”fico del uso de la red - + Applications Aplicaciones - Help Ayuda - - + Minimize Minimizar - + Maximize Maximizar @@ -12971,12 +14111,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. RetroShare - - Close window - - - - + %1 new message %1 nuevo mensaje @@ -13006,7 +14141,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. %1 amigos conectados - + Do you really want to exit RetroShare ? ĀæRealmente desea salir de RetroShare? @@ -13026,7 +14161,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Mostrar - + Make sure this link has not been forged to drag you to a malicious website. AsegĆŗrese de que este enlace no ha sido falsificado para arrastrarle a un sitio web malicioso. @@ -13071,13 +14206,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Matriz de permisos del servicio - - + Statistics EstadĆ­sticas - + Show web interface Mostrar interfaz web @@ -13092,7 +14226,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. directorio estĆ” descenciendo (el lĆ­mite actual es - + Really quit ? ĀæEstĆ” seguro de salir? @@ -13101,17 +14235,17 @@ Estas identidades pronto dejarĆ”n de estar soportadas. MessageComposer - + Compose Componer - + Contacts Contactos - + Paragraph PĆ”rrafo @@ -13147,12 +14281,12 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Encabezamiento 6 - + Font size TamaƱo de letra - + Increase font size Aumentar tamaƱo de letra @@ -13167,32 +14301,32 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Negrita - + Italic Cursiva - + Alignment Alineación - + Add an Image AƱadir una imagen - + Sets text font to code style Cambia el estilo de letra a tipo codigo - + Underline Subrayado - + Subject: Asunto: @@ -13203,32 +14337,32 @@ Estas identidades pronto dejarĆ”n de estar soportadas. - + Tags Etiquetas - + Address list: Lista de direcciones: - + Recommend this friend Recomendar este amigo - + Set Text color Establecer color del texto - + Set Text background color Establecer color de fondo - + Recommended Files Archivos recomendados @@ -13298,7 +14432,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. AƱadir cita - + Send To: Enviar a: @@ -13322,6 +14456,10 @@ Estas identidades pronto dejarĆ”n de estar soportadas. &Justify &Justificar + + All addresses (mixed) + Todas las direcciones (mezcladas) + All people @@ -13333,7 +14471,7 @@ Estas identidades pronto dejarĆ”n de estar soportadas. Mis contactos - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hola,<br>Le recomiendo a un buen amigo mĆ­o, puede confiar en Ć©l tanto como confĆ­a en mĆ­. <br> @@ -13353,18 +14491,18 @@ Estas identidades pronto dejarĆ”n de estar soportadas. quiere ser su amigo en 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 Hola %1,<br><br>%2 quiere ser su amigo en RetroShare.<br><br>Responder ahora:<br>%3<br><br>Gracias,<br>El equipo de RetroShare - - + + Save Message Guardar mensaje - + Message has not been Sent. Do you want to save message to draft box? El mensaje no se ha enviado. @@ -13376,17 +14514,7 @@ Do you want to save message to draft box? Pegar enlace de RetroShare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" AƱadir a "A" @@ -13406,7 +14534,7 @@ Do you want to save message to draft box? AƱadir como recomendado - + Original Message Mensaje original @@ -13416,21 +14544,21 @@ Do you want to save message to draft box? De - + - + To A - - + + Cc Cc - + Sent Enviar @@ -13445,7 +14573,7 @@ Do you want to save message to draft box? En %1, %2 escribió: - + Re: Re: @@ -13455,30 +14583,30 @@ Do you want to save message to draft box? Env: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? ĀæQuiere enviar este mensaje sin asunto? - + Please insert at least one recipient. Por favor, introduzca por lo menos un destinatario. - + Bcc Bcc - + Unknown Desconocido @@ -13593,13 +14721,13 @@ Do you want to save message to draft box? Detalles - + Open File... Abrir archivo... - + HTML-Files (*.htm *.html);;All Files (*) Archivos HTML (*.htm *.html);;Todos los archivos(*) @@ -13619,7 +14747,7 @@ Do you want to save message to draft box? Exportar PDF - + Message has not been Sent. Do you want to save message ? El mensaje no se ha enviado. @@ -13641,7 +14769,7 @@ Do you want to save message ? AƱadir otro archivo - + Hi,<br>I want to be friends with you on RetroShare.<br> Hola,<br>quiero establecer amistad contigo en RetroShare.<br> @@ -13665,24 +14793,28 @@ Do you want to save message ? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Tiene una invitación de amistad. + Respond now: Responder ahora: - - + + Close Cerrar - + From: De: - + Friend Nodes Nodos amigos @@ -13727,13 +14859,13 @@ Do you want to save message ? Lista ordenada (nĆŗmeros romanos en mayĆŗscula) - - + + Thanks, <br> Gracias, <br> - + Distant identity: Identidad distante: @@ -13743,12 +14875,12 @@ Do you want to save message ? [Desaparecido] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Por favor, cree una identidad para firmar mensajes distantes, o elimine los vecinos distantes de la lista de destinos. - + Node name & id: Nombre de nodo e identificación: @@ -13826,7 +14958,7 @@ Do you want to save message ? Por defecto - + A new tab Una pestaƱa nueva @@ -13836,7 +14968,7 @@ Do you want to save message ? Una ventana nueva - + Edit Tag Editar etiqueta @@ -13859,7 +14991,7 @@ Do you want to save message ? MessageToaster - + Sub: Asunto: @@ -13867,7 +14999,7 @@ Do you want to save message ? MessageUserNotify - + Message Mensaje @@ -13895,7 +15027,7 @@ Do you want to save message ? MessageWidget - + Recommended Files Archivos recomendados @@ -13905,37 +15037,37 @@ Do you want to save message ? Descargar todos los archivos recomendados - + Subject: Asunto: - + From: De: - + To: A: - + Cc: Cc: - + Bcc: Bcc: - + Tags: Etiquetas: - + Reply Responder @@ -13975,7 +15107,7 @@ Do you want to save message ? - + Send Invite Enviar invitación @@ -14027,7 +15159,7 @@ Do you want to save message ? - + Confirm %1 as friend Confirmar %1 como amigo @@ -14037,12 +15169,12 @@ Do you want to save message ? AƱadir %1 como amigo - + View source - + No subject Sin asunto @@ -14052,22 +15184,17 @@ Do you want to save message ? Descargar - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14077,23 +15204,21 @@ Do you want to save message ? - - Show less - + Send invite? + ĀæEnviar invitación? - - Show more - + Do you really want send a invite with your Certificate? + ĀæEstĆ” seguro de que quiere enviar una invitación con su certificado? - + Download all Dercargar todo - + Print Document Imprimir documento @@ -14108,12 +15233,12 @@ Do you want to save message ? Archivos HTML (*.htm *.html);;Todos los archivos(*) - + Load images always for this message Cargar siempre imĆ”genes para este mensaje - + Hide the attachment pane Ocultar el panel de adjunto @@ -14135,6 +15260,42 @@ Do you want to save message ? Compose Componer + + Reply to selected message + Responder al mensaje seleccionado + + + Reply + Responder + + + Reply all to selected message + Responder a todos los mensajes seleccionados + + + Reply all + Responder a todos + + + Forward selected message + Reenviar mensaje seleccionado + + + Forward + Adelante + + + Remove selected message + Borrar mensaje seleccionado + + + Delete + Borrar + + + Print selected message + Imprimir mensaje seleccionado + Print @@ -14213,7 +15374,7 @@ Do you want to save message ? MessagesDialog - + New Message Nuevo mensaje @@ -14223,16 +15384,60 @@ Do you want to save message ? Componer - + Reply to selected message + Responder a mensaje seleccionado + + + Reply + Responder + + + Reply all to selected message + Responder a todos los mensajes seleccionados + + + Reply all + Responder a todos + + + Forward selected message + Reenviar mensaje seleccionado + + + Foward + Reenviar + + + Remove selected message + Borrar mensaje seleccionado + + + Delete + Borrar + + + Print selected message + Imprimir mensaje seleccionado + + + Print + Imprimir + + + Display + Mostrar + + + - - + + Tags Etiquetas - - + + Inbox Bandeja de entrada @@ -14262,17 +15467,21 @@ Do you want to save message ? Papelera - + Total Inbox: Buzón de entrada total: - + Folders + Carpetas + + + Quick View Vista rĆ”pida - + Print... Imprimir... @@ -14282,6 +15491,26 @@ Do you want to save message ? Print Preview Vista previa + + Buttons Icon Only + Botones solo con icono + + + Buttons Text Beside Icon + Botones con texto al lado del icono + + + Buttons with Text + Botones con texto + + + Buttons Text Under Icon + Botones con texto debajo del icono + + + Set Text Under Icon + Poner texto debajo de los iconos + Save As... @@ -14303,7 +15532,7 @@ Do you want to save message ? Reenviar mensaje - + Subject Asunto @@ -14313,7 +15542,7 @@ Do you want to save message ? De - + Date Fecha @@ -14323,7 +15552,39 @@ Do you want to save message ? Contenido - + Click to sort by attachments + Pulsar para ordenar por adjuntos + + + Click to sort by subject + Pulsar para ordenar por asunto + + + Click to sort by read + Pulsar para ordenar por leido + + + Click to sort by from + Pulsar para ordenar por remitente + + + Click to sort by date + Pulsar para ordenar por fecha + + + Click to sort by tags + Pulsar para ordenar por etiqueta + + + Click to sort by star + Pulsar para ordenar por estrella + + + Forward selected Message + Reenviar mensaje seleccionado + + + Search Subject Buscar por el asunto @@ -14332,11 +15593,6 @@ Do you want to save message ? Search From Buscar desde - - - Search To - - Search Date @@ -14363,14 +15619,14 @@ Do you want to save message ? Buscar por adjuntos - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen 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/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> - + Starred - + Con estrella @@ -14444,7 +15700,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14458,7 +15714,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14473,33 +15729,38 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Borradores - + No Box selected. - - To - A + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + No hay mensajes favoritos disponibles. Las estrellas permiten dar un estatus especial a los mensajes para que sean mĆ”s fĆ”ciles de encontrar. Para marcar como favorito un mensaje, pulse en la estrella gris claro al lado de cualquier mensaje. - + No system messages available. + No hay mensajes del sistema disponibles. + + + To + A + + + Click to sort by to + Pulsar para ordenar por destinatario + + + This message goes to a distant person. + Este mensaje va a una persona distante. + + + @@ -14507,6 +15768,26 @@ Do you want to save message ? Total: Total: + + Messages + Mensajes + + + Click to sort by signature + Haga clic en ordenar por firma + + + This message was signed and the signature checks + Este mensaje fue firmado y la firma comprobada + + + This message was signed but the signature doesn't check + Este mensaje esta firmado, pero la firma no se ha comprobado + + + This message comes from a distant person. + Este mensaje viene de una persona distante. + Mail @@ -14534,17 +15815,7 @@ Do you want to save message ? MimeTextEdit - - Save image - Guardar imagen - - - - Copy image - - - - + Paste as plain text Pegar como texto sin cifrar @@ -14598,7 +15869,7 @@ Do you want to save message ? - + Expand Abrir @@ -14608,7 +15879,7 @@ Do you want to save message ? Quitar objeto - + from de @@ -14643,10 +15914,18 @@ Do you want to save message ? Mensajes pendientes - + Hide Ocultar + + 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? + NATStatus @@ -14784,7 +16063,7 @@ Do you want to save message ? ID del vecino - + Remove unused keys... Eliminar claves sin uso... @@ -14794,7 +16073,7 @@ Do you want to save message ? - + Clean keyring Vaciar el juego de claves @@ -14811,13 +16090,7 @@ 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. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Información del juego de claves @@ -14853,13 +16126,18 @@ Para mayor seguridad, previamente se hizo copia de seguridad en fichero de su ju Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inconsistencia de datos en el juego de claves. Probablemente esto es un error. Póngase en contacto con los desarrolladores. + + + Export/create a new node + Exportar/crear un nuevo nodo + Trusted keys only Sólo claves de confianza - + Search name Buscar nombre @@ -14869,12 +16147,12 @@ Para mayor seguridad, previamente se hizo copia de seguridad en fichero de su ju Buscar identificación del vecino - + Profile details... Detalles del perfil... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14883,6 +16161,13 @@ Reported error: Se informo del error: + + NetworkPage + + Network + Red + + NetworkView @@ -14909,7 +16194,7 @@ Se informo del error: NewFriendList - + Offline Friends @@ -14930,7 +16215,7 @@ Se informo del error: - + Groups Grupos @@ -14960,19 +16245,19 @@ Se informo del error: importar su lista de amigos incluyendo grupos - - + + Search Buscar - + ID - + Search ID @@ -14982,12 +16267,12 @@ Se informo del error: - + Show Items Mostrar elementos - + Last contact @@ -14997,7 +16282,7 @@ Se informo del error: IP - + Group Grupo @@ -15112,7 +16397,7 @@ Se informo del error: - + Do you want to remove this node? ĀæQuiere eliminar este nodo? @@ -15122,7 +16407,7 @@ Se informo del error: ĀæQuiere eliminar este amigo? - + Done! Ā”Hecho! @@ -15236,7 +16521,11 @@ al menos un vecino no fue aƱadido al grupo NewsFeed - + Log entries + Entradas de registro (log) + + + Activity Stream @@ -15251,7 +16540,11 @@ al menos un vecino no fue aƱadido al grupo Quitar todo - + This is a test. + Esto es una prueba. + + + Newest on top Los mĆ”s recientes arriba @@ -15261,12 +16554,20 @@ al menos un vecino no fue aƱadido al grupo Los mĆ”s antiguos arriba - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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) + + + Activity @@ -15321,6 +16622,10 @@ al menos un vecino no fue aƱadido al grupo Blogs Blogs + + Security + Seguridad + @@ -15342,6 +16647,10 @@ al menos un vecino no fue aƱadido al grupo Message Mensaje + + Connect attempt + Intento de conectar + @@ -15358,6 +16667,10 @@ al menos un vecino no fue aƱadido al grupo Ip security Seguridad de la IP + + Log + Registro (log) + Friend Connected @@ -15368,6 +16681,10 @@ al menos un vecino no fue aƱadido al grupo Circles CĆ­rculos + + Links + Enlaces + Activity @@ -15420,6 +16737,26 @@ al menos un vecino no fue aƱadido al grupo Chat rooms Salas de chat + + 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 + Position @@ -15495,16 +16832,24 @@ al menos un vecino no fue aƱadido al grupo Disable All Toaster temporarily Deshabilitar todas las notificaciones temporalmente + + Feed + Novedades (feed) + Systray Bandeja del sistema + + Count all unread messages + Contar todos los mensajes no leĆ­dos + NotifyQt - + Passphrase required Se requiere frase-contraseƱa @@ -15524,12 +16869,12 @@ al menos un vecino no fue aƱadido al grupo Ā”ContraseƱa errónea! - + Please enter your Retroshare passphrase Por favor, introduzca su frase-contraseƱa de RetroShare - + Unregistered plugin/executable Plugin no registrado/ejecutable @@ -15544,7 +16889,19 @@ al menos un vecino no fue aƱadido al grupo Por favor, compruebe su reloj del sistema. - + Examining shared files... + Examinando archivos compartidos... + + + Hashing file + Calculando hash del archivo + + + Saving file index... + Guardando indice del archivo... + + + Test Prueba @@ -15555,19 +16912,17 @@ al menos un vecino no fue aƱadido al grupo - Unknown title TĆ­tulo desconocido - + - Encrypted message Mesaje criptado - + 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). Para que las salas de chat funcionen adecuadamente, la hora de su computadora tiene que se correcta. Por favor, compruebe si este es el caso (una posible desincronización de varios minutos fue detectada con sus amigos). @@ -15575,7 +16930,7 @@ al menos un vecino no fue aƱadido al grupo OnlineToaster - + Friend Online Amigo conectado @@ -15627,6 +16982,10 @@ Sin Anonimato D/S: desactiva el reenvĆ­o de archivos PGPKeyDialog + + Dialog + DiĆ”logo + Profile info @@ -15692,6 +17051,10 @@ 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 + + Key signatures : + Firmas de clave : + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> @@ -15721,20 +17084,23 @@ p, li { white-space: pre-wrap; } Clave PGP - - Friend options - - - - + These options apply to all nodes of the profile: Estas opciones se aplican a todos los nodos del perfil: + + <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> + Keysigning: + + Sign PGP key + Firmar clave PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15771,7 +17137,12 @@ p, li { white-space: pre-wrap; } Incluir firmas - + + Options + Opciones + + + <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> @@ -15785,6 +17156,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15817,21 +17192,21 @@ p, li { white-space: pre-wrap; } KB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Error: No se pueden obtener los detalles del vecino. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) El algoritmo de la clave proporcionada no estĆ” soportado por RetroShare @@ -15852,7 +17227,7 @@ 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. El nivel de confianza es una forma de expresar su propia confianza en esta clave. No es utilizado por la aplicación ni se comparte, pero puede serle Ćŗtil para recordar buenas/malas claves. @@ -15921,6 +17296,10 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Check the password! + + Maybe password is wrong + Probablemente la contraseƱa es errónea + You haven't set a trust level for this key. @@ -15928,12 +17307,12 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc - + Retroshare profile Perfil de RetroShare - + This is your own PGP key, and it is signed by : Esta es su propia clave PGP, y estĆ” firmada por: @@ -15959,7 +17338,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc PeerItem - + Chat Chat @@ -15980,7 +17359,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Quitar objeto - + Name: Nombre: @@ -16020,7 +17399,7 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Desfase temporal: - + Write Message Escribir mensaje @@ -16034,6 +17413,10 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Friend Connected Amigo conectado + + Connect Attempt + Intentando conectar + Connection refused by peer @@ -16072,13 +17455,17 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Unknown + + Unknown Peer + Vecino desconocido + Hide Ocultar - + Send Message Enviar mensaje @@ -16130,6 +17517,10 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc Chat with this person as... Chatear con esta persona como... + + Send message to this person + Enviar un mensaje a esta persona + Invite to Circle @@ -16188,6 +17579,10 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc <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 + use "positive" as the default opinion for contacts (instead of neutral) @@ -16245,6 +17640,13 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc <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> + + PhotoCommentItem + + Form + Formulario + + PhotoDialog @@ -16252,11 +17654,23 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc PhotoShare Compartir fotos + + Photo + FotografĆ­a + TextLabel Texto de la etiqueta + + Comment + Comentario + + + Summary + Resumen + Album / Photo Name @@ -16317,6 +17731,14 @@ Advertencia: En su opción de Transferencia-de-fichero, establezca permitir desc ... ... + + Add Comment + AƱadir comentario + + + Write a comment... + Escribir un comentario... + Album @@ -16387,6 +17809,10 @@ p, li { white-space: pre-wrap; } Create Album Crear Ć”lbum + + View Album + Ver Ć”lbum + Edit Album Details @@ -16408,17 +17834,17 @@ p, li { white-space: pre-wrap; } Diapositivas - + My Albums Mi Ć”lbum - + Subscribed Albums Ɓlbum suscritos - + Shared Albums Ɓlbumes compartidos @@ -16448,7 +17874,7 @@ solicitar editarlo! PhotoSlideShow - + Album Name Nombre del album @@ -16507,19 +17933,19 @@ solicitar editarlo! - - + + TextLabel - + Posted by - + ago @@ -16555,12 +17981,12 @@ solicitar editarlo! PluginItem - + TextLabel Texto de la etiqueta - + Show more details about this plugin Mostrar mĆ”s detalles sobre este plugin @@ -16706,6 +18132,60 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Directorios de bĆŗsqueda de plugin + + Plugin disabled. Click the enable button and restart Retroshare + Complemento deshabilitado. Haga clic en el botón habilitar y reinicie Retroshare + + + [disabled] + [deshabilitado] + + + No API number supplied. Please read plugin development manual. + No se ha suministrado el nĆŗmero del API. Por favor lea el manual de desarrollo del plugin. + + + [loading problem] + [problema al cargar] + + + No SVN number supplied. Please read plugin development manual. + No se ha suministrado el nĆŗmero del SVN. Por favor lea el manual de desarrollo del plugin. + + + Loading error. + Error cargando. + + + Missing symbol. Wrong version? + SĆ­mbolo faltante. ĀæVersión incorrecta? + + + No plugin object + NingĆŗn objeto plugin + + + Plugins is loaded. + Los plugins estĆ”n cargados. + + + Unknown status. + Estado desconocido. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Marque esto para el desarrollo de plugins. Esto harĆ” +que no se compruebe el hash. Sin embargo, en +condiciones normales, el control de hash le protege +de un posible comportamiento malicioso de los plugins. + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Complementos</h1> <p>Los complementos (plugins) se cargan desde los directorios que aparecen en la lista del fondo.</p> <p>Por razones de seguridad, los complementos aceptados se cargan automĆ”ticamente hasta que el ejecutable principal de RetroShare o la librerĆ­a del complemento cambian. En tal caso, el usuario necesita confirmarlos de nuevo. DespuĆ©s de que se inicie el programa, puede habilitar un complemento manualmente haciendo clic en el botón "Habilitar", y luego reiniciar RetroShare.</p> <p>Si quiere desarrollar sus propios complementos, contacte con el equipo de desarrolladores Ā”ellos estarĆ”n contentos de auxiliarle!</p> + Plugins @@ -16775,27 +18255,12 @@ p, li { white-space: pre-wrap; } Ventana de ajustes en la parte superior - - Ban this person (Sets negative opinion) - Excluir a esta persona (establece una opinión negativa) - - - - Give neutral opinion - Dar una opinión neutral - - - - Give positive opinion - Dar una opinión positiva - - - + Choose window color... - + Dock window @@ -16829,6 +18294,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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 vecino y retire el tĆŗnel cifrado. + + + Kill the tunnel? + ĀæMatar el tĆŗnel? + PostedCardView @@ -16848,7 +18329,7 @@ p, li { white-space: pre-wrap; } Nuevo - + Vote up Votar positivo @@ -16868,8 +18349,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Comentarios @@ -16894,13 +18375,13 @@ p, li { white-space: pre-wrap; } - - + + Comment Comentario - + Comments Comentarios @@ -16928,12 +18409,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + Firmado por: + + + Notes + Notas + + + Create a new Post - + RetroShare RetroShare @@ -16948,22 +18437,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Cargar archivo de imagen - + Post image @@ -16979,17 +18458,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16999,7 +18468,23 @@ p, li { white-space: pre-wrap; } - + Submit Post + Enviar mensaje + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + EstĆ” publicando un enlace. La clave de un envĆ­o exitoso es un contenido interesante y un tĆ­tulo descriptivo + + + Submit + Enviar + + + Submit a new Post + Publicar un nuevo envĆ­o + + + Please add a Title Por favor aƱada un tĆ­tulo @@ -17019,22 +18504,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17049,7 +18524,7 @@ p, li { white-space: pre-wrap; } Publicar como - + Post @@ -17060,7 +18535,7 @@ p, li { white-space: pre-wrap; } ImĆ”gen - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17070,7 +18545,7 @@ p, li { white-space: pre-wrap; } TĆ­tulo - + Link Enlace @@ -17078,12 +18553,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + 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> + + + Create Topic + Crear tema + + + My Topics + Mis temas + + + Subscribed Topics + Temas suscritos + + + Popular Topics + Temas populares + + + Other Topics + Otros temas + + + Links + Enlaces + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17117,7 +18624,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Tema de Posted + + + Add Topic Admins + AƱadir tema de administradores + + + Select Topic Admins + Seleccionar tema de administradores + + + Create New Topic + Crear nuevo tema + + + Edit Topic + Editar tema + + + Update Topic + Actualizar temĆ”tica + + + Create New Board @@ -17155,17 +18686,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted Suscribirse a Posted @@ -17181,7 +18702,7 @@ p, li { white-space: pre-wrap; } - + Expand Expandir @@ -17196,17 +18717,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + Descripción de Posted + + + Loading + Cargando + + + New Posted + Nuevo Posted + + + Loading... - - Never - Nunca - - - + New Board @@ -17219,18 +18747,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Lugar + + + + Comments Comentarios - + Copy RetroShare Link Copiar enlace de RetroShare @@ -17241,12 +18773,12 @@ p, li { white-space: pre-wrap; } - + Comment Comentario - + Comments Comentarios @@ -17256,7 +18788,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>El autor de este mensaje (con Identificación %1) estĆ” excluĆ­do.</b> - + Click to view Picture @@ -17266,17 +18798,21 @@ p, li { white-space: pre-wrap; } Ocultar - + Vote up Votar positivo - + Vote down Votar negativo - + \/ + \/ + + + Set as read and remove item Ajustar como leer y eliminar elemento @@ -17286,7 +18822,7 @@ p, li { white-space: pre-wrap; } Nuevo - + New Comment: Nuevo comentario: @@ -17296,7 +18832,7 @@ p, li { white-space: pre-wrap; } Valor del comentario - + Name Nombre @@ -17337,10 +18873,77 @@ p, li { white-space: pre-wrap; } - + Loading Cargando + + By + Por + + + + PostedListWidget + + Form + Formulario + + + Hot + Acalorado + + + New + Nuevo + + + Top + MĆ”s alto + + + Today + Hoy + + + Yesterday + Ayer + + + This Week + Esta semana + + + This Month + Este mes + + + This Year + Este aƱo + + + Submit a new Post + Publicar un nuevo envĆ­o + + + Next + Siguiente + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Por favor, cree o seleccione una Id de firma antes de votar + + + Previous + Anterior + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17360,17 +18963,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17380,15 +18973,15 @@ p, li { white-space: pre-wrap; } Administrador: - + - + unknown desconocido - + Distribution: Distribución: @@ -17398,42 +18991,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17453,7 +19046,7 @@ p, li { white-space: pre-wrap; } Acalorado - + Search Buscar @@ -17483,17 +19076,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17508,17 +19101,12 @@ p, li { white-space: pre-wrap; } VacĆ­o - + Copy RetroShare Link Copiar enlace de RetroShare - - Copy http Link - - - - + Show author in People tab @@ -17528,31 +19116,27 @@ p, li { white-space: pre-wrap; } Editar - - + information información - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17567,7 +19151,7 @@ p, li { white-space: pre-wrap; } Suscribirse - + Never Nunca @@ -17641,16 +19225,6 @@ p, li { white-space: pre-wrap; } No Channel Selected NingĆŗn canal seleccionado - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17659,6 +19233,14 @@ p, li { white-space: pre-wrap; } Tabs PestaƱas + + Open each topic in a new tab + Abrir cada asunto en una nueva pestaƱa + + + Links + Enlaces + Open each board in a new tab @@ -17672,6 +19254,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Posted + Board Post @@ -17740,17 +19326,25 @@ p, li { white-space: pre-wrap; } Administrador de perfiles - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> - +</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> @@ -17861,7 +19455,7 @@ y utilizar el botón Importar para cargarla ProfileWidget - + Edit status message Editar mensaje de estado @@ -17877,7 +19471,7 @@ y utilizar el botón Importar para cargarla Administrador de perfiles - + Public Information Información pĆŗblica @@ -17912,12 +19506,12 @@ y utilizar el botón Importar para cargarla En lĆ­nea desde: - + Other Information Otra información - + My Address Mi dirección @@ -17961,27 +19555,51 @@ y utilizar el botón Importar para cargarla PulseAddDialog - + Post From: + Entrada de: + + + Account 1 + Cuenta 1 + + + Account 2 + Cuenta 2 + + + Account 3 + Cuenta 3 + + + Add to Pulse AƱadir a Pulse - + filter + filtro + + + URL Adder + URL aƱadida + + + Display As Mostrar como - + URL URL - + GroupLabel - + IDLabel @@ -17991,12 +19609,12 @@ y utilizar el botón Importar para cargarla De: - + Head - + Head Shot @@ -18026,13 +19644,13 @@ y utilizar el botón Importar para cargarla Negativo - - + + Whats happening? - + @@ -18044,22 +19662,12 @@ y utilizar el botón Importar para cargarla - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18068,13 +19676,17 @@ y utilizar el botón Importar para cargarla Cancel Cancelar + + Post Pulse to Wire + Mensaje de Pulso para Wire + Post - + Reply to Pulse @@ -18089,24 +19701,34 @@ y utilizar el botón Importar para cargarla - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Cargar archivo de imagen + From + De + + + Date + Fecha + + + ... + ... @@ -18117,7 +19739,7 @@ y utilizar el botón Importar para cargarla Formulario - + @@ -18136,7 +19758,7 @@ y utilizar el botón Importar para cargarla PulseReply - + icn @@ -18146,7 +19768,7 @@ y utilizar el botón Importar para cargarla - + REPLY @@ -18173,7 +19795,7 @@ y utilizar el botón Importar para cargarla - + FOLLOW @@ -18183,7 +19805,7 @@ y utilizar el botón Importar para cargarla - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18203,7 +19825,7 @@ y utilizar el botón Importar para cargarla - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18319,7 +19941,7 @@ y utilizar el botón Importar para cargarla - + FOLLOW @@ -18327,42 +19949,37 @@ y utilizar el botón Importar para cargarla PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18394,7 +20011,7 @@ y utilizar el botón Importar para cargarla - + FOLLOW @@ -18402,8 +20019,8 @@ y utilizar el botón Importar para cargarla QObject - - + + Confirmation Confirmación @@ -18673,12 +20290,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Detalles del vecino - + File Request canceled Solicitud del archivo cancelada - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Esta versión de RetroShare estĆ” usando OpenPGP SDK. Como efecto secundario, no estĆ” utilizando el 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. @@ -18709,7 +20326,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Ocurrió un error inesperado. Error: 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! Ā”No se puede iniciar el Administrador de Tor! @@ -18747,7 +20364,7 @@ El error obtenido es:" No fue posible iniciar un servicio oculto. - + Multiple instances Instancias mĆŗltiples @@ -18770,26 +20387,6 @@ archivo bloqueado: Archivo bloqueado: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18810,6 +20407,14 @@ archivo bloqueado: End-to-end encrypted conversation established + + 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! + El tĆŗnel asegurado estĆ” funcionando. Ā”Los mensajes se entregarĆ”n inmediatamente! + The collection file %1 could not be opened. @@ -18872,7 +20477,7 @@ El error reportado es: Datos reenviados - + You appear to have nodes associated to DSA keys: Parece que tiene nodos asociados a claves DSA: @@ -18882,7 +20487,7 @@ El error reportado es: Las claves DSA aĆŗn no estĆ”n soportadas por esta versión de RetroShare. Todos estos nodos serĆ”n inutilizables. Lo sentimos por esto. - + enabled habilitado @@ -18892,7 +20497,7 @@ El error reportado es: deshabilitado - + Move IP %1 to whitelist Mover IP %1 a la lista blanca @@ -18908,7 +20513,7 @@ El error reportado es: - + %1 seconds ago hace %1 segundos @@ -18976,7 +20581,7 @@ Security: no anonymous IDs Seguridad: No hay identificaciones anónimas - + Join chat room Unirse a la sala de chat @@ -19004,7 +20609,7 @@ Seguridad: No hay identificaciones anónimas Ā”no se pudo interpretar el fichero XML! - + Indefinitely Indefinidamente @@ -19184,29 +20789,13 @@ Seguridad: No hay identificaciones anónimas Ban list - - - Name - Nombre - - Node - Nodo - - - - Address - Dirección - - - - Status Estado - + NXS @@ -19399,6 +20988,10 @@ Seguridad: No hay identificaciones anónimas Click to resume the hashing process Haz clic para continuar con el proceso de hashing + + <p>This certificate contains: + <p>Este certificado contiene: + Idle @@ -19449,18 +21042,6 @@ Seguridad: No hay identificaciones anónimas Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19618,7 +21199,7 @@ p, li { white-space: pre-wrap; } - + Network Wide En toda la red @@ -19801,7 +21382,7 @@ p, li { white-space: pre-wrap; } Formulario - + The loading of embedded images is blocked. La carga de las imĆ”genes incrustadas esta bloqueada. @@ -19814,7 +21395,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Permitido por defecto @@ -19987,22 +21568,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Guardar imagen - - - - Copy image - - - - + Document source @@ -20010,12 +21581,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options Opciones de vista de Ć”rbol - + Show Header @@ -20045,6 +21616,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + Mostrar columna... + + + [no title] + [sin tĆ­tulo] + RatesStatus @@ -20705,7 +22284,7 @@ Si crees que es correcto, elimina la correspondiente lĆ­nea del archivo y reĆ”br RsDownloadListModel - + Name i.e: file name Nombre @@ -20826,7 +22405,7 @@ Si crees que es correcto, elimina la correspondiente lĆ­nea del archivo y reĆ”br RsFriendListModel - + Name Nombre @@ -20846,7 +22425,7 @@ Si crees que es correcto, elimina la correspondiente lĆ­nea del archivo y reĆ”br IP - + Profile ID @@ -20906,7 +22485,7 @@ reenviado a sus amigos. El mensaje serĆ” reenviado a sus amigos. - + [ ... Redacted message ... ] [ ... Mensaje redactado ... ] @@ -20920,6 +22499,11 @@ reenviado a sus amigos. [Unknown] + + + [ ... Missing Message ... ] + [ ... Mensaje perdido ... ] + RsMessageModel @@ -20933,11 +22517,6 @@ reenviado a sus amigos. From - - - To - A - Subject @@ -20960,18 +22539,13 @@ reenviado a sus amigos. - Click to sort by read status - + Click to sort by read + Pulsar para ordenar por leido - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Pulsar para ordenar por remitente @@ -20994,9 +22568,7 @@ reenviado a sus amigos. - - - + [Notification] @@ -21017,7 +22589,7 @@ reenviado a sus amigos. Rshare - + Resets ALL stored RetroShare settings. Reiniciar todos los ajustes de RetroShare. @@ -21078,7 +22650,7 @@ reenviado a sus amigos. Determinar el idioma de retroShare. - + Unable to open log file '%1': %2 No se puede abrir el archivo de registro '%1': %2 @@ -21099,7 +22671,11 @@ reenviado a sus amigos. No se pudo crear el directorio de datos: %1 - + Revision + Revisión + + + opmode modoop @@ -21129,7 +22705,7 @@ reenviado a sus amigos. Información sobre el uso de la GUI - + Invalid language code specified: Código de idioma especificado no vĆ”lido: @@ -21147,7 +22723,7 @@ reenviado a sus amigos. RshareSettings - + Registry Access Error. Maybe you need Administrator right. Error de acceso al registro. Puede que necesite privilegios de Administrador. @@ -21164,12 +22740,12 @@ reenviado a sus amigos. SearchDialog - + Enter a keyword here (at least 3 char long) Introduzca una palabra clave aquĆ­ (como mĆ­nimo 3 letras) - + Start Search Comenzar bĆŗsqueda @@ -21231,7 +22807,7 @@ en la red (siempre informar de archivos disponibles) Limpiar - + KeyWords Palabras clave @@ -21246,7 +22822,7 @@ en la red (siempre informar de archivos disponibles) ID de la bĆŗsqueda - + Filename Nombre de archivo @@ -21346,23 +22922,23 @@ en la red (siempre informar de archivos disponibles) Descargar seleccionados - + File Name Nombre de archivo - + Download Descargar - + Copy RetroShare Link Copiar enlace de RetroShare - + Send RetroShare Link Enviar enlace de RetroShare @@ -21372,7 +22948,7 @@ en la red (siempre informar de archivos disponibles) - + Download Notice Notificación de descarga @@ -21409,7 +22985,7 @@ en la red (siempre informar de archivos disponibles) Borrar todo - + Folder Carpeta @@ -21420,17 +22996,17 @@ en la red (siempre informar de archivos disponibles) - + New RetroShare Link(s) Nuevo(s) enlace(s) de RetroShare - + Open Folder Abrir carpeta - + Create Collection... Crear colección... @@ -21450,7 +23026,7 @@ en la red (siempre informar de archivos disponibles) Descargar desde archivo de colección... - + Collection Colección @@ -21458,7 +23034,7 @@ en la red (siempre informar de archivos disponibles) SecurityIpItem - + Peer details Detalles del vecino @@ -21474,22 +23050,22 @@ en la red (siempre informar de archivos disponibles) Eliminar objeto - + IP address: Dirección IP: - + Peer ID: Identificación del vecino: - + Location: Lugar: - + Peer Name: Nombre del vecino: @@ -21506,7 +23082,7 @@ en la red (siempre informar de archivos disponibles) Ocultar - + but reported: pero se informó de: @@ -21531,8 +23107,8 @@ en la red (siempre informar de archivos disponibles) <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> - - + + <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> <html><head/><body><p>Esta advertencia estĆ” aquĆ­ para protegerle contra ataques de interposición y reenvĆ­o de trĆ”fico. </p><p><br/></p><p>Sin embargo, si sencillamente su IP cambia por alguna razón (algunos ISPs fuerzan cambios de IPs regularmente) esta advertencia sólo le dice que un amigo conectó a la nueva IP antes de que RetroShare notara el cambio de IP. No hay nada incorrecto en este caso.</p><p><br/></p><p>Puede suprimir fĆ”cilmente falsas advertencias aƱadiendo sus propias IPs a la lista-blanca (ej. el rango de su ISP), o deshabilitando completamente estas advertencias en Opciones-&gt;Notificar-&gt;Novedades (feed).</p></body></html> @@ -21540,7 +23116,7 @@ en la red (siempre informar de archivos disponibles) SecurityItem - + wants to be friend with you on RetroShare quiere ser su amigo en RetroShare @@ -21571,7 +23147,7 @@ en la red (siempre informar de archivos disponibles) - + Expand Expandir @@ -21616,12 +23192,12 @@ en la red (siempre informar de archivos disponibles) Estado: - + Write Message Escribir mensaje - + Connect Attempt Intentando conectar @@ -21641,22 +23217,17 @@ en la red (siempre informar de archivos disponibles) Desconocido (saliente) intento de conexión - + Unknown Security Issue Problema de seguridad desconocido - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21666,7 +23237,11 @@ en la red (siempre informar de archivos disponibles) - + Unknown Peer + Vecino desconocido + + + Hide Ocultar @@ -21676,7 +23251,7 @@ en la red (siempre informar de archivos disponibles) ĀæQuiere eliminar este amigo? - + Certificate has wrong signature!! This peer is not who he claims to be. ””El certificado tiene una firma errónea!! El vecino no es quien dice ser. @@ -21686,12 +23261,12 @@ en la red (siempre informar de archivos disponibles) Certificado perdido/daƱado. No es un usuario RetroShare real. - + Certificate caused an internal error. El certificado provocó un error interno. - + Peer/node not in friendlist (PGP id= El vecino/nodo no estĆ” en la lista de amigos (identificación PGP= @@ -21750,12 +23325,12 @@ en la red (siempre informar de archivos disponibles) - + Local Address Dirección local - + NAT NAT @@ -21776,22 +23351,22 @@ en la red (siempre informar de archivos disponibles) Puerto: - + Local network Red local - + External ip address finder Buscador de direcciónes IP externas - + UPnP UPnP - + Known / Previous IPs: IPs conocidas / anteriores: @@ -21807,16 +23382,21 @@ behind a firewall or a VPN. tras de un cortafuegos o una VPN. - - - + + Allow RetroShare to ask my ip to these websites: + Permitir a RetroShare preguntarle mi ip a estos sitios web: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Rango de puertos aceptable desde 10 a 65535. Normalmente los puertos por debajo del 1024 estĆ”n reservados por su sistema. @@ -21826,46 +23406,23 @@ behind a firewall or a VPN. Rango de puertos aceptable desde 10 a 65535. Normalmente los puertos por debajo del 1024 estĆ”n reservados para su sistema. - + Onion Address Dirección onion - + Discovery On (recommended) Descubrimiento activado (recomendado) - + 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Ć­. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off Descubrimiento inactivo @@ -21875,7 +23432,7 @@ List of found external IP: Oculto - Ver configuración - + I2P Address Dirección I2P @@ -21900,95 +23457,41 @@ List of found external IP: entrada correcta - - - + + Proxy seems to work. El proxy parece funcionar. - - + I2P proxy is not enabled El proxy I2P no estĆ” habilitado - - SAMv3 is running and accessible - + + BOB is running and accessible + BOB estĆ” funcionando y accesible - SAMv3 is not accessible! Is i2p running and SAM enabled? - + BOB is not accessible! Is it running? + BOB no es accesible! EstĆ” funcionando? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +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. + + - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client cliente @@ -22003,7 +23506,73 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -22013,7 +23582,22 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 + + + You are reachable through the hidden service. Usted no es alcanzable mediante el servicio oculto. @@ -22027,12 +23611,12 @@ Also check your ports! Ā”Compruebe tambiĆ©n sus puertos! - + [Hidden mode] [Modo oculto] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Esto limpia la lista de direcciones conocidas. Esta acción es Ćŗtil si por algĆŗn motivo su lista de direcciones contiene una dirección no-vĆ”lida/irrelevante/caducada que quiera evitar pasar a sus amigos como dirección de contacto.</p></body></html> @@ -22042,7 +23626,7 @@ Also check your ports! Limpiar - + Download limit (KB/s) LĆ­mite de descarga (KB/s) @@ -22057,24 +23641,24 @@ Also check your ports! LĆ­mite de subida (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>El lĆ­mite de subida cubre el total de la aplicación. Un lĆ­mite de subida demasiado pequeƱo eventualmente podrĆ­a bloquear servicios de prioridad baja (canales de foros). Un valor mĆ­nimo recomendado es 50 KB/s. </p></body></html> - + WARNING: These values don't take into account the Relays. ATENCIƓN: Estos valores no tienen en cuenta los Relays. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22091,7 +23675,17 @@ Ahora, aƱade la dirección (p.e. 127.0.0.1) y el puerto que has elegido para el 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 @@ -22101,7 +23695,12 @@ Puedes conectar con nodos ocultos incluso si estĆ”s utilizando un nodo estĆ”ndar modo avanzado - + + I2P Basic Open Bridge + I2P Basic Open Bridge + + + I2P Instance address Dirección de instancia de I2P @@ -22111,7 +23710,17 @@ Puedes conectar con nodos ocultos incluso si estĆ”s utilizando un nodo estĆ”ndar 127.0.0.1 - + + I2P proxy port + Puerto del proxy I2P + + + + BOB accessible + BOB accesible + + + Address Dirección @@ -22151,7 +23760,7 @@ Puedes conectar con nodos ocultos incluso si estĆ”s utilizando un nodo estĆ”ndar cargar clave - + Start Iniciar @@ -22166,7 +23775,12 @@ Puedes conectar con nodos ocultos incluso si estĆ”s utilizando un nodo estĆ”ndar Detener - + + BOB status + Estado de BOB + + + Incoming Entrante @@ -22213,32 +23827,7 @@ 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. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Repetidor @@ -22293,7 +23882,7 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.Total: - + Warning: This bandwidth adds up to the max bandwidth. Atención: este ancho de banda supera el mĆ”ximo ancho de banda. @@ -22318,7 +23907,7 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.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>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> @@ -22332,7 +23921,7 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.Red - + IP Filters Filtros de IP @@ -22355,7 +23944,7 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs. - + Status Estado @@ -22415,28 +24004,17 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.AƱadir a la lista blanca - + Hidden Service Configuration Configuración de servicio oculto - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> <html><head/><body><p>Este es el puerto proxy Socks de Tor. Su nodo RetroShare puede usar este puerto para conectar a</p><p>nodos ocultos. El led de la derecha se vuelve verde cuando este puerto estĆ© activo en su computadora. </p><p>Sin embargo esto no significa que su trĆ”fico de RetroShare transite a travĆ©s de Tor. Sólo lo hace si </p><p>conecta a nodos ocultos, o si usted mismo estĆ” ejecutando un nodo oculto.</p></body></html> - + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> <html><head/><body><p>Este led a la izquierda serĆ” verde cuando el puerto de escucha estĆ© activo en su computadora. No</p><p>significa que su trĆ”fico de RetroShare transite a travĆ©s de Tor. Sólo lo harĆ” si</p><p>conecta a nodos ocultos, o si usted mismo estĆ” ejecutando un nodo oculto.</p></body></html> @@ -22452,18 +24030,18 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs. - + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> <html><head/><body><p>Este led a la izquierda serĆ” verde cuando el puerto de escucha estĆ© activo en su computadora. No</p><p>significa que su trĆ”fico de RetroShare transite a travĆ©s de I2P. Sólo lo harĆ” si</p><p>conecta a nodos ocultos, o si usted mismo estĆ” ejecutando un nodo oculto.</p></body></html> - + I2P outgoing Okay Salida de I2P correcta - + Service Address Dirección del servicio @@ -22498,12 +24076,12 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.Por favor, introduzca una dirección de servicio - + IP Range Rango de IPs - + Reported by DHT for IP masquerading Fue seƱalado por la DHT (tabla distribuida de hashes) para enmascaramiento de IP (IP masquerading) @@ -22526,22 +24104,22 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.AƱadido por usted - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>Las IPs en lista blanca son reunidas desde las siguientes fuentes: IPs provenientes del interior de certificados intercambiados manualmente, rangos de IPs introducidos por usted en esta ventana, o en los elementos de seguridad de las novedades (feed).</p><p>El comportamiento predeterminado para RetroShare es (1) permitir siempre la conexión a los 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 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> - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>El indicador se vuelve verde tan pronto como RetroShare logra obtener su propia IP de los sitios web listados debajo, si habilita esa acción. RetroShare tambiĆ©n usarĆ” otros medios para averiguar su propia IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Esta lista se rellena automĆ”ticamente con información reunida en mĆŗltiples fuentes: 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> @@ -22576,22 +24154,26 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.Excluir automĆ”ticamente rangos de IPs de enmascaramiento de la DHT comenzando en - + 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> + Tor Socks Proxy Proxy Socks de Tor - + Tor outgoing Okay Salida de Tor correcta - + Tor proxy is not enabled El proxy de Tor no estĆ” habilitado @@ -22671,7 +24253,7 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs. ShareKey - + check peers you would like to share private publish key with seleccione los vecinos con los que desea compartir su clave privada de publicación @@ -22681,12 +24263,12 @@ Si tienes problemas conectando a travĆ©s de Tor, comprueba sus logs.Compartir con amigo - + Share Compartir - + 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. Puede permitir a sus amigos saber de su canal al compartirlo con ellos. @@ -22706,7 +24288,7 @@ Seleccione los amigos con los que quiere compartir su canal. Administrador de carpetas compartidas - + Shared directory Directorio compartido @@ -22726,17 +24308,17 @@ Seleccione los amigos con los que quiere compartir su canal. Visibilidad - + Add new AƱadir nuevo - + Cancel Cancelar - + Add a Share Directory Compartir una carpeta @@ -22746,7 +24328,7 @@ Seleccione los amigos con los que quiere compartir su canal. Quitar - + Apply and close Aplicar y cerrar @@ -22837,7 +24419,7 @@ Seleccione los amigos con los que quiere compartir su canal. Carpeta no encontrada o nombre de carpeta no aceptado. - + 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. Esta es una lista de carpetas compartidas. Puedes aƱadir o quitar carpetas utilizando los botones inferiores. Cuando aƱades una carpeta inicialmente se comparte todo su contenido. Puedes cambiar los permisos individualmente para cada carpeta. @@ -22845,7 +24427,7 @@ Seleccione los amigos con los que quiere compartir su canal. SharedFilesDialog - + Files Archivos @@ -22896,16 +24478,11 @@ Seleccione los amigos con los que quiere compartir su canal. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files Comprobar archivos - + Download selected Descargar seleccionados @@ -22915,7 +24492,7 @@ Seleccione los amigos con los que quiere compartir su canal. Descargar - + Copy retroshare Links to Clipboard Copiar enlace de RetroShare al portapapeles @@ -22930,7 +24507,7 @@ Seleccione los amigos con los que quiere compartir su canal. Enviar enlaces de RetroShare - + Some files have been omitted Algunos ficheros se han omitido @@ -22946,7 +24523,7 @@ Seleccione los amigos con los que quiere compartir su canal. Recomendaciones - + Create Collection... Crear colección... @@ -22971,7 +24548,7 @@ Seleccione los amigos con los que quiere compartir su canal. Descargar desde archivo de colección... - + Some files have been omitted because they have not been indexed yet. Algunos ficheros se han omitido porque aĆŗn no han sido indexados. @@ -23114,12 +24691,12 @@ Seleccione los amigos con los que quiere compartir su canal. SplashScreen - + Load configuration Cargar configuración - + Create interface Crear interfaz @@ -23143,7 +24720,7 @@ Seleccione los amigos con los que quiere compartir su canal. Recordar contraseƱa - + Log In Iniciar sesión @@ -23500,7 +25077,7 @@ Esta elección puede revertirse en la configuración. Mensaje de estado - + Message: Mensage: @@ -23745,7 +25322,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Quitar todas las etiquetas @@ -23781,15 +25358,12 @@ p, li { white-space: pre-wrap; } Configurando Tor... - - + Tor status: Estado Tor: - - - + Unknown Desconocido @@ -23799,13 +25373,18 @@ p, li { white-space: pre-wrap; } No iniciado - - Hidden address: - + + Hidden service address: + Dirección del servicio oculto: - - + + Tor bootstrap status: + Estado de la secuencia Tor: + + + + Not set No establecido @@ -23815,57 +25394,12 @@ p, li { white-space: pre-wrap; } Dirección onion: - - Error - Error - - - - Not connected - No conectado - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + 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...] @@ -23873,17 +25407,21 @@ p, li { white-space: pre-wrap; } TorStatus - + 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> + <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - + Tor is currently offline Tor estĆ” actualmente fuera de lĆ­nea @@ -23894,12 +25432,11 @@ p, li { white-space: pre-wrap; } - No tor configuration Sin configuración de Tor - + Tor proxy is OK @@ -23927,7 +25464,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Opciones de transferencias @@ -23938,7 +25475,7 @@ p, li { white-space: pre-wrap; } MĆ”ximas descargas simultĆ”neas: - + Shared Directories Directorios compartidos @@ -23948,27 +25485,22 @@ p, li { white-space: pre-wrap; } Compartir automĆ”ticamente el directorio de entrada (recomendado) - + + Edit Share + Editar compartidos + + + Directories - - Configure shared directories - Configurar directorios compartidos - - - + Auto-check shared directories every Comprobar automĆ”ticamente los directorios compartidos cada - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) minuto(s) @@ -24053,7 +25585,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24062,12 +25594,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) MĆ”ximo de subidas por amigo (0 = sin lĆ­mite) @@ -24092,12 +25619,7 @@ p, li { white-space: pre-wrap; } Permitir descarga directa: - - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Streaming @@ -24156,13 +25678,38 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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> + Max. tunnel req. forwarded per second: MĆ”ximo de peticiones de tĆŗnel repetidas por segundo: - + + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>provoca que la transferencia requiera 1 MB de pedazos del archivo en orden desde el principio, para facilitar la previsualización durante la descarga. <span style=" font-weight:600;">Aleatoria</span> es puramente aleatoria y favorece un comportamiento de enjambre (subir y bajar el archivo simultĆ”neamente). <span style=" font-weight:600;">Progresiva</span> es un equilibrio, selecciona el siguiente pedazo aleatoriamente dentro de los 50 MB posteriores al final de un archivo parcial. Eso permite cierta aleatorización a la vez que previene grandes tiempos de inicialización de archivos vacĆ­os.</p></body></html> + + + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> <html><head/><body><p>RetroShare suspenderĆ” todas las transferencias y configurarĆ” el guardado de archivos si el espacio de disco baja de este lĆ­mite. Esto previene la pĆ©rdida de información en algunos sistemas. Una ventana emergente le alertarĆ” cuando eso suceda.</p></body></html> @@ -24172,17 +25719,7 @@ p, li { white-space: pre-wrap; } <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> - - Warning - Aviso - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Establecer directorio de entrada @@ -24210,7 +25747,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Descarga completa @@ -24234,23 +25771,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Tiene %1 descargas completas + + + You have %1 completed download + Tiene %1 descarga completa + + + %1 completed downloads + %1 descargas completas + + + %1 completed download + %1 descarga completa + TransfersDialog - - + + Downloads Descargas - + Uploads Enviando - + Name i.e: file name Nombre @@ -24457,7 +26010,11 @@ p, li { white-space: pre-wrap; } Especificar... - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Transferencia de archivos</h1> <p>RetroShare tiene dos formas de transferir archivos: transferencias directas desde sus amigos, y transferencias distantes anónimas por tĆŗnel. AdemĆ”s, la transferencia de archivos es desde mĆŗltiples-fuentes y permite comportamiento de enjambre (puede ser fuente a la vez que descarga)</p> <p>Puede compartir archivos usando el <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icono del lado izquierdo de la barra lateral. Estos archivos se listarĆ”n en la pestaƱa Mis Archivos. Puede decidir para cada grupo de amigos si pueden o no ver estos archivos en su pestaƱa de Archivos de Amigos</p> <p>La pestaƱa de bĆŗsqueda informa de archivos de las listas de archivos de sus amigos, y de archivos distantes que se pueden alcanzar de forma anónima usando la sistema de tunelización de mĆŗltiples-saltos.</p> + + + Move in Queue... Mover en la lista de espera... @@ -24482,7 +26039,7 @@ p, li { white-space: pre-wrap; } Elegir directorio - + Anonymous end-to-end encrypted tunnel 0x TĆŗnel anónimo cifrado extremo-a-extremo 0x @@ -24503,7 +26060,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24536,17 +26093,7 @@ p, li { white-space: pre-wrap; } El archivo %1 no estĆ” completo todavĆ­a. Si es un archivo multimedia, trate de obtener una vista previa. - - Warning - Aviso - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Cambiar nombre de archivo @@ -24561,7 +26108,7 @@ p, li { white-space: pre-wrap; } Por favor, introduzca un nuevo - y vĆ”lido - nombre de archivo - + Expand all Expandir todo @@ -24688,18 +26235,23 @@ 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> + + + + Columns Columnas - + File Transfers Transferencia de archivos - + Path Ruta @@ -24709,7 +26261,7 @@ p, li { white-space: pre-wrap; } Mostrar columna de ruta - + Could not delete preview file No se pudo borrar el archivo de vista previa @@ -24719,7 +26271,7 @@ p, li { white-space: pre-wrap; } ĀæIntentarlo de nuevo? - + Create Collection... Crear colección... @@ -24734,12 +26286,7 @@ p, li { white-space: pre-wrap; } Ver colección... - - <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> - - - - + Collection Colección @@ -24749,7 +26296,7 @@ p, li { white-space: pre-wrap; } %1 tĆŗneles - + Anonymous tunnel 0x TĆŗnel anónimo 0x @@ -24970,6 +26517,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + TĆŗneles anónimos + Authenticated tunnels @@ -25163,17 +26714,12 @@ p, li { white-space: pre-wrap; } Formulario - + Enable Retroshare WEB Interface Habilitar interfaz WEB de RetroShare - - Status: - Estado: - - - + Web parameters ParĆ”metros web @@ -25207,33 +26753,35 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + Port: + 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. + 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. + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interfaz web</h1> <p>La interfaz web le permite controlar Retroshare desde el navegador. MĆŗltiples dispositivos pueden compatir el control sobre una instancia Retroshare. AsĆ­ que podrĆ­a iniciar una conversación en una tableta y posteriormente usar una computadora de escritorio para continuarla.</p> <p>Advertencia: No exponga la interfaz web hacia Internet, porque no hay control de acceso ni cifrado. Si quiere usar la interfaz web sobre Internet, use un tĆŗnel SSH o un proxy para asegurar la conexión.</p> - + Webinterface not enabled Interfaz web no habilitada @@ -25243,12 +26791,12 @@ p, li { white-space: pre-wrap; } La interfaz web no estĆ” habilitada. HabilĆ­tela en Configuración -> Interfaz web - + failed to start Webinterface fallo al iniciar la interfaz web - + Webinterface Interfaz web @@ -25385,7 +26933,11 @@ p, li { white-space: pre-wrap; } PĆ”ginas Wiki - + New Group + Nuevo grupo + + + Page Name Nombre pĆ”gina @@ -25400,7 +26952,7 @@ p, li { white-space: pre-wrap; } ID original - + << << @@ -25488,7 +27040,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Historial de edición de pĆ”ginas @@ -25523,7 +27075,7 @@ p, li { white-space: pre-wrap; } ID de pĆ”gina - + \/ \/ @@ -25553,18 +27105,14 @@ p, li { white-space: pre-wrap; } Etiquetas - - History - Historial - - - + + Show Edit History Mostrar historial de ediciones - + Status Estado @@ -25585,7 +27133,7 @@ p, li { white-space: pre-wrap; } Revertir - + Submit Enviar @@ -25657,6 +27205,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + Intervalo de tiempo + Create Account @@ -25668,7 +27220,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Refrescar + + + Settings @@ -25683,7 +27244,7 @@ p, li { white-space: pre-wrap; } Otros - + Who to Follow @@ -25703,7 +27264,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25733,17 +27294,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Mes pasado + + + Last Week + Semana pasada + + + Today + Hoy + + + New + Nuevo + + + from + de + + + until + hasta + + + Search/Filter + Buscar/Filtrar + + + Network Wide + En toda la red + + + Manage Accounts + Administrar cuentas + + + Showing: + Mostrando: + + + Yourself Yo mismo + + Friends + Amigos + Following Siguiente - + Custom + Personalizar + + + Account 1 + Cuenta 1 + + + Account 2 + Cuenta 2 + + + Account 3 + Cuenta 3 + + + CheckBox + Casilla de verificación + + + Post Pulse to Wire + Mensaje de Pulso para Wire + + + RetroShare RetroShare @@ -25806,42 +27435,35 @@ p, li { white-space: pre-wrap; } Formulario - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: Lugar: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25886,41 +27508,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - Siguiente - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Desconocido @@ -25998,7 +27590,7 @@ p, li { white-space: pre-wrap; } %1a. %2d - + k e.g: 3.1 k k @@ -26031,11 +27623,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + ImĆ”genes (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? ĀæAcepta las conexiones firmadas por este perfil? @@ -26044,6 +27640,10 @@ p, li { white-space: pre-wrap; } 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 + This column indicates the trust level you indicated and whether you signed the profile PGP key @@ -26154,6 +27754,10 @@ p, li { white-space: pre-wrap; } Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_fi.ts b/retroshare-gui/src/lang/retroshare_fi.ts index 2a52e18a6..4356c9860 100644 --- a/retroshare-gui/src/lang/retroshare_fi.ts +++ b/retroshare-gui/src/lang/retroshare_fi.ts @@ -84,6 +84,13 @@ Ainoastaan piilotettu solmu + + AddCommentDialog + + Add Comment + LisƤƤ kommentti + + AddFileAssociationDialog @@ -121,12 +128,12 @@ Retroshare: tarkennettu haku - + Search Criteria Hakuehdot - + Add a further search criterion. LisƤƤ hakuehto. @@ -136,7 +143,7 @@ TyhjennƤ hakuehdot. - + Cancels the search. Peruu haun. @@ -156,6 +163,177 @@ Haku + + AlbumCreateDialog + + Create Album + Luo albumi + + + Album Name: + Albumin nimi: + + + Category: + Luokka: + + + Animals + ElƤimet + + + Family + Sukulaiset + + + Friends + YstƤvƤt + + + Flowers + Kukat + + + Holiday + Loma + + + Landscapes + Maisemat + + + Pets + Lemmikit + + + Portraits + Muotokuvat + + + Travel + Matkustaminen + + + Work + Tyƶ + + + Random + Satunnainen + + + Caption: + Kuvateksti: + + + Where: + MissƤ: + + + Photographer: + Valokuvaaja: + + + Description: + Kuvaus: + + + Share Options + Jakoasetukset + + + Policy: + KƤytƤnne: + + + Quality: + Laatu: + + + Comments: + Kommentit: + + + Identity: + Henkilƶllisyys: + + + Public + Julkinen + + + Restricted + Rajoitettu + + + Resize Images (< 1Mb) + Muuta kuvien kokoa (< 1Mb) + + + Resize Images (< 10Mb) + Muuta kuvien kokoa (< 10Mb) + + + Send Original Images + LƤhetƤ alkuperƤiset kuvat + + + No Comments Allowed + Kommentteja ei sallittu + + + Authenticated Comments + Varmennetut kommentit + + + Any Comments Allowed + Kaikki kommentit sallittu + + + Publish with Identity + Julkaise henkilƶllisyyden kera + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> VedƤ ja pudota lisƤtƤksesi kuvia. Paina kuvaa muokataksesi tietoja alhaalla.</span></p></body></html> + + + Back + Takaisin + + + Add Photos + LisƤƤ kuvia + + + Publish Album + Julkaise albumi + + + Untitle Album + Nimetƶn albumi + + + Say something about this album... + Kirjoita tietoja albumista + + + Where were these taken? + MissƤ nƤmƤ on otettu? + + + Load Album Thumbnail + Lataa albumin nƤytekuva + + AlbumDialog @@ -164,11 +342,19 @@ Album Albumi + + Album Thumbnail + Albumin nƤytekuva + TextLabel TekstiMerkki + + Summary + Yhteenveto + Album Title: @@ -184,6 +370,34 @@ Caption Kuvateksti + + Where: + MissƤ: + + + When + Milloin + + + Description: + Kuvaus: + + + Share Options + Jakoasetukset + + + Comments + Kommentit + + + Publish Identity + Julkaise henkilƶllisyys + + + Visibility + NƤkyvyys + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -552,7 +766,7 @@ 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. Varoitus: nƤmƤ palvelut ovat kokeellisia. Auta meitƤ niiden testaamisessa. @@ -568,6 +782,14 @@ p, li { white-space: pre-wrap; } Circles Piirit + + GxsForums + Gxs-foorumit + + + GxsChannels + GxsKanavat + The Wire @@ -579,23 +801,10 @@ p, li { white-space: pre-wrap; } Valokuvat - - AspectRatioPixmapLabel - - - Save image - Tallenna kuva - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -632,13 +841,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + LisƤƤ avatar + Remove Poista - + Set your Avatar picture Aseta avatarkuvasi @@ -657,6 +870,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Lataa avatar + AvatarWidget @@ -725,10 +942,22 @@ p, li { white-space: pre-wrap; } Palauta asetukset - + Receive Rate + Vastaanottonopeus + + + Send Rate + LƤhetysnopeus + + + Always on Top Aina pƤƤllimmƤisenƤ + + Style + Tyyli + Changes the transparency of the Bandwidth Graph @@ -744,11 +973,23 @@ p, li { white-space: pre-wrap; } % Opaque % nƤkyvƤ + + Save + Tallenna + + + Cancel + Peru + Since: Alkaen: + + Hide Settings + Piilota asetukset + BandwidthStatsWidget @@ -821,7 +1062,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment Kommentti @@ -851,12 +1092,12 @@ p, li { white-space: pre-wrap; } Kopioi Retroshare-linkki - + <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> - + ago @@ -864,7 +1105,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up ƄƤnestƤ ylƶs @@ -884,7 +1125,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -922,7 +1163,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up ƄƤnestƤ ylƶs @@ -942,7 +1183,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -972,7 +1213,7 @@ p, li { white-space: pre-wrap; } Jaa - + Toggle Message Read Status Vaihda viestin tila luetuksi tai pƤinvastoin @@ -982,7 +1223,7 @@ p, li { white-space: pre-wrap; } Uusi - + TextLabel @@ -990,12 +1231,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this PidƤn tƤstƤ - + 0 0 @@ -1015,18 +1256,18 @@ p, li { white-space: pre-wrap; } Avatar - + New Comment - + Copy RetroShare Link Kopioi Retroshare-linkki - + Expand Laajenna @@ -1041,12 +1282,12 @@ p, li { white-space: pre-wrap; } Poista kohde - + Name Nimi - + Comm value @@ -1215,17 +1456,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels Kanavat - + Tabs VƤlilehdet - + General Yleiset @@ -1235,17 +1476,11 @@ p, li { white-space: pre-wrap; } - - Downloads - Lataukset + Load posts in background (Thread) + Lataa viestit taustalla (aihe) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Avaa jokainen kanava uuteen vƤlilehteen @@ -1253,7 +1488,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1276,7 +1511,7 @@ into the image, so as to ChannelsCommentsItem - + I like this PidƤn tƤstƤ @@ -1301,18 +1536,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link Kopioi Retroshare-linkki - + Expand Laajenna @@ -1327,7 +1562,7 @@ into the image, so as to Poista kohde - + Name Nimi @@ -1337,7 +1572,17 @@ into the image, so as to - + + Comment + Kommentti + + + + Comments + Kommentit + + + Hide Piilota @@ -1345,7 +1590,7 @@ into the image, so as to ChatLobbyDialog - + Name Nimi @@ -1536,7 +1781,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby NƤytƤ keskusteluhuone @@ -1548,6 +1793,22 @@ into the image, so as to Chats Keskustelut + + You have %1 new messages + Sinulle on uusia viestejƤ %1 kpl + + + You have %1 new message + Sinulle on %1 uusi viesti + + + %1 new messages + %1 kpl uusia viestejƤ + + + %1 new message + %1 uusi viesti + You have %1 mentions @@ -1569,14 +1830,13 @@ into the image, so as to - - + Unknown Lobby Tuntematon huone - - + + Remove All Poista kaikki @@ -1584,13 +1844,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nimi - + Count Lkm @@ -1600,7 +1860,33 @@ into the image, so as to Aihe - + + 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 @@ -1610,7 +1896,7 @@ into the image, so as to Poistu huoneesta - + Create a non anonymous identity and enter this room Luo nimellƤ varustettu henkilƶllisyys ja astu huoneeseen @@ -1669,12 +1955,12 @@ 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: @@ -1684,31 +1970,31 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Valitse henkilƶllisyys tƤtƤ keskusteluhuonetta varten: - + Create chat lobby + Luo keskusteluhuone + + + [No topic provided] [Ei aihetta] - - + Selected lobby info + Tietoja valitusta huoneesta + + + Private Yksityinen - - - + Public Julkinen - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted NimettƶmƤt tunnisteet hyvƤksytty @@ -1718,25 +2004,42 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Poista automaattinen tilaus - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe LisƤƤ automaattinen tilaus - + Search Chat lobbies Hae keskusteluauloista - + Search Name Hae nimeƤ - + Subscribed + Tilattu + + + Columns Sarakkeet + + Yes + KyllƤ + + + No + Ei + Chat rooms @@ -1748,47 +2051,47 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. - + Chat Room info - + Chat room Name: Keskusteluhuoneen nimi: - + Chat room Id: Keskusteluhuoneen tunniste: - + Topic: Aihe: - + Type: Tyyppi: - + Security: Tietoturva: - + Peers: Vertaiset: - - - - - - + + + + + + TextLabel TekstiMerkki @@ -1803,24 +2106,13 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Ei nimettƶmiƤ tunnisteita - + Show NƤytƤ - - Private Subscribed - - - - - - Public Subscribed - - - - + column sarake @@ -1834,7 +2126,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. ChatMsgItem - + Remove Item Poista kohde @@ -1879,22 +2171,46 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. ChatPage - + General Yleiset + + Distant Chat + EtƤinen keskustelu + Everyone Jokainen + + Contacts + Kontaktit + Nobody Ei kukaan - + Accept encrypted distant chat from + HyvƤksy salattu etƤinen keskustelu: + + + Chat Settings + Keskusteluasetukset + + + Enable Emoticons Private Chat + Ota hymiƶt kƤyttƶƶn yksityiskeskustelussa + + + Enable Emoticons Group Chat + Ota hymiƶt kƤyttƶƶn ryhmƤkeskustelussa + + + Enable custom fonts KƤytƤ omia kirjasimia @@ -1903,6 +2219,10 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Enable custom font size KƤytƤ mukautettuja kirjasinkokoja + + Minimum font size + Kirjasin vƤhimmƤiskoko + Enable bold @@ -1914,7 +2234,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. KƤytƤ kursiivia - + General settings @@ -1939,7 +2259,11 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Lataa upotetut kuvat - + Chat Lobby + Keskusteluhuone + + + Blink tab icon Vilkuta vƤlilehtikuvaketta @@ -1948,6 +2272,10 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Do not send typing notifications ƄlƤ lƤhetƤ kirjoittamista koskevia ilmoituksia + + Private Chat + Yksityinen keskustelu + Open Window for new chat @@ -1969,7 +2297,11 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Vilkuta ikkuna- tai vƤlilehtikuvaketta - + Chat Font + Keskustelun kirjasin + + + Change Chat Font Vaihda keskustelun kirjasin @@ -1979,10 +2311,14 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Keskustelun kirjasin: - + History Historia + + Style + Tyyli + @@ -1997,13 +2333,17 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Variant: Muunnelma: + + Group chat + RyhmƤkeskustelu + Private chat Yksityinen keskustelu - + Choose your default font for Chat. Valitse oletuskirjasin keskustelulle. @@ -2067,28 +2407,22 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. <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 hƤvittƤmisen ja estƤƤ keskusteluhistorian tƤyttymisen (esim. keskusteluaulat ja etƤiset keskustelut).</p></body></html> + + Chatlobbies + Keskusteluaulat + Enabled: KƤytƶssƤ: - + Search Haku - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2098,17 +2432,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Keskusteluhuoneet @@ -2205,7 +2529,11 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Varastoinnin enimmƤisaika, pƤivinƤ (0=pidƤ kaikki): - + Search by default + Haku oletuksena + + + Case sensitive Huomioi kirjainkoko @@ -2244,6 +2572,10 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Threshold for automatic search Automaattisen haun raja-arvo + + Default identity for chat lobbies: + Oletushenkilƶllisyys keskusteluauloihin: + Show Bar by default @@ -2311,7 +2643,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. ChatToaster - + Show Chat NƤytƤ keskustelu @@ -2347,7 +2679,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. ChatWidget - + Close Sulje @@ -2382,12 +2714,12 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Kursivointi - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon SyƶtƤ hymiƶ @@ -2467,6 +2799,11 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. Insert horizontal rule SyƶtƤ vaakaviiva + + + Save image + Tallenna kuva + Import sticker @@ -2504,7 +2841,7 @@ Kaksoisnapauta huonetta siirtyƤksesi keskustelemaan. - + is typing... kirjoittaa... @@ -2528,7 +2865,7 @@ iso HTML-muuntamisen jƤlkeen. Valitse kirjasin. - + Do you really want to physically delete the history? Haluatko todella tuhota historian pysyvƤsti? @@ -2578,7 +2915,7 @@ iso HTML-muuntamisen jƤlkeen. on kiireinen, eikƤ vƤlttƤmƤttƤ vastaa - + Find Case Sensitively Huomioi kirjainkoko @@ -2600,7 +2937,7 @@ iso HTML-muuntamisen jƤlkeen. ƄlƤ lopeta vƤrittƤmistƤ, kun X kohdetta lƶydetty (vaatii konetehoa) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Hae edellinen </b><br/><i>Ctrl+Shift+G</i> @@ -2615,12 +2952,16 @@ iso HTML-muuntamisen jƤlkeen. <b>Hae </b><br/><i>Ctrl+F</i> - + (Status) (Tila) - + Set text font & color + Aseta tekstin kirjasinlaji & vƤri + + + Attach a File LiitƤ tiedosto @@ -2636,12 +2977,12 @@ iso HTML-muuntamisen jƤlkeen. - + <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: @@ -2653,12 +2994,12 @@ 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. @@ -2678,7 +3019,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Kirjoita viesti tƤhƤn - + Don't stop to color after ƄlƤ lopeta vƤrittƤmistƤ jƤlkeen @@ -2704,7 +3045,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. CirclesDialog - + Showing details: NƤytetƤƤn tietoja: @@ -2726,7 +3067,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - + Personal Circles Henkilƶkohtaiset piirit @@ -2752,7 +3093,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - + Friends YstƤvƤt @@ -2812,7 +3153,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.YstƤvien ystƤvƤt - + External Circles (Admin) Ulkoiset piirit (YllƤpito) @@ -2828,7 +3169,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - + Circles Piirit @@ -2880,48 +3221,43 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - + RetroShare Retroshare - + - + Error : cannot get peer details. Virhe: vertaisen yksityiskohtia ei saatu. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2933,7 +3269,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Salaus - + Not connected Ei yhteyttƤ @@ -3015,17 +3351,25 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.ei mitƤƤn - + <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> @@ -3040,7 +3384,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.<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 @@ -3057,16 +3401,118 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Connect Friend Wizard Ohjattu toiminto ystƤvƤn yhdistƤmiseksi + + Add a new Friend + LisƤƤ uusi ystƤvƤ + + + &You get a certificate file from your friend + &Saat varmenteen ystƤvƤltƤsi + + + &Make friend with selected friends of my friends + &YstƤvysty valitsemieni ystƤvien ystƤvien kanssa + + + &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) + + + Include signatures + SisƤllytƤ allekirjoitukset + + + Copy your Cert to Clipboard + Kopioi varmenteesi leikepƶydƤlle + + + Save your Cert into a File + Tallenna varmenteesi tiedostoon + + + Run Email program + KƤynnistƤ sƤhkƶpostiohjelma + 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 + + + Certificate files + Varmennetiedostot + + + Use PGP certificates saved in files. + KƤytƤ tiedostoihin tallennettuja PGP-varmenteita. + + + Import friend's certificate... + Tuo ystƤvƤn varmenne... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Sinun tulee luoda tiedosto, joka sisƤltƤƤ varmenteesi ja antaa se ystƤvƤllesi. Voit myƶs kƤyttƤƤ aiemmin luotua tiedostoa. + + + Export my certificate... + Vie varmenteeni... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + VedƤ ja pudota ystƤvƤsi varmenne tƤhƤn ikkunaan tai mƤƤritƤ polku allaolevaan laatikkoon + + + Browse + Selaa + + + Friends of friends + YstƤvien ystƤviƤ + + + Select now who you want to make friends with. + Valitse nyt, kenen kanssa haluat ystƤvystyƤ. + + + Show me: + NƤytƤ: + + + Make friend with these peers + YstƤvysty nƤiden vertaisten kanssa + RetroShare ID 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. + + + Add Friends RetroShare ID... + LisƤƤ ystƤvƤn Retroshare-tunniste... + + + Paste Friends RetroShare ID in the box below + 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 + RetroShare is better with Friends @@ -3108,7 +3554,27 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.SƤhkƶposti - + Invite Friends by Email + Kutsu ystƤviƤ sƤhkƶpostilla + + + Enter your friends' email addresses (separate each one with a semicolon) + Kirjoita ystƤviesi sƤhkƶpostiosoitteet (erottele ne puolipisteellƤ) + + + Your friends' email addresses: + YstƤviesi sƤhkƶpostiosoitteet: + + + Enter Friends Email addresses + Kirjoita ystƤviesi sƤhkƶpostiosoitteet + + + Subject: + Aihe: + + + @@ -3124,32 +3590,78 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Tietoja pyynnƶstƤ - + Peer details Vertaisen tiedot - + Name: Nimi: + + Email: + SƤhkƶposti: + + + 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. + Location: Sijainti: - + Options Asetukset - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + 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> - + Add friend to group: LisƤƤ ystƤvƤ ryhmƤƤn: @@ -3159,7 +3671,7 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Varmenna ystƤvƤ (allekirjoita PGP-avain) - + Please paste below your friend's Retroshare ID @@ -3184,22 +3696,16 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with LisƤƤ ystƤvƤksi, johon otat yhteyden - + To accept the Friend Request, click the Finish button. + Paina Valmis-painiketta hyvƤksyƤksesi ystƤvƤpyynnƶn + + + Sorry, some error appeared Valitettavasti on tapahtunut jokin virhe @@ -3219,27 +3725,32 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan.Tietoja ystƤvƤstƤsi: - + Key validity: Avaimen kelpoisuus: - + Profile ID: - + + Signers + Allekirjoittajat + + + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. TƤmƤ vertainen on jo ystƤvƤluettelossasi. HƤnen lisƤƤmisensƤ saattaa ainoastaan mƤƤrittƤƤ uuden IP-osoitteen. - + To accept the Friend Request, click the Accept button. @@ -3285,17 +3796,49 @@ Kaksoisnapsauta sitƤ lisƤtƤksesi hƤnen nimensƤ tekstinkirjoittajaan. - + Certificate Load Failed Varmenteen lataus epƤonnistui - + Cannot get peer details of PGP key %1 + Vertaistietoja ei kyetty hakemaan PGP-avaimelle %1 + + + Any peer I've not signed + Kaikki vertaiset, joita en ole allekirjoittanut + + + Friends of my friends who already trust me + YstƤvieni ystƤvƤt, jotka jo luottavat minuun + + + Signed peers showing as denied + Allekirjoitetut vertaiset, jotka nƤkyvƤt torjuttuina + + + Peer name + Vertaisen nimi + + + Also signed by + Muita allekirjoittaneita + + + Peer id + Vertaisen tunniste + + + Certificate appears to be valid + Varmenne nƤyttƤƤ olevan kelvollinen + + + Not a valid Retroshare certificate! Ei kelvollinen Retroshare-varmenne! - + RetroShare Invitation Retroshare-kutsu @@ -3317,12 +3860,12 @@ 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? - + @@ -3330,7 +3873,7 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei. - + This key is already on your trusted list TƤmƤ avain on jo luotettujen luettelossa @@ -3370,7 +3913,7 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei.Sinulle on ystƤvƤpyyntƶ, lƤhettƤjƤ - + Profile password needed. @@ -3395,7 +3938,7 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei. - + Valid Retroshare ID @@ -3405,7 +3948,47 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei. - + Certificate Load Failed:file %1 not found + Varmenteen avaaminen epƤonnistui: tiedostoa %1 ei lƶydy + + + This Peer %1 is not available in your Network + Vertainen %1 ei ole verkossasi + + + Use new certificate format (safer, more robust) + KƤytƤ uutta varmenneformaattia (turvallisempi ja vakaampi) + + + Use old (backward compatible) certificate format + KƤytƤ vanhaa (takaisinpƤin yhteensopivaa) varmenneformaattia + + + Remove signatures + Poista allekirjoitukset + + + RetroShare Invite + Retroshare-kutsu + + + Connect Friend Help + Ohje ystƤvƤn yhdistƤmisestƤ + + + You can copy this text and send it to your friend via email or some other way + Voit kopioida tƤmƤn tekstin ja lƤhettƤƤ sen ystƤvƤllesi sƤhkƶpostilla tai muulla tavoin + + + 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 + + + Save as... + Tallenna nimellƤ... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3444,7 +4027,11 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei.*** Ei mitƤƤn *** - + Use as direct source, when available + KƤytƤ suorana lƤhteenƤ, kun saatavilla + + + IP-Addr: IP-osoite: @@ -3454,7 +4041,7 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei.IP-osoite: - + Show Advanced options NƤytƤ lisƤasetukset @@ -3463,6 +4050,10 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei.<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> @@ -3473,13 +4064,45 @@ Varoitus: Tiedostonsiirto-asetuksissa Salli suora lataus on asetettu Ei.<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>TƤllƤ asetuksella varustetut vertaiset eivƤt voi muodostaa yhteyttƤ, jos heidƤn osoitteensa ei ole sallittujen luettelossa. TƤmƤ suojelee sinua liikenteen vƤlittƤmiseen perustuvilta hyƶkkƤyksiltƤ. Asetuksen myƶtƤ hylƤtyt vertaiset raportoidaan &quot;tietoturvasyƶtteen nimikkeisiin&quot; Uutissyƶte-alueella. Voit sieltƤ lisƤtƤ heidƤn IP:nsƤ sallittujen/estettyjen luetteloon. TƤmƤ pƤtee saman solmun kaikkiin sijainteihin.</p></body></html> + + Recommend many friends to each others + Suosittele useita ystƤviƤ toisilleen + + + Friend Recommendations + YstƤvƤsuositukset + + + 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 + + + Message: + Viesti: + + + Recommend friends + Suosittele ystƤviƤ + + + To + Vastaanottaja + + + Please select at least one friend for recommendation. + 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. + Add key to keyring LisƤƤ avain avainnippuun - + This key is already in your keyring TƤmƤ avain on jo avainnipussasi @@ -3495,7 +4118,7 @@ lƤhettƤmiseen tƤlle vertaiselle, vaikkette ystƤvystyisikƤƤn. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Varmenteella on vƤƤrƤ versionumero. Muista, ettƤ versioiden 0.6 ja 0.5 verkot eivƤt ole keskenƤƤn yhteensopivia. @@ -3530,7 +4153,7 @@ vaikkette ystƤvystyisikƤƤn. LisƤƤ IP sallittujen luetteloon - + No IP in this certificate! Ei IP-osoitetta tƤssƤ varmenteessa! @@ -3540,10 +4163,27 @@ vaikkette ystƤvystyisikƤƤn. <p>Varmenteessa ei ole IP-osoitetta. EtsintƤ ja DHT hakevat osoitteen. Vertainen aiheuttaa tietoturvavaroituksen Uutissyƶte-vƤlilehdessƤ, koska olet mƤƤrittƤnyt sallittujen luettelossa olemisen pakolliseksi. Voit sallia vertaisen IP-osoitteen Uutissyƶte-vƤlilehdeltƤ.</p> - + + [Unknown] + [Tuntematon] + + + 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 + ConnectProgressDialog @@ -3605,7 +4245,7 @@ vaikkette ystƤvystyisikƤƤn. - + UDP Setup UDP:n asetukset @@ -3641,7 +4281,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-family:'Lucida Grande'; font-size:13pt;">voit sulkea sen.</span></p></body></html> - + Connection Assistant Yhteysavustaja @@ -3651,20 +4291,17 @@ p, li { white-space: pre-wrap; } VƤƤrƤ vertaistunniste - - + Unknown State Tuntematon tila - - + Offline Ei yhteyttƤ - - + Behind Symmetric NAT Symmetrisen NAT:in takana @@ -3674,14 +4311,12 @@ p, li { white-space: pre-wrap; } NAT:in takana & ilman DHT:tƤ - - + NET Restart Verkon uudelleenkƤynnistys - - + Behind NAT NAT:in takana @@ -3691,8 +4326,7 @@ p, li { white-space: pre-wrap; } Ei DHT:tƤ - - + NET STATE GOOD! VERKON TILA HYVƄ! @@ -3717,7 +4351,7 @@ p, li { white-space: pre-wrap; } Haetaan Retroshare-vertaisia - + Lookup requires DHT Haku vaatii DHT:tƤ @@ -4009,7 +4643,7 @@ p, li { white-space: pre-wrap; } YritƤ tuoda tƤydellinen varmenne uudelleen - + @@ -4017,8 +4651,7 @@ p, li { white-space: pre-wrap; } Ei sovellu - - + UNVERIFIABLE FORWARD! VARMISTAMATON VƄLITYS! @@ -4028,7 +4661,7 @@ p, li { white-space: pre-wrap; } VARMISTAMATON VƄLITYS EIKƄ DHT:TƄ! - + Searching Haetaan @@ -4064,12 +4697,12 @@ p, li { white-space: pre-wrap; } Piirin tiedot - + Name Nimi - + <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> @@ -4089,7 +4722,7 @@ p, li { white-space: pre-wrap; } - + IDs Tunnisteet @@ -4109,18 +4742,18 @@ p, li { white-space: pre-wrap; } Suodata - + Cancel - + Nickname Nimimerkki - + Invited Members Kutsutut jƤsenet @@ -4135,7 +4768,15 @@ p, li { white-space: pre-wrap; } Tuntemasi ihmiset - + ID + Tunniste + + + Type + Tyyppi + + + Name: Nimi: @@ -4175,19 +4816,23 @@ p, li { white-space: pre-wrap; } <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 - + Please set a name for your Circle Anna piirillesi nimi - + No Restriction Circle Selected RajoituspiiriƤ ei valittuna @@ -4197,24 +4842,12 @@ p, li { white-space: pre-wrap; } Piirien rajoituksia ei valittuna - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Tuntematon] - + Add LisƤƤ @@ -4224,7 +4857,7 @@ p, li { white-space: pre-wrap; } Poista - + Search Haku @@ -4239,6 +4872,10 @@ p, li { white-space: pre-wrap; } Signed Allekirjoitettu + + Signed by known nodes + Tunnettujen solmujen allekirjoittama + Edit Circle @@ -4255,6 +4892,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP-henkilƶllisyys + + Anon Id + Nimetƶn tunniste + Circle name @@ -4277,13 +4918,17 @@ p, li { white-space: pre-wrap; } Luo uusi piiri - + Create Luo - + PGP Linked Id + PGP:n linkitetty tunniste + + + Add Member LisƤƤ jƤsen @@ -4302,7 +4947,7 @@ p, li { white-space: pre-wrap; } Luo ryhmƤ - + Group Name: RyhmƤ nimi: @@ -4337,7 +4982,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Uusi kirjoitus kanavalle @@ -4347,7 +4992,7 @@ p, li { white-space: pre-wrap; } Kanavakirjoitus - + Post @@ -4408,11 +5053,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;"><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> + + Add File to Attach + LisƤƤ liitettƤvƤ tiedosto + Add Channel Thumbnail LisƤƤ kanavan nƤytekuva + + Message + Viesti + + + Subject : + Aihe: + @@ -4498,17 +5155,17 @@ p, li { white-space: pre-wrap; } - + RetroShare Retroshare - + This file already in this post: - + Post refers to non shared files @@ -4527,18 +5184,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Tiedosto on jo lisƤtty ja tiivistetty (hash) + Please add a Subject Ole hyvƤ ja lisƤƤ aihe - - Cannot publish post - - - - + Load thumbnail picture Lataa nƤytekuva @@ -4553,12 +5209,18 @@ p, li { white-space: pre-wrap; } Piilota - + + Generate mass data Luo massatietoja - + + Do you really want to generate %1 messages ? + Haluatko todella luoda %1 viestiƤ? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Olet aikeissa lisƤtƤ tiedostoja, joita et todellisuudessa jaa. Haluatko silti tehdƤ tƤmƤn? @@ -4592,7 +5254,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message LƤhetƤ viesti foorumiin @@ -4601,6 +5263,10 @@ p, li { white-space: pre-wrap; } Forum Foorumi + + Subject + Aihe + Attach File @@ -4621,8 +5287,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4641,7 +5307,7 @@ p, li { white-space: pre-wrap; } Voit liittƤƤ tiedostoja vetƤmƤllƤ ja pudottamalla niitƤ tƤhƤn ikkunaan - + Post @@ -4671,17 +5337,17 @@ p, li { white-space: pre-wrap; } - + No Forum Ei foorumia - + In Reply to Vastauksena - + Title Otsikko @@ -4735,7 +5401,7 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? Lataa kuvatiedosto - + No compatible ID for this forum Ei yhteensopiva tunniste tƤlle foorumille @@ -4745,8 +5411,8 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? 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. - - + + Generate mass data Luo massatietoja @@ -4755,6 +5421,10 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? Do you really want to generate %1 messages ? Haluatko todella luoda %1 viestiƤ? + + Send + LƤhetƤ + Post as @@ -4769,7 +5439,23 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? CreateLobbyDialog - + Create Chat Lobby + 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. + 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: + Huoneen nimi: + + + Lobby topic: + Huoneen aihe: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4804,7 +5490,7 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? - + Create Luo @@ -4814,7 +5500,11 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? - + <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 @@ -4829,7 +5519,11 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? Valitse ystƤvƤt ryhmƤkeskusteluun. - + Invited friends + Kutsutut ystƤvƤt + + + Create Chat Room Luo keskusteluhuone @@ -4850,7 +5544,7 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? Kontaktit: - + Identity to use: KƤytƤ henkilƶllisyyttƤ: @@ -4858,17 +5552,17 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? CryptoPage - + Public Information Julkiset tiedot - + Name: Nimi: - + Location: Sijainti: @@ -4878,12 +5572,12 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? Sijaintitunniste: - + Software Version: Ohjelmiston versio: - + Online since: Linjoilla alkaen: @@ -4903,7 +5597,12 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4913,7 +5612,7 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? - + Other Information Muita tietoja @@ -4923,12 +5622,17 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? - + Profile Profiili - + + Certificate + Varmenne + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4938,7 +5642,11 @@ Haluatko hƤvittƤƤ tƤmƤn viestin? SisƤllytƤ allekirjoitukset - + Save Key into a file + Tallenna avain tiedostoon + + + Export Identity Vie henkilƶllisyys @@ -5012,33 +5720,33 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + TextLabel TekstiMerkki - + PGP fingerprint: PGP-sormenjƤlki: - + + Node information + Solmun tiedot + + + PGP Id : PGP tunniste: - + Friend nodes: YstƤvƤsolmut: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5077,6 +5785,14 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Node Solmu + + Create new node... + Luo uusi solmu... + + + show statistics window + nƤytƤ tilastoikkuna + DHTGraphSource @@ -5093,6 +5809,10 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare 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> + <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 trusted nodes 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 trusted nodes.</p> @@ -5128,7 +5848,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen DLListDelegate - + B B @@ -5796,7 +6516,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen DownloadToaster - + Start file KƤynnistƤ tiedosto @@ -5804,38 +6524,38 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen ExprParamElement - + - + to vastaanottajalle - + ignore case sivuuta kirjainkoko - - - yyyy-MM-dd - + + + dd.MM.yyyy + pp.KK.vvvv - - + + KB kB - - + + MB MB - - + + GB GB @@ -5843,12 +6563,12 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen ExpressionWidget - + Expression Widget Lausekevimpain - + Delete this expression Poista tƤmƤ lauseke @@ -6010,7 +6730,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen FilesDefs - + Picture Kuva @@ -6020,7 +6740,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Video - + Audio ƄƤni @@ -6080,21 +6800,11 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories YstƤvien hakemistot @@ -6216,7 +6926,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + ID Tunniste @@ -6251,6 +6961,10 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Show State NƤytƤ tila + + Trusted nodes + Luetetut solmut + @@ -6258,7 +6972,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen NƤytƤ ryhmƤt - + Group RyhmƤ @@ -6294,7 +7008,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen LisƤƤ ryhmƤƤn - + Search Haku @@ -6310,7 +7024,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Lajittele tilan perusteella - + Profile details Profiilin tiedot @@ -6554,7 +7268,7 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn FriendRequestToaster - + Confirm Friend Request Vahvista ystƤvƤpyyntƶ @@ -6571,6 +7285,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn FriendSelectionWidget + + Search : + Haku : + Sort by state @@ -6592,7 +7310,7 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Hae ystƤviƤ - + Mark all Merkitse kaikki @@ -6603,134 +7321,16 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Merkitse mitƤƤn - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Nimi - - - - Node ID - - - - - Address - Osoite - - - - Status - Tila - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - YstƤvysty - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - 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! - - FriendsDialog - + Edit status message Muokkaa tilaviestiƤ - - + + Broadcast Kuulutus @@ -6813,38 +7413,33 @@ Tarkista myƶs porttisi! Palauta oletuskirjasin - + Keyring Avainnippu - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <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> + + + Retroshare broadcast chat: messages are sent to all connected friends. Retrosharen kuulutus: viestit lƤhetetƤƤn kaikille linjoilla oleville ystƤville. - - + + Network Verkko - - Friend Server - - - - + Network graph Verkkokaavio - - <h1><img width="%1" 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> - - - - + Set your status message here. Aseta tilaviestisi tƤhƤn. @@ -6862,17 +7457,7 @@ Tarkista myƶs porttisi! Salasana - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Kaikki kentƤt ovat pakollisia ja vƤhintƤƤn 3 merkkiƤ @@ -6882,12 +7467,17 @@ Tarkista myƶs porttisi! Salasanat eivƤt tƤsmƤƤ - + Port Portti - + + Use BOB + Ota BOB kƤyttƶƶn + + + This password is for PGP TƤmƤ salasana on PGP:tƤ varten @@ -6908,38 +7498,50 @@ Tarkista myƶs porttisi! Uuden varmenteesi luonti epƤonnistui, ehkƤ PGP-salasanasi oli vƤƤrin! - + Options + 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 - + Node type: @@ -6959,12 +7561,12 @@ Tarkista myƶs porttisi! - + <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 @@ -6974,43 +7576,42 @@ Tarkista myƶs porttisi! - + <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> - - Use I2P - - - - + <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> @@ -7058,13 +7659,13 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen Profiiliasi ei tallennettu. Virhe tapahtui. - + Import profile Tuo profiili - + Create new profile and new Retroshare node Luo uusi profiili ja uusi Retroshare-solmu @@ -7074,7 +7675,7 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen Luo uusi Retroshare-solmu - + Tor/I2P address Tor/I2P-osoite @@ -7109,7 +7710,7 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7119,7 +7720,12 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen - + + BOB support is not available + + + + <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> @@ -7129,7 +7735,12 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen <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 @@ -7355,13 +7966,36 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen Aloittaminen - + Invite Friends Kutsu ystƤviƤ - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">PyydƤ myƶs heiltƤ vastaava kutsu... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Saat yhteyden ystƤvƤƤsi vain, jos lisƤƤtte toisenne varmenteet.</span></p></body></html> + + + Add Your Friends to RetroShare LisƤƤ ystƤviƤsi Retroshareen @@ -7371,103 +8005,136 @@ ja kƤyttƤƤ tuo-painiketta sen lataamiseen LisƤƤ ystƤviƤ - - Connect To Friends - Ota yhteys ystƤviin - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Vaativa: Avaa palomuurin portti +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> - + + Connect To Friends + Ota yhteys ystƤviin + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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> + + + + Advanced: Open Firewall Port + Vaativa: Avaa palomuurin portti + + + Further Help and Support LisƤƤ ohjeita ja tukea - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Avaa RS-verkkosivu @@ -7492,7 +8159,7 @@ p, li { white-space: pre-wrap; } SƤhkƶpostipalaute - + RetroShare Invitation Retroshare-kutsu @@ -7542,12 +8209,12 @@ p, li { white-space: pre-wrap; } Palaute Retrosharelle - + RetroShare Support Retrosharen tuki - + It has many features, including built-in chat, messaging, SillƤ on monia ominaisuuksia, mukaan lukien keskustelu, viestit, @@ -7671,7 +8338,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat NƤytƤ ryhmƤkeskustelu @@ -7679,7 +8346,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Tuntematon] @@ -7845,11 +8512,19 @@ p, li { white-space: pre-wrap; } 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. + GroupTreeWidget - + Title Otsikko @@ -7862,12 +8537,12 @@ p, li { white-space: pre-wrap; } - + Description Kuvaus - + Number of Unread message @@ -7892,7 +8567,35 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Laskeva jƤrjestys + + + Sort Ascending Order + Nouseva jƤrjestys + + + Sort by Name + JƤrjestƤ nimen mukaan + + + Sort by Popularity + JƤrjestƤ suosion mukaan + + + Sort by Last Post + JƤrjestƤ viimeisimmƤn viestin mukaan + + + 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) @@ -7907,14 +8610,14 @@ p, li { white-space: pre-wrap; } Tunniste - - + + Last Post Viimeisin viesti - + Name Nimi @@ -7925,13 +8628,17 @@ p, li { white-space: pre-wrap; } Suosio - + Never Ei koskaan - + Display + NƤytƤ + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7944,7 +8651,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and ja @@ -8080,7 +8787,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanavat @@ -8091,22 +8798,26 @@ p, li { white-space: pre-wrap; } Luo kanava - + Enable Auto-Download Ota kƤyttƶƶn automaattinen lataus - + My Channels Kanavani - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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> + + + + <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> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Tilatut kanavat @@ -8126,12 +8837,12 @@ p, li { white-space: pre-wrap; } Valitse kanavan lataushakemisto - + Disable Auto-Download Ota automaattinen lataus pois kƤytƶstƤ - + Set download directory Aseta lataushakemisto @@ -8166,22 +8877,22 @@ p, li { white-space: pre-wrap; } - + Play Toista - + Open folder Avaa kansio - + Open file - + Error Virhe @@ -8201,17 +8912,17 @@ p, li { white-space: pre-wrap; } 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 - + Play File Toista tiedosto @@ -8221,10 +8932,37 @@ p, li { white-space: pre-wrap; } Tiedostoa %1 ei lƶydy sijainnista. + + GxsChannelFilesWidget + + Form + Lomake + + + Filename + Tiedostonimi + + + Size + Koko + + + Title + Otsikko + + + Published + Julkaistu + + + Status + Tila + + GxsChannelGroupDialog - + Create New Channel Luo uusi kanava @@ -8262,19 +9000,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Tilaa kanava @@ -8288,7 +9016,7 @@ p, li { white-space: pre-wrap; } - + Expand Laajenna @@ -8303,7 +9031,7 @@ p, li { white-space: pre-wrap; } Kanavan kuvaus - + Loading Ladataan @@ -8318,9 +9046,8 @@ p, li { white-space: pre-wrap; } - - Never - Ei koskaan + New Channel + Uusi kanava @@ -8331,7 +9058,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Uusi kommentti: @@ -8352,7 +9079,7 @@ p, li { white-space: pre-wrap; } - + Play Toista @@ -8408,24 +9135,28 @@ p, li { white-space: pre-wrap; } Files Tiedostot + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Varoitus! Sinulla on alle %1 tuntia ja %2 minuuttia aikaa, ennen kuin tƤmƤ tiedosto poistetaan. Harkitse sen tallentamista. + Hide Piilota - + New Uusi - + 0 0 - - + + Comment Kommentti @@ -8440,17 +9171,21 @@ p, li { white-space: pre-wrap; } En pidƤ tƤstƤ - + Loading + Ladataan + + + Loading... - + Comments Kommentit - + Post @@ -8475,16 +9210,139 @@ p, li { white-space: pre-wrap; } Toista media + + GxsChannelPostsWidget + + Post to Channel + LƤhetƤ viesti kanavalle + + + Add new post + LisƤƤ uusi kirjoitus + + + Loading + Ladataan + + + Search channels + Hae kanavia + + + Title + Otsikko + + + Search Title + Hae otsikolla + + + Message + Viesti + + + Search Message + Hae viestejƤ + + + Filename + Tiedostonimi + + + Search Filename + Hae tiedostonimiƤ + + + No Channel Selected + Ei kanavaa valittuna + + + Never + Ei koskaan + + + Public + 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 + + + Disable Auto-Download + Ota automaattinen lataus pois kƤytƶstƤ + + + Enable Auto-Download + Ota kƤyttƶƶn automaattinen lataus + + + Show feeds + NƤytƤ syƶtteet + + + Show files + NƤytƤ tiedostot + + + Administrator: + YllƤpitƤjƤ: + + + Last Post: + Viimeisin viesti: + + + unknown + tuntematon + + + Distribution: + Jakelu: + + + Feeds + Syƶtteet + + + Files + Tiedostot + + + Subscribers + Tilaajat + + + Description: + Kuvaus: + + + Posts (at neighbor nodes): + Viestit (naapurisolmuissa): + + GxsChannelPostsWidgetWithModel - + Post to Channel LƤhetƤ viesti kanavalle - + Add new post LisƤƤ uusi kirjoitus @@ -8554,7 +9412,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8590,7 +9448,7 @@ p, li { white-space: pre-wrap; } - + Comments Kommentit @@ -8605,13 +9463,13 @@ p, li { white-space: pre-wrap; } Syƶtteet - - + + Click to switch to list view - + Show unread posts only @@ -8626,7 +9484,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8641,7 +9499,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8701,22 +9559,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8791,13 +9639,12 @@ p, li { white-space: pre-wrap; } SinƤ ja ystƤvƤsolmusi - - + Copy Retroshare link - + Subscribed Tilattu @@ -8848,17 +9695,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8878,11 +9725,27 @@ p, li { white-space: pre-wrap; } Remove Item 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: + @@ -8973,7 +9836,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container KommenttisƤiliƶ @@ -8986,7 +9849,7 @@ p, li { white-space: pre-wrap; } Lomake - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9016,7 +9879,7 @@ p, li { white-space: pre-wrap; } PƤivitƤ - + Comment Kommentti @@ -9055,7 +9918,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Vastaa kommenttiin @@ -9079,21 +9942,6 @@ p, li { white-space: pre-wrap; } Vote Down ƄƤnestƤ alas - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9103,7 +9951,7 @@ p, li { white-space: pre-wrap; } LisƤƤ kommentti - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9132,10 +9980,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Kommentti</span></p></body></html> + + + Signed by + Allekirjoittaja + Reply to Comment @@ -9164,7 +10028,7 @@ before you can comment kuin voit kommentoida - + It remains %1 characters after HTML conversion. @@ -9206,6 +10070,14 @@ kuin voit kommentoida Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + LisƤƤ yllƤpitƤjiƤ foorumiin + + + Select Forum Admins + Valitse foorumin yllƤpitƤjiƤ + Create @@ -9215,7 +10087,7 @@ kuin voit kommentoida GxsForumGroupItem - + Subscribe to Forum Tilaa foorumi @@ -9231,7 +10103,7 @@ kuin voit kommentoida - + Expand Laajenna @@ -9251,9 +10123,8 @@ kuin voit kommentoida - - TextLabel - + Loading + Ladataan @@ -9284,13 +10155,13 @@ kuin voit kommentoida GxsForumMsgItem - - + + Subject: Aihe: - + Unsubscribe To Forum Lopeta foorumin tilaus @@ -9301,7 +10172,7 @@ kuin voit kommentoida - + Expand Laajenna @@ -9321,17 +10192,21 @@ kuin voit kommentoida Vastauksena: - + Loading + Ladataan + + + Loading... - + Forum Feed Foorumisyƶte - + Hide Piilota @@ -9344,66 +10219,63 @@ kuin voit kommentoida Lomake - + Start new Thread for Selected Forum Aloita uusi viestiketju valitussa foorumissa - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Hae foorumeista - + Last Post + Viimeisin viesti + + + New Thread Uusi viestiketju + + + Threaded View + KetjunƤkymƤ + + + + Flat View + TasanƤkymƤ + - + Title Otsikko - - + + Date PƤivƤys - + Author Kirjoittaja - + + Save image + Tallenna kuva + + + Loading Ladataan - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9413,7 +10285,12 @@ kuin voit kommentoida - + + Lastest post in thread + + + + Reply Message Vastaa viestiin @@ -9437,6 +10314,10 @@ kuin voit kommentoida Download all files Lataa kaikki tiedostot + + Next unread + Seuraava lukematon + Search Title @@ -9453,23 +10334,35 @@ kuin voit kommentoida Hae kirjoittajaa - + Content + SisƤltƶ + + + Search Content + Hae sisƤltƶƤ + + + <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> + + + No name Ei nimeƤ - - + + Reply Vastaa - + <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> - + Loading... @@ -9512,12 +10405,20 @@ kuin voit kommentoida Kopioi Retroshare-linkki - + Hide Piilota - + Expand + Laajenna + + + [Banned] + [Pannassa] + + + [unknown] [tuntematon] @@ -9547,8 +10448,8 @@ kuin voit kommentoida Vain silmillesi - - + + Distribution @@ -9562,6 +10463,26 @@ kuin voit kommentoida Anti-spam Roskapostin esto + + [ ... Redacted message ... ] + [ ... Muokattu viesti ... ] + + + Anonymous + Nimetƶn + + + signed + allekirjoitettu + + + none + ei mitƤƤn + + + [ ... Missing Message ... ] + [ ... Puuttuva viesti ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9631,12 +10552,16 @@ kuin voit kommentoida AlkuperƤinen viesti - + New thread Uusi viestiketju - + Read status + Lue tilaviesti + + + Edit Muokkaa @@ -9697,7 +10622,7 @@ kuin voit kommentoida Kirjoittajan maine - + Show column @@ -9717,7 +10642,7 @@ kuin voit kommentoida - + Anonymous/unknown posts forwarded if reputation is positive NimettƶmƤt/tuntemattomat viestit lƤhetetƤƤn edelleen, jos maine on myƶnteinen @@ -9769,7 +10694,7 @@ This message is missing. You should receive it later. - + No result. @@ -9779,7 +10704,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9794,7 +10719,29 @@ This message is missing. You should receive it later. - + 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) @@ -9803,6 +10750,10 @@ This message is missing. You should receive it later. (Old) (Vanha) + + You cant act on the author to a non-existant Message + Et voi ottaa toimia olemattoman viestin kirjoittajan suhteen + From @@ -9860,12 +10811,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> - + Forums Foorumi @@ -9896,16 +10847,35 @@ This message is missing. You should receive it later. Muut foorumit + + GxsForumsFillThread + + Waiting + Odotetaan + + + Retrieving + Noudetaan + + + Loading + Ladataan + + GxsGroupDialog - + Name Nimi - + Add Icon + LisƤƤ kuvake + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Avaimen vastaanottajat voivat julkaista rajoitetuille ryhmille ja voivat nƤhdƤ sekƤ julkaista yksityisille kanaville @@ -9914,14 +10884,22 @@ This message is missing. You should receive it later. Share Publish Key Jaa julkaisuavain + + check peers you would like to share private publish key with + rastita vertaiset, joiden kanssa haluat jakaa yksityisen julkaisuavaimesi + + + Share Key With + Jaa avain + - + Description Kuvaus - + Message Distribution Viestin leviƤminen @@ -9929,7 +10907,7 @@ This message is missing. You should receive it later. - + Public Julkinen @@ -9948,6 +10926,14 @@ This message is missing. You should receive it later. New Thread Uusi viestiketju + + Required + Vaaditaan + + + Encrypted Msgs + Salatut viestit + Personal Signatures @@ -9989,7 +10975,7 @@ This message is missing. You should receive it later. Roskaposti-suojaus - + Comments: Kommentit: @@ -10012,7 +10998,7 @@ This message is missing. You should receive it later. Roskapostin esto: - + All People @@ -10028,12 +11014,12 @@ This message is missing. You should receive it later. - + Restricted to circle: Rajoitettu piiriin: - + Limited to your friends Rajattu ystƤviisi @@ -10050,23 +11036,23 @@ This message is missing. You should receive it later. - + Message tracking Viestiseuranta - - + + PGP signature required PGP-allekirjoitus vaaditaan - + Never Ei koskaan - + Only friends nodes in group Vain ryhmƤssƤ olevat ystƤvƤsolmut @@ -10082,28 +11068,30 @@ This message is missing. You should receive it later. Ole hyvƤ ja lisƤƤ nimi - + PGP signature from known ID required PGP-allekirjoitus tunnetulta tunnisteelta vaaditaan - - - [None] - - - - + Load Group Logo Lataa ryhmƤn logo - + Submit Group Changes Vahvista ryhmƤn muutokset - + Failed to Prepare Group MetaData - please Review + RyhmƤn metatietojen luonti epƤonnistui - tarkista tiedot + + + Will be used to send feedback + KƤytetƤƤn palautteen lƤhettƤmiseen + + + Owner: Omistaja: @@ -10113,12 +11101,12 @@ This message is missing. You should receive it later. Aseta kuvaava kuvaus tƤhƤn - + Info Tietoja - + ID Tunniste @@ -10128,7 +11116,7 @@ This message is missing. You should receive it later. Viimeisin viesti - + <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> @@ -10203,12 +11191,7 @@ This message is missing. You should receive it later. Haittaa allekirjoittamattomia tunnisteita ja tunnisteita tuntemattomista solmuista - - Author: - - - - + Popularity Suosio @@ -10224,22 +11207,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create Luo - + + Author + Kirjoittaja + + + GxsIdLabel GxsTunnisteselite @@ -10247,7 +11235,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Ladataan @@ -10307,7 +11295,7 @@ This message is missing. You should receive it later. Muokkaa tietoja - + Synchronise posts of last... Ajantasaista viestit ajalta... @@ -10364,12 +11352,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + Jaa julkaisuoikeudet + + + Copy RetroShare Link Kopioi Retroshare-linkki @@ -10392,7 +11384,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Ei allekirjoitusta @@ -10405,24 +11397,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Ladataan + + + Not found Ei lƶydy + + No Signature + Ei allekirjoitusta + - - + + [Banned] [Pannassa] + + Authentication + Varmennus + unknown Key tuntematon avain - + anonymous + nimetƶn + + + Loading... @@ -10432,12 +11440,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Henkilƶllisyyden&nbsp;nimi @@ -10451,20 +11454,16 @@ This message is missing. You should receive it later. Node Solmu + + Signed&nbsp;by + Allekirjoittama + [Unknown] [Tuntematon] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10476,7 +11475,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10524,13 +11523,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Tuntematon] GxsMessageFramePostWidget + + Loading + Ladataan + Loading... @@ -10647,6 +11650,10 @@ This message is missing. You should receive it later. Group ID / Author RyhmƤtunniste / Kirjoittaja + + Number of messages / Publish TS + Viestien mƤƤrƤ / Julkaise liikennetilastot + Local size of data @@ -10662,6 +11669,10 @@ This message is missing. You should receive it later. Popularity Suosio + + Details + Tiedot + @@ -10694,6 +11705,33 @@ This message is missing. You should receive it later. Ei + + GxsTunnelsDialog + + Authenticated tunnels: + Varmennetut tunnelit: + + + Tunnel ID: %1 + Tunnelitunniste: %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 + + HashBox @@ -10906,12 +11944,48 @@ This message is missing. You should receive it later. About Tietoja + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10927,7 +12001,7 @@ p, li { white-space: pre-wrap; } - + Authors TekijƤt @@ -10946,7 +12020,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10959,6 +12033,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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 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 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;">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> + License Agreement @@ -11024,12 +12128,12 @@ p, li { white-space: pre-wrap; } Lomake - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11044,7 +12148,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11053,12 +12157,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + 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, @@ -11069,12 +12193,20 @@ 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 @@ -11084,7 +12216,7 @@ yksityinen ja turvallinen hajautettu viestintƤalusta. Tallenna varmenteesi tiedostoon - + Send via Email LƤhetƤ sƤhkƶpostitse @@ -11104,37 +12236,13 @@ yksityinen ja turvallinen hajautettu viestintƤalusta. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11146,12 +12254,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11160,11 +12273,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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 + + 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 + Save as... @@ -11436,14 +12557,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Kaikki - + Reputation Maine @@ -11453,12 +12574,12 @@ p, li { white-space: pre-wrap; } Haku - + Anonymous Id Nimetƶn tunniste - + Create new Identity Luo uusi henkilƶllisyys @@ -11468,7 +12589,7 @@ p, li { white-space: pre-wrap; } Luo uusi piiri - + Persons Henkilƶt @@ -11483,27 +12604,27 @@ p, li { white-space: pre-wrap; } Henkilƶ - + Close 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Ƥ @@ -11519,39 +12640,29 @@ p, li { white-space: pre-wrap; } KielteisiƤ ƤƤniƤ - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics KƤyttƶtilastot - + Circles Piirit - + Circle name Piirin nimi @@ -11571,20 +12682,18 @@ p, li { white-space: pre-wrap; } Henkilƶkohtaiset piirit - + - Edit identity Muokkaa henkilƶllisyyttƤ - - + Delete identity Poista henkilƶllisyys - + Chat with this peer Keskustele vertaisen kanssa @@ -11594,78 +12703,98 @@ p, li { white-space: pre-wrap; } KƤynnistƤƤ etƤisen keskustelun vertaisen kanssa - + 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... - + Type: Tyyppi: - + 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> +<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 @@ -11676,17 +12805,17 @@ p, li { white-space: pre-wrap; } 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Ƥ: - + Anonymous Nimetƶn @@ -11701,24 +12830,24 @@ p, li { white-space: pre-wrap; } Hae tunnistetta - + 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 @@ -11733,12 +12862,7 @@ p, li { white-space: pre-wrap; } Linkitetty solmuuni - - <h1><img width="%1" 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> - - - - + Other circles Muut piirit @@ -11748,7 +12872,7 @@ p, li { white-space: pre-wrap; } Piirit joihin kuulun - + Circle ID: Piiri tunniste: @@ -11823,7 +12947,7 @@ p, li { white-space: pre-wrap; } Ei jƤsen (ei ole pƤƤsyƤ tƤlle piirille rajoitettuun dataan) - + Identity ID: Henkilƶllisyystunniste: @@ -11853,7 +12977,7 @@ p, li { white-space: pre-wrap; } tuntematon - + Invited Kutsuttu @@ -11868,7 +12992,7 @@ p, li { white-space: pre-wrap; } JƤsen - + Edit Circle Muokkaa piiriƤ @@ -11916,7 +13040,7 @@ p, li { white-space: pre-wrap; } MyƶnnƤ jƤsenyys - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11927,7 +13051,7 @@ Sinun pitƤisi hankkiutua siitƤ eroon ja kƤyttƤƤ uutta. NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + [Unknown node] [Tuntematon solmu] @@ -11970,7 +13094,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Nimetƶn henkilƶllisyys - + Boards @@ -12050,7 +13174,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + information tietoa @@ -12066,12 +13190,29 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. 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 @@ -12115,11 +13256,19 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Forums Foorumit + + Posted + LƤhetetty + Chat Keskustelu + + Unknown + Tuntematon + [Unknown] @@ -12140,6 +13289,14 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. 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. @@ -12160,11 +13317,19 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. 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. @@ -12176,7 +13341,11 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Yleinen salauksen purku. - + Membership verification in circle %1. + JƤsenyyden varmistus piirissƤ %1. + + + Add to Contacts @@ -12226,21 +13395,21 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Hei,<br>haluan olla ystƤvƤsi Retrosharessa.<br> - - - + + + People Ihmiset - + Your Avatar Click here to change your avatar Sinun avatar - + Linked to neighbor nodes Linkitetty naapurisolmuihin @@ -12250,7 +13419,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Linkitetty etƤisiin solmuihin - + Linked to a friend Retroshare node Linkitetty ystƤvƤ Retroshare-solmuun @@ -12265,7 +13434,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Linkitetty tuntemattomaan Retroshare-solmuun - + Chat with this person Keskustele henkilƶn kanssa @@ -12280,12 +13449,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. TƤmƤ henkilƶ torjui etƤisen keskustelun - + Last used: Viimeksi kƤytetty: - + +50 Known PGP +50 tiedettyƤ PGP:tƤ @@ -12305,12 +13474,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Haluatko todella poistaa tƤmƤn henkilƶllisyyden? - + Owned by Omistama - + Node name: Solmun nimi: @@ -12320,7 +13489,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Solmun tunniste : - + Really delete? Tuhotaanko? @@ -12328,7 +13497,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. IdEditDialog - + Nickname Nimimerkki @@ -12358,7 +13527,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Nimimerkki - + Import image @@ -12368,19 +13537,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Uusi henkilƶllisyys @@ -12394,7 +13556,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + @@ -12404,12 +13566,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Ei sovellu - - No avatar chosen - - - - + Edit identity Muokkaa henkilƶllisyyttƤ @@ -12420,27 +13577,27 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. PƤivitƤ - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12460,7 +13617,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Identity update failed @@ -12470,7 +13627,11 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Error getting key! + Virhe haettaessa avainta! + + + Error KeyID invalid Virhe: viallinen avaimen tunniste @@ -12485,7 +13646,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Tuntematon oikea nimi - + Create New Identity Luo uusi henkilƶllisyys @@ -12495,15 +13656,10 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Tyyppi - + Choose image... - - - Remove - Poista - @@ -12529,7 +13685,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. LisƤƤ - + Create Luo @@ -12539,13 +13695,17 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Your Avatar Click here to change your avatar Sinun avatar - + Set Avatar + Aseta Avatar + + + Linked to your profile Linkitetty profiiliisi @@ -12555,7 +13715,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. 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Ƥ. @@ -12614,6 +13774,10 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. PGP name: PGP-nimi: + + GXS id: + GXS tunniste: + PGP id: @@ -12629,7 +13793,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Copy Kopioi @@ -12639,12 +13803,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Poista - + %1 's Message History - + Mark all Merkitse kaikki @@ -12663,38 +13827,26 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Quote Lainaa + + Send + LƤhetƤ + ImageUtil - - + + Save image Tallenna kuva - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename Ei voi tallentaa kuvaa, virheellinen tiedostonnimi - - Copy image - - - - - + Not an image Ei ole kuva @@ -12712,32 +13864,27 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Enable RetroShare JSON API Server - + Port: Portti: - + Listen Address: - - Status: - Tila: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12758,12 +13905,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12772,31 +13914,26 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Avaa tiedosto - + Open Folder Avaa kansio - + Checking... Tarkistaa... @@ -12806,7 +13943,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Tarkista tiedostot - + Recommend in a message to... Suosittele viestissƤ vastaanottajalle... @@ -12834,7 +13971,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. MainWindow - + Add Friend LisƤƤ ystƤvƤ @@ -12850,8 +13987,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - - + Options Asetukset @@ -12872,7 +14008,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Quit Lopeta @@ -12883,12 +14019,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Ohjattu nopea kƤynnistys - + RetroShare %1 a secure decentralized communication platform Retroshare %1 turvallinen hajautettu viestintƤalusta - + Unfinished Kesken @@ -12917,12 +14053,11 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - Status Tila - + Notify Huomauta @@ -12933,35 +14068,31 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - Open Messages Avaa viestit - - + Bandwidth Graph Siirtonopeuskuvaaja - + Applications Ohjelmat - Help Ohje - - + Minimize PienennƤ - + Maximize Suurenna @@ -12976,12 +14107,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Retroshare - - Close window - - - - + %1 new message %1 uusi viesti @@ -13011,7 +14137,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. %1 ystƤvƤƤ yhdistettynƤ - + Do you really want to exit RetroShare ? Haluatko todella poistua Retrosharesta? @@ -13031,7 +14157,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. NƤytƤ - + Make sure this link has not been forged to drag you to a malicious website. Varmista, ettƤ tƤmƤ linkki ei ole huijaus, joka johtaa haitalliselle sivustolle. @@ -13076,13 +14202,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Palveluiden kƤyttƶoikeudet - - + Statistics Tilastot - + Show web interface NƤytƤ verkkokƤyttƶliittymƤ @@ -13097,7 +14222,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. on kƤymƤssƤ vƤhiin (tƤmƤnhetkinen raja on - + Really quit ? Lopeta? @@ -13106,17 +14231,17 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. MessageComposer - + Compose Kirjoita viesti - + Contacts Yhteystiedot - + Paragraph Kappale @@ -13152,12 +14277,12 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Otsikko 6 - + Font size Kirjasinkoko - + Increase font size Suurenna kirjasinkokoa @@ -13172,32 +14297,32 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. Lihavointi - + Italic Kursivointi - + Alignment Asettelu - + Add an Image LisƤƤ kuva - + Sets text font to code style Asettaa tekstin kirjasinlajin koodityyliseksi - + Underline Alleviivaus - + Subject: Aihe: @@ -13208,32 +14333,32 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Tags Merkkaukset - + 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 - + Recommended Files Suositellut tiedostot @@ -13303,7 +14428,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. LisƤƤ lainauslohko (blockquote) - + Send To: LƤhetƤ: @@ -13327,6 +14452,10 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. &Justify Tasaa &molemmat reunat + + All addresses (mixed) + Kaikki osoitteet (sekaisin) + All people @@ -13338,7 +14467,7 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hei,<br>suosittelen ystƤvƤƤni; voit luottaa hƤneen, kuten luotat minuun.<br> @@ -13358,18 +14487,18 @@ NƤitƤ henkilƶllisyyksien tuki lakkaa pian. 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. - - + + Save Message Tallenna viesti - + Message has not been Sent. Do you want to save message to draft box? ViestiƤ ei ole lƤhetetty. @@ -13381,17 +14510,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? LiitƤ Retroshare-linkki - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" LisƤƤ vastaanottajiin @@ -13411,7 +14530,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? LisƤƤ suosituksena - + Original Message AlkuperƤinen viesti @@ -13421,21 +14540,21 @@ Haluatko tallentaa viestin luonnoslaatikkoon? LƤhettƤjƤ - + - + To Vastaanottaja - - + + Cc Kopio - + Sent LƤhetetyt @@ -13450,7 +14569,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? %1, %2 kirjoitti: - + Re: Vs: @@ -13460,30 +14579,30 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Vl: - - - + + + RetroShare Retroshare - + Do you want to send the message without a subject ? Haluatko lƤhettƤƤ viestin ilman otsikkoa? - + Please insert at least one recipient. Ole hyvƤ ja lisƤƤ ainakin yksi vastaanottaja. - + Bcc Piilokopio - + Unknown Tuntematon @@ -13598,13 +14717,13 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Tiedot - + Open File... Avaa tiedosto... - + HTML-Files (*.htm *.html);;All Files (*) HTML-tiedostot (*.htm *.html);;Kaikki tiedostot (*) @@ -13624,7 +14743,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Vie PDF - + Message has not been Sent. Do you want to save message ? ViestiƤ ei ole lƤhetetty. @@ -13646,7 +14765,7 @@ Haluatko tallentaa viestin? LisƤƤ ylimƤƤrƤinen tiedosto - + Hi,<br>I want to be friends with you on RetroShare.<br> Hei,<br>haluan olla ystƤvƤsi Retrosharessa.<br> @@ -13670,24 +14789,28 @@ Haluatko tallentaa viestin? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Sinulle on ystƤvƤkutsu + Respond now: Vastaa nyt: - - + + Close Sulje - + From: LƤhettƤjƤ: - + Friend Nodes YstƤvƤsolmut @@ -13732,13 +14855,13 @@ Haluatko tallentaa viestin? - - + + Thanks, <br> Kiitos, <br> - + Distant identity: EtƤinen henkilƶllisyys: @@ -13748,12 +14871,12 @@ Haluatko tallentaa viestin? [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: @@ -13831,7 +14954,7 @@ Haluatko tallentaa viestin? Oletus - + A new tab Uudessa vƤlilehdessƤ @@ -13841,7 +14964,7 @@ Haluatko tallentaa viestin? Uudessa ikkunassa - + Edit Tag Muokkaa merkkausta @@ -13864,7 +14987,7 @@ Haluatko tallentaa viestin? MessageToaster - + Sub: Aih: @@ -13872,7 +14995,7 @@ Haluatko tallentaa viestin? MessageUserNotify - + Message Viesti @@ -13900,7 +15023,7 @@ Haluatko tallentaa viestin? MessageWidget - + Recommended Files Suositellut tiedostot @@ -13910,37 +15033,37 @@ Haluatko tallentaa viestin? Lataa kaikki suositellut tiedostot - + Subject: Aihe: - + From: LƤhettƤjƤ: - + To: Vastaanottaja: - + Cc: Kopio: - + Bcc: Piilokopio: - + Tags: Merkkaukset: - + Reply Vastaa @@ -13980,7 +15103,7 @@ Haluatko tallentaa viestin? - + Send Invite LƤhetƤ kutsu @@ -14024,7 +15147,7 @@ Haluatko tallentaa viestin? Buttons Text Beside Icon - Painikkeet tekstillƤ kuvakkeen vieressƤ + @@ -14032,7 +15155,7 @@ Haluatko tallentaa viestin? - + Confirm %1 as friend HyvƤksy %1 ystƤvƤksesi @@ -14042,12 +15165,12 @@ Haluatko tallentaa viestin? LisƤƤ %1 ystƤvƤksi - + View source - + No subject Ei aihetta @@ -14057,22 +15180,17 @@ Haluatko tallentaa viestin? Lataa - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14082,23 +15200,21 @@ Haluatko tallentaa viestin? - - Show less - + Send invite? + LƤhetƤ kutsu? - - Show more - + Do you really want send a invite with your Certificate? + Haluatko todella lƤhettƤƤ kutsun varmenteellasi? - + Download all Lataa kaikki - + Print Document Tulosta asiakirja @@ -14113,12 +15229,12 @@ Haluatko tallentaa viestin? HTML-tiedostot (*.htm *.html);;Kaikki tiedostot (*) - + Load images always for this message Lataa kuvat aina tƤmƤn viestin osalta - + Hide the attachment pane Piilota liitteet-nƤkymƤ @@ -14140,6 +15256,42 @@ Haluatko tallentaa viestin? Compose Kirjoita + + Reply to selected message + Vastaa valittuun viestiin + + + Reply + Vastaa + + + Reply all to selected message + Vastaa kaikkiin valittuihin viesteihin + + + Reply all + Vastaa kaikille + + + Forward selected message + VƤlitƤ valittu viesti + + + Forward + EteenpƤin + + + Remove selected message + Poista valittu viesti + + + Delete + Tuhoa + + + Print selected message + Tulosta valittu viesti + Print @@ -14218,7 +15370,7 @@ Haluatko tallentaa viestin? MessagesDialog - + New Message Uusi viesti @@ -14228,16 +15380,60 @@ Haluatko tallentaa viestin? Kirjoita viesti - + Reply to selected message + Vastaa valittuun viestiin + + + Reply + Vastaa + + + Reply all to selected message + Vastaa kaikkiin valittuihin viesteihin + + + Reply all + Vastaa kaikille + + + Forward selected message + VƤlitƤ valittu viesti + + + Foward + VƤlitƤ + + + Remove selected message + Poista valittu viesti + + + Delete + Tuhoa + + + Print selected message + Tulosta valittu viesti + + + Print + Tulosta + + + Display + NƤytƤ + + + - - + + Tags Merkkaukset - - + + Inbox Saapuneet @@ -14267,17 +15463,21 @@ Haluatko tallentaa viestin? Roskat - + Total Inbox: Saapuneet yhteensƤ: - + Folders + Kansiot + + + Quick View PikanƤkymƤ - + Print... Tulosta... @@ -14287,6 +15487,26 @@ Haluatko tallentaa viestin? Print Preview Tulostuksen esikatselu + + Buttons Icon Only + Painikkeet vain kuvakkeilla + + + Buttons Text Beside Icon + Painikkeet tekstillƤ kuvakkeiden vieressƤ + + + Buttons with Text + Painikkeet tekstillƤ + + + Buttons Text Under Icon + Painikkeet tekstillƤ kuvakkeiden alla + + + Set Text Under Icon + Aseta teksti kuvakkeen alle + Save As... @@ -14308,7 +15528,7 @@ Haluatko tallentaa viestin? VƤlitƤ viesti - + Subject Aihe @@ -14318,7 +15538,7 @@ Haluatko tallentaa viestin? LƤhettƤjƤ - + Date PƤivƤys @@ -14328,7 +15548,39 @@ Haluatko tallentaa viestin? SisƤltƶ - + Click to sort by attachments + JƤrjestƤ liitetiedostojen mukaan + + + Click to sort by subject + JƤrjestƤ otsikon mukaan + + + Click to sort by read + JƤrjestƤ luettujen mukaan + + + Click to sort by from + JƤrjestƤ lƤhettƤjƤn mukaan + + + Click to sort by date + JƤrjestƤ ajan mukaan + + + Click to sort by tags + JƤrjestƤ merkkausten mukaan + + + Click to sort by star + JƤrjestƤ tƤhtien mukaan + + + Forward selected Message + VƤlitƤ valittu viesti + + + Search Subject Hae aihetta @@ -14337,11 +15589,6 @@ Haluatko tallentaa viestin? Search From Hae lƤhettƤjƤƤ - - - Search To - - Search Date @@ -14368,14 +15615,14 @@ Haluatko tallentaa viestin? Hae liitetiedostoja - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen 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Ƥhdelliset @@ -14449,7 +15696,7 @@ Haluatko tallentaa viestin? - Show in People + Show author in People @@ -14463,7 +15710,7 @@ Haluatko tallentaa viestin? - + No message using %1 tag available. @@ -14478,33 +15725,38 @@ Haluatko tallentaa viestin? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Luonnokset - + No Box selected. - - To - Vastaanottaja + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Ei tƤhdellƤ merkittyjƤ viestejƤ. TƤhtien avulla voit antaa viesteille erikoisaseman ja helpottaa lƶytƤmistƤ. Antaaksesi viestille tƤhden, paina vaaleanharmaata tƤhteƤ viestin vieressƤ. - + No system messages available. + Ei jƤrjestelmƤviestejƤ. + + + To + Vastaanottaja + + + Click to sort by to + JƤrjestƤ vastaanottajan mukaan + + + This message goes to a distant person. + TƤmƤ viesti menee etƤisellƤ henkilƶlle. + + + @@ -14512,6 +15764,26 @@ Haluatko tallentaa viestin? Total: YhteensƤ: + + Messages + Viestit + + + Click to sort by signature + JƤrjestƤ allekirjoituksen mukaan + + + This message was signed and the signature checks + TƤmƤ viesti on allekirjoitettu ja allekirjoitus tƤsmƤƤ + + + This message was signed but the signature doesn't check + TƤmƤ viesti on allekirjoitettu, mutta allekirjoitus ei tƤsmƤƤ + + + This message comes from a distant person. + TƤmƤ viesti tulee etƤiseltƤ henkilƶltƤ. + Mail @@ -14539,17 +15811,7 @@ Haluatko tallentaa viestin? MimeTextEdit - - Save image - Tallenna kuva - - - - Copy image - - - - + Paste as plain text LiitƤ muokkaamattomana tekstinƤ @@ -14603,7 +15865,7 @@ Haluatko tallentaa viestin? - + Expand Laajenna @@ -14613,7 +15875,7 @@ Haluatko tallentaa viestin? Poista kohde - + from alkaen @@ -14648,10 +15910,18 @@ Haluatko tallentaa viestin? Odottava viesti - + Hide Piilota + + Send invite? + LƤhetƤ kutsu? + + + Do you really want send a invite with your Certificate? + Haluatko todella lƤhettƤƤ kutsun varmenteellasi? + NATStatus @@ -14789,7 +16059,7 @@ Haluatko tallentaa viestin? Vertaisen tunniste - + Remove unused keys... Poista kƤyttƤmƤttƶmƤt avaimet... @@ -14799,7 +16069,7 @@ Haluatko tallentaa viestin? - + Clean keyring TyhjennƤ avainnippu @@ -14817,13 +16087,7 @@ Huom.: vanha avainnippusi varmuuskopioidaan. Poisto voi epƤonnistua, jos koneessasi on kƤynnissƤ useita Retroshareja samanaikaisesti. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Avainnipun tiedot @@ -14858,13 +16122,18 @@ Avainippusi varmuuskopioitiin tiedostoon ennen poistoa. 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 ohjelmointivirhe. Ota yhteyttƤ kehittƤjiin. + + + Export/create a new node + Vie/luo uusi solmu + Trusted keys only Luotetut avaimet ainoastaan - + Search name Hae nimeƤ @@ -14874,12 +16143,12 @@ Avainippusi varmuuskopioitiin tiedostoon ennen poistoa. Hae vertaisen tunnistetta - + Profile details... Profiilin tiedot... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14888,6 +16157,13 @@ Reported error: Raportoitu virhe: + + NetworkPage + + Network + Verkko + + NetworkView @@ -14914,7 +16190,7 @@ Raportoitu virhe: NewFriendList - + Offline Friends @@ -14935,7 +16211,7 @@ Raportoitu virhe: - + Groups RyhmƤt @@ -14965,19 +16241,19 @@ Raportoitu virhe: tuo ystƤvƤluettelo mukaan lukien ryhmƤt - - + + Search Haku - + ID Tunniste - + Search ID @@ -14987,12 +16263,12 @@ Raportoitu virhe: - + Show Items NƤytƤ kohteet - + Last contact @@ -15002,7 +16278,7 @@ Raportoitu virhe: IP - + Group RyhmƤ @@ -15117,7 +16393,7 @@ Raportoitu virhe: Kutista kaikki - + Do you want to remove this node? Haluatko poistaa tƤmƤn solmun? @@ -15127,7 +16403,7 @@ Raportoitu virhe: Haluatko poistaa tƤmƤn ystƤvƤn? - + Done! Valmis! @@ -15241,7 +16517,11 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn NewsFeed - + Log entries + LokimerkinnƤt + + + Activity Stream @@ -15256,7 +16536,11 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Poista kaikki - + This is a test. + This is a test. + + + Newest on top Uusin ylimmƤisenƤ @@ -15266,12 +16550,20 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Vanhin ylimmƤisenƤ - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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 + + + Activity @@ -15326,6 +16618,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Blogs Blogit + + Security + Turvallisuus + @@ -15347,6 +16643,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Message Viesti + + Connect attempt + Yhteydenottoyritys + @@ -15363,6 +16663,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Ip security IP-tietoturva + + Log + Loki + Friend Connected @@ -15373,6 +16677,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Circles Piirit + + Links + Linkit + Activity @@ -15425,6 +16733,14 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Chat rooms Keskusteluhuoneet + + Chat Rooms + Keskusteluhuoneet + + + Case sensitive + Huomioi kirjainkoko + Position @@ -15500,16 +16816,24 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Disable All Toaster temporarily EstƤ vƤliaikaisesti kaikki ponnahdusviestit + + Feed + Syƶte + Systray Ilmaisinalue + + Count all unread messages + Laske lukemattomat viestit + NotifyQt - + Passphrase required Salasana vaadittu @@ -15529,12 +16853,12 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn VƤƤrƤ salasana! - + Please enter your Retroshare passphrase Anna Retroshare salasanasi: - + Unregistered plugin/executable RekisterƶimƤtƶn lisƤosa/suoritettava tiedosto @@ -15549,7 +16873,19 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn Tarkista jƤrjestelmƤn kello. - + Examining shared files... + Tarkastellaan jaettuja tiedostoja... + + + Hashing file + Luodaan tiivistettƤ (hash) tiedostolle + + + Saving file index... + Tallennetaan tiedostoluetteloa... + + + Test Test @@ -15560,19 +16896,17 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn - Unknown title Tuntematon otsikko - + - Encrypted message Salattu viesti - + 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). @@ -15580,7 +16914,7 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn OnlineToaster - + Friend Online YstƤvƤ linjoilla @@ -15632,6 +16966,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn PGPKeyDialog + + Dialog + Ikkuna + Profile info @@ -15697,6 +17035,10 @@ ainakin yksi vertainen jƤi lisƤƤmƤttƤ ryhmƤƤn 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> @@ -15726,20 +17068,23 @@ p, li { white-space: pre-wrap; } PGP-avain - - Friend options - - - - + 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> + Keysigning: + + Sign PGP key + Allekirjoita PGP-avain + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15776,7 +17121,12 @@ p, li { white-space: pre-wrap; } SisƤllytƤ allekirjoitukset - + + Options + 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> @@ -15790,6 +17140,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15822,21 +17176,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare Retroshare - - + + Error : cannot get peer details. Virhe haettaessa vertaisen tietoja. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Retroshare ei tue antamaasi avainalgoritmia @@ -15857,7 +17211,7 @@ 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. 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. @@ -15926,6 +17280,10 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Check the password! + + Maybe password is wrong + Salasana saattaa olla vƤƤrin + You haven't set a trust level for this key. @@ -15933,12 +17291,12 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E - + 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: @@ -15964,7 +17322,7 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E PeerItem - + Chat Keskustelu @@ -15985,7 +17343,7 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Poista kohde - + Name: Nimi: @@ -16025,7 +17383,7 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Aikaero: - + Write Message Kirjoita viesti @@ -16039,6 +17397,10 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Friend Connected YstƤvƤ yhdistyneenƤ + + Connect Attempt + Yhteydenottoyritys + Connection refused by peer @@ -16077,13 +17439,17 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Unknown Tuntematon + + Unknown Peer + Tuntematon vertainen + Hide Piilota - + Send Message LƤhetƤ viesti @@ -16135,6 +17501,10 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E Chat with this person as... Keskustelu henkilƶn kanssa... + + Send message to this person + LƤhetƤ viesti tƤlle henkilƶlle + Invite to Circle @@ -16193,6 +17563,10 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E <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 + use "positive" as the default opinion for contacts (instead of neutral) @@ -16250,6 +17624,13 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E <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> + + PhotoCommentItem + + Form + Lomake + + PhotoDialog @@ -16257,11 +17638,23 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E PhotoShare PhotoShare + + Photo + Valokuva + TextLabel TekstiMerkki + + Comment + Kommentti + + + Summary + Yhteenveto + Album / Photo Name @@ -16322,6 +17715,14 @@ Varoitus: Tiedostonsiirto-asetuksissa estit Salli suora latauksen valitsemalla E ... ... + + Add Comment + LisƤƤ kommentti + + + Write a comment... + Kirjoita kommentti... + Album @@ -16392,6 +17793,10 @@ p, li { white-space: pre-wrap; } Create Album Luo albumi + + View Album + NƤytƤ albumi + Edit Album Details @@ -16413,17 +17818,17 @@ p, li { white-space: pre-wrap; } Diaesitys - + My Albums Albumini - + Subscribed Albums Tilatut albumit - + Shared Albums Jaetut albumit @@ -16453,7 +17858,7 @@ yritƤt muokata sitƤ! PhotoSlideShow - + Album Name Albumin nimi @@ -16512,19 +17917,19 @@ yritƤt muokata sitƤ! - - + + TextLabel - + Posted by - + ago @@ -16560,12 +17965,12 @@ yritƤt muokata sitƤ! PluginItem - + TextLabel TekstiMerkki - + Show more details about this plugin NƤytƤ lisƤtietoja lisƤosasta @@ -16711,6 +18116,56 @@ p, li { white-space: pre-wrap; } Plugin look-up directories LisƤosien hakemistot + + Plugin disabled. Click the enable button and restart Retroshare + LisƤosa on estetty. Napsauta salli-painiketta ja kƤynnistƤ Retroshare uudestaan. + + + [disabled] + [estetty] + + + No API number supplied. Please read plugin development manual. + API-numeroa ei annettu. Ole hyvƤ ja lue ohje lisƤosien kehittƤmisestƤ. + + + [loading problem] + [latausongelma] + + + No SVN number supplied. Please read plugin development manual. + SVN-numeroa ei annettu. Ole hyvƤ ja lue ohje lisƤosien kehittƤmisestƤ. + + + Loading error. + Virhe ladattaessa. + + + Missing symbol. Wrong version? + Puuttuva merkki. VƤƤrƤ versio? + + + No plugin object + Ei lisƤosaobjektia + + + Plugins is loaded. + LisƤosat ladattu. + + + Unknown status. + Tila tuntematon. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Rastita tƤmƤ lisƤosien kehittƤmisen yhteydessƤ. TiivistettƤ (hash) +ei tƤllƶin tarkasteta. Tavanomaisessa kƤytƶssƤ +tiivisteen tarkistaminen suojelee sinua +vahingoittamistarkoituksessa tehdyiltƤ lisƤosilta. + Plugins @@ -16780,27 +18235,12 @@ p, li { white-space: pre-wrap; } Aseta ikkuna pƤƤllimmƤiseksi - - Ban this person (Sets negative opinion) - EstƤ tƤmƤ henkilƶ (antaa kielteisen mielipiteen) - - - - Give neutral opinion - Anna neutraali mielipide - - - - Give positive opinion - Anna myƶnteinen mielipide - - - + Choose window color... - + Dock window @@ -16834,6 +18274,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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. + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + TƤmƤn ikkunan sulkeminen lopettaa keskustelun, ilmoittaa vertaiselle ja poistaa salatun tunnelin. + + + Kill the tunnel? + Suljetaanko tunneli? + PostedCardView @@ -16853,7 +18309,7 @@ p, li { white-space: pre-wrap; } Uusi - + Vote up ƄƤnestƤ ylƶs @@ -16873,8 +18329,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Kommentit @@ -16899,13 +18355,13 @@ p, li { white-space: pre-wrap; } - - + + Comment Kommentti - + Comments Kommentit @@ -16933,12 +18389,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + Allekirjoitettu: + + + Notes + Huomiot + + + Create a new Post - + RetroShare Retroshare @@ -16953,22 +18417,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Lataa kuvatiedosto - + Post image @@ -16984,17 +18438,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -17004,7 +18448,23 @@ p, li { white-space: pre-wrap; } - + Submit Post + LƤhetƤ viesti + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + Olet lƤhettƤmƤssƤ linkkiƤ. LƤhettƤmƤssƤsi linkissƤ tulisi mielellƤƤn olla mielenkiintoista sisƤltƶƤ ja kuvaava otsikko. + + + Submit + LƤhetƤ + + + Submit a new Post + LƤhetƤ uusi viesti + + + Please add a Title Ole hyvƤ ja lisƤƤ otsikko @@ -17024,22 +18484,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17054,7 +18504,7 @@ p, li { white-space: pre-wrap; } LƤhetƤ - + Post @@ -17065,7 +18515,7 @@ p, li { white-space: pre-wrap; } Kuva - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17075,7 +18525,7 @@ p, li { white-space: pre-wrap; } Otsikko - + Link Linkki @@ -17083,12 +18533,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + LƤhetetyt linkit + + + <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> + + + Create Topic + Luo aihe + + + My Topics + Aiheeni + + + Subscribed Topics + Tilatut viestiketjut + + + Popular Topics + Suositut viestiketjut + + + Other Topics + Muut viestiketjut + + + Links + Linkit + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17122,7 +18604,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + LƤhetetyn Aihe + + + Add Topic Admins + LisƤƤ viestiketjujen yllƤpitƤjiƤ + + + Select Topic Admins + Valitse viestiketjujen yllƤpitƤjiƤ + + + Create New Topic + Luo uusi aihe + + + Edit Topic + Muokkaa aihetta + + + Update Topic + PƤivitƤ aihe + + + Create New Board @@ -17160,17 +18666,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted Tilaa LƤhetetyt @@ -17186,7 +18682,7 @@ p, li { white-space: pre-wrap; } - + Expand Laajenna @@ -17201,17 +18697,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + LƤhetetyn kuvaus + + + Loading + Ladataan + + + New Posted + Uudet LƤhetetyt + + + Loading... - - Never - Ei koskaan - - - + New Board @@ -17224,18 +18727,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Sivusto + + + + Comments Kommentit - + Copy RetroShare Link Kopioi Retroshare-linkki @@ -17246,12 +18753,12 @@ p, li { white-space: pre-wrap; } - + Comment Kommentti - + Comments Kommentit @@ -17261,7 +18768,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>TƤmƤn viestin kirjoittaja (tunnisteella %1) on pannassa.</b> - + Click to view Picture @@ -17271,17 +18778,21 @@ p, li { white-space: pre-wrap; } Piilota - + Vote up ƄƤnestƤ ylƶs - + Vote down ƄƤnestƤ alas - + \/ + \/ + + + Set as read and remove item Merkitse luetuksi ja poista kohde @@ -17291,7 +18802,7 @@ p, li { white-space: pre-wrap; } Uusi - + New Comment: Uusi kommentti: @@ -17301,7 +18812,7 @@ p, li { white-space: pre-wrap; } Kommentin arvo - + Name Nimi @@ -17342,10 +18853,77 @@ p, li { white-space: pre-wrap; } - + Loading Ladataan + + By + KƤyttƤjƤltƤ + + + + PostedListWidget + + Form + Lomake + + + Hot + Suosittu + + + New + Uusi + + + Top + YlimmƤiseksi + + + Today + TƤnƤƤn + + + Yesterday + Eilen + + + This Week + TƤllƤ viikolla + + + This Month + TƤssƤ kuussa + + + This Year + TƤnƤ vuonna + + + Submit a new Post + LƤhetƤ uusi viesti + + + Next + Seur. + + + RetroShare + Retroshare + + + Please create or choose a Signing Id before Voting + Luo tai valitse allekirjoitustunniste ennen ƤƤnestƤmistƤ + + + Previous + Edellinen + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17365,17 +18943,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17385,15 +18953,15 @@ p, li { white-space: pre-wrap; } YllƤpitƤjƤ: - + - + unknown tuntematon - + Distribution: Jakelu: @@ -17403,42 +18971,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts ViestejƤ - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17458,7 +19026,7 @@ p, li { white-space: pre-wrap; } Suosittu - + Search Haku @@ -17488,17 +19056,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17513,17 +19081,12 @@ p, li { white-space: pre-wrap; } TyhjƤ - + Copy RetroShare Link Kopioi Retroshare-linkki - - Copy http Link - - - - + Show author in People tab @@ -17533,31 +19096,27 @@ p, li { white-space: pre-wrap; } Muokkaa - - + information tietoa - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17572,7 +19131,7 @@ p, li { white-space: pre-wrap; } Aloita tilaus - + Never Ei koskaan @@ -17646,16 +19205,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Ei kanavaa valittuna - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17664,6 +19213,14 @@ p, li { white-space: pre-wrap; } Tabs VƤlilehdet + + Open each topic in a new tab + Avaa jokainen aihe uuteen vƤlilehteen + + + Links + Linkit + Open each board in a new tab @@ -17677,6 +19234,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + LƤhetetty + Board Post @@ -17745,16 +19306,16 @@ p, li { white-space: pre-wrap; } Profiilin hallinta - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17866,7 +19427,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen ProfileWidget - + Edit status message Muokkaa tilaviestiƤ @@ -17882,7 +19443,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Profiilin hallinta - + Public Information Julkiset tiedot @@ -17917,12 +19478,12 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Linjoilla alkaen: - + Other Information Muita tietoja - + My Address Osoitteeni @@ -17966,27 +19527,51 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen PulseAddDialog - + Post From: + LƤhettƤjƤ + + + Account 1 + Tili 1 + + + Account 2 + Tili 2 + + + Account 3 + Tili 3 + + + Add to Pulse LisƤƤ pulssiin - + filter + suodata + + + URL Adder + Linkin lisƤƤjƤ + + + Display As NƤytƤ muodossa - + URL URL - + GroupLabel - + IDLabel @@ -17996,12 +19581,12 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen LƤhettƤjƤ: - + Head - + Head Shot @@ -18031,13 +19616,13 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Kielteinen - - + + Whats happening? - + @@ -18049,22 +19634,12 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18073,13 +19648,17 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Cancel Peru + + Post Pulse to Wire + LƤhetƤ pulssi lennƤttimeen + Post - + Reply to Pulse @@ -18094,24 +19673,34 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Lataa kuvatiedosto + From + LƤhettƤjƤ + + + Date + PƤivƤys + + + ... + ... @@ -18122,7 +19711,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen Lomake - + @@ -18141,7 +19730,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen PulseReply - + icn @@ -18151,7 +19740,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + REPLY @@ -18178,7 +19767,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + FOLLOW @@ -18188,7 +19777,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18208,7 +19797,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18324,7 +19913,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + FOLLOW @@ -18332,42 +19921,37 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18399,7 +19983,7 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen - + FOLLOW @@ -18407,8 +19991,8 @@ ja kƤyttƤƤ "Tuo"-painiketta ladataksesi sen QObject - - + + Confirmation Vahvistus @@ -18679,12 +20263,12 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillƤ Vertaisen tiedot - + File Request canceled Tiedostopyyntƶ peruttu - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. TƤmƤ Retrosharen versio kƤyttƤƤ OpenPGP-SDK:ta. TƤmƤn takia se ei kƤytƤ jƤrjestelmƤjaettua PGP-avainketjua, vaan sillƤ on oma avainketjunsa jaettuna kaikkien kƤynnissƤ olevien Retrosharejen kanssa.<br><br>Sinulla ei nƤytƤ olevan tƤllaista avainketjua, vaikka olemassaolevissa Retroshare-tileissƤ mainitaan PGP-avaimet. TƤmƤ johtuu todennƤkƶisesti siitƤ, ettƤ siirryit juuri ohjelman uudempaan versioon. @@ -18715,7 +20299,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillƤ Odottamaton virhe. Ole hyvƤ ja raportoi 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! @@ -18751,7 +20335,7 @@ The error reported is:" Piilotetun palvelun kƤynnistƤminen ei ollut mahdollista. - + Multiple instances Useita instansseja @@ -18774,26 +20358,6 @@ Lukitustiedosto: Lukitustiedosto: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18814,6 +20378,14 @@ Lukitustiedosto: End-to-end encrypted conversation established + + 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! + Suojattu tunneli toimii. Viestit toimitetaan vƤlittƶmƤsti! + The collection file %1 could not be opened. @@ -18876,7 +20448,7 @@ Virhe: Datan lƤhetys - + You appear to have nodes associated to DSA keys: Sinulla nƤyttƤisi olevan solmuja kytkettynƤ DSA-avaimiin: @@ -18886,7 +20458,7 @@ Virhe: Retroshare ei tƤllƤ hetkellƤ tue DSA-avaimia. Et voi kƤyttƤƤ nƤitƤ solmuja. Olemme pahoillamme. - + enabled kƤytƶssƤ @@ -18896,7 +20468,7 @@ Virhe: estetty - + Move IP %1 to whitelist LisƤƤ IP %1 sallittujen luetteloon @@ -18912,7 +20484,7 @@ Virhe: - + %1 seconds ago %1 sekuntia sitten @@ -18980,7 +20552,7 @@ Security: no anonymous IDs Tietoturva: ei nimettƶmiƤ tunnisteita - + Join chat room Liity keskusteluhuoneeseen @@ -19008,7 +20580,7 @@ Tietoturva: ei nimettƶmiƤ tunnisteita XML-tiedoston jƤsentƤminen epƤonnistui! - + Indefinitely Toistaiseksi @@ -19188,29 +20760,13 @@ Tietoturva: ei nimettƶmiƤ tunnisteita Ban list - - - Name - Nimi - - Node - Solmu - - - - Address - Osoite - - - - Status Tila - + NXS @@ -19403,6 +20959,10 @@ Tietoturva: ei nimettƶmiƤ tunnisteita Click to resume the hashing process Napsauta jatkaaksesi tiivisteen laskentaa + + <p>This certificate contains: + <p>TƤmƤ varmenne sisƤltƤƤ: + Idle @@ -19453,18 +21013,6 @@ Tietoturva: ei nimettƶmiƤ tunnisteita Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19627,7 +21175,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Verkon laajuinen @@ -19810,7 +21358,7 @@ p, li { white-space: pre-wrap; } Lomake - + The loading of embedded images is blocked. Upotettujen kuvien lataaminen on estetty. @@ -19823,7 +21371,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Sallittu oletuksena @@ -19996,22 +21544,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Tallenna kuva - - - - Copy image - - - - + Document source @@ -20019,12 +21557,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20054,6 +21592,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + NƤytƤ sarake... + + + [no title] + [ei otsikkoa] + RatesStatus @@ -20716,7 +22262,7 @@ Jos se on mielestƤsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se u RsDownloadListModel - + Name i.e: file name Nimi @@ -20837,7 +22383,7 @@ Jos se on mielestƤsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se u RsFriendListModel - + Name Nimi @@ -20857,7 +22403,7 @@ Jos se on mielestƤsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se u IP - + Profile ID @@ -20916,7 +22462,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Viesti tullaan vƤlittƤmƤƤn ystƤvillesi. - + [ ... Redacted message ... ] [ ... Muokattu viesti ... ] @@ -20930,6 +22476,11 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. [Unknown] [Tuntematon] + + + [ ... Missing Message ... ] + [ ... Puuttuva viesti ... ] + RsMessageModel @@ -20943,11 +22494,6 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. From LƤhettƤjƤ - - - To - Vastaanottaja - Subject @@ -20970,18 +22516,13 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - Click to sort by read status - + Click to sort by read + JƤrjestƤ luettujen mukaan - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + JƤrjestƤ lƤhettƤjƤn mukaan @@ -21004,9 +22545,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - - - + [Notification] @@ -21027,7 +22566,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Rshare - + Resets ALL stored RetroShare settings. Palauttaa KAIKKI tallennetut Retrosharen asetukset. @@ -21088,7 +22627,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Asettaa Retrosharen kielen. - + Unable to open log file '%1': %2 Lokitiedoston '%1': %2 avaaminen epƤonnistui @@ -21109,7 +22648,11 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Datahakemistoa ei voitu luoda: %1 - + Revision + Tarkistus + + + opmode kƤyttƶtapa @@ -21139,7 +22682,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Retrosharen graafisen kƤyttƶliittymƤn kƤyttƶtiedot - + Invalid language code specified: Virheellinen kielikoodi mƤƤritelty: @@ -21157,7 +22700,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. RshareSettings - + Registry Access Error. Maybe you need Administrator right. Rekisterin kƤyttƶvirhe. Tarvitset ehkƤ JƤrjestelmƤnvalvojan oikeudet. @@ -21174,12 +22717,12 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. SearchDialog - + Enter a keyword here (at least 3 char long) Anna hakusana (vƤhintƤƤn 3 merkkiƤ) - + Start Search Aloita haku @@ -21241,7 +22784,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. TyhjennƤ - + KeyWords Hakusanat @@ -21256,7 +22799,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Hakutunniste - + Filename Tiedostonimi @@ -21356,23 +22899,23 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Lataa valitut - + File Name Tiedoston nimi - + Download Lataa - + Copy RetroShare Link Kopioi Retroshare-linkki - + Send RetroShare Link LƤhetƤ Retroshare-linkki @@ -21382,7 +22925,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - + Download Notice Lataushuomautus @@ -21419,7 +22962,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Poista kaikki - + Folder Kansio @@ -21430,17 +22973,17 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - + New RetroShare Link(s) Uusi Retroshare-linkki/-linkit - + Open Folder Avaa kansio - + Create Collection... Luo kokoelma... @@ -21460,7 +23003,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Lataa kokoelmatiedostosta... - + Collection Kokoelma @@ -21468,7 +23011,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. SecurityIpItem - + Peer details Vertaisen tiedot @@ -21484,22 +23027,22 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Poista kohde - + IP address: IP-osoite: - + Peer ID: Vertaisen tunniste: - + Location: Sijainti: - + Peer Name: Vertaisen nimi: @@ -21516,7 +23059,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Piilota - + but reported: mutta raportoitu: @@ -21541,8 +23084,8 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - - + + <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> @@ -21550,7 +23093,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. SecurityItem - + wants to be friend with you on RetroShare haluaa olla ystƤvƤsi Retrosharessa @@ -21581,7 +23124,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - + Expand Laajenna @@ -21626,12 +23169,12 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Tila: - + Write Message Kirjoita viesti - + Connect Attempt Yhteydenottoyritys @@ -21651,22 +23194,17 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Tuntematon (lƤhtevƤ) yhteydenottoyritys - + Unknown Security Issue Tuntematon tietoturvaongelma - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown Tuntematon @@ -21676,7 +23214,11 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - + Unknown Peer + Tuntematon vertainen + + + Hide Piilota @@ -21686,7 +23228,7 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Haluatko poistaa tƤmƤn ystƤvƤn? - + Certificate has wrong signature!! This peer is not who he claims to be. Varmenteella on vƤƤrƤ allekirjoitus! Vertainen ei ole se, joka hƤn vƤittƤƤ olevansa. @@ -21696,12 +23238,12 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Puuttuva/vioittunut SSL-varmenne. Ei todellinen Retrosharen kƤyttƤjƤ. - + Certificate caused an internal error. Varmenne aiheutti sisƤisen virheen. - + Peer/node not in friendlist (PGP id= Vertainen/solmu ei ole ystƤvƤluettelossa (PGP tunniste= @@ -21760,12 +23302,12 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. - + Local Address Paikallinen osoite - + NAT NAT @@ -21786,22 +23328,22 @@ estƤƤ viestin lƤhettƤmisen eteenpƤin ystƤvillesi. Portti: - + Local network Paikallinen verkko - + External ip address finder Ulkoisen IP-osoitteen paikallistaminen - + UPnP UPnP - + Known / Previous IPs: Tunnetut / aiemmat IP:t: @@ -21817,16 +23359,21 @@ 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. - - - + + Allow RetroShare to ask my ip to these websites: + Salli Retrosharen kysyƤ IP:tƤni nƤiltƤ verkkosivuilta: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. HyvƤksyttƤvƤ porttiavaruus on vƤlillƤ 10-65535. Porttia 1024 pienemmƤt ovat yleensƤ jƤrjestelmƤsi kƤyttƶƶn varattuja. @@ -21836,46 +23383,23 @@ vƤhƤn ystƤviƤ. TƤmƤ auttaa myƶs, jos olet palomuurin tai VPN:n takana.HyvƤksyttƤvƤ porttiavaruus on vƤlillƤ 10-65535. Porttia 1024 pienemmƤt ovat yleensƤ jƤrjestelmƤsi kƤyttƶƶn varattuja. - + Onion Address Onion-osoite - + Discovery On (recommended) EtsintƤ kƤytƶssƤ (suositus) - + 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Ƥ. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off EtsintƤ ei kƤytƶssƤ @@ -21885,7 +23409,7 @@ List of found external IP: Piilotettu - Katso asetukset - + I2P Address I2P-osoite @@ -21910,95 +23434,41 @@ List of found external IP: saapuva ok - - - + + Proxy seems to work. VƤlityspalvelin nƤyttƤƤ toimivan. - - + I2P proxy is not enabled I2P-vƤlityspalvelin ei ole kƤytƶssƤ - - SAMv3 is running and accessible - + + BOB is running and accessible + BOB on kƤynnissƤ ja saatavilla - SAMv3 is not accessible! Is i2p running and SAM enabled? - + BOB is not accessible! Is it running? + BOB ei ole saatavilla! Onko se kƤynnissƤ? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + 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. + + - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client asiakas @@ -22013,7 +23483,73 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -22023,7 +23559,22 @@ When changing options use the buttons at the bottom to restart SAMv3. 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. @@ -22037,12 +23588,12 @@ 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> @@ -22052,7 +23603,7 @@ Tarkista myƶs porttisi! TyhjennƤ - + Download limit (KB/s) Latausraja (KB/s) @@ -22067,23 +23618,23 @@ Tarkista myƶs porttisi! 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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22100,7 +23651,17 @@ Kirjoita nyt osoite (esim. 127.0.0.1) ja portti, jonka valitsit aiemmin I2P-vƤl 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 @@ -22110,7 +23671,12 @@ Voit nyt yhdistƤƤ Piilotettuihin solmuihin, ja vaikka kƤytƶssƤsi olisi norm edistynyt tila - + + I2P Basic Open Bridge + + + + I2P Instance address I2P-instanssiosoite @@ -22120,7 +23686,17 @@ Voit nyt yhdistƤƤ Piilotettuihin solmuihin, ja vaikka kƤytƶssƤsi olisi norm 127.0.0.1 - + + I2P proxy port + I2P-vƤlityspalvelinportti + + + + BOB accessible + BOB saatavissa + + + Address Osoite @@ -22160,7 +23736,7 @@ Voit nyt yhdistƤƤ Piilotettuihin solmuihin, ja vaikka kƤytƶssƤsi olisi norm lataa avain - + Start KƤynnistƤ @@ -22175,7 +23751,12 @@ Voit nyt yhdistƤƤ Piilotettuihin solmuihin, ja vaikka kƤytƶssƤsi olisi norm PysƤytƤ - + + BOB status + BOB-tila + + + Incoming Saapuva @@ -22222,32 +23803,7 @@ Lopuksi varmista, ettƤ portit vastaavat asetuksia. Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokisi.. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay VƤlitys @@ -22302,7 +23858,7 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis YhteensƤ: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22327,7 +23883,7 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis 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>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> @@ -22341,7 +23897,7 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis Verkko - + IP Filters IP-suodattimet @@ -22364,7 +23920,7 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis - + Status Tila @@ -22424,28 +23980,17 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis LisƤƤ sallittujen luetteloon - + Hidden Service Configuration Piilotetun palvelun asetukset - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22461,18 +24006,18 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis - + <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 @@ -22507,12 +24052,12 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis TƤytƤ palveluosoite - + IP Range IP-avaruus - + Reported by DHT for IP masquerading DHT raportoi IP:n naamioinnista @@ -22535,22 +24080,22 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis Sinun lisƤƤmƤsi - + <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>Sallitut IP:t kerƤtƤƤn seuraavista lƤhteistƤ: kƤsin vaihdettuihin varmenteisiin sisƤltyvƤt IP:t, tƤssƤ ikkunassa lisƤƤmƤsi tai tietoturvasyƶtteen nimikkeistƤ poimimasi IP-alueet.</p><p>Oletuksena Retroshare (1) sallii aina yhteyden sallittujen luettelossa oleviin vertaisiin, myƶs IP-osoitteen ollessa estettyjen luettelossa; (2) valinnaisesti vaatii, ettƤ IP:t sisƤltyvƤt sallittujen luetteloon. Voit muuttaa toimintaa vertaiskohtaisesti jokaisen Retroshare-solmun &quot;Tiedot&quot;-ikkunassa.</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 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-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> @@ -22585,22 +24130,26 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis 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Ƥ @@ -22680,7 +24229,7 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis ShareKey - + check peers you would like to share private publish key with rastita vertaiset, joiden kanssa haluat jakaa yksityisen julkaisuavaimesi @@ -22690,12 +24239,12 @@ Jos sinulla on ongelmia yhteydenluonnissa Tor-verkkoon, tarkista myƶs Tor-lokis Jaa ystƤvƤlle - + Share Jaa - + 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. @@ -22714,7 +24263,7 @@ Select the Friends with which you want to Share your Channel. Jaettujen kansioiden hallinta - + Shared directory Jaettu hakemisto @@ -22734,17 +24283,17 @@ Select the Friends with which you want to Share your Channel. NƤkyvyys - + Add new LisƤƤ uusi - + Cancel Peruuta - + Add a Share Directory LisƤƤ jaettava hakemisto @@ -22754,7 +24303,7 @@ Select the Friends with which you want to Share your Channel. Poista - + Apply and close KƤytƤ ja sulje @@ -22845,7 +24394,7 @@ Select the Friends with which you want to Share your Channel. Hakemistoa ei lƶydy tai nimeƤ ei hyvƤksytty. - + 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. TƤmƤ on luettelo jaetuista kansioista. Voit lisƤtƤ ja poistaa kansioita alareunan painikkeiden avulla. Kun lisƤƤt uuden kansion, aluksi kaikki kyseisen kansion tiedostot jaetaan. Voit erikseen mƤƤritellƤ jakomerkkejƤ kullekin jaetulle kansiolle. @@ -22853,7 +24402,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files Tiedostot @@ -22904,16 +24453,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files tarkista tiedostot - + Download selected Lataa valitut @@ -22923,7 +24467,7 @@ Select the Friends with which you want to Share your Channel. Lataa - + Copy retroshare Links to Clipboard Kopioi Retroshare-linkit leikepƶydƤlle @@ -22938,7 +24482,7 @@ Select the Friends with which you want to Share your Channel. LƤhetƤ Retroshare-linkit - + Some files have been omitted Jotkin tiedostot on jƤtetty pois @@ -22954,7 +24498,7 @@ Select the Friends with which you want to Share your Channel. Suositukset - + Create Collection... Luo kokoelma... @@ -22979,7 +24523,7 @@ Select the Friends with which you want to Share your Channel. Lataa kokoelmatiedostosta... - + Some files have been omitted because they have not been indexed yet. Jotkin tiedostot on jƤtetty pois koska niitƤ ei ole luetteloitu vielƤ. @@ -23122,12 +24666,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration Avataan asetuksia - + Create interface Luodaan kƤyttƶliittymƤƤ @@ -23151,7 +24695,7 @@ Select the Friends with which you want to Share your Channel. Tallenna salasana - + Log In Kirjaudu sisƤƤn @@ -23496,7 +25040,7 @@ This choice can be reverted in settings. Tilaviesti - + Message: Viesti: @@ -23741,7 +25285,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Poista kaikki merkkaukset @@ -23777,15 +25321,12 @@ p, li { white-space: pre-wrap; } Muodostetaan Tor-yhteys... - - + Tor status: Tor-tila: - - - + Unknown Tuntematon @@ -23795,13 +25336,18 @@ p, li { white-space: pre-wrap; } Ei kƤynnistynyt - - Hidden address: + + Hidden service address: + Piilotetun palvelun osoite: + + + + Tor bootstrap status: - - + + Not set Ei asetettu @@ -23811,57 +25357,12 @@ p, li { white-space: pre-wrap; } Onion-osoite: - - Error - Virhe - - - - Not connected - Ei yhteyttƤ - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] [Odotetaan Tor...] @@ -23869,17 +25370,21 @@ p, li { white-space: pre-wrap; } TorStatus - + 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> + <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - + Tor is currently offline Tor ei ole nyt linjoilla @@ -23890,12 +25395,11 @@ p, li { white-space: pre-wrap; } - No tor configuration Ei tor-asetuksia - + Tor proxy is OK @@ -23923,7 +25427,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Siirtoasetukset @@ -23934,7 +25438,7 @@ p, li { white-space: pre-wrap; } Samanaikaisten latausten maksimimƤƤrƤ: - + Shared Directories Jaetut hakemistot @@ -23944,27 +25448,22 @@ p, li { white-space: pre-wrap; } Jaa saapuvien hakemisto automaattisesti (suositeltavaa) - + + Edit Share + Muokkaa jakoa + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every Tarkista jaetut hakemistot automaattisesti joka - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) minuutti @@ -24049,7 +25548,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24058,12 +25557,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) EnimmƤislƤhetykset ystƤvƤƤ kohden (0 = ei rajaa) @@ -24088,12 +25582,7 @@ p, li { white-space: pre-wrap; } Salli suora lataaminen: - - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Suoratoisto @@ -24152,13 +25641,38 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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> + Max. tunnel req. forwarded per second: VƤlitettyjen tunnelipyyntƶjen maksimimƤƤrƤ per sekunti: - + + <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> @@ -24168,17 +25682,7 @@ p, li { white-space: pre-wrap; } - - Warning - Varoitus - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Aseta saapuvien hakemisto @@ -24206,7 +25710,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Lataus suoritettu @@ -24230,23 +25734,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Sinulla on %1 kpl valmiita latauksia + + + You have %1 completed download + Sinulla on %1 valmis lataus + + + %1 completed downloads + %1 kpl valmiita latauksia + + + %1 completed download + %1 valmis lataus + TransfersDialog - - + + Downloads Lataukset - + Uploads LƤhetykset - + Name i.e: file name Nimi @@ -24453,12 +25973,7 @@ p, li { white-space: pre-wrap; } MƤƤritƤ... - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Move in Queue... SiirrƤ jonossa... @@ -24483,7 +25998,7 @@ p, li { white-space: pre-wrap; } Valitse hakemisto - + Anonymous end-to-end encrypted tunnel 0x Nimetƶn pƤƤstƤ-pƤƤhƤn salattu tunneli 0x @@ -24504,7 +26019,7 @@ p, li { white-space: pre-wrap; } Retroshare - + @@ -24537,17 +26052,7 @@ p, li { white-space: pre-wrap; } Tiedosto %1 ei ole valmis. Jos se on mediatiedosto, voit yrittƤƤ esikatsella sitƤ. - - Warning - Varoitus - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Muuta tiedostonimeƤ @@ -24562,7 +26067,7 @@ p, li { white-space: pre-wrap; } Kirjoita uusi ja validi tiedostonimi - + Expand all Laajenna kaikki @@ -24689,18 +26194,23 @@ 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> + + + + Columns Sarakkeet - + File Transfers Tiedostojen siirrot - + Path Polku @@ -24710,7 +26220,7 @@ p, li { white-space: pre-wrap; } NƤytƤ Polku-sarake - + Could not delete preview file Esikatselutiedostoa ei voitu poistaa @@ -24720,7 +26230,7 @@ p, li { white-space: pre-wrap; } YritƤ uudelleen? - + Create Collection... Luo kokoelma... @@ -24735,7 +26245,7 @@ p, li { white-space: pre-wrap; } NƤytƤ kokoelma... - + Collection Kokoelma @@ -24745,7 +26255,7 @@ p, li { white-space: pre-wrap; } %1 tunnelia - + Anonymous tunnel 0x Nimetƶn tunneli 0x @@ -24966,6 +26476,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + NimettƶmiƤ tunneleita + Authenticated tunnels @@ -25159,17 +26673,12 @@ p, li { white-space: pre-wrap; } Lomake - + Enable Retroshare WEB Interface Salli Retroshare-verkkokƤyttƶliittymƤ - - Status: - Tila: - - - + Web parameters Verkkoparametrit @@ -25203,33 +26712,35 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + Port: + 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. + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <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Ƥ @@ -25239,12 +26750,12 @@ p, li { white-space: pre-wrap; } 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Ƥ @@ -25381,7 +26892,11 @@ p, li { white-space: pre-wrap; } Wikisivut - + New Group + Uusi ryhmƤ + + + Page Name Sivun nimi @@ -25396,7 +26911,7 @@ p, li { white-space: pre-wrap; } Alkup. tunniste - + << << @@ -25484,7 +26999,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Muokkaushistoria @@ -25519,7 +27034,7 @@ p, li { white-space: pre-wrap; } PageId - + \/ \/ @@ -25549,18 +27064,14 @@ p, li { white-space: pre-wrap; } Merkkaukset - - History - Historia - - - + + Show Edit History NƤytƤ muokkaushistoria - + Status Tila @@ -25581,7 +27092,7 @@ p, li { white-space: pre-wrap; } Palauta - + Submit LƤhetƤ @@ -25653,6 +27164,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + AikavƤli + Create Account @@ -25664,7 +27179,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + PƤivitƤ + + + Settings @@ -25679,7 +27203,7 @@ p, li { white-space: pre-wrap; } Muut - + Who to Follow @@ -25699,7 +27223,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25729,17 +27253,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Viime kuussa + + + Last Week + Viime viikolla + + + Today + TƤnƤƤn + + + New + Uusi + + + from + alkaen + + + until + pƤƤttyen + + + Search/Filter + Haku/suodatus + + + Network Wide + Verkon laajuinen + + + Manage Accounts + Hallitse tilejƤ + + + Showing: + NƤyttƤƤ: + + + Yourself SinƤ itse + + Friends + YstƤvƤt + Following Seurataan - + Custom + RƤƤtƤlƶity + + + Account 1 + Tili 1 + + + Account 2 + Tili 2 + + + Account 3 + Tili 3 + + + CheckBox + Valintaruutu + + + Post Pulse to Wire + LƤhetƤ pulssi lennƤttimeen + + + RetroShare Retroshare @@ -25802,42 +27394,35 @@ p, li { white-space: pre-wrap; } Lomake - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Poista - - - Location: Sijainti: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25882,41 +27467,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - Ei sovellu - - - - Following - Seurataan - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Tuntematon @@ -25994,7 +27549,7 @@ p, li { white-space: pre-wrap; } %1y %2d - + k e.g: 3.1 k k @@ -26027,11 +27582,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Kuvat (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? HyvƤksytkƶ tƤmƤn profiilin allekirjoittamat yhteydet? @@ -26040,6 +27599,10 @@ p, li { white-space: pre-wrap; } 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. + This column indicates the trust level you indicated and whether you signed the profile PGP key @@ -26150,6 +27713,10 @@ p, li { white-space: pre-wrap; } Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_fr.ts b/retroshare-gui/src/lang/retroshare_fr.ts index 127c0fdd7..cc9597926 100644 --- a/retroshare-gui/src/lang/retroshare_fr.ts +++ b/retroshare-gui/src/lang/retroshare_fr.ts @@ -84,6 +84,13 @@ Nœud cachĆ© seulement + + AddCommentDialog + + Add Comment + Ajouter un commentaire + + AddFileAssociationDialog @@ -122,12 +129,12 @@ Retroshare : Recherche avancĆ©e - + Search Criteria CritĆØre(s) de recherche - + Add a further search criterion. Ajouter un critĆØre de recherche. @@ -137,7 +144,7 @@ RĆ©initialiser les critĆØres de recherche. - + Cancels the search. Annuler la recherche. @@ -157,6 +164,177 @@ Rechercher + + AlbumCreateDialog + + Create Album + CrĆ©er un album + + + Album Name: + Nom de l'album : + + + Category: + CatĆ©gorie : + + + Animals + Animaux + + + Family + Famille + + + Friends + Amis + + + Flowers + Fleurs + + + Holiday + Vacances + + + Landscapes + Paysages + + + Pets + Animaux + + + Portraits + Portraits + + + Travel + Voyage + + + Work + Travail + + + Random + AlĆ©atoire + + + Caption: + LĆ©gende : + + + Where: + Où : + + + Photographer: + Photographe : + + + Description: + Description : + + + Share Options + Options de partage + + + Policy: + Politique : + + + Quality: + QualitĆ© : + + + Comments: + Commentaires : + + + Identity: + IdentitĆ© : + + + Public + Public + + + Restricted + LimitĆ© + + + Resize Images (< 1Mb) + Redimensionner les images (< 1Mo) + + + Resize Images (< 10Mb) + Redimensionner les images (< 10Mo) + + + Send Original Images + Envoyer images originales + + + No Comments Allowed + Aucun commentaire admis + + + Authenticated Comments + Commentaires authentifiĆ©s + + + Any Comments Allowed + Aucun commentaire admis + + + Publish with Identity + Publier avec l'identitĆ© + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;">Glissez &amp; DĆ©posez pour insĆ©rer des images. Cliquez sur une image pour modifier les dĆ©tails ci-dessous.</span></p></body></html> + + + Back + Retour + + + Add Photos + Ajouter photos + + + Publish Album + Publier l'album + + + Untitle Album + Album sans titre + + + Say something about this album... + Donnez des dĆ©tails sur cette album... + + + Where were these taken? + Où cela a Ć©tĆ© pris ? + + + Load Album Thumbnail + Charger la miniature de l'album + + AlbumDialog @@ -165,11 +343,19 @@ Album Album + + Album Thumbnail + Miniature de l'album + TextLabel Etiquette + + Summary + RĆ©sumĆ© + Album Title: @@ -185,6 +371,34 @@ Caption LĆ©gende + + Where: + Où : + + + When + Quand : + + + Description: + Description : + + + Share Options + options de partage + + + Comments + Commentaires + + + Publish Identity + Publier l'identitĆ© + + + Visibility + VisibilitĆ© + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -553,7 +767,7 @@ 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. Avertissements : Ces services sont expĆ©rimentaux. Aidez nous Ć  les tester @@ -569,6 +783,14 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Circles Cercles + + GxsForums + GxsForums + + + GxsChannels + ChaĆ®nesGxs + The Wire @@ -580,23 +802,10 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Photos - - AspectRatioPixmapLabel - - - Save image - Sauvegarder image - - - - Copy image - - - AttachFileItem - + %p Kb %p Ko @@ -633,13 +842,17 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Browse... + + Add Avatar + Ajouter avatar + Remove Supprimer - + Set your Avatar picture Mettre votre image d'avatar @@ -658,6 +871,10 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Charger l'avatar + AvatarWidget @@ -726,10 +943,22 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  RĆ©initialiser - + Receive Rate + Vitesse de rĆ©ception + + + Send Rate + Vitesse d'Ć©mission + + + Always on Top Toujours visible + + Style + Style + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  % Opaque % opaque + + Save + Sauvegarder + + + Cancel + Annuler + Since: Statistiques enregistrĆ©es depuis : + + Hide Settings + Masquer les options + BandwidthStatsWidget @@ -822,7 +1063,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  BoardPostDisplayWidgetBase - + Comment Commentaire @@ -852,12 +1093,12 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>L'auteur de ce message (avec l'ID %1) est banni.</b> - + ago @@ -865,7 +1106,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  BoardPostDisplayWidget_card - + Vote up Voter pour @@ -885,7 +1126,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  \/ - + Posted by @@ -923,7 +1164,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  BoardPostDisplayWidget_compact - + Vote up Voter pour @@ -943,7 +1184,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  \/ - + Click to view picture @@ -973,7 +1214,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Partager - + Toggle Message Read Status Changer l'Ć©tat de lecture du message @@ -983,7 +1224,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Nouveau - + TextLabel @@ -991,12 +1232,12 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  BoardsCommentsItem - + I like this J'aime Ƨa - + 0 0 @@ -1016,18 +1257,18 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  Avatar - + New Comment - + Copy RetroShare Link - + Expand @@ -1042,12 +1283,12 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  - + Name Nom - + Comm value @@ -1216,17 +1457,17 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  ChannelPage - + Channels ChaĆ®nes - + Tabs Onglets - + General GĆ©nĆ©ral @@ -1236,17 +1477,11 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  - - Downloads - TĆ©lĆ©chargements + Load posts in background (Thread) + Charger les messages en tĆ¢che de fond (fils, "threads") - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Ouvrir chaque chaĆ®ne dans un nouvel onglet @@ -1254,7 +1489,7 @@ Mais rappelez-vous : Toutes les donnĆ©es *SERONT* perdus quand nous mettrons Ć  ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this J'aime Ƨa @@ -1302,18 +1537,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link - + Expand @@ -1328,7 +1563,7 @@ into the image, so as to - + Name Nom @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + Commentaire + + + + Comments + Commentaires + + + Hide Cacher @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name Nom @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Afficher le salon de tchat @@ -1549,6 +1794,22 @@ into the image, so as to Chats Tchats + + You have %1 new messages + Vous avez %1 nouveaux messages + + + You have %1 new message + Vous avez %1 nouveau message + + + %1 new messages + %1 nouveaux messages + + + %1 new message + %1 nouveau message + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby Salon inconnu - - + + Remove All Tout supprimer @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nom - + Count Participants @@ -1601,7 +1861,37 @@ into the image, so as to Sujet - + + Private Subscribed chat rooms + Salons de tchat privĆ©s abonnĆ©s + + + + + Public Subscribed chat rooms + Salons de tchat publics abonnĆ©s + + + + Private chat rooms + Salons de tchat privĆ©s + + + + + Public chat rooms + Salons de tchat publics + + + <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 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 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> + + + Create chat room CrĆ©er salon de tchat @@ -1611,7 +1901,7 @@ into the image, so as to Quitter ce salon - + Create a non anonymous identity and enter this room CrĆ©er une identitĆ© non anonyme et entrer dans cette salle @@ -1670,12 +1960,12 @@ SĆ©lectionnez un des salons de tchat Ć  gauche pour en afficher les dĆ©tails. Double-cliquez sur un salon pour y entrer et discuter. - + %1 invites you to chat room named %2 %1 vous invite Ć  un salon de tchat nommĆ©e %2 - + Choose a non anonymous identity for this chat room: Choisissez une identitĆ© anonyme pour de salon de tchat. @@ -1685,31 +1975,31 @@ Double-cliquez sur un salon pour y entrer et discuter. Choisissez une identitĆ© pour ce salon : - + Create chat lobby + CrĆ©er un nouveau salon de tchat + + + [No topic provided] [Sans sujet dĆ©terminĆ©] - - + Selected lobby info + Info du salon sĆ©lectionnĆ© + + + Private PrivĆ© - - - + Public Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted IDs anonymes acceptĆ©es @@ -1719,25 +2009,42 @@ Double-cliquez sur un salon pour y entrer et discuter. Retirer des abonnements auto - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Ajouter aux abonnements auto - + Search Chat lobbies Rechercher des salons de tchat - + Search Name Rechercher par nom - + Subscribed + AbonnĆ© + + + Columns Colonnes + + Yes + Oui + + + No + Non + Chat rooms @@ -1749,47 +2056,47 @@ Double-cliquez sur un salon pour y entrer et discuter. - + Chat Room info - + Chat room Name: Nom du salon de chat : - + Chat room Id: ID du salon de chat : - + Topic: Sujet : - + Type: Type : - + Security: SĆ©curitĆ© : - + Peers: Contacts : - - - - - - + + + + + + TextLabel Etiquette @@ -1804,24 +2111,13 @@ Double-cliquez sur un salon pour y entrer et discuter. Aucune IDs anonymes - + Show Montrer - - Private Subscribed - - - - - - Public Subscribed - - - - + column colonn @@ -1835,7 +2131,7 @@ Double-cliquez sur un salon pour y entrer et discuter. ChatMsgItem - + Remove Item Supprimer @@ -1880,22 +2176,46 @@ Double-cliquez sur un salon pour y entrer et discuter. ChatPage - + General GĆ©nĆ©ral + + Distant Chat + Tchat distant + Everyone Tout le monde + + Contacts + Contacts + Nobody Personne - + Accept encrypted distant chat from + Accepter un tchat Ć©loignĆ© et chiffrĆ© de la part de + + + Chat Settings + ParamĆØtres du tchat + + + Enable Emoticons Private Chat + Activer les Ć©moticĆ“nes pour le tchat privĆ© + + + Enable Emoticons Group Chat + Activer les Ć©moticĆ“nes pour le tchat public + + + Enable custom fonts Activer les polices personnalisĆ©es @@ -1904,6 +2224,10 @@ Double-cliquez sur un salon pour y entrer et discuter. Enable custom font size Activer la taille de la police personnalisĆ©e + + Minimum font size + Taille de police minimale + Enable bold @@ -1915,7 +2239,7 @@ Double-cliquez sur un salon pour y entrer et discuter. Activer l'italique - + General settings @@ -1940,7 +2264,11 @@ Double-cliquez sur un salon pour y entrer et discuter. Charger les images intĆ©grĆ©es - + Chat Lobby + Salons de tchat + + + Blink tab icon IcĆ“ne d'onglet clignotant @@ -1949,6 +2277,10 @@ Double-cliquez sur un salon pour y entrer et discuter. Do not send typing notifications N'envoyez pas de notifications de frappe + + Private Chat + Tchat privĆ© + Open Window for new chat @@ -1970,7 +2302,11 @@ Double-cliquez sur un salon pour y entrer et discuter. FenĆŖtre/IcĆ“ne d'onglet clignotant - + Chat Font + Police d'Ć©criture + + + Change Chat Font Changer la police du tchat @@ -1980,10 +2316,14 @@ Double-cliquez sur un salon pour y entrer et discuter. Police d'Ć©criture : - + History Historique + + Style + Style + @@ -1998,13 +2338,17 @@ Double-cliquez sur un salon pour y entrer et discuter. Variant: Variante : + + Group chat + Tchat public + Private chat Tchat privĆ© - + Choose your default font for Chat. Choisissez votre police de caractĆØre par dĆ©faut pour les tchats. @@ -2068,28 +2412,22 @@ Double-cliquez sur un salon pour y entrer et discuter. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/><body><p align="justify">Dans cet onglet, vous pouvez configurer le nombre de messages de tchat que Retroshare gardera sauvegardĆ© sur le disque et combien de la conversation prĆ©cĆ©dente, elle affiche, pour les diffĆ©rents systĆØmes de discussions. La pĆ©riode de stockage max permet de supprimer les anciens messages et empĆŖche l'historique des conversations de remplir les tchats volatiles (par exemple, les salons de tchat et tchat Ć  distance).</p></body></html> + + Chatlobbies + Salons de tchat + Enabled: ActivĆ© : - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2437,7 @@ Double-cliquez sur un salon pour y entrer et discuter. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Salons de tchat @@ -2206,7 +2534,11 @@ Double-cliquez sur un salon pour y entrer et discuter. PĆ©riode maximale de stockage, en jours (0=garde tout) : - + Search by default + Recherche prĆ©configurĆ©e + + + Case sensitive Respecter la casse @@ -2245,6 +2577,10 @@ Double-cliquez sur un salon pour y entrer et discuter. Threshold for automatic search Seuil pour recherche automatique + + Default identity for chat lobbies: + IdentitĆ© par dĆ©faut pour les salons de tchat : + Show Bar by default @@ -2312,7 +2648,7 @@ Double-cliquez sur un salon pour y entrer et discuter. ChatToaster - + Show Chat Afficher le tchat @@ -2348,7 +2684,7 @@ Double-cliquez sur un salon pour y entrer et discuter. ChatWidget - + Close Fermer @@ -2383,12 +2719,12 @@ Double-cliquez sur un salon pour y entrer et discuter. Italique - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon InsĆ©rer Ć©moticĆ“ne @@ -2468,6 +2804,11 @@ Double-cliquez sur un salon pour y entrer et discuter. Insert horizontal rule InsĆ©rer ligne horizontale + + + Save image + Sauvegarder image + Import sticker @@ -2505,7 +2846,7 @@ Double-cliquez sur un salon pour y entrer et discuter. - + is typing... Ć©crit... @@ -2529,7 +2870,7 @@ aprĆØs la conversion en HTML. Choisissez votre police de caractĆØre. - + Do you really want to physically delete the history? Etes-vous vraiment sĆ»r de vouloir supprimer dĆ©finitivement l'historique ? @@ -2579,7 +2920,7 @@ aprĆØs la conversion en HTML. est occupĆ© et peut ne pas rĆ©pondre - + Find Case Sensitively Trouver en tenant compte de la casse @@ -2601,7 +2942,7 @@ aprĆØs la conversion en HTML. Ne pas cesser de colorer aprĆØs X articles trouvĆ©s (nĆ©cessite davantage de CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Trouver le prĆ©cĆ©dent </b><br/><i>Ctrl+Shift+G</i> @@ -2616,12 +2957,16 @@ aprĆØs la conversion en HTML. <b>Trouver </b><br/><i>Ctrl+F</i> - + (Status) (Statut) - + Set text font & color + RĆ©gler police de caractĆØres du texte et couleur + + + Attach a File Joindre un fichier @@ -2637,12 +2982,12 @@ aprĆØs la conversion en HTML. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Marquer ce texte comme sĆ©lectionnĆ©</b><br><i>Ctrl+M</i> - + Person id: Id d'identitĆ©: @@ -2654,12 +2999,12 @@ 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Ć© - + items found. articles trouvĆ©s. @@ -2679,7 +3024,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Saisissez votre message ici - + Don't stop to color after Ne pas cesser de colorer aprĆØs @@ -2705,7 +3050,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. CirclesDialog - + Showing details: Afficher les dĆ©tails : @@ -2727,7 +3072,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - + Personal Circles Cercles personnels @@ -2753,7 +3098,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - + Friends Amis @@ -2813,7 +3158,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Amis des Amis - + External Circles (Admin) Cercles extĆ©rieurs (Admin) @@ -2829,7 +3174,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - + Circles Cercles @@ -2881,48 +3226,43 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - + RetroShare Retroshare - + - + Error : cannot get peer details. Erreur : impossible d'obtenir les dĆ©tails de ce contact. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2934,7 +3274,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Chiffrement - + Not connected Non connectĆ© @@ -3016,17 +3356,25 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.aucun - + <p>This certificate contains: <p>Ce certificat contient : - + <li>a <b>node ID</b> and <b>name</b> <li>un <b>ID de noeud</b> et <b>nom</b> - + an <b>onion address</b> and <b>port</b> + une <b>adresse onion</b> et <b>port</b> + + + an <b>IP address</b> and <b>port</b> + une <b>addresse IP</b> et <b>port</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Vous pouvez utiliser ce certificat pour vous faire de nouveaux amis. Envoyez-le par courrier Ć©lectronique, ou donnez-le de main Ć  la main.</p> @@ -3041,7 +3389,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.<html><head/><body><p>Ceci est la mĆ©thode de chiffrement utilisĆ©e par <span style=" font-weight:600;">OpenSSL</span>. La connexion aux noeuds amis est </p><p>toujours lourdement chiffrĆ©e, et si la DHE est prĆ©sente la connexion utilise ensuite </p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - + with avec @@ -3058,16 +3406,118 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Connect Friend Wizard Assistant de connexion Ć  un ami + + Add a new Friend + Ajouter un nouvel ami + + + &You get a certificate file from your friend + Vous avez un possĆ©dez le certificat de votre ami dans un &Fichier + + + &Make friend with selected friends of my friends + Devenir a&mi avec les amis sĆ©lectionnĆ©s de vos amis + + + &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) + + + Include signatures + Inclure les signatures + + + Copy your Cert to Clipboard + Copier votre certificat dans le presse-papier + + + Save your Cert into a File + Enregistrer votre certificat dans un fichier + + + Run Email program + Envoyer par courrier Ć©lectronique + Open Cert of your friend from File Ouvrir le certificat de votre ami depuis un fichier + + Open certificate + Ouvrir le certificat + + + Please, paste your friend's Retroshare certificate into the box below + Veuillez coller le certificat de votre ami Retroshare dans la case ci-dessous + + + Certificate files + Fichiers de certificats + + + Use PGP certificates saved in files. + Utiliser des certificats PGP contenus dans des fichiers. + + + Import friend's certificate... + Importer le certificat d'un ami... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Vous devez gĆ©nĆ©rer un fichier Ć  partir de votre certificat et le transmettre Ć  votre ami. Vous pouvez aussi utiliser un fichier gĆ©nĆ©rĆ© auparavant. + + + Export my certificate... + Exporter mon certificat... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Glisser et dĆ©poser le certificat de votre ami dans cette fenĆŖtre ou importez le Ć  partir de votre disque dur + + + Browse + Parcourir + + + Friends of friends + Amis de vos amis + + + Select now who you want to make friends with. + Veuillez selectionner avec qui vous souhaitez devenir ami. + + + Show me: + Afficher : + + + Make friend with these peers + Devenir ami avec ces contacts + RetroShare ID ID Retroshare + + Use RetroShare ID for adding a Friend which is available in your network. + Utilisez l'ID Retroshare pour ajouter un ami qui est disponible dans votre rĆ©seau. + + + Add Friends RetroShare ID... + Ajouter l'ID d'amis Retroshare... + + + Paste Friends RetroShare ID in the box below + Coller l'ID Retroshare d'amis ci-dessous + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Entrez l'ID Retroshare de votre ami, p. ex.. Contact@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3109,7 +3559,27 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Email - + Invite Friends by Email + Inviter un ami Ć  rejoindre Retroshare par e-mail + + + Enter your friends' email addresses (separate each one with a semicolon) + Entrez les adresses e-mail de vos amis (sĆ©parĆ©es par un point-virgule) + + + Your friends' email addresses: + Destinataire(s) : + + + Enter Friends Email addresses + Entrez l'adresse e-mail de vos amis + + + Subject: + Sujet : + + + @@ -3125,32 +3595,77 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.DĆ©tails de la demande - + Peer details DĆ©tails du contact - + Name: Nom : + + Email: + E-Mail : + + + Node: + Noeud : + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Veuillez noter que Retroshare nĆ©cessitera beaucoup de bande passante, mĆ©moire et CPU si vous ajoutez de nombreux amis. Vous pouvez ajouter autant d'amis que vous le souhaitez, mais avec avec plus de 40 cela nĆ©cessitera probablement trop de ressources. + Location: Emplacement : - + Options Options - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Cet assistant vous aidera Ć  vous connecter Ć  vos amis avec Retroshare.<br>Il y a diverses possibilitĆ©s pour le faire : + + + Enter the certificate manually + Entrer manuellement le certificat + + + Enter RetroShare ID manually + Entrer manuellement l'ID Retroshare + + + &Send an Invitation by Web Mail Providers + Envoyez une invitation par me&ssagerie Ć©lectronique + + + Recommend many friends to each other + Recommander plusieurs amis les uns aux autres + + + RetroShare certificate + Certificat Retroshare + + + Please paste below your friend's Retroshare certificate + Veuillez coller ci-dessous le certificat de votre ami Retroshare + + + Paste certificate + Collez le 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>Cette boĆ®te s'attend au certificat de votre ami Retroshare. AVERTISSEMENT : cela est diffĆ©rent de la clĆ© PGP de votre ami. Ne collez pas ici la clĆ© de profil de votre ami (mĆŖme pas une partie). Cela ne fonctionnera pas.</p></body></html> - + Add friend to group: Ajouter l'ami Ć  un groupe : @@ -3160,7 +3675,7 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.Ami authentifiĆ© (clĆ© PGP signĆ©e) - + Please paste below your friend's Retroshare ID @@ -3185,22 +3700,16 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Ajouter cet ami pour communiquer avec lui - + To accept the Friend Request, click the Finish button. + Pour accepter la demande d'amitiĆ©, cliquez sur le bouton Terminer. + + + Sorry, some error appeared DĆ©solĆ©, des erreurs sont survenues @@ -3220,27 +3729,32 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message.ƀ propos de votre ami : - + Key validity: ValiditĆ© de la clĆ© : - + Profile ID: - + + Signers + Ils lui font aussi confiance : + + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> <html><head/><body><p><span style=" font-size:10pt;">Signer la clĆ© d'un ami est un moyen d'exprimer votre confiance en cet ami, Ć  vos autres amis. Les signatures sous cryptographie attestent que les propriĆ©taires des clĆ©s rĆ©pertoriĆ©es reconnaissent la clĆ© PGP actuelle comme authentique.</span></p></body></html> - + This peer is already on your friend list. Adding it might just set it's ip address. Ce contact est dĆ©jĆ  dans votre liste d'am. L'ajouter se limitera Ć  enregistrer son adresse IP. - + To accept the Friend Request, click the Accept button. @@ -3286,17 +3800,49 @@ Double cliquez pour ajouter son nom dans le champ de saisie du message. - + Certificate Load Failed Le chargement du certificat Ć  Ć©chouĆ© - + Cannot get peer details of PGP key %1 + Impossible d'obtenir les dĆ©tails de la clĆ© PGP %1 + + + Any peer I've not signed + Tous les contacts dont vous n'avez pas signĆ© les certificats + + + Friends of my friends who already trust me + Amis de vos amis qui vous ont dĆ©jĆ  accordĆ© leur confiance + + + Signed peers showing as denied + Contacts signĆ©es montrĆ©s comme refusĆ©s + + + Peer name + Nom du contact + + + Also signed by + Ɖgalement signĆ© par + + + Peer id + ID du contact + + + Certificate appears to be valid + Le certificat semble valide + + + Not a valid Retroshare certificate! Certificat Retroshare non valide! - + RetroShare Invitation Invitation Retroshare @@ -3318,12 +3864,12 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg - + 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? - + @@ -3331,7 +3877,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg - + This key is already on your trusted list Cette clĆ© est dĆ©jĆ  dans votre liste de confiance. @@ -3371,7 +3917,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Vous avez une demande d'amitiĆ© de - + Profile password needed. @@ -3396,7 +3942,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg - + Valid Retroshare ID @@ -3406,7 +3952,47 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg - + Certificate Load Failed:file %1 not found + L'importation du certificat a Ć©chouĆ© : le fichier %1 n'a pas Ć©tĆ© trouvĆ© + + + This Peer %1 is not available in your Network + Ce contact %1 n'est pas disponible dans votre rĆ©seau + + + Use new certificate format (safer, more robust) + Utiliser le nouveau format de certificat (plus sure, plus robuste) + + + Use old (backward compatible) certificate format + Utilisez l'ancien format de certificat (rĆ©trocompatible) + + + Remove signatures + Supprimer les signatures + + + RetroShare Invite + Invitation Retroshare + + + Connect Friend Help + Aide pour l'envoi du certificat + + + You can copy this text and send it to your friend via email or some other way + Vous pouvez copier votre certificat et l'envoyer Ć  vos amis par courrier Ć©lectronique ou par tout autre moyen + + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Votre certificat a Ć©tĆ© copiĆ© dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + + + Save as... + Enregistrer sous... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3445,7 +4031,11 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg *** Aucune *** - + Use as direct source, when available + Utiliser en source directe, quand disponible + + + IP-Addr: Addr-IP : @@ -3455,7 +4045,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Adresse IP - + Show Advanced options Afficher les options avancĆ©es @@ -3464,6 +4054,10 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> <html><head/><body><p><span style=" font-size:10pt;">Signer la clĆ© d'un ami est une faƧon d'exprimer Ć  vos autres amis votre confiance en cet ami. Cela les aide Ć  dĆ©cider, en se basant sur votre propre confiance, si ils doivent permettre des connexions depuis cette clĆ©. Signer une clĆ© est absolument facultatif et ne peut pas ĆŖtre dĆ©fait, alors faites-le avec sagesse.</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 vĆ©rifie pĆ©riodiquement vos listes d'amis pour les recherches de fichier correspondant Ć  vos transferts, afin d'Ć©tablir un transfert direct. Dans ce cas, votre ami sait que vous tĆ©lĆ©chargez le fichier.</p><p align="justify">Pour Ć©viter ce comportement pour cet ami uniquement, dĆ©cochez cette case. Vous pouvez toujours effectuer un transfert direct si vous le demandez explicitement, par ex. TĆ©lĆ©chargement de la liste de fichiers de votre ami. Ce paramĆØtre est appliquĆ© Ć  tous les emplacements de mĆŖme ami.</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> @@ -3474,13 +4068,45 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg <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>Les personnes qui ont cette option ne peuvent pas se connecter si leur adresse de connexion n'est pas dans la liste blanche. Cela vous protĆØge contre les attaques de transfert de trafic. Lorsqu'ils sont utilisĆ©s, les homologues rejetĆ©s seront signalĆ©s par des &quot;alertes de sĆ©curitĆ©&quot; dans le fil d'actualitĆ©. De lĆ , vous pouvez mettre en liste blanche ou noir leur IP. S'applique Ć  tous les emplacements de mĆŖme personne.</p></body></html> + + Recommend many friends to each others + Recommander plusieurs amis les uns aux autres + + + Friend Recommendations + Recommandations d'amis + + + The text below is your Retroshare certificate. You have to provide it to your friend + Le texte ci-dessous est votre certificat Retroshare. Vous devez le fournir Ć  votre ami + + + Message: + Message : + + + Recommend friends + Amis recommandĆ©s + + + To + Pour + + + Please select at least one friend for recommendation. + Veuillez sĆ©lectionner au moins un ami Ć  recommander. + + + Please select at least one friend as recipient. + Veuillez sĆ©lectionner au moins un destinataire. + Add key to keyring Ajouter la clĆ© au trousseau - + This key is already in your keyring Cette clĆ© est dĆ©jĆ  dans votre trousseau @@ -3496,7 +4122,7 @@ l'envoi de messages distants Ć  ce contact mĆŖme si vous n'ĆŖtes pas amis. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Le certificat a un mauvais numĆ©ro de version. Souvenez-vous que les rĆ©seaux v0.6 et v0.5 sont incompatibles. @@ -3531,7 +4157,7 @@ contact mĆŖme si vous n'ĆŖtes pas amis. Ajouter l'IP dans la liste blanche - + No IP in this certificate! Pas d'IP dans ce certificat ! @@ -3541,10 +4167,27 @@ contact mĆŖme si vous n'ĆŖtes pas amis. <p>Ce certificat n'a pas d'IP. Vous devrez compter sur la dĆ©couverte et la DHT pour le trouver. Parce que vous exigez l'autorisation liste blanche, le pair lĆØvera un avertissement de sĆ©curitĆ© dans l'onglet "Fil d'actualitĆ©s". De lĆ , vous pourrez passer son IP en liste blanche.</p> - + + [Unknown] + [Inconnu] + + + Added with certificate from %1 AjoutĆ©e avec certificat depuis %1 + + Paste Cert of your friend from Clipboard + Coller le certificat de votre ami depuis le presse-papier + + + Certificate Load Failed:can't read from file %1 + Ɖchec de chargement du certificat : ne peut pas lire le fichier %1 + + + Certificate Load Failed:something is wrong with %1 + Ɖchec de chargement du certificat : quelque chose ne va pas dans %1 + ConnectProgressDialog @@ -3606,7 +4249,7 @@ contact mĆŖme si vous n'ĆŖtes pas amis. - + UDP Setup RĆ©glage UDP @@ -3642,7 +4285,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-family:'Lucida Grande'; font-size:13pt;">vous pouvez fermer la fenĆŖtre.</span></p></body></html> - + Connection Assistant Assistant de connexion @@ -3652,20 +4295,17 @@ p, li { white-space: pre-wrap; } ID du contact incorrecte - - + Unknown State Ɖtat inconnu - - + Offline Hors ligne - - + Behind Symmetric NAT DerriĆØre un NAT symĆ©trique @@ -3675,14 +4315,12 @@ p, li { white-space: pre-wrap; } DerriĆØre un NAT & Pas de DHT - - + NET Restart RedĆ©marrage du NET - - + Behind NAT DerriĆØre un NAT @@ -3692,8 +4330,7 @@ p, li { white-space: pre-wrap; } Pas de DHT - - + NET STATE GOOD! ƉTAT DU NET : BON ! @@ -3718,7 +4355,7 @@ p, li { white-space: pre-wrap; } Recherche de contacts RS - + Lookup requires DHT Lookup nĆ©cessite la DHT @@ -4010,7 +4647,7 @@ p, li { white-space: pre-wrap; } Veuillez rĆ©essayez d'importer le certificat en entier - + @@ -4018,8 +4655,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! FORWARD INVƉRIFIABLE ! @@ -4029,7 +4665,7 @@ p, li { white-space: pre-wrap; } FORWARD INVƉRIFIABLE & PAS DE DHT - + Searching Recherche @@ -4065,12 +4701,12 @@ p, li { white-space: pre-wrap; } DĆ©tails du cercle - + Name Nom - + <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> @@ -4090,7 +4726,7 @@ p, li { white-space: pre-wrap; } - + IDs IDs @@ -4110,18 +4746,18 @@ p, li { white-space: pre-wrap; } Filtre - + Cancel Annuler - + Nickname Surnom - + Invited Members Membres invitĆ©s @@ -4136,7 +4772,15 @@ p, li { white-space: pre-wrap; } Personnes connues - + ID + ID + + + Type + Type + + + Name: Nom : @@ -4176,19 +4820,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Les cercles peuvent ĆŖtre limitĆ©s aux membres d'un autre cercle. Seuls les membres de ce deuxiĆØme cercle seront autorisĆ©s Ć  voir le nouveau cercle et son contenu (la liste des membres, etc)</p></body></html> - - + Only visible to members of: + Seulement visible par les membres de : + + + + RetroShare Retroshare - + Please set a name for your Circle S'il vous plaĆ®t donnez un nom Ć  votre cercle - + No Restriction Circle Selected Aucune restriction de cercle sĆ©lectionnĆ©e @@ -4198,24 +4846,12 @@ p, li { white-space: pre-wrap; } Aucune limitation de cercle sĆ©lectionnĆ©e - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Inconnu] - + Add Ajouter @@ -4225,7 +4861,7 @@ p, li { white-space: pre-wrap; } Enlever - + Search Rechercher @@ -4240,6 +4876,10 @@ p, li { white-space: pre-wrap; } Signed SignĆ© + + Signed by known nodes + SignĆ© par des noeuds connus + Edit Circle @@ -4256,6 +4896,10 @@ p, li { white-space: pre-wrap; } PGP Identity IdentitĆ© PGP + + Anon Id + ID anon + Circle name @@ -4278,13 +4922,17 @@ p, li { white-space: pre-wrap; } CrĆ©er un nouveau cercle - + Create CrĆ©er - + PGP Linked Id + ID PGP liĆ©e + + + Add Member Ajouter membre @@ -4303,7 +4951,7 @@ p, li { white-space: pre-wrap; } CrĆ©er un groupe - + Group Name: Nom du groupe : @@ -4338,7 +4986,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nouvel article sur la chaĆ®ne @@ -4348,7 +4996,7 @@ p, li { white-space: pre-wrap; } Message - + Post @@ -4409,11 +5057,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Utiliser "glisser-dĆ©poser" / le bouton d'ajout, pour hacher de nouveaux fichiers.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Copier/collez des liens Retroshare depuis vos partages.</span></p></body></html> + + Add File to Attach + Joindre un fichier + Add Channel Thumbnail Incorporer une miniature + + Message + Message + + + Subject : + Sujet : + @@ -4499,17 +5159,17 @@ p, li { white-space: pre-wrap; } - + RetroShare Retroshare - + This file already in this post: - + Post refers to non shared files @@ -4528,18 +5188,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Fichier dĆ©jĆ  ajoutĆ© et hashĆ© + Please add a Subject Veuillez ajouter un sujet Ć  votre message - - Cannot publish post - - - - + Load thumbnail picture Charger la miniature @@ -4554,12 +5213,18 @@ p, li { white-space: pre-wrap; } Cacher - + + Generate mass data GĆ©nĆ©rer des donnĆ©es en masse - + + Do you really want to generate %1 messages ? + Voulez-vous vraiment gĆ©nĆ©rer %1 messages ? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Vous ĆŖtes sur le point d'ajouter les fichiers que vous ne partagez pas actuellement. Voulez-vous toujours faire cela ? @@ -4593,7 +5258,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Poster un message sur le forum @@ -4602,6 +5267,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Sujet + Attach File @@ -4622,8 +5291,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4642,7 +5311,7 @@ p, li { white-space: pre-wrap; } Vous pouvez joindre des fichiers par glisser/dĆ©poser - + Post @@ -4672,17 +5341,17 @@ p, li { white-space: pre-wrap; } - + No Forum Aucun forum - + In Reply to En rĆ©ponse Ć  - + Title Titre @@ -4736,7 +5405,7 @@ Voulez-vous annuler ce message? Charger le fichier image - + No compatible ID for this forum Pas d'ID compatible pour ce forum @@ -4746,8 +5415,8 @@ Voulez-vous annuler ce message? Aucune de vos identitĆ©s n'est autorisĆ©e Ć  poster dans ce forum. Ceci pourrait ĆŖtre dĆ» Ć  un forum qui serait limitĆ© Ć  un cercle qui ne contient aucune de vos identitĆ©s, ou Ć  des drapeaux de forum exigeant une identitĆ© signĆ©e en PGP. - - + + Generate mass data GĆ©nĆ©rer des donnĆ©es en masse @@ -4756,6 +5425,10 @@ Voulez-vous annuler ce message? Do you really want to generate %1 messages ? Voulez-vous vraiment gĆ©nĆ©rer %1 messages ? + + Send + Envoyer + Post as @@ -4770,7 +5443,23 @@ Voulez-vous annuler ce message? CreateLobbyDialog - + Create Chat Lobby + CrĆ©er un salon de tchat + + + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. + Un salon de chat est un tchat en groupe dĆ©centralisĆ© et anonyme. Tous les participants reƧoivent tous les messages. Une fois que le salon est crƩƩ, vous pouvez inviter d'autres amis Ć  partir de l'onglet Amis. + + + Lobby name: + Nom du salon : + + + Lobby topic: + Sujet du salon : + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4805,7 +5494,7 @@ Voulez-vous annuler ce message? - + Create CrĆ©er @@ -4815,7 +5504,11 @@ Voulez-vous annuler ce message? Annuler - + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Si vous cochez ceci, seules les IDs signĆ©es en PGP peuvent ĆŖtre utilisĆ©es pour rejoindre ce salon et y parler. Cette limitation empĆŖche le publipostage anonyme excessif car il devient possible pour au moins quelques personnes dans ce salon de localiser le noeud du spammeur.</p></body></html> + + + require PGP-signed identities nĆ©cessite des identitĆ©s signĆ©es PGP @@ -4830,7 +5523,11 @@ Voulez-vous annuler ce message? Selectionner les amis avec qui vous voulez communiquer. - + Invited friends + Amis invitĆ©s + + + Create Chat Room CrĆ©er un salon de tchat @@ -4851,7 +5548,7 @@ Voulez-vous annuler ce message? Contacts : - + Identity to use: IdentitĆ© Ć  utiliser : @@ -4859,17 +5556,17 @@ Voulez-vous annuler ce message? CryptoPage - + Public Information Information publique - + Name: Nom : - + Location: Emplacement : @@ -4879,12 +5576,12 @@ Voulez-vous annuler ce message? ID de l'emplacement : - + Software Version: Version du logiciel : - + Online since: En ligne depuis : @@ -4904,7 +5601,12 @@ Voulez-vous annuler ce message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4914,7 +5616,7 @@ Voulez-vous annuler ce message? - + Other Information Autres informations @@ -4924,12 +5626,17 @@ Voulez-vous annuler ce message? - + Profile Profil - + + Certificate + Certificat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4939,7 +5646,11 @@ Voulez-vous annuler ce message? Inclure les signatures - + Save Key into a file + Enregistrer votre clĆ© dans un fichier + + + Export Identity Exporter l'identitĆ© @@ -5013,33 +5724,33 @@ et utiliser le bouton d'importation pour la charger - + TextLabel Etiquette - + PGP fingerprint: Empreinte PGP : - + + Node information + Information de noeud + + + PGP Id : ID PGP : - + Friend nodes: Noeuds amis - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5078,6 +5789,14 @@ et utiliser le bouton d'importation pour la charger Node Noeud + + Create new node... + CrĆ©er nouveau noeud ... + + + show statistics window + afficher la fenĆŖtre de statistiques + DHTGraphSource @@ -5094,6 +5813,10 @@ et utiliser le bouton d'importation pour la charger DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare utilise la DHT de Bittorrent comme un proxy pour les connexions. Cela ne "stocke" pas votre IP dans la DHT. Au lieu de cela, la DHT est utilisĆ©e par vos amis pour vous atteindre tout en effectuant des requĆŖtes DHT standards. Le voyant de statut deviendra vert aussitĆ“t que Retroshare obtiendra une rĆ©ponse DHT d'un de vos amis.</p> + <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 trusted nodes 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 trusted nodes.</p> @@ -5129,7 +5852,7 @@ et utiliser le bouton d'importation pour la charger DLListDelegate - + B o @@ -5797,7 +6520,7 @@ et utiliser le bouton d'importation pour la charger DownloadToaster - + Start file Ouvrir le fichier @@ -5805,38 +6528,38 @@ et utiliser le bouton d'importation pour la charger ExprParamElement - + - + to Ć  - + ignore case Ignorer la casse - - - yyyy-MM-dd - + + + dd.MM.yyyy + jj.MM.aaaa - - + + KB Ko - - + + MB Mo - - + + GB Go @@ -5844,12 +6567,12 @@ et utiliser le bouton d'importation pour la charger ExpressionWidget - + Expression Widget Expression Widget - + Delete this expression Supprimer cette expression @@ -6011,7 +6734,7 @@ et utiliser le bouton d'importation pour la charger FilesDefs - + Picture Image @@ -6021,7 +6744,7 @@ et utiliser le bouton d'importation pour la charger VidĆ©o - + Audio Audio @@ -6081,21 +6804,11 @@ et utiliser le bouton d'importation pour la charger C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Dossiers partagĆ©s de mes amis @@ -6217,7 +6930,7 @@ et utiliser le bouton d'importation pour la charger - + ID ID @@ -6252,6 +6965,10 @@ et utiliser le bouton d'importation pour la charger Show State Afficher l'Ć©tat + + Trusted nodes + Amis de confiance + @@ -6259,7 +6976,7 @@ et utiliser le bouton d'importation pour la charger Afficher les groupes - + Group Groupe @@ -6295,7 +7012,7 @@ et utiliser le bouton d'importation pour la charger Ajouter Ć  un groupe - + Search Rechercher @@ -6311,7 +7028,7 @@ et utiliser le bouton d'importation pour la charger Trier par Ć©tat - + Profile details DĆ©tails du profil @@ -6556,7 +7273,7 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe FriendRequestToaster - + Confirm Friend Request Accepter la demande d'amitiĆ© @@ -6573,6 +7290,10 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe FriendSelectionWidget + + Search : + Rechercher : + Sort by state @@ -6594,7 +7315,7 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Rechercher des amis - + Mark all Tout marquer @@ -6605,134 +7326,16 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Marquer aucun - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Nom - - - - Node ID - - - - - Address - Adresse - - - - Status - Statut - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Devenir ami - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - Ce proxy n'est pas activĆ© ou est cassĆ©. -Tous les services sont-ils bien en marche ? -VĆ©rifiez aussi vos ports ! - - FriendsDialog - + Edit status message Modifier le message d'Ć©tat - - + + Broadcast Tchat entre amis @@ -6815,38 +7418,33 @@ VĆ©rifiez aussi vos ports ! RĆ©initialiser Ć  la valeur par dĆ©faut - + Keyring Trousseau - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;RĆ©seau</h1> <p>L'onglet rĆ©seau montre les noeuds de vos amis Retroshare : les noeuds Retroshare voisins qui sont connectĆ©s Ć  vous.</p> <p>Vous pouvez grouper les noeuds ensemble pour permettre un niveau d'accĆØs plus fin Ć  l'information, par exemple pour permettre seulement Ć  quelques noeuds de voir vos fichiers.</p> <p>Sur la droite, vous trouverez 3 onglets utiles : <ul> <li>Tchat entre amis (en anglais : "broadcast") : diffuse les messages immĆ©diatement Ć  tous les noeuds amis connectĆ©s</li> <li>Graphe rĆ©seau : ce graphe montre le rĆ©seau autours de vous, en se basant sur l'information de dĆ©couverte</li> <li>Trousseau : contient les clĆ©s des noeuds que vous avez collectĆ©, elles sont transfĆ©rĆ©es jusqu'Ć  vous principalement par les noeuds de vos amis</li> </ul> </p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare broadcast chat : les messages sont envoyĆ©s Ć  tous vos amis en ligne. - - + + Network RĆ©seau - - Friend Server - - - - + Network graph Graphe rĆ©seau - - <h1><img width="%1" 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> - - - - + Set your status message here. Mettez ici votre message de statut. @@ -6864,17 +7462,7 @@ VĆ©rifiez aussi vos ports ! Mot de passe - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Tous les champs sont requis avec un minimum de 3 caractĆØres @@ -6884,12 +7472,17 @@ VĆ©rifiez aussi vos ports ! Les mots de passe ne correspondent pas - + Port Port - + + Use BOB + Utiliser BOB + + + This password is for PGP Ce mot de passe est pour PGP @@ -6910,38 +7503,50 @@ VĆ©rifiez aussi vos ports ! Ɖchec lors de la gĆ©nĆ©ration de votre nouveau certificat, peut-ĆŖtre que votre mot de passe PGP est faux ! - + Options + Options + + + PGP Key Length Longueur de la clĆ© PGP - - + + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> <html><head/><body><p>Mettez un mot de passe fort ici. Ce mot de passe protĆØge votre clĆ© privĆ©e!</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>S'il vous plaĆ®t dĆ©placer votre souris afin de recueillir autant de donnĆ©es alĆ©atoires que possible. Un minimum de 20% est nĆ©cessaire pour crĆ©er votre clĆ© d'emplacement</p></body></html> - + Standard node Emplacement standard - + TOR/I2P Hidden node + Emplacement CachĆ© 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>Votre nom d'emplacement dĆ©signe l'instance de Retroshare exĆ©cutĆ©e sur cet ordinateur.</p></body></html> - + Use existing profile + Utiliser un profil existant + + + Node name Nom de l'emplacement - + Node type: @@ -6961,14 +7566,14 @@ VĆ©rifiez aussi vos ports ! - + <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>Le nom du profil vous identifie sur le rĆ©seau. Il est utilisĆ© par vos amis pour accepter vos connexions. Vous pouvez crĆ©er plusieurs emplacement Retroshare avec le mĆŖme profil sur diffĆ©rents ordinateurs.</p></body></html> - + Export this profle Exporter ce profil @@ -6978,7 +7583,7 @@ Vous pouvez crĆ©er plusieurs emplacement Retroshare avec le mĆŖme profil sur dif - + <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>Cela doit ĆŖtre une adresse Tor Onion de la forme: xa76giaf6ifda7ri63i263.onion <br/>ou une addresse I2P de cette forme: [52 characters].b32.i2p @@ -6987,40 +7592,39 @@ 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> - - Use I2P - - - - + <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 identitĆ©s sont utilisĆ©es lorsque vous Ć©crivez dans des salons de tchat, des forums et des commentaires de chaĆ®ne. Ils reƧoivent/envoient Ć©galement du courrier Ć©lectronique sur le rĆ©seau Retroshare. Vous pouvez crĆ©er une identitĆ© signĆ©e maintenant, ou le faire plus tard lorsque vous en aurez besoin.</p></body></html> - + Go! C'est parti ! - - + + TextLabel Ɖtiquette - + Advanced options + Options avancĆ©es + + + hidden address adresse cachĆ©e - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Votre profil est associĆ© Ć  une paire de clĆ© PGP. Actuellement RetroShare ignore les clĆ©s DSA. - + <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> @@ -7068,13 +7672,13 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerVotre profil n'a pas Ć©tĆ© sauvegardĆ©. Une erreur est arrivĆ©e. - + Import profile Importer profil - + Create new profile and new Retroshare node CrĆ©er un nouveau profil et un nouveau emplacement Retroshare @@ -7084,7 +7688,7 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerCrĆ©er un nouveau emplacement Retroshare - + Tor/I2P address Adresse Tor/I2P @@ -7119,7 +7723,7 @@ et l'utiliser au moyen du bouton d'importation afin de le charger - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7129,7 +7733,12 @@ et l'utiliser au moyen du bouton d'importation afin de le charger - + + BOB support is not available + + + + <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> @@ -7139,7 +7748,12 @@ et l'utiliser au moyen du bouton d'importation afin de le charger<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 @@ -7365,13 +7979,36 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerMise en route - + Invite Friends Inviter des amis - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Retroshare n'est rien sans vos amis. Cliquez sur le bouton pour dĆ©marrer le procĆ©dure</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Envoyez Ć  vos amis un email avec votre "certificat d'identitĆ©".</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Soyez sur de recevoir leur invitation en retour... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Vous ne pouvez vous connecter avec vos amis que si vous vous ĆŖtes mutuellement ajoutĆ©s les uns aux autres.</span></p></body></html> + + + Add Your Friends to RetroShare Ajouter vos amis Ć  Retroshare @@ -7381,103 +8018,136 @@ et l'utiliser au moyen du bouton d'importation afin de le chargerAjouter des amis - - Connect To Friends - Se connecter aux amis - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Soyez en ligne en mĆŖme temps que vos amis et ainsi RetroShare vous connectera automatiquement !</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Votre client a besoin de trouver le rĆ©seau RetroShare avant qu'il ne soit capable d'effectuer des connexions.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Cela prend 5 Ć  30 minutes la premiĆØre fois que vous dĆ©marrez RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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'indicateur DHT (dans la barre de statut) se colorera en vert lorsqu'il pourra effectuer des connexions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">AprĆØs deux minutes , l'indicateur NAT (aussi situĆ© dans la barre de statut) se colorera en jaune ou en vert.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Si il reste en rouge, alors vous avez un pare-feu ennuyeux, que RetroShare ne parvient pas Ć  traverser.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Regardez dans la section "Davantage d'aide" pour plus de conseils de connexion.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - AvancĆ© : ouvrir un port dans le pare-feu +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Vous pouvez augmenter la performance de votre Retroshare en ouvrant un port externe. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Cela va augmenter la vitesse des connexions et permettre Ć  davantage de personnes de se connecter Ć  vous. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">La faƧon la plus facile de faire cela consiste Ć  activer UPnP dans votre box Sans-fil ou Routeur.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Comme chaque routeur est conƧu diffĆ©remment, vous devrez dĆ©couvrir votre modĆØle de routeur et rechercher dans Internet afin de trouver des 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;">Si rien de tout ceci ne vous paraĆ®t Ć©vident, ne vous inquiĆ©tez pas Retroshare marchera malgrĆ© tout.</span></p> +<p style="-qt-paragraph-type:empty; margin-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:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Rencontrez vous des difficultĆ©s pour dĆ©buter avec RetroShare ?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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) Lisez la FAQ situĆ©e dans le Wiki. Elle est un peu vieille, nous essayons de l'actualiser.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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) Regardez les forums en ligne. Posez des questions et discutez des fonctionnalitĆ©s.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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) Essayez les forums internes Ć  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;"> - Ceux-ci arriveront en ligne lorsque vous serez connectĆ© Ć  des amis.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) Si vous ĆŖtes encore bloquĆ©, Ć©crivez-nous.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">ApprĆ©ciez Retroshare</span></p></body></html> - + + Connect To Friends + Se connecter aux amis + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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> + + + + Advanced: Open Firewall Port + AvancĆ© : ouvrir un port dans le pare-feu + + + Further Help and Support Aide supplĆ©mentaire et support - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Ouvrir le site web de RS @@ -7502,7 +8172,7 @@ p, li { white-space: pre-wrap; } Commentaires par email - + RetroShare Invitation Invitation Retroshare @@ -7552,12 +8222,12 @@ p, li { white-space: pre-wrap; } Retour-utilisateur Retroshare - + RetroShare Support Aide Retroshare - + It has many features, including built-in chat, messaging, Il a de nombreuses fonctionnalitĆ©s, telles qu'un tchat intĆ©grĆ©, messagerie, @@ -7681,7 +8351,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Afficher le Tchat public @@ -7689,7 +8359,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Inconnu] @@ -7855,11 +8525,19 @@ p, li { white-space: pre-wrap; } You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum. Vous pouvez laisser vos amis prendre connaissance de votre forum en le partageant avec eux. Choisissez les amis avec lesquels vous voulez partager votre forum. + + Share topic admin permissions + Partager les permissions d'administration de sujet + + + You can allow your friends to edit the topic. Select them in the list below. Note: it is not possible to revoke Posted admin permissions. + Vous pouvez permettre Ć  vos amis d'Ć©diter le sujet. Choisissez-les dans la liste ci-dessous. Note : il n'est pas possible de rĆ©voquer des permissions d'administration PostĆ©es (Posted admin permissions). + GroupTreeWidget - + Title Titre @@ -7872,12 +8550,12 @@ p, li { white-space: pre-wrap; } - + Description Description - + Number of Unread message @@ -7902,7 +8580,35 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Trier Ordre dĆ©croissant + + + Sort Ascending Order + Trier Ordre croissant + + + Sort by Name + Trier par nom + + + Sort by Popularity + Trier par popularitĆ© + + + Sort by Last Post + Trier par dernier message + + + Sort by Number of Posts + Trier par quantitĆ© de messages + + + Sort by Unread + Trier par Non lus + + + You are admin (modify names and description using Edit menu) Vous ĆŖtes administrateur (modifiez les noms et la description en utilisant le menu Edition) @@ -7917,14 +8623,14 @@ p, li { white-space: pre-wrap; } Id - - + + Last Post Dernier commentaire - + Name Nom @@ -7935,13 +8641,17 @@ p, li { white-space: pre-wrap; } PopularitĆ© - + Never Jamais - + Display + Affichage + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7954,7 +8664,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and et @@ -8090,7 +8800,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels ChaĆ®nes @@ -8101,22 +8811,34 @@ p, li { white-space: pre-wrap; } CrĆ©er une chaĆ®ne - + Enable Auto-Download Activer le tĆ©lĆ©chargement automatique - + My Channels Vos chaĆ®nes - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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;ChaĆ®nes</h1> <p>Les chaĆ®nes vous permettent de poster des donnĆ©es (exemples : films, musiques) qui seront diffusĆ©es dans le rĆ©seau + +Vous pouvez voir les chaĆ®nes auxquelles sont abonnĆ©s vos amis, et vous transfĆ©rez automatiquement Ć  vos amis les chaĆ®nes auxquelles vous ĆŖtes abonnĆ©. Ceci promeut les bonnes chaĆ®nes dans le rĆ©seau. + +Seul le crĆ©ateur d'une chaĆ®ne peut poster dans cette chaĆ®ne. Les autres personnes dans le rĆ©seau peuvent seulement lire dedans, Ć  moins que la chaĆ®ne ne soit privĆ©e. Vous pouvez cependant partager les droits de poster ou de lire avec vos amis Retroshare. + +Les chaĆ®nes peuvent ĆŖtre anonymes, ou attachĆ©es Ć  une identitĆ© Retroshare afin que les lecteurs puissent prendre contact avec vous si besoin. Permettez "Autoriser commentaires" si vous voulez laisser la possibilitĆ© aux utilisateurs de commenter vos postages. + +Les publications sont conservĆ©s pendant %1 jours et synchronisĆ©s au cours des derniers %2 jours, Ć  moins que vous ne les modifiez.</p> + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels ChaĆ®nes abonnĆ©es @@ -8136,12 +8858,12 @@ p, li { white-space: pre-wrap; } SpĆ©cifier le rĆ©pertoire de tĆ©lĆ©chargement pour cette chaĆ®ne - + Disable Auto-Download DĆ©sactiver le tĆ©lĆ©chargement automatique - + Set download directory SpĆ©cifier le rĆ©pertoire de tĆ©lĆ©chargement @@ -8176,22 +8898,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder Ouvrir dossier - + Open file - + Error Erreur @@ -8211,17 +8933,17 @@ p, li { white-space: pre-wrap; } VĆ©rification - + Are you sure that you want to cancel and delete the file? Êtes-vous sĆ»r(e) de vouloir annuler et supprimer ce fichier ? - + Can't open folder Impossible d'ouvrir le dossier - + Play File Lecture @@ -8231,10 +8953,37 @@ p, li { white-space: pre-wrap; } Le fichier %1 n'existe pas Ć  cet endroit. + + GxsChannelFilesWidget + + Form + Formulaire + + + Filename + Nom du fichier + + + Size + Taille + + + Title + Titre + + + Published + PubliĆ© + + + Status + Statut + + GxsChannelGroupDialog - + Create New Channel CrĆ©er une nouvelle chaĆ®ne @@ -8272,19 +9021,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + S'abonner Ć  la chaĆ®ne @@ -8298,7 +9037,7 @@ p, li { white-space: pre-wrap; } - + Expand Ɖtendre @@ -8313,7 +9052,7 @@ p, li { white-space: pre-wrap; } Description de la chaĆ®ne - + Loading Chargement @@ -8328,9 +9067,8 @@ p, li { white-space: pre-wrap; } - - Never - Jamais + New Channel + Nouvelle chaĆ®ne @@ -8341,7 +9079,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Nouveau commentaire : @@ -8362,7 +9100,7 @@ p, li { white-space: pre-wrap; } - + Play Lecture @@ -8418,24 +9156,28 @@ p, li { white-space: pre-wrap; } Files Fichiers + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Avertissement ! Vous avez moins de %1 heure(s) et %2 minute(s) avant que ce fichier ne soit supprimĆ©. Pensez Ć  l'enregistrer. + Hide Cacher - + New Nouveau - + 0 0 - - + + Comment Commentaire @@ -8450,17 +9192,21 @@ p, li { white-space: pre-wrap; } Je n'aime pas Ƨa - + Loading + Chargement + + + Loading... - + Comments Commentaires - + Post @@ -8485,16 +9231,139 @@ p, li { white-space: pre-wrap; } Lire le mĆ©dia + + GxsChannelPostsWidget + + Post to Channel + Poster dans la chaĆ®ne + + + Add new post + Ajouter une nouvelle publication + + + Loading + Chargement + + + Search channels + Chercher chaĆ®nes + + + Title + Titre + + + Search Title + Chercher titre + + + Message + Message + + + Search Message + Chercher message + + + Filename + Nom du fichier + + + Search Filename + Chercher nom de fichier + + + No Channel Selected + Aucune chaĆ®ne sĆ©lectionnĆ©e + + + Never + Jamais + + + Public + Public + + + Restricted to members of circle " + LimitĆ© aux membres du cercle " + + + Restricted to members of circle + LimitĆ© aux membres du cercle + + + Your eyes only + Vos yeux seulement + + + You and your friend nodes + Vous et vos noeuds amis + + + Disable Auto-Download + DĆ©sactiver le tĆ©lĆ©chargement automatique + + + Enable Auto-Download + Activer le tĆ©lĆ©chargement automatique + + + Show feeds + Afficher les flux + + + Show files + Afficher les fichiers + + + Administrator: + Administrateur : + + + Last Post: + Dernier message : + + + unknown + inconnu + + + Distribution: + Distribution : + + + Feeds + Flux + + + Files + Fichiers + + + Subscribers + AbonnĆ©s + + + Description: + Description : + + + Posts (at neighbor nodes): + Posts (chez vos noeuds voisins) : + + GxsChannelPostsWidgetWithModel - + Post to Channel Poster dans la chaĆ®ne - + Add new post Ajouter une nouvelle publication @@ -8564,7 +9433,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8600,7 +9469,7 @@ p, li { white-space: pre-wrap; } - + Comments Commentaires @@ -8615,13 +9484,13 @@ p, li { white-space: pre-wrap; } Flux - - + + Click to switch to list view - + Show unread posts only @@ -8636,7 +9505,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8651,7 +9520,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8711,22 +9580,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8801,13 +9660,12 @@ p, li { white-space: pre-wrap; } Vous et vos noeuds amis - - + Copy Retroshare link - + Subscribed AbonnĆ© @@ -8858,17 +9716,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8888,11 +9746,27 @@ p, li { white-space: pre-wrap; } Remove Item Supprimer + + for identity + 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: + @@ -8983,7 +9857,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Le conteneur de commentaires @@ -8996,7 +9870,7 @@ p, li { white-space: pre-wrap; } Formulaire - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9026,7 +9900,7 @@ p, li { white-space: pre-wrap; } RafraĆ®chir - + Comment Commentaire @@ -9065,7 +9939,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment RĆ©pondre au commentaire @@ -9089,21 +9963,6 @@ p, li { white-space: pre-wrap; } Vote Down Voter - - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9113,7 +9972,7 @@ p, li { white-space: pre-wrap; } Commenter - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9142,10 +10001,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Commentaire</span></p></body></html> + + + Signed by + SignĆ© par + Reply to Comment @@ -9174,7 +10049,7 @@ before you can comment avant de pouvoir commenter - + It remains %1 characters after HTML conversion. @@ -9216,6 +10091,14 @@ avant de pouvoir commenter Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Ajouter admins de forum + + + Select Forum Admins + SĆ©lectionner admins de forum + Create @@ -9225,7 +10108,7 @@ avant de pouvoir commenter GxsForumGroupItem - + Subscribe to Forum S'abonner au forum @@ -9241,7 +10124,7 @@ avant de pouvoir commenter - + Expand Montrer @@ -9261,9 +10144,8 @@ avant de pouvoir commenter - - TextLabel - + Loading + Chargement @@ -9294,13 +10176,13 @@ avant de pouvoir commenter GxsForumMsgItem - - + + Subject: Sujet : - + Unsubscribe To Forum Se dĆ©sabonner du forum @@ -9311,7 +10193,7 @@ avant de pouvoir commenter - + Expand Montrer @@ -9331,17 +10213,21 @@ avant de pouvoir commenter En rĆ©ponse Ć  : - + Loading + Chargement + + + Loading... - + Forum Feed Flux de forum - + Hide Cacher @@ -9354,66 +10240,63 @@ avant de pouvoir commenter Formulaire - + Start new Thread for Selected Forum Lancer un nouveau fil dans le forum sĆ©lectionnĆ© - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Chercher - + Last Post + Dernier article + + + New Thread Nouveau fil + + + Threaded View + Affichage en arborescence + + + + Flat View + Affichage Ć  plat + - + Title Titre - - + + Date Date - + Author Auteur - + + Save image + Sauvegarder image + + + Loading Chargement - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9423,7 +10306,12 @@ avant de pouvoir commenter - + + Lastest post in thread + + + + Reply Message RĆ©pondre au message @@ -9447,6 +10335,10 @@ avant de pouvoir commenter Download all files TĆ©lĆ©charger tous les fichiers + + Next unread + Suivant non lu + Search Title @@ -9463,23 +10355,36 @@ avant de pouvoir commenter Rechercher par auteur - + Content + Contenu + + + Search Content + Rechercher contenu + + + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> + <p>L'abonnement au forum rassemblera les messages disponibles Ć  partir de vos amis qui y sont abonnĆ©s et rendra le forum visible Ć  tous vos autres amis. +Ensuite vous pourrez vous dĆ©sabonner via le menu contextuel de la liste des forums Ć  gauche.</p> + + + No name Aucun nom - - + + Reply RĆ©pondre - + <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> - + Loading... @@ -9522,12 +10427,20 @@ avant de pouvoir commenter Copier le lien Retroshare - + Hide Cacher - + Expand + Montrer + + + [Banned] + [Banni] + + + [unknown] [inconnu] @@ -9557,8 +10470,8 @@ avant de pouvoir commenter Vos yeux seulement - - + + Distribution Distribution @@ -9572,6 +10485,26 @@ avant de pouvoir commenter Anti-spam Anti-spam + + [ ... Redacted message ... ] + [ ... Message rĆ©digĆ© ... ] + + + Anonymous + Anonyme + + + signed + SignĆ© + + + none + Aucun + + + [ ... Missing Message ... ] + [ ... Message manquant... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9641,12 +10574,16 @@ avant de pouvoir commenter Message d'origine - + New thread Nouveau fil - + Read status + Lire l'Ć©tat + + + Edit Modifier @@ -9707,7 +10644,7 @@ avant de pouvoir commenter RĆ©putation de l'auteur - + Show column @@ -9727,7 +10664,7 @@ avant de pouvoir commenter - + Anonymous/unknown posts forwarded if reputation is positive Messages anonymes / inconnus transmis si la rĆ©putation est positive @@ -9779,7 +10716,7 @@ This message is missing. You should receive it later. - + No result. @@ -9789,7 +10726,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9804,7 +10741,26 @@ This message is missing. You should receive it later. - + Information for this identity is currently missing. + Les informations pour cette identitĆ© sont actuellement manquantes. + + + You have banned this ID. The message will not be +displayed nor forwarded to your friends. + Vous avez banni cet ID. Le message ne sera pas affichĆ© ou transmis Ć  vos amis. + + + 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. + Vous n'avez pas donnĆ© d'opinion pour cette personne et vos amis ne votent pas positivement: La rĆ©gulation du spam empĆŖche le message d'ĆŖtre transmis Ć  vos amis. + + + Message will be forwarded to your friends. + Le message sera transmis Ć  vos amis. + + + (Latest) (Derniers) @@ -9813,6 +10769,10 @@ This message is missing. You should receive it later. (Old) (Anciens) + + You cant act on the author to a non-existant Message + Vous ne pouvez pas agir sur l'auteur pour un message inexistant + From @@ -9870,12 +10830,14 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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;Forums</h1> <p>Les forums de Retroshare ressemblent aux forums d'internet, mais ils fonctionnent de faƧon dĆ©centralisĆ©e. +Vous voyez les forums auxquels sont abonnĆ©s vos amis, et vous transfĆ©rez Ć  vos amis les forums auxquels vous vous ĆŖtes abonnĆ©. Ceci promeut automatiquement dans le rĆ©seau les forums intĆ©ressants. +Les messages du forum sont conservĆ©s pour %1 jours et synchronisĆ©s au cours des derniers %2 jours, Ć  moins que vous ne les configuriez autrement.</p> - + Forums Forums @@ -9906,16 +10868,35 @@ This message is missing. You should receive it later. Autres forums + + GxsForumsFillThread + + Waiting + En attente + + + Retrieving + RĆ©cupĆ©ration + + + Loading + Chargement + + GxsGroupDialog - + Name Nom - + Add Icon + Ajouter une icĆ“ne + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Ceux avec qui vous partagez votre clĆ© peuvent publier sur les types de groupe Ć  accĆØs limitĆ©, et peuvent voir et publier sur les chaines Ć  accĆØs privĆ© @@ -9924,14 +10905,22 @@ This message is missing. You should receive it later. Share Publish Key Partager la clĆ© de publication + + check peers you would like to share private publish key with + Visualiser les personnes avec qui vous partagez votre clĆ© de publication privĆ©e + + + Share Key With + ClĆ© partagĆ©e avec + - + Description Description - + Message Distribution Distribution de message @@ -9939,7 +10928,7 @@ This message is missing. You should receive it later. - + Public Public @@ -9958,6 +10947,14 @@ This message is missing. You should receive it later. New Thread Nouveau fil + + Required + Requis + + + Encrypted Msgs + Msgs chiffrĆ©s + Personal Signatures @@ -9999,7 +10996,7 @@ This message is missing. You should receive it later. Protection Spam - + Comments: Commentaires : @@ -10022,7 +11019,7 @@ This message is missing. You should receive it later. Anti-spam : - + All People @@ -10038,12 +11035,12 @@ This message is missing. You should receive it later. - + Restricted to circle: LimitĆ© au groupe : - + Limited to your friends LimitĆ© Ć  vos amis @@ -10060,23 +11057,23 @@ This message is missing. You should receive it later. - + Message tracking Suivi de message - - + + PGP signature required Signature PGP requise - + Never Jamais - + Only friends nodes in group Seulement les noeuds d'amis dans le groupe @@ -10092,28 +11089,30 @@ This message is missing. You should receive it later. Veuillez ajoutez un nom - + PGP signature from known ID required La signature PGP de l'ID connue est exigĆ©e - - - [None] - - - - + Load Group Logo Charger le logo du groupe - + Submit Group Changes Soumettre des changements de groupe - + Failed to Prepare Group MetaData - please Review + Echec Ć  prĆ©parer les mĆ©ta-donnĆ©es de groupe - veuillez examiner + + + Will be used to send feedback + Sera utilisĆ© pour envoyer du retour d'information + + + Owner: PropriĆ©taire : @@ -10123,12 +11122,12 @@ This message is missing. You should receive it later. Mettez ici une description descriptive - + Info Info - + ID ID @@ -10138,7 +11137,7 @@ This message is missing. You should receive it later. Dernier article - + <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> @@ -10213,12 +11212,7 @@ This message is missing. You should receive it later. DĆ©favoriser les IDs non signĆ©es et les IDs issues de noeuds inconnus - - Author: - - - - + Popularity PopularitĆ© @@ -10234,22 +11228,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Annuler - + Create CrĆ©er - + + Author + Auteur + + + GxsIdLabel GxsIdLabel @@ -10257,7 +11256,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Chargement @@ -10317,7 +11316,7 @@ This message is missing. You should receive it later. Modifier dĆ©tails - + Synchronise posts of last... Synchronisation des derniers messages... @@ -10374,12 +11373,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + Partager les permissions de publication + + + Copy RetroShare Link Copier le lien Retroshare @@ -10402,7 +11405,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Sans signature @@ -10415,24 +11418,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Chargement + + + Not found Non trouvĆ© + + No Signature + Sans signature + - - + + [Banned] [Banni] + + Authentication + Authentification + unknown Key clĆ© inconnue - + anonymous + anonyme + + + Loading... @@ -10442,12 +11461,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Nom&nbsp;d'identitĆ© @@ -10461,20 +11475,16 @@ This message is missing. You should receive it later. Node Noeud + + Signed&nbsp;by + SignĆ©&nbsp;par + [Unknown] [Inconnu] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10486,7 +11496,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10534,13 +11544,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Inconnu] GxsMessageFramePostWidget + + Loading + Chargement + Loading... @@ -10657,6 +11671,10 @@ This message is missing. You should receive it later. Group ID / Author ID du groupe / Auteur + + Number of messages / Publish TS + Nombre de message / Tampon Horaire de publication (TS) + Local size of data @@ -10672,6 +11690,10 @@ This message is missing. You should receive it later. Popularity PopularitĆ© + + Details + DĆ©tails + @@ -10704,6 +11726,41 @@ This message is missing. You should receive it later. Non + + GxsTunnelsDialog + + Authenticated tunnels: + Tunnels authentifiĆ©s : + + + Tunnel ID: %1 + ID de tunnel : %1 + + + from: %1 + depuis : %1 + + + to: %1 + vers : %1 + + + status: %1 + statut : %1 + + + total sent: %1 bytes + total envoyĆ© : %1 octets + + + total recv: %1 bytes + total reƧu : %1 octets + + + Unknown Peer + Pair inconnu + + HashBox @@ -10916,12 +11973,48 @@ This message is missing. You should receive it later. About ƀ propos + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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 est une plateforme de communication dĆ©centalisĆ©e, sĆ©curisĆ©e et privĆ©e, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">elle est open-source et trans-plateformes. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">Elle vous laisse partager avec vos amis de faƧon sĆ©curisĆ©e, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">en utilisant un web-de-confiance (web-of-trust) pour authentifier les pairs, et OpenSSL pour chiffrer toutes les communications. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-weight:600;">RetroShare permet partage de fichiers, tchat, messages, et chaĆ®nes</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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;">Liens externes utiles pour davantage d'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;">Forum 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;">Page du projet 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 de l'Ć©quipe 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 dĆ©v RetroShare</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 Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10937,7 +12030,7 @@ p, li { white-space: pre-wrap; } - + Authors Auteurs @@ -10956,7 +12049,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10969,6 +12062,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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;">Traductions 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;">Traducteurs du site 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;">SuĆ©dois : </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;">Allemand : </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;">Polonais : </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + License Agreement @@ -11034,12 +12157,12 @@ p, li { white-space: pre-wrap; } Formulaire - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11054,7 +12177,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11063,12 +12186,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + Did you receive a certificate from a friend? + Avez-vous reƧu le certificat d'un ami ? + + + Add friends certificate + Ajouter le certificat d'un ami + + + Add certificate file + Ajouter un fichier de certificat + + + Share your RetroShare Key + Partagez votre clĆ© RetroShare + ... ... + + The text below is your own Retroshare certificate. Send it to your friends + Le texte ci-dessous est votre propre certificat Retroshare. Envoyez-le Ć  vos amis + Open Source cross-platform, @@ -11079,12 +12222,20 @@ Plate-forme de communication dĆ©centralisĆ©e privĆ©e et sĆ©curisĆ©e. - + Launch startup wizard + Lancez l'assistant de dĆ©marrage + + + Do you need help with RetroShare? + Besoin d'aide avec RetroShare? + + + Open Web Help Ouvrir l'aide Web - + Copy your Cert to Clipboard Copiez votre Certificat en mĆ©moire. @@ -11094,7 +12245,7 @@ Plate-forme de communication dĆ©centralisĆ©e privĆ©e et sĆ©curisĆ©e. Sauvez votre Certificat dans un fichier - + Send via Email Envoyez votre Certificat par e-mail @@ -11114,37 +12265,13 @@ Plate-forme de communication dĆ©centralisĆ©e privĆ©e et sĆ©curisĆ©e. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11156,12 +12283,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11170,11 +12302,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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;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> + RetroShare Invite Invitation Retroshare + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Votre certificat a Ć©tĆ© copiĆ© en mĆ©moire, collez-le et envoyez-le par courrier Ć©lectronique ou par tout autre moyen + Save as... @@ -11446,14 +12586,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Tout - + Reputation RĆ©putation @@ -11463,12 +12603,12 @@ p, li { white-space: pre-wrap; } Rechercher - + Anonymous Id ID anonyme - + Create new Identity CrĆ©er une nouvelle identitĆ© @@ -11478,7 +12618,7 @@ p, li { white-space: pre-wrap; } CrĆ©er un nouveau cercle - + Persons Personnes @@ -11493,27 +12633,27 @@ p, li { white-space: pre-wrap; } Personne - + Close Fermer - + Ban-option: Option de "ban" : - + Auto-Ban all identities signed by the same node Bannir automatiquement toutes les identitĆ©s signĆ©es par la mĆŖme personne - + Friend votes: Votes des Amis : - + Positive votes Votes positifs @@ -11530,39 +12670,29 @@ p, li { white-space: pre-wrap; } Votes nĆ©gatifs - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics Statistiques d'utilisation - + Circles Cercles - + Circle name Nom du cercle @@ -11582,20 +12712,18 @@ Votes nĆ©gatifs Cercles personnels - + - Edit identity Modifier l'identitĆ© - - + Delete identity Supprimer l'identitĆ© - + Chat with this peer Tchater avec ce pair @@ -11605,78 +12733,78 @@ Votes nĆ©gatifs Lancer un tchat distant avec ce pair - + Owner node ID : ID du noeud propriĆ©taire : - + Identity name : Nom de l'identitĆ© : - + () () - + Identity ID ID de l'identitĆ© - + Send message Envoyer message - + Identity info Info d'identitĆ© - + Identity ID : ID de l'identitĆ© : - + Owner node name : Nom du noeud propriĆ©taire : - + Create new... CrĆ©er nouveau... - + Type: Type : - + Send Invite Envoyer invitation - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> <html><head/><body><p>Moyenne des avis des noeuds voisins concernant cette identitĆ©. NĆ©gatif est mauvais,</p><p> positif est bon. ZĆ©ro est neutre.</p></body></html> - + Your opinion: Votre opinion : - + Negative NĆ©gative - + Neutral Neutre @@ -11687,17 +12815,17 @@ Votes nĆ©gatifs 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>Le score de rĆ©putation global, reprĆ©sentĆ© (accounting) pour vous et vos amis</p><p>NĆ©gatif est mauvais, positif est bon. ZĆ©ro est neutre. Si le score est trop bas,</p><p> l'identitĆ© est indiquĆ©e comme nĆ©faste et sera filtrĆ©e dans les forums, les salons de tchat,</p><p> les chaĆ®nes, etc.</p></body></html> - + Overall: GĆ©nĆ©rale : - + Anonymous Anonymes @@ -11712,24 +12840,24 @@ Votes nĆ©gatifs Chercher ID - + This identity is owned by you Cette identitĆ© est possĆ©dĆ©e par vous-mĆŖme - - + + My own identities Mes propres identitĆ©s - - + + My contacts Mes contacts - + Show Items Options d'affichage @@ -11744,12 +12872,7 @@ Votes nĆ©gatifs LiĆ© Ć  mon noeud - - <h1><img width="%1" 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> - - - - + Other circles Autres cercles @@ -11759,7 +12882,7 @@ Votes nĆ©gatifs Cercles auxquels j'appartient - + Circle ID: ID du cercle : @@ -11834,7 +12957,7 @@ Votes nĆ©gatifs Pas un membre (n'a pas d'accĆØs aux donnĆ©es limitĆ©es Ć  ce cercle) - + Identity ID: ID de l'identitĆ© : @@ -11864,7 +12987,7 @@ Votes nĆ©gatifs inconnu - + Invited InvitĆ©(e) @@ -11879,7 +13002,7 @@ Votes nĆ©gatifs Membre - + Edit Circle Modifier le cercle @@ -11927,7 +13050,7 @@ Votes nĆ©gatifs Autoriser Ć  adhĆ©rer - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11938,7 +13061,7 @@ Vous devriez vous en dĆ©barrasser maintenant et en utiliser une nouvelle. Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + [Unknown node] [Noeud inconnu] @@ -11981,7 +13104,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. IdentitĆ© anonyme - + Boards @@ -12061,7 +13184,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + information information @@ -12077,12 +13200,34 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Copier identitĆ© vers le presse-papiers - + Send invite? + Envoyer invitation ? + + + Do you really want send a invite with your Certificate? + Voulez-vous vraiment envoyer une invitation avec votre certificat ? + + + Banned Banni - + + <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;IdentitĆ©s</h1> <p>Dans cet onglet vous pouvez crĆ©er/Ć©diter des <b>identitĆ©s pseudo-anonymes</b>, et des <b>cercles</b>. +<p><b>Les identitĆ©s</b> sont utilisĆ©s pour identifier vos donnĆ©es de maniĆØre sĆ©curisĆ©e : signez les messages dans les salons de tchat, les messages de forum et de canal, recevez des commentaires Ć  l'aide du systĆØme de messagerie intĆ©grĆ© Retroshare, publiez des commentaires aprĆØs les messages de canaux, discutez en utilisant des tunnels sĆ©curisĆ©s, etc.</p> +<p>Les identitĆ©s peuvent Ć©ventuellement ĆŖtre <b>signĆ©es</b> par le certificat de votre emplacement Retroshare. Les identitĆ©s signĆ©es sont plus faciles Ć  faire confiance mais sont facilement liĆ©es Ć  l'adresse IP de votre nœud.</p> +<p><b>Les IdentitĆ©s anonymes</b> vous permettent d'interagir anonymement avec d'autres utilisateurs. Ils ne peuvent pas ĆŖtre falsifiĆ©s, mais personne ne peut prouver qui possĆØde vraiment une identitĆ© donnĆ©e.</p> + <p><b>Les Cercles </b> sont des groupes d'identitĆ©s (anonymes ou signĆ©s), qui sont partagĆ©s Ć  distance sur le rĆ©seau. Ils peuvent ĆŖtre utilisĆ©s pour restreindre la visibilitĆ© aux forums, chaĆ®nes, etc.</p> + <p>Un <b>cercle</b> peut ĆŖtre restreint Ć  un autre cercle, limitant ainsi sa visibilitĆ© aux membres de ce cercle ou mĆŖme auto-restreint, ce qui signifie qu'il est seulement visible pour les membres invitĆ©s.</p> + + + Unknown ID: + ID inconnu : + + + positive positif @@ -12126,11 +13271,19 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Forums Forums + + Posted + PubliĆ© + Chat Tchat + + Unknown + Inconnu + [Unknown] @@ -12151,6 +13304,14 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Creation of author signature in service %1 CrĆ©ation d'une signature d'auteur en service %1 + + Message/vote/comment + Message/vote/commentaire + + + %1 in %2 tab + %1 en %2 onglet + Distant message signature validation. @@ -12171,11 +13332,19 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Signature in distant tunnel system. Signature dans un systĆØme de tunnel distant. + + Update of identity data. + Mise Ć  jour des donnĆ©es d'identitĆ©. + Generic signature validation. Validation de signature gĆ©nĆ©rique. + + Generic signature. + Signature gĆ©nĆ©rique. + Generic encryption. @@ -12187,7 +13356,11 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. DĆ©chiffrement gĆ©nĆ©rique. - + Membership verification in circle %1. + VĆ©rification de l'adhĆ©sion dans le cercle %1. + + + Add to Contacts Ajouter aux contacts @@ -12237,21 +13410,21 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Salut,<br>je voudrais ĆŖtre ami avec vous sur RetroShare. <br> - - - + + + People Pers. - + Your Avatar Click here to change your avatar Votre avatar - + Linked to neighbor nodes LiĆ©e(s) aux noeuds voisins @@ -12261,7 +13434,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. LiĆ©e(s) aux noeuds distants - + Linked to a friend Retroshare node LiĆ©e(s) Ć  un noeud Retroshare ami @@ -12276,7 +13449,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. LiĆ©e(s) Ć  un noeud Retroshare inconnu - + Chat with this person Tchater avec cette personne @@ -12291,12 +13464,12 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Tchat distant avec cette personne refusĆ© - + Last used: DerniĆØrement utilisĆ©e : - + +50 Known PGP +50 PGP connue @@ -12316,12 +13489,12 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Voulez-vous vraiment supprimer cette identitĆ© ? - + Owned by PossĆ©dĆ© par - + Node name: Nom de noeud : @@ -12331,7 +13504,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. ID de noeud : - + Really delete? Vraiment supprimer ? @@ -12339,7 +13512,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. IdEditDialog - + Nickname Surnom @@ -12369,7 +13542,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Pseudonyme - + Import image @@ -12379,19 +13552,12 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Nouvelle identitĆ© @@ -12405,7 +13571,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + @@ -12415,12 +13581,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. N/A - - No avatar chosen - - - - + Edit identity Modifier l'identitĆ© @@ -12431,27 +13592,27 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Mettre Ć  jour - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12471,7 +13632,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + Identity update failed @@ -12481,7 +13642,11 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + Error getting key! + Erreur lors de la rĆ©cupĆ©ration de la clĆ© ! + + + Error KeyID invalid Erreur ID de la clĆ© invalide @@ -12496,7 +13661,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Vrai nom inconnu - + Create New Identity CrĆ©er une nouvelle identitĆ© @@ -12506,15 +13671,10 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Type - + Choose image... - - - Remove - - @@ -12540,7 +13700,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Ajouter - + Create CrĆ©er @@ -12550,13 +13710,17 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Annuler - + Your Avatar Click here to change your avatar Votre avatar - + Set Avatar + Mettre l'avatar + + + Linked to your profile LiĆ©e Ć  votre profil @@ -12566,7 +13730,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Vous pouvez avoir une seule ou plusieurs identitĆ©s. Elles sont utilisĆ©es lorsque vous Ć©crivez dans des salons de tchat, forums, et dans les commentaires de chaĆ®nes. Elles agissent comme destination pour le tchat distant et pour le systĆØme de courrier distant de Retroshare. - + The nickname is too short. Please input at least %1 characters. Ce pseudonyme est trop court. Veuillez saisir au moins %1 caractĆØres. @@ -12625,6 +13789,10 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. PGP name: Nom PGP : + + GXS id: + Id GXS : + PGP id: @@ -12640,7 +13808,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + Copy Copier @@ -12650,12 +13818,12 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Supprimer - + %1 's Message History - + Mark all Tout marquer @@ -12674,38 +13842,26 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Quote Citer + + Send + Envoyer + ImageUtil - - + + Save image Sauvegarder image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename Ne peut pas sauvegarder l'image, le nom de fichier est invalide - - Copy image - - - - - + Not an image Pas une image @@ -12723,32 +13879,27 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + Enable RetroShare JSON API Server - + Port: - Port : + - + Listen Address: - - Status: - - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12769,12 +13920,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12783,31 +13929,26 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Ouvrir le fichier - + Open Folder Ouvrir le dossier de destination - + Checking... VĆ©rification en cours... @@ -12817,7 +13958,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. VĆ©rifier vos fichiers - + Recommend in a message to... Recommander par messagerie Ć  ... @@ -12845,7 +13986,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. MainWindow - + Add Friend Ajouter un ami @@ -12861,8 +14002,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - - + Options Options @@ -12883,7 +14023,7 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. - + Quit Quitter @@ -12894,12 +14034,12 @@ Ces identitĆ©s ne seront bientĆ“t plus supportĆ©es. Assistant de configuration rapide - + RetroShare %1 a secure decentralized communication platform Retroshare %1 - Logiciel de communication sĆ©curisĆ© et dĆ©centralisĆ© - + Unfinished InachevĆ© @@ -12928,12 +14068,11 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. - Status Statut - + Notify Notifications @@ -12944,35 +14083,31 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. - Open Messages Ouvrir la messagerie - - + Bandwidth Graph Graphique de bande passante - + Applications Applications - Help Aide - - + Minimize RĆ©duire - + Maximize Agrandir @@ -12987,12 +14122,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Retroshare - - Close window - - - - + %1 new message %1 nouveau message @@ -13022,7 +14152,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. %1 amis connectĆ©s - + Do you really want to exit RetroShare ? Etes-vous sĆ»r de vouloir quitter Retroshare ? @@ -13042,7 +14172,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Afficher - + Make sure this link has not been forged to drag you to a malicious website. Assurez-vous que ce lien n'a pas Ć©tĆ© crƩƩ pour vous emmener vers un site Web malveillant. @@ -13087,13 +14217,12 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Matrice des autorisations de services - - + Statistics Statistiques - + Show web interface Afficher l'interface web @@ -13108,7 +14237,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. dossier a beaucoup diminuĆ© ! (la limite actuelle est - + Really quit ? Voulez-vous vraiment quitter ? @@ -13117,17 +14246,17 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. MessageComposer - + Compose Ɖcrire - + Contacts Contacts - + Paragraph Paragraphe @@ -13163,12 +14292,12 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Titre 6 - + Font size Taille de police - + Increase font size Augmenter la police @@ -13183,32 +14312,32 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Gras - + Italic Italique - + Alignment Alignement - + Add an Image InsĆ©rer une image - + Sets text font to code style ParamĆ©trer la police d'Ć©criture dans le code - + Underline SoulignĆ© - + Subject: Sujet : @@ -13219,32 +14348,32 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. - + Tags Mots clĆ©s - + Address list: Liste d'adresses : - + Recommend this friend Recommander cet ami - + Set Text color DĆ©finir la couleur du texte - + Set Text background color DĆ©finir la couleur de fond du texte - + Recommended Files Fichiers recommandĆ©s @@ -13314,7 +14443,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Ajouter une citation - + Send To: Envoyer Ć  : @@ -13338,6 +14467,10 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. &Justify &Justifier le texte + + All addresses (mixed) + Toutes adresses (mĆ©langĆ©) + All people @@ -13349,7 +14482,7 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. Mes contacts - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Bonjour, <br>Je vous recommande un(e) bon(nne) ami(e), vous pouvez lui faire confiance autant qu'Ć  moi. <br> @@ -13369,18 +14502,18 @@ Veuillez libĆ©rer de l'espace disque et cliquer sur Ok. veut devenir ami(e) avec toi sur Retroshare - + Hi %1,<br><br>%2 wants to be friends with you on RetroShare.<br><br>Respond now:<br>%3<br><br>Thanks,<br>The RetroShare Team Bonjour %1,<br><br>%2 veut devenir ton ami(e) sur Retroshare.<br><br>RĆ©pondre maintenant :<br>%3<br><br>Merci,<br>L'Ć©quipe de Retroshare - - + + Save Message Enregistrer le message - + Message has not been Sent. Do you want to save message to draft box? Le message n'a pas Ć©tĆ© envoyĆ© @@ -13392,17 +14525,7 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? Coller le lien Retroshare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Ajouter Ć  "A" @@ -13422,7 +14545,7 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? Ajouter comme fichier recommandĆ© - + Original Message Message d'origine @@ -13432,21 +14555,21 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? De - + - + To Pour - - + + Cc Cc - + Sent ElĆ©ments envoyĆ©s @@ -13461,7 +14584,7 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? Sur %1, %2 Ć  Ć©crit : - + Re: Re : @@ -13471,30 +14594,30 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? Tr : - - - + + + RetroShare Retroshare - + Do you want to send the message without a subject ? Souhaitez-vous envoyer ce message sans sujet ? - + Please insert at least one recipient. Veuillez inscrire au moins un destinataire. - + Bcc Cci - + Unknown Inconnu @@ -13609,13 +14732,13 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? DĆ©tails - + Open File... Ouvrir un fichier... - + HTML-Files (*.htm *.html);;All Files (*) Fichiers HTML (*.htm *.html);;tous les fichiers (*) @@ -13635,7 +14758,7 @@ DĆ©sirez-vous enregistrer le message dans les brouillons? Exporter en PDF - + Message has not been Sent. Do you want to save message ? Le message n'a pas Ć©tĆ© envoyĆ©. @@ -13657,7 +14780,7 @@ Voulez-vous enregistrer votre message ? Ajouter un fichier supplĆ©mentaire - + Hi,<br>I want to be friends with you on RetroShare.<br> Salut,<br>je voudrais ĆŖtre ami avec vous sur RetroShare. <br> @@ -13681,24 +14804,28 @@ Voulez-vous enregistrer votre message ? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Vous avez une invitation de la part d'un ami + Respond now: RĆ©pondre maintenant : - - + + Close Fermer - + From: De : - + Friend Nodes Noeuds amis @@ -13743,13 +14870,13 @@ Voulez-vous enregistrer votre message ? Liste ordonnĆ©e (romain majuscule) - - + + Thanks, <br> Remerciements, <br> - + Distant identity: IdentitĆ© distante : @@ -13759,12 +14886,12 @@ Voulez-vous enregistrer votre message ? [Manquante] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Veuillez crĆ©er une identitĆ© pour signer vos messages distants, ou enlever de la liste de destinations les pairs distants. - + Node name & id: Nom de noeud et id: @@ -13842,7 +14969,7 @@ Voulez-vous enregistrer votre message ? Par dĆ©faut - + A new tab Un nouvel onglet @@ -13852,7 +14979,7 @@ Voulez-vous enregistrer votre message ? Une nouvelle fenĆŖtre - + Edit Tag Modifier le mot clĆ© @@ -13875,7 +15002,7 @@ Voulez-vous enregistrer votre message ? MessageToaster - + Sub: Sous : @@ -13883,7 +15010,7 @@ Voulez-vous enregistrer votre message ? MessageUserNotify - + Message Message @@ -13911,7 +15038,7 @@ Voulez-vous enregistrer votre message ? MessageWidget - + Recommended Files Fichiers recommandĆ©s @@ -13921,37 +15048,37 @@ Voulez-vous enregistrer votre message ? TĆ©lĆ©charger tous les fichiers recommandĆ©s - + Subject: Sujet : - + From: De : - + To: Pour : - + Cc: Cc : - + Bcc: Cci : - + Tags: Mots clĆ©s : - + Reply RĆ©pondre @@ -13973,7 +15100,7 @@ Voulez-vous enregistrer votre message ? Forward - Suivant + @@ -13991,7 +15118,7 @@ Voulez-vous enregistrer votre message ? - + Send Invite Envoyer invitation @@ -14043,7 +15170,7 @@ Voulez-vous enregistrer votre message ? - + Confirm %1 as friend Confirmer %1 comme ami @@ -14053,12 +15180,12 @@ Voulez-vous enregistrer votre message ? Ajouter %1 comme ami - + View source - + No subject Pas de sujet @@ -14068,22 +15195,17 @@ Voulez-vous enregistrer votre message ? TĆ©lĆ©charger - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14093,23 +15215,21 @@ Voulez-vous enregistrer votre message ? - - Show less - + Send invite? + Envoyer invitation ? - - Show more - + Do you really want send a invite with your Certificate? + Voulez-vous vraiment envoyer une invitation avec votre certificat ? - + Download all Tout tĆ©lĆ©charger - + Print Document Imprimer le document @@ -14124,12 +15244,12 @@ Voulez-vous enregistrer votre message ? Fichiers HTML (*.htm *.html);;tous les fichiers (*) - + Load images always for this message Toujours charger les images pour ce message - + Hide the attachment pane Cacher le panneau piĆØce jointe @@ -14151,6 +15271,42 @@ Voulez-vous enregistrer votre message ? Compose Ɖcrire + + Reply to selected message + RĆ©pondre au(x) message(s) sĆ©lectionnĆ©(s) + + + Reply + RĆ©pondre + + + Reply all to selected message + RĆ©pondre Ć  tous les destinataires du(des) message(s) sĆ©lectionnĆ©(s) + + + Reply all + RĆ©pondre Ć  tous + + + Forward selected message + TransfĆ©rer le(s) message(s) sĆ©lectionnĆ©(s) + + + Forward + Suivante + + + Remove selected message + Supprimer le(s) message(s) sĆ©lectionnĆ©(s) + + + Delete + Supprimer + + + Print selected message + Imprimer le(s) message(s) sĆ©lectionnĆ©(s) + Print @@ -14229,7 +15385,7 @@ Voulez-vous enregistrer votre message ? MessagesDialog - + New Message Nouveau message @@ -14239,16 +15395,60 @@ Voulez-vous enregistrer votre message ? Ɖcrire - + Reply to selected message + RĆ©pondre au(x) message(s) sĆ©lectionnĆ©(s) + + + Reply + RĆ©pondre + + + Reply all to selected message + RĆ©pondre Ć  tous les destinataires du(des) message(s) sĆ©lectionnĆ©(s) + + + Reply all + RĆ©pondre Ć  tous + + + Forward selected message + TransfĆ©rer le(s) message(s) sĆ©lectionnĆ©(s) + + + Foward + TransfĆ©rer + + + Remove selected message + Supprimer le(s) message(s) sĆ©lectionnĆ©(s) + + + Delete + Supprimer + + + Print selected message + Imprimer le(s) message(s) sĆ©lectionnĆ©(s) + + + Print + Imprimer + + + Display + Affichage + + + - - + + Tags Mots clĆ©s - - + + Inbox BoĆ®te de rĆ©ception @@ -14278,17 +15478,21 @@ Voulez-vous enregistrer votre message ? Corbeille - + Total Inbox: Tous les messages : - + Folders + Dossiers + + + Quick View Vue rapide - + Print... Imprimer... @@ -14298,6 +15502,26 @@ Voulez-vous enregistrer votre message ? Print Preview AperƧu avant impression + + Buttons Icon Only + IcĆ“nes uniquement + + + Buttons Text Beside Icon + Texte Ć  cotĆ© des icĆ“nes + + + Buttons with Text + IcĆ“nes avec texte + + + Buttons Text Under Icon + Texte en dessous des icĆ“nes + + + Set Text Under Icon + DĆ©finir le texte sous les icĆ“nes + Save As... @@ -14319,7 +15543,7 @@ Voulez-vous enregistrer votre message ? Faire suivre le(s) message(s) - + Subject Sujet @@ -14329,7 +15553,7 @@ Voulez-vous enregistrer votre message ? De - + Date Date @@ -14339,7 +15563,39 @@ Voulez-vous enregistrer votre message ? Contenu - + Click to sort by attachments + Cliquer pour trier par fichiers attachĆ©s + + + Click to sort by subject + Cliquer pour trier par sujet + + + Click to sort by read + Cliquer pour trier par lu + + + Click to sort by from + Cliquer pour trier par expĆ©diteur + + + Click to sort by date + Cliquer pour trier par date + + + Click to sort by tags + Cliquer pour trier par mots clĆ©s + + + Click to sort by star + Cliquer pour trier par suivi + + + Forward selected Message + TransfĆ©rer le(s) message(s) sĆ©lectionnĆ©(s) + + + Search Subject Rechercher sujet @@ -14348,11 +15604,6 @@ Voulez-vous enregistrer votre message ? Search From Rechercher de - - - Search To - - Search Date @@ -14379,14 +15630,14 @@ Voulez-vous enregistrer votre message ? Rechercher piĆØces jointes - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare a son propre systĆØme de messagerie interne. Vous pouvez en envoyer/recevoir vers/depuis les noeuds de vos amis connectĆ©s.</p> <p>Il est aussi possible d'envoyer des messages vers les IdentitĆ©s d'autres personnes en utilisant le systĆØme de routage global. Ces messages sont toujours chiffrĆ©s et sont relayĆ©s par des noeuds intermĆ©diaires jusqu'Ć  ce qu'ils atteignent leur destination finale. </p> <p>Les messages distants restent dans votre boite d'envoi jusqu'Ć  ce qu'un accusĆ© de rĆ©ception soit reƧu.</p> <p>De faƧon gĆ©nĆ©rale, vous pouvez utiliser les messages afin de recommander des fichiers Ć  vos amis en y collant des liens de fichiers, ou recommander des noeuds amis Ć  d'autres noeuds amis, afin de renforcer votre rĆ©seau, ou envoyer du retour d'information (feedback) au propriĆ©taire d'une chaĆ®ne.</p> - + Starred - + Suivi @@ -14460,7 +15711,7 @@ Voulez-vous enregistrer votre message ? - Show in People + Show author in People @@ -14474,7 +15725,7 @@ Voulez-vous enregistrer votre message ? - + No message using %1 tag available. @@ -14489,33 +15740,38 @@ Voulez-vous enregistrer votre message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Brouillons - + No Box selected. - - To - Pour + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Il n'y a pas de messages suivis. Suivre un message vous permettra de le retrouver plus facilement ultĆ©rieurement. Pour suivre un message, cliquez sur l'Ć©toile grise devant n'importe quel message. - + No system messages available. + Aucun message systĆØme disponible. + + + To + Pour + + + Click to sort by to + Cliquer pour trier par destinataire + + + This message goes to a distant person. + Ce message va vers une personne distante. + + + @@ -14523,6 +15779,26 @@ Voulez-vous enregistrer votre message ? Total: Total : + + Messages + Messages + + + Click to sort by signature + Cliquer pour trier par signature + + + This message was signed and the signature checks + Ce message a Ć©tĆ© signĆ© et la signature vĆ©rifiĆ©e + + + This message was signed but the signature doesn't check + Ce message a Ć©tĆ© signĆ© mais la signature n'a pas Ć©tĆ© vĆ©rifiĆ©e + + + This message comes from a distant person. + Ce message vient d'une personne distante. + Mail @@ -14550,17 +15826,7 @@ Voulez-vous enregistrer votre message ? MimeTextEdit - - Save image - Sauvegarder image - - - - Copy image - - - - + Paste as plain text Coller comme texte brut @@ -14614,7 +15880,7 @@ Voulez-vous enregistrer votre message ? - + Expand DĆ©velopper @@ -14624,7 +15890,7 @@ Voulez-vous enregistrer votre message ? Effacer le message - + from depuis @@ -14659,10 +15925,18 @@ Voulez-vous enregistrer votre message ? Message(s) en attente - + Hide Cacher + + Send invite? + Envoyer invitation ? + + + Do you really want send a invite with your Certificate? + Voulez-vous vraiment envoyer une invitation avec votre certificat ? + NATStatus @@ -14800,7 +16074,7 @@ Voulez-vous enregistrer votre message ? ID du contact - + Remove unused keys... Suppression des clĆ©s inutilisĆ©es... @@ -14810,7 +16084,7 @@ Voulez-vous enregistrer votre message ? - + Clean keyring Nettoyer le trousseau @@ -14828,13 +16102,7 @@ Remarques : votre ancien trousseau sera sauvegardĆ©. La suppression peut Ć©chouer lors de l'exĆ©cution de plusieurs instances de Retroshare sur la mĆŖme machine. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Info du trousseau @@ -14870,13 +16138,18 @@ Par mesure de sĆ©curitĆ© votre trousseau prĆ©cĆ©dent Ć  Ć©tĆ© sauvegardĆ© sous f 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. + + + Export/create a new node + Exporter/crĆ©er un nouveau noeud + Trusted keys only ClĆ©s de confiance uniquement - + Search name Chercher nom @@ -14886,12 +16159,12 @@ Par mesure de sĆ©curitĆ© votre trousseau prĆ©cĆ©dent Ć  Ć©tĆ© sauvegardĆ© sous f Chercher ID de pair - + Profile details... DĆ©tails du profil ... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14900,6 +16173,13 @@ Reported error: Erreur remontĆ©e : + + NetworkPage + + Network + RĆ©seau + + NetworkView @@ -14926,7 +16206,7 @@ Erreur remontĆ©e : NewFriendList - + Offline Friends @@ -14947,7 +16227,7 @@ Erreur remontĆ©e : - + Groups Groupes @@ -14977,19 +16257,19 @@ Erreur remontĆ©e : Importer votre liste d'amis en incluant les groupes - - + + Search - + ID ID - + Search ID Chercher ID @@ -14999,12 +16279,12 @@ Erreur remontĆ©e : - + Show Items Options d'affichage - + Last contact @@ -15014,7 +16294,7 @@ Erreur remontĆ©e : IP - + Group Groupe @@ -15129,7 +16409,7 @@ Erreur remontĆ©e : Tout replier - + Do you want to remove this node? Voulez-vous retirer ce noeud ? @@ -15139,7 +16419,7 @@ Erreur remontĆ©e : DĆ©sirez-vous supprimer cet ami ? - + Done! TerminĆ© ! @@ -15254,7 +16534,11 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe NewsFeed - + Log entries + EntrĆ©es du journal + + + Activity Stream @@ -15269,7 +16553,11 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Tout effacer - + This is a test. + C'est un test. + + + Newest on top Les plus rĆ©cents en haut @@ -15279,12 +16567,21 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Les plus anciens en haut - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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;Fil d'actualitĆ©s</h1> <p>Le fil d'actualitĆ©s affiche les derniers Ć©vĆ©nements survenus dans votre rĆ©seau, triĆ©s selon le moment où vous les avez reƧus. Cela vous donne un rĆ©sumĆ© de l'activitĆ© de vos amis. Vous pouvez configurer les Ć©vĆ©nements Ć  afficher en cliquant sur <b>Options</ b>. +Les divers Ć©vĆ©nements affichĆ©s sont : <ul> <li>Les tentatives de connexion (utile pour ajouter de nouveaux amis et savoir qui essaie de vous contacter) </li> <li> Les nouveaux articles dans les chaĆ®nes et les forums</li> <li>Les nouvelles chaĆ®nes et forums auxquels vous pouvez vous abonner</li> <li>Les messages privĆ©s de vos amis </li> </ul> </p> + + + Log + Journal + + + Activity @@ -15339,6 +16636,10 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Blogs Blogs + + Security + SĆ©curitĆ© + @@ -15360,6 +16661,10 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Message Message + + Connect attempt + Tentative de connexion + @@ -15376,6 +16681,10 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Ip security SĆ©curitĆ© IP + + Log + Journal + Friend Connected @@ -15386,6 +16695,10 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Circles Cercles + + Links + Liens + Activity @@ -15438,6 +16751,26 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Chat rooms Salons de tchat + + Chat Rooms + Salons de tchat + + + 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. + 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. + + + Case sensitive + Sensible Ć  la casse + Position @@ -15513,16 +16846,24 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Disable All Toaster temporarily DĆ©sactiver toutes les notifications grille-pain temporairement + + Feed + Flux + Systray Zone de notification + + Count all unread messages + Compter tous les messages non lus + NotifyQt - + Passphrase required Phrase de passe requise @@ -15542,12 +16883,12 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe Mauvais mot de passe ! - + Please enter your Retroshare passphrase Veuillez saisir votre phrase de passe Retroshare - + Unregistered plugin/executable Extension/exĆ©cutable non enregistrĆ©e @@ -15562,7 +16903,19 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe S'il vous plaĆ®t vĆ©rifier votre horloge systĆØme. - + Examining shared files... + Analyse des fichiers partagĆ©s... + + + Hashing file + Hachage fichier + + + Saving file index... + Enregistrement de l'index des fichiers... + + + Test Test @@ -15573,19 +16926,17 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe - Unknown title Titre inconnu - + - Encrypted message Message chiffrĆ© - + For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). Afin que les salons de tchat fonctionnent correctement, l'heure de votre ordinateur doit ĆŖtre correcte. Veuillez vĆ©rifier que c'est le cas (un possible dĆ©calage de plusieurs minutes a Ć©tĆ© dĆ©tectĆ© avec vos amis). @@ -15593,7 +16944,7 @@ au moins un contact n'a pas Ć©tĆ© ajoutĆ© au groupe OnlineToaster - + Friend Online En ligne @@ -15645,6 +16996,10 @@ Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers PGPKeyDialog + + Dialog + Dialogue + Profile info @@ -15710,6 +17065,10 @@ Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers This profile has signed your own profile key Ce profil a signĆ© votre propre clĆ© de profil + + Key signatures : + Signatures de clĆ© : + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> @@ -15739,20 +17098,23 @@ p, li { white-space: pre-wrap; } ClĆ© PGP - - Friend options - - - - + These options apply to all nodes of the profile: Ces options s'appliquent Ć  tous les emplacement du profil : + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Signer la clĆ© d'un ami est une faƧon d'exprimer Ć  vos autres amis votre confiance en cet ami. Cela les aide Ć  dĆ©cider, en se basant sur votre propre confiance, si ils doivent permettre des connexions depuis cette clĆ©. Signer une clĆ© est absolument facultatif et ne peut pas ĆŖtre dĆ©fait, alors faites-le avec sagesse.</span></p></body></html> + Keysigning: + + Sign PGP key + Signer la clĆ© PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15789,7 +17151,12 @@ p, li { white-space: pre-wrap; } Inclure les signatures - + + Options + 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 vĆ©rifie pĆ©riodiquement les listes de votre ami pour trouver des fichiers parcourables correspondants Ć  vos transferts, afin d'Ć©tablir un transfert direct. Dans ce cas, votre ami sait que vous tĆ©lĆ©chargez le fichier.</p><p align="justify">Pour empĆŖcher ce comportement pour cet ami seulement, dĆ©cochez cette boĆ®te. Vous pouvez toujours exĆ©cuter un transfert direct si vous le demandez explicitement, par exemple en tĆ©lĆ©chargeant depuis la liste de fichiers de votre ami. Cet rĆ©glage est appliquĆ© Ć  tous les emplacements du mĆŖme noeud.</p></body></html> @@ -15803,6 +17170,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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>Cette option vous permet de tĆ©lĆ©charger automatiquement un fichier qui serait recommandĆ© dans un message venant de ce noeud. Ceci peut ĆŖtre utilisĆ© par exemple pour envoyer des fichiers entre vos propres noeuds. L'option est appliquĆ©e Ć  tous les emplacements du mĆŖme noeud.</p></body></html> + Auto-download recommended files from this node @@ -15835,21 +17206,21 @@ p, li { white-space: pre-wrap; } KO/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Erreur : impossible d'obtenir les dĆ©tails de ce contact. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) L'algorithme de la clĆ© fournie n'est pas supportĆ© par Retroshare @@ -15870,7 +17241,7 @@ 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. Le niveau de confiance est une faƧon d'exprimer votre propre confiance en cette clĆ©. Cela n'est pas utilisĆ© par le logiciel, ni partagĆ©, mais cela peut ĆŖtre utile pour vous afin de vous rappeler les bonnes/mauvaises clĆ©s. @@ -15939,6 +17310,10 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Check the password! + + Maybe password is wrong + Le mot de passe est peut-ĆŖtre incorrect + You haven't set a trust level for this key. @@ -15946,12 +17321,12 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg - + Retroshare profile Profil Retroshare - + This is your own PGP key, and it is signed by : Ceci est votre propre clĆ© PGP, et elle a Ć©tĆ© signĆ©e par : @@ -15977,7 +17352,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg PeerItem - + Chat Tchat @@ -15998,7 +17373,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Effacer - + Name: Nom : @@ -16038,7 +17413,7 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg DĆ©calage temps  : - + Write Message Ɖcrire un message @@ -16052,6 +17427,10 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Friend Connected Ami connectĆ© + + Connect Attempt + Tentative de connexion + Connection refused by peer @@ -16090,13 +17469,17 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Unknown + + Unknown Peer + Contact inconnu + Hide Cacher - + Send Message Envoyer le message @@ -16148,6 +17531,10 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg Chat with this person as... Tchater avec cette personne en tant que ... + + Send message to this person + Envoyer un message Ć  cette personne + Invite to Circle @@ -16206,6 +17593,10 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg <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>Toute personne dans votre liste de contacts aura automatiquement une opinion positive si elle n'est pas dĆ©finie. Cela permet d'augmenter automatiquement la rĆ©putation des nœuds utilisĆ©s.</p></body></html> + + automatically give "Positive" opinion to my contacts + Donner automatiquement l'avis "positif" Ć  mes contacts + use "positive" as the default opinion for contacts (instead of neutral) @@ -16263,6 +17654,13 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg <html><head/><body><p>Afin d'empĆŖcher les ID bannies supprimĆ©es de revenir parce qu'ils sont utilisĆ©s dans, par ex. Forums ou canaux, les identitĆ©s bannies sont conservĆ©es dans une liste pendant un certain temps. AprĆØs cela, ils sont "effacĆ©s" ƀ partir de la liste d'interdiction, et sera tĆ©lĆ©chargĆ© Ć  nouveau comme non autorisĆ© s'il est utilisĆ© dans les forums, les salons de tchat, etc.</p></body></html> + + PhotoCommentItem + + Form + Formulaire + + PhotoDialog @@ -16270,11 +17668,23 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg PhotoShare PhotoShare + + Photo + Photo + TextLabel Etiquette + + Comment + Commentaire + + + Summary + RĆ©sumĆ© + Album / Photo Name @@ -16335,6 +17745,14 @@ Attention: Dans vos PrĆ©fĆ©rences de Fichiers, vous avez interdit le tĆ©lĆ©charg ... ... + + Add Comment + Ajouter un commentaire + + + Write a comment... + Ecrivez un commentaire... + Album @@ -16405,6 +17823,10 @@ p, li { white-space: pre-wrap; } Create Album CrĆ©er un album + + View Album + Afficher l'album + Edit Album Details @@ -16426,17 +17848,17 @@ p, li { white-space: pre-wrap; } Diaporama - + My Albums Vos albums - + Subscribed Albums Albums abonnĆ©s - + Shared Albums Albums partagĆ©s @@ -16466,7 +17888,7 @@ avant de vouloir le modifier ! PhotoSlideShow - + Album Name Nom de l'album @@ -16525,19 +17947,19 @@ avant de vouloir le modifier ! - - + + TextLabel - + Posted by - + ago @@ -16573,12 +17995,12 @@ avant de vouloir le modifier ! PluginItem - + TextLabel Etiquette - + Show more details about this plugin sera activĆ© aprĆ©s le redĆ©marrage de Retroshare @@ -16724,6 +18146,60 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Dossiers des extensions + + Plugin disabled. Click the enable button and restart Retroshare + Plug-in dĆ©sactivĆ©. Cliquez le bouton "activer" puis redĆ©marrez Retroshare + + + [disabled] + [dĆ©sactivĆ©] + + + No API number supplied. Please read plugin development manual. + Aucun numĆ©ro d'API fourni. S'il vous plaĆ®t lire le manuel de dĆ©veloppement des extensions. + + + [loading problem] + [problĆØme de chargement] + + + No SVN number supplied. Please read plugin development manual. + Aucun numĆ©ro de SVN fourni. S'il vous plaĆ®t lire le manuel de dĆ©veloppement des extensions. + + + Loading error. + Erreur de chargement. + + + Missing symbol. Wrong version? + Symbole manquant. Mauvaise version ? + + + No plugin object + Pas d'extension + + + Plugins is loaded. + L'extension est chargĆ©e + + + Unknown status. + Statut inconnue. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Cochez cette case pour le dĆ©veloppement des extensions. Elles ne seront pas +vĆ©rifiĆ© par hachage. Toutefois, dans des conditions normales +en vĆ©rifiant la valeur de hachage cela vous protĆØge contre les +comportements malveillants des extensions. + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Extensions</h1> <p>Les extensions sont chargĆ©es depuis les rĆ©pertoires affichĆ©s dans la liste tout en bas.</p> <p>Pour des raisons de sĆ©curitĆ©, les extensions reconnues sont chargĆ©es automatiquement, jusqu'Ć  ce que l'exĆ©cutable principal Retroshare ou que de la bibliothĆØque de plug-in ne changent. Dans un tel cas, l'utilisateur doit confirmer les plugins Ć  nouveau. AprĆØs le dĆ©marrage du programme, vous pouvez activer un plugin manuellement en cliquant sur ​​le bouton "Activer" puis ensuite redĆ©marrer Retroshare.</p> <p>Si vous voulez dĆ©velopper vos propres extensions, contactez l'Ć©quipe de dĆ©veloppeurs, ils seront heureux de vous aider !</p> + Plugins @@ -16793,27 +18269,12 @@ p, li { white-space: pre-wrap; } Mettre la fenĆŖtre sur le dessus - - Ban this person (Sets negative opinion) - Bannir cette personne (met une opinion nĆ©gative) - - - - Give neutral opinion - Donne opinion neutre - - - - Give positive opinion - Donne opinion positive - - - + Choose window color... - + Dock window @@ -16847,6 +18308,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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. + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + La fermeture de cette fenĆŖtre met fin Ć  la conversation, informez le contact puis supprimez le tunnel chiffrĆ©. + + + Kill the tunnel? + Tuer ce tunnel ? + PostedCardView @@ -16866,7 +18343,7 @@ p, li { white-space: pre-wrap; } Nouveau - + Vote up Voter pour @@ -16886,8 +18363,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Commentaires @@ -16912,13 +18389,13 @@ p, li { white-space: pre-wrap; } - - + + Comment Commentaire - + Comments Commentaires @@ -16946,12 +18423,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + SignĆ© par : + + + Notes + Notes + + + Create a new Post - + RetroShare Retroshare @@ -16966,22 +18451,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Charger le fichier image - + Post image @@ -16997,17 +18472,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -17017,7 +18482,23 @@ p, li { white-space: pre-wrap; } - + Submit Post + Soumettre l'article + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + Vous proposez un lien. La clĆ© d'une proposition rĆ©ussie est un contenu intĆ©ressant et ayant un titre descriptif. + + + Submit + Soumettre + + + Submit a new Post + Soumettre un nouveau lien + + + Please add a Title Veuillez ajouter un titre @@ -17037,22 +18518,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17067,7 +18538,7 @@ p, li { white-space: pre-wrap; } Poster en tant que - + Post @@ -17078,7 +18549,7 @@ p, li { white-space: pre-wrap; } Image - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17088,7 +18559,7 @@ p, li { white-space: pre-wrap; } Titre - + Link Lien @@ -17096,12 +18567,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Liens publiĆ©s + + + <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;Liens</h1> <p>Le service de publication vous permet de partager des liens internet, qui se propagent entre les nœuds Retroshare Ć  la maniĆØre des forums et des chaĆ®nes</p> <p>Les liens peuvent ĆŖtre commentĆ©s par les utilisateurs inscrits. Un systĆØme de promotion donne Ć©galement la possibilitĆ© de mettre en avant les liens importants.</p> <p>Il n'y a aucune restriction concernant les liens qui sont partagĆ©s. Soyez prudent lorsque vous cliquez sur eux.</p> <p>Les liens publiĆ©s sont conservĆ©s pour %1 jours et synchronisĆ©s au cours des derniers %2 jours, Ć  moins que vous ne les modifiez.</p> + + + Create Topic + CrĆ©er un sujet + + + My Topics + Vos sujets + + + Subscribed Topics + Sujets abonnĆ©s + + + Popular Topics + Sujets populaires + + + Other Topics + Autres sujets + + + Links + Liens + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17135,7 +18638,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Sujet publiĆ© + + + Add Topic Admins + Ajouter des admins au sujet + + + Select Topic Admins + Selectionner les admins + + + Create New Topic + CrĆ©er un nouveau sujet + + + Edit Topic + Ɖditer le sujet + + + Update Topic + Mettre Ć  jour le sujet + + + Create New Board @@ -17173,17 +18700,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted AbonnĆ© Ć  PostĆ© @@ -17199,7 +18716,7 @@ p, li { white-space: pre-wrap; } - + Expand Montrer @@ -17214,17 +18731,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + Description postĆ©e + + + Loading + Chargement + + + New Posted + Nouveau post + + + Loading... - - Never - Jamais - - - + New Board @@ -17237,18 +18761,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Site + + + + Comments Commentaires - + Copy RetroShare Link @@ -17259,12 +18787,12 @@ p, li { white-space: pre-wrap; } - + Comment Commentaire - + Comments Commentaires @@ -17274,7 +18802,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>L'auteur de ce message (avec l'ID %1) est banni.</b> - + Click to view Picture @@ -17284,17 +18812,21 @@ p, li { white-space: pre-wrap; } Cacher - + Vote up Voter pour - + Vote down Voter contre - + \/ + \/ + + + Set as read and remove item DĆ©finir comme lu et supprimer l'Ć©lĆ©ment @@ -17304,7 +18836,7 @@ p, li { white-space: pre-wrap; } Nouveau - + New Comment: Nouveau commentaire : @@ -17314,7 +18846,7 @@ p, li { white-space: pre-wrap; } Valeur du commentaire - + Name Nom @@ -17355,10 +18887,77 @@ p, li { white-space: pre-wrap; } - + Loading Chargement + + By + Par + + + + PostedListWidget + + Form + Formulaire + + + Hot + Chaud + + + New + Nouveau + + + Top + Top + + + Today + Aujourd'hui + + + Yesterday + Hier + + + This Week + Cette semaine + + + This Month + Ce mois-ci + + + This Year + Cette annĆ©e + + + Submit a new Post + Soumettre un nouveau lien + + + Next + Suivant + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Veuillez crĆ©er ou choisir une ID de signature avant de voter + + + Previous + PrĆ©cĆ©dent + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17378,17 +18977,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17398,15 +18987,15 @@ p, li { white-space: pre-wrap; } Administrateur : - + - + unknown inconnu - + Distribution: Distribution : @@ -17416,42 +19005,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17468,10 +19057,10 @@ p, li { white-space: pre-wrap; } Hot - Hot + - + Search @@ -17501,17 +19090,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17526,17 +19115,12 @@ p, li { white-space: pre-wrap; } Vide - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17546,31 +19130,27 @@ p, li { white-space: pre-wrap; } Modifier - - + information information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17585,7 +19165,7 @@ p, li { white-space: pre-wrap; } S'abonner - + Never Jamais @@ -17659,16 +19239,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Aucune chaĆ®ne sĆ©lectionnĆ©e - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17677,6 +19247,14 @@ p, li { white-space: pre-wrap; } Tabs Onglets + + Open each topic in a new tab + Ouvrir chaque sujet dans un nouvel onglet + + + Links + Liens + Open each board in a new tab @@ -17690,6 +19268,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + PubliĆ© + Board Post @@ -17758,17 +19340,25 @@ p, li { white-space: pre-wrap; } Gestionnaire de 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:'Sans Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> - +</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> @@ -17879,7 +19469,7 @@ et utiliser le bouton d'importation pour la charger ProfileWidget - + Edit status message Modifier le message d'Ć©tat @@ -17895,7 +19485,7 @@ et utiliser le bouton d'importation pour la charger Gestionnaire de profil - + Public Information Information publique @@ -17930,12 +19520,12 @@ et utiliser le bouton d'importation pour la charger En ligne depuis : - + Other Information Autres informations - + My Address Votre adresse @@ -17979,27 +19569,51 @@ et utiliser le bouton d'importation pour la charger PulseAddDialog - + Post From: + Article de : + + + Account 1 + Compte 1 + + + Account 2 + Compte 2 + + + Account 3 + Compte 3 + + + Add to Pulse Ajouter a Pulse - + filter + filtre + + + URL Adder + Additionneur URL + + + Display As Afficher en tant que - + URL URL - + GroupLabel - + IDLabel @@ -18009,12 +19623,12 @@ et utiliser le bouton d'importation pour la charger De : - + Head - + Head Shot @@ -18044,13 +19658,13 @@ et utiliser le bouton d'importation pour la charger NĆ©gative - - + + Whats happening? - + @@ -18062,22 +19676,12 @@ et utiliser le bouton d'importation pour la charger - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18086,13 +19690,17 @@ et utiliser le bouton d'importation pour la charger Cancel Annuler + + Post Pulse to Wire + Publier Pulse sur Wire + Post - + Reply to Pulse @@ -18107,24 +19715,34 @@ et utiliser le bouton d'importation pour la charger - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Charger le fichier image + From + De + + + Date + Date + + + ... + ... @@ -18135,7 +19753,7 @@ et utiliser le bouton d'importation pour la charger Formulaire - + @@ -18154,7 +19772,7 @@ et utiliser le bouton d'importation pour la charger PulseReply - + icn @@ -18164,7 +19782,7 @@ et utiliser le bouton d'importation pour la charger - + REPLY @@ -18191,7 +19809,7 @@ et utiliser le bouton d'importation pour la charger - + FOLLOW @@ -18201,7 +19819,7 @@ et utiliser le bouton d'importation pour la charger - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18221,7 +19839,7 @@ et utiliser le bouton d'importation pour la charger - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18337,7 +19955,7 @@ et utiliser le bouton d'importation pour la charger - + FOLLOW @@ -18345,42 +19963,37 @@ et utiliser le bouton d'importation pour la charger PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18412,7 +20025,7 @@ et utiliser le bouton d'importation pour la charger - + FOLLOW @@ -18420,8 +20033,8 @@ et utiliser le bouton d'importation pour la charger QObject - - + + Confirmation Confirmation @@ -18691,12 +20304,12 @@ Les caractĆØres <b>",|,/,\,&lt;,&gt;,*,?</b> seront rem DĆ©tails du contact - + File Request canceled Demande de fichier annulĆ©e - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Cette version de Retroshare utilise OpenPGP SDK. En contre partie, elle n'utilise plus le systĆØme de trousseau de clĆ©s PGP, mais possĆØde son propre trousseau de clĆ©s partagĆ© par toutes les instances de Retroshare. <br><br> Vous ne semblez pas possĆ©der un tel trousseau, bien que des clĆ©s PGP apparaissent pour les comptes Retroshare existants, probablement parce que vous venez d'installer cette nouvelle version du logiciel. @@ -18727,7 +20340,7 @@ Les caractĆØres <b>",|,/,\,&lt;,&gt;,*,?</b> seront rem Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! Ne peut pas dĆ©marrer le Tor Manager ! @@ -18765,7 +20378,7 @@ L'erreur rapportĆ©e est : " Il n'Ć©tait pas possible de dĆ©marrer un service cachĆ©. - + Multiple instances Instances multiples @@ -18787,26 +20400,6 @@ Fichier verrouillĆ© : Fichier verrouillĆ© : - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18827,6 +20420,14 @@ Fichier verrouillĆ© : End-to-end encrypted conversation established + + 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! + Le tunnel sĆ©curisĆ© est en marche. Les messages sont livrĆ©s immĆ©diatement ! + The collection file %1 could not be opened. @@ -18889,7 +20490,7 @@ L'erreur rapportĆ©e est : DonnĆ©es transfĆ©rĆ©es - + You appear to have nodes associated to DSA keys: Vous semblez avoir des noeuds associĆ©s Ć  vos clĆ©s DSA : @@ -18899,7 +20500,7 @@ L'erreur rapportĆ©e est : Les clĆ©s DSA ne sont pas encore supportĆ©es par cette version de RetroShare. Tous ces noeuds seront inutilisables. Nous sommes vraiment dĆ©solĆ©s pour cela. - + enabled activĆ© @@ -18909,7 +20510,7 @@ L'erreur rapportĆ©e est : dĆ©sactivĆ© - + Move IP %1 to whitelist Ajouter l'IP %1 en liste blanche @@ -18925,7 +20526,7 @@ L'erreur rapportĆ©e est : - + %1 seconds ago %1 secondes avant @@ -18993,7 +20594,7 @@ Security: no anonymous IDs SecuritĆ© : pas d'IDs anomymes - + Join chat room Rejoindre le salon de tchat @@ -19021,7 +20622,7 @@ SecuritĆ© : pas d'IDs anomymes incapable de faire l'analyse syntaxique (anglais: parse) du fichier XML ! - + Indefinitely IndĆ©finiment @@ -19201,29 +20802,13 @@ SecuritĆ© : pas d'IDs anomymes Ban list - - - Name - Nom - - Node - Noeud - - - - Address - Adresse - - - - Status Statut - + NXS @@ -19416,6 +21001,10 @@ SecuritĆ© : pas d'IDs anomymes Click to resume the hashing process + + <p>This certificate contains: + <p>Ce certificat contient : + Idle @@ -19466,18 +21055,6 @@ SecuritĆ© : pas d'IDs anomymes Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19640,7 +21217,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Anonyme @@ -19823,7 +21400,7 @@ p, li { white-space: pre-wrap; } Formulaire - + The loading of embedded images is blocked. Le chargement des images intĆ©grĆ©es est bloquĆ©. @@ -19836,7 +21413,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default AutorisĆ© par dĆ©faut @@ -20009,22 +21586,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Sauvegarder image - - - - Copy image - - - - + Document source @@ -20032,12 +21599,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options Options d'affichage d'arborescence - + Show Header @@ -20067,6 +21634,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + Afficher la colonne... + + + [no title] + [pas de titre] + RatesStatus @@ -20729,7 +22304,7 @@ Si vous pensez qu'il est correct, supprimez la ligne correspondante du fich RsDownloadListModel - + Name i.e: file name Nom @@ -20850,7 +22425,7 @@ Si vous pensez qu'il est correct, supprimez la ligne correspondante du fich RsFriendListModel - + Name Nom @@ -20870,7 +22445,7 @@ Si vous pensez qu'il est correct, supprimez la ligne correspondante du fich IP - + Profile ID @@ -20926,7 +22501,7 @@ prevents the message to be forwarded to your friends. Le message sera transmis Ć  vos amis. - + [ ... Redacted message ... ] [ ... Message rĆ©digĆ© ... ] @@ -20940,6 +22515,11 @@ prevents the message to be forwarded to your friends. [Unknown] [Inconnu] + + + [ ... Missing Message ... ] + [ ... Message manquant... ] + RsMessageModel @@ -20953,11 +22533,6 @@ prevents the message to be forwarded to your friends. From De - - - To - - Subject @@ -20980,18 +22555,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Cliquer pour trier par lu - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Cliquer pour trier par expĆ©diteur @@ -21014,9 +22584,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -21037,7 +22605,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. RĆ©initialisation de tous les paramĆØtres de Retroshare. @@ -21098,7 +22666,7 @@ prevents the message to be forwarded to your friends. DĆ©finit la langue de Retroshare. - + Unable to open log file '%1': %2 Impossible d'ouvrir le journal '%1': %2 @@ -21119,7 +22687,11 @@ prevents the message to be forwarded to your friends. N'a pas pu crĆ©er le dossier de donnĆ©es : %1 - + Revision + RĆ©vision + + + opmode @@ -21149,7 +22721,7 @@ prevents the message to be forwarded to your friends. Information concernant le GUI de Retroshare - + Invalid language code specified: Le code de langue indiquĆ© n'est pas valide : @@ -21167,7 +22739,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. Erreur d'accĆØs au registre. Peut-ĆŖtre vous avez besoin des droits d'administrateur. @@ -21184,12 +22756,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Entrez un mot clĆ© ici (minimum 3 caractĆØres) - + Start Search Lancer la recherche @@ -21251,7 +22823,7 @@ prevents the message to be forwarded to your friends. Effacer - + KeyWords Mots clĆ©s @@ -21266,7 +22838,7 @@ prevents the message to be forwarded to your friends. ID de recherche - + Filename Nom du fichier @@ -21366,23 +22938,23 @@ prevents the message to be forwarded to your friends. TĆ©lĆ©charger la sĆ©lection - + File Name Nom du fichier - + Download TĆ©lĆ©charger - + Copy RetroShare Link Copier le lien Retroshare - + Send RetroShare Link Envoyer le lien Retroshare @@ -21392,7 +22964,7 @@ prevents the message to be forwarded to your friends. - + Download Notice TĆ©lĆ©charger la notice @@ -21429,7 +23001,7 @@ prevents the message to be forwarded to your friends. Tout supprimer - + Folder Dossier @@ -21440,17 +23012,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) Nouveau(x) lien(s) Retroshare - + Open Folder Ouvrir rĆ©pertoire - + Create Collection... CrĆ©er une collection ... @@ -21470,7 +23042,7 @@ prevents the message to be forwarded to your friends. TĆ©lĆ©charger Ć  partir d'un fichier collection... - + Collection Collection @@ -21478,7 +23050,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details DĆ©tails du pair @@ -21494,22 +23066,22 @@ prevents the message to be forwarded to your friends. Supprimer Ć©lĆ©ment - + IP address: Adresse IP : - + Peer ID: ID du pair : - + Location: Emplacement : - + Peer Name: Nom du pair : @@ -21526,7 +23098,7 @@ prevents the message to be forwarded to your friends. Cacher - + but reported: mais signalĆ© : @@ -21551,8 +23123,8 @@ prevents the message to be forwarded to your friends. <p>Ceci est l'IP Ć  laquelle votre ami prĆ©tend ĆŖtre connectĆ©. Si vous avez juste changĆ© d'IPs, ceci est une fausse alerte. Sinon, cela signifie que votre connexion Ć  cet ami est retransmise via un pair intermĆ©diaire, ce qui serait suspect.</p> - - + + <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> <html><head/><body><p>Cet avertissement est ici pour vous protĆ©ger contre les attaques visant le traffic transfĆ©rĆ©. Dans un tel cas, l'ami auquel vous ĆŖtes connectĆ© ne verra pas votre IP externe, mais celle de l'attaquant. </p><p><br/></p><p>Cependant, si vous avez juste changĆ© d'IP pour quelque raison que ce soit (quelques fournisseurs d'accĆØs Internet forcent rĆ©guliĆØrement le changement d'IPs) cet avertissement vous informe juste qu'un ami s'est connectĆ© Ć  la nouvelle IP avant que Retroshare n'aie compris que l'IP avait changĆ©. Dans ce cas tout va bien.</p><p><br/></p><p>Vous pouvez facilement supprimer les fausses alertes en mettant en liste blanche vos propres IPs (par exemple la plage d'adresses de votre votre fournisseur d'accĆØs Internet), ou en mettant complĆØtement hors de service ces avertissements dans Options -&gt; Notifications -&gt; le Fil d'actualitĆ©s.</p></body></html> @@ -21560,7 +23132,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare veut devenir ton ami(e) sur Retroshare @@ -21591,7 +23163,7 @@ prevents the message to be forwarded to your friends. - + Expand DĆ©plier @@ -21636,12 +23208,12 @@ prevents the message to be forwarded to your friends. Statut : - + Write Message Envoyer un message - + Connect Attempt Tentative de connexion @@ -21661,22 +23233,17 @@ prevents the message to be forwarded to your friends. Tentative de connexion (sortante) inconnue - + Unknown Security Issue ProblĆØme de sĆ©curitĆ© inconnue - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21686,7 +23253,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Contact inconnu + + + Hide Cacher @@ -21696,7 +23267,7 @@ prevents the message to be forwarded to your friends. DĆ©sirez-vous supprimer cet ami ? - + Certificate has wrong signature!! This peer is not who he claims to be. Ce certificat a une signature erronĆ©e ! Cette personne n'est pas celle qu'elle prĆ©tend ĆŖtre. @@ -21706,12 +23277,12 @@ prevents the message to be forwarded to your friends. Certificat manquant/endommagĆ©. Ce n'est pas un utilisateur rĆ©el de Retroshare. - + Certificate caused an internal error. Ce certificat a provoquĆ© une erreur interne. - + Peer/node not in friendlist (PGP id= Le pair/noeud n'est pas dans la liste d'amis (ID PGP= @@ -21770,12 +23341,12 @@ prevents the message to be forwarded to your friends. - + Local Address Adresse locale - + NAT NAT @@ -21796,22 +23367,22 @@ prevents the message to be forwarded to your friends. Port : - + Local network RĆ©seau local - + External ip address finder DĆ©couverte de l'adresse IP externe - + UPnP UPnP - + Known / Previous IPs: IPs connues / prĆ©cĆ©dentes : @@ -21827,16 +23398,21 @@ que si vous vous connectez Ć  quelqu'un. Laisser cette case cochĆ©e vous ai derriĆØre un pare-feu ou un VPN (virtual private network). - - - + + Allow RetroShare to ask my ip to these websites: + Autoriser Retroshare Ć  rĆ©cupĆ©rer mon adresse IP Ć  partir de ces sites : + + + + + kB/s Ko/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. La gamme de ports acceptables s'Ć©tend de 10 Ć  65535. Normalement les ports en dessous de 1024 sont rĆ©servĆ©s Ć  votre systĆØme. @@ -21846,46 +23422,23 @@ derriĆØre un pare-feu ou un VPN (virtual private network). La gamme de ports acceptables s'Ć©tend de 10 Ć  65535. Normalement les ports en dessous de 1024 sont rĆ©servĆ©s Ć  votre systĆØme. - + Onion Address Adresse Onion - + Discovery On (recommended) DĆ©couverte activĆ©e (recommandĆ©) - + 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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off DĆ©couverte dĆ©sactivĆ©e @@ -21895,7 +23448,7 @@ List of found external IP: CachĆ© - Voir config - + I2P Address Adresse I2P @@ -21920,95 +23473,39 @@ List of found external IP: entrant OK - - - + + Proxy seems to work. Le proxy semble fonctionner. - - + I2P proxy is not enabled proxy I2P non activĆ© - - SAMv3 is running and accessible - + + BOB is running and accessible + BOB en cours d'exĆ©cution et accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? - + BOB is not accessible! Is it running? + BOB n'est pas accessible ! Est-il en cours d'exĆ©cution ? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +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. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client client @@ -22023,7 +23520,73 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -22033,7 +23596,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. Vous ĆŖtes accessible Ć  travers ce service cachĆ©. @@ -22047,12 +23625,12 @@ Tous les services sont-ils bien en marche ? VĆ©rifiez aussi vos ports ! - + [Hidden mode] [Mode cachĆ©] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Ceci vide la liste d'adresses connues. Cette action est utile si, pour une raison quelconque, votre liste d'adresse contient une adresse invalide/sans rapport/expirĆ©e que vous voulez Ć©viter de passer Ć  vos amis en tant qu'adresse de contact.</p></body></html> @@ -22062,7 +23640,7 @@ VĆ©rifiez aussi vos ports ! Effacer - + Download limit (KB/s) Limite de tĆ©lĆ©chargement (KB/s) @@ -22077,23 +23655,23 @@ VĆ©rifiez aussi vos ports ! Limite d'envoi (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>La limite de tĆ©lĆ©versement (upload) concerne le logiciel entier. Une trop petite limite de tĆ©lĆ©versement pourrait Ć©ventuellement bloquer des services Ć  basse prioritĆ© (forums, chaĆ®nes). La valeur minimum recommandĆ©e est 50 Ko/s. </p></body></html> - + WARNING: These values don't take into account the Relays. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22110,7 +23688,17 @@ Maintenant saisissez l'adresse (ex: 127.0.0.1) et le port que vous avez cho 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 @@ -22120,7 +23708,12 @@ Vous pouvez vous connecter Ć  des noeuds cachĆ©s, mĆŖme si vous exĆ©cutez un noe mode avancĆ© - + + I2P Basic Open Bridge + I2P Basic Open Bridge + + + I2P Instance address Adresse d'instance I2P @@ -22130,7 +23723,17 @@ Vous pouvez vous connecter Ć  des noeuds cachĆ©s, mĆŖme si vous exĆ©cutez un noe 127.0.0.1 - + + I2P proxy port + Port du proxy I2P + + + + BOB accessible + BOB accessible + + + Address Adresse @@ -22170,7 +23773,7 @@ Vous pouvez vous connecter Ć  des noeuds cachĆ©s, mĆŖme si vous exĆ©cutez un noe - + Start DĆ©marrer @@ -22185,7 +23788,12 @@ Vous pouvez vous connecter Ć  des noeuds cachĆ©s, mĆŖme si vous exĆ©cutez un noe Stopper - + + BOB status + Statut du BOB + + + Incoming Entrant @@ -22232,32 +23840,7 @@ 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. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Relais @@ -22312,7 +23895,7 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs Total : - + Warning: This bandwidth adds up to the max bandwidth. Avertissement : cette bande passante s'ajoute Ć  la bande passante max. @@ -22337,7 +23920,7 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs 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>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> @@ -22349,7 +23932,7 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs RĆ©seau - + IP Filters Filtres d'IP @@ -22372,7 +23955,7 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs - + Status Statut @@ -22432,28 +24015,17 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs Ajouter en liste blanche - + Hidden Service Configuration Configuration de service cachĆ© - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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>Ceci est le port du proxy Socks de Tor. Votre noeud Retroshare peut utiliser ce port pour se connecter Ć  </p><p>des noeuds cachĆ©s. La led Ć  droite devient verte quand le port est actif sur votre ordinateur. </p><p>Ceci ne signifie pas cependant que votre traffic Retroshare traffic transite Ć  travers Tor. Cela le signifie seulement si </p><p>vous vous connectez Ć  des noeuds cachĆ©s, ou si vous exĆ©cutez vous-mĆŖme un noeud cachĆ©.</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>Cette led est verte dans le port d'Ć©coute sur la gauche est active dans votre ordinateur. Cela ne signifie pas</p><p>que le traffic de votre Retroshare transite Ć  travers Tor. Cela sera le cas seulement si</p><p>vous vous connectez Ć  des noeuds cachĆ©s, ou si vous exĆ©cutez vous-mĆŖme un noeud cachĆ©.</p></body></html> @@ -22469,18 +24041,18 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs - + <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>Cette led est verte dans le port d'Ć©coute sur la gauche est active dans votre ordinateur. Cela ne signifie pas</p><p>que le traffic de votre Retroshare transite Ć  travers I2P. Cela sera le cas seulement si</p><p>vous vous connectez Ć  des noeuds cachĆ©s, ou si vous exĆ©cutez vous-mĆŖme un noeud cachĆ©.</p></body></html> - + I2P outgoing Okay I2P sortant OK - + Service Address Adresse de service @@ -22515,12 +24087,12 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs Veuillez remplir par une adresse de service - + IP Range Plage d'IP - + Reported by DHT for IP masquerading RapportĆ© par la DHT concernant masquerading d'IP (se fait passer pour). @@ -22543,22 +24115,22 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs AjoutĆ© par vous - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>Les adresses IP de la liste blanche sont rassemblĆ©es depuis les sources suivantes : IPs venant Ć  l'intĆ©rieur d'un certificat Ć©changĆ© manuellement, gammes IP entrĆ©es par vous dans cette fenĆŖtre, ou dans les articles du flux de sĆ©curitĆ©.</p><p>Le comportement par dĆ©faut de Retroshare est de (1) toujours permettre la connexion aux pairs ayant leur IP dans la liste blanche, mĆŖme si cette IP est aussi prĆ©sente dans la liste noire; (2) exiger facultativement que les IPs soient dans la liste blanche. Vous pouvez changer ce comportement pour chaque pair Ć  partir de la fenĆŖtre &quot;DĆ©tails&quot de chaque noeud Retroshare. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>La DHT vous permet de rĆ©pondre aux demandes de connexion de vos amis utilisant la DHT de BitTorrent. Elle amĆ©liore grandement la connectivitĆ©. Aucune informations ne sont stockĆ©es en rĆ©alitĆ© dans la DHT. Elle est seulement utilisĆ© comme un systĆØme de proxy afin de se mettre en contact avec d'autres noeuds Retroshare.</p><p>Le service de DĆ©couverte envoie le nom de noeud et les IDs de vos contacts Ć©prouvĆ©s Ć  vos pairs connectĆ©s, afin de les aider Ć  choisir de nouveaux amis. L'amitiĆ© n'est cependant jamais automatique, et deux pairs doivent toujours avoir confiance l'un en l'autre pour permettre la connexion. </p></body></html> - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>La balle devient verte aussitĆ“t que Retroshare rĆ©ussit Ć  obtenir votre propre IP depuis les sites Web listĆ©s ci-dessous, si vous avez permis cette action. Retroshare utilisera aussi d'autres moyens pour dĆ©couvrir votre propre IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Cette liste est automatiquement remplie d'informations rassemblĆ©es depuis des sources multiples : pairs en mode masquerading rapportĆ©s par la DHT, plages IP entrĆ©es par vous et plages IP rapportĆ©es par vos amis. Les rĆ©glages par dĆ©faut devraient vous protĆ©ger contre le relayage de trafic de grande Ć©chelle.</p><p>Devenir automatiquement les IPs employant le masquage peut avoir pour consĆ©quence de placer vos IPs amies dans la liste noire. Dans ce cas, utilisez le menu de contexte afin de les mettre en liste blanche.</p></body></html> @@ -22593,22 +24165,26 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs Bannir automatiquement de la DHT les plages auxquelles dĆ©butent les IP masquerading - + 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> + Tor Socks Proxy Proxy Socks de Tor - + Tor outgoing Okay Tor sortant OK - + Tor proxy is not enabled Le proxy de Tor n'est pas activĆ© @@ -22688,7 +24264,7 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs ShareKey - + check peers you would like to share private publish key with Visualiser les contacts avec qui vous partagez votre clĆ© de publication privĆ©e @@ -22698,12 +24274,12 @@ Si vous avez des soucis concernant la connexion via Tor, pensez Ć  lire les logs Partager avec vos amis - + Share Partager - + You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel. Vous pouvez laisser vos amis connaĆ®tre vos chaĆ®nes en les partageant avec eux. @@ -22723,7 +24299,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Gestionnaire des dossiers partagĆ©s - + Shared directory Dossier partagĆ© @@ -22743,17 +24319,17 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.VisibilitĆ© - + Add new Ajouter un nouveau - + Cancel Annuler - + Add a Share Directory Ajouter un dossier Ć  partager @@ -22763,7 +24339,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Supprimer - + Apply and close Appliquer et fermer @@ -22854,7 +24430,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Le dossier n'a pas Ć©tĆ© trouvĆ© ou le nom du dossier n'est pas acceptĆ©. - + This is a list of shared folders. You can add and remove folders using the buttons at the bottom. When you add a new folder, intially all files in that folder are shared. You can separately setup share flags for each shared directory. Il s'agit d'une liste des dossiers partagĆ©s. Vous pouvez ajouter et supprimer des dossiers en utilisant les boutons en bas. Lorsque vous ajoutez un nouveau dossier, initialement tous les fichiers contenus dans ce dossier sont partagĆ©s. Vous pouvez configurer sĆ©parĆ©ment le type de partage pour chaque rĆ©pertoire sĆ©lectionnĆ©. @@ -22862,7 +24438,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne. SharedFilesDialog - + Files Fichiers @@ -22913,16 +24489,11 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files VĆ©rifier vos fichiers - + Download selected TĆ©lĆ©charger la sĆ©lection @@ -22932,7 +24503,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.TĆ©lĆ©charger - + Copy retroshare Links to Clipboard Copier le lien Retroshare @@ -22947,7 +24518,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Envoyer le lien Retroshare - + Some files have been omitted Certains fichiers ont Ć©tĆ© omis @@ -22963,7 +24534,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Recommandation(s) - + Create Collection... CrĆ©er une collection ... @@ -22988,7 +24559,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.TĆ©lĆ©charger Ć  partir d'un fichier collection... - + 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. @@ -23131,12 +24702,12 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne. SplashScreen - + Load configuration Chargement de la configuration - + Create interface CrĆ©ation de l'interface @@ -23160,7 +24731,7 @@ SĆ©lectionnez les amis avec lesquels vous voulez partager votre chaĆ®ne.Se rappeler du mot de passe - + Log In Se connecter @@ -23517,7 +25088,7 @@ Ce choix peut ĆŖtre inversĆ© dans des paramĆ©trages. Message d'Ć©tat - + Message: Message : @@ -23762,7 +25333,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Supprimer tout les mots clĆ©s @@ -23798,15 +25369,12 @@ p, li { white-space: pre-wrap; } ParamĆ©trage de Tor ... - - + Tor status: Statut de Tor : - - - + Unknown Inconnu @@ -23816,13 +25384,18 @@ p, li { white-space: pre-wrap; } Non dĆ©marrĆ© - - Hidden address: - + + Hidden service address: + Adresse du service cachĆ© : - - + + Tor bootstrap status: + Statut de l'amorƧage de Tor : + + + + Not set Non dĆ©fini @@ -23832,57 +25405,12 @@ p, li { white-space: pre-wrap; } Adresse Onion : - - Error - Erreur - - - - Not connected - Non connectĆ© - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + 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 ...] @@ -23890,17 +25418,21 @@ p, li { white-space: pre-wrap; } TorStatus - + 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> + <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - + Tor is currently offline Tor est hors ligne actuellement @@ -23911,12 +25443,11 @@ p, li { white-space: pre-wrap; } - No tor configuration Pas de configuration de Tor - + Tor proxy is OK @@ -23944,7 +25475,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Options de transfert @@ -23955,7 +25486,7 @@ p, li { white-space: pre-wrap; } Maximum de tĆ©lĆ©chargements simultanĆ©s : - + Shared Directories Dossiers partagĆ©s @@ -23965,27 +25496,22 @@ p, li { white-space: pre-wrap; } Partager automatiquement le dossier de rĆ©ception (recommandĆ©) - + + Edit Share + Modifier le partage + + + Directories - - Configure shared directories - Configurer les dossier partagĆ©s - - - + Auto-check shared directories every VĆ©rifier automatiquement le partage toutes les : - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) minute(s) @@ -24070,7 +25596,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24079,12 +25605,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -24109,12 +25630,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Streaming @@ -24173,13 +25689,38 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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;"> est capable de transfĆ©rer des fichiers et d'effectuer des recherches entre personnes qui ne sont pas amies. Cependant, ce trafic se fait Ć  travers une liste de contacts anonymes.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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;">Vous pouvez paramĆ©trer le type de partage dans la fenĆŖtre de partage de dossier :</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Visible par mes amis</span>: les fichiers sont visibles par mes amis.</li> +<li style=" font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Partage anonyme</span>: les fichiers sont accessibles anonymement par des tunnels F2F.</li></ul></body></html> + Max. tunnel req. forwarded per second: Nombre max. de requĆŖtes de tunnels transmises par sec. : - + + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span> a pour consĆ©quence que le transfert demande des morceaux de fichier de taille de 1 Mo en ordre croissant, ceci facilitant la prĆ©visualisation lors du tĆ©lĆ©chargement. <span style=" font-weight:600;">Random</span> est purement alĆ©atoire et favorise le comportement en essaimage. <span style=" font-weight:600;">Progressif</span> est un compromis, choisissant le prochain morceau au hasard dans moins de 50 Mo aprĆØs la fin du fichier partiel. Cela permet un certain alĆ©atoire tout en empĆŖchant des grands temps d'initialisation de fichiers vides.</p></body></html> + + + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> <html><head/><body><p>Retroshare suspendra tous les transferts et la sauvegarde de fichier de configuration si l'espace disque descend en dessous de cette limite. Cela empĆŖche la perte d'informations sur certains systĆØmes. Une fenĆŖtre contextuelle vous avertira si cela arrive.</p></body></html> @@ -24189,17 +25730,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Cette valeur contrĆ“le le nombre de requĆŖtes de tunnels que votre pair peut transmettre par seconde. </p><p> Si vous avez une grande bande passante, vous pouvez l'augmenter jusqu'Ć  30-40, pour permettre statistiquement aux tunnels plus long de passer. Soyez trĆØs prudent cependant, car cela gĆ©nĆØre de nombreux petits paquets qui peuvent considĆ©rablement ralentir le transfert de vos propres fichiers. </p><p>La valeur par dĆ©faut est de 20. Si vous n'ĆŖtes pas certain, gardez lĆ  ainsi.</p></body></html> - - Warning - Attention - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory SpĆ©cifier le dossier des fichiers terminĆ©s @@ -24227,7 +25758,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed TĆ©lĆ©chargement terminĆ© @@ -24251,23 +25782,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Vous avez %1 tĆ©lĆ©chargements terminĆ©s + + + You have %1 completed download + Vous avez %1 tĆ©lĆ©chargement terminĆ© + + + %1 completed downloads + %1 tĆ©lĆ©chargements terminĆ©s + + + %1 completed download + %1 tĆ©lĆ©chargement terminĆ© + TransfersDialog - - + + Downloads TĆ©lĆ©chargements - + Uploads Envois - + Name i.e: file name Nom @@ -24474,7 +26021,11 @@ p, li { white-space: pre-wrap; } SpĆ©cifier... - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Partage de fichiers</h1> <p>Retroshare utilise deux modes de transfert de fichiers : les transferts directs depuis vos amis, et les transferts distants anonymes par tunnels. En plus, le transfert de fichier est multi-source et permet l'essaimage (vous pouvez ĆŖtre une source pendant le tĆ©lĆ©chargement) </p> <p>Vous pouvez partager des fichiers en utilisant l'icĆ“ne <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> dans la barre latĆ©rale gauche. Ces fichiers seront listĆ©s dans l'onglet "Vos fichiers". Vous pouvez dĆ©cider pour chaque groupe d'amis s'ils peuvent ou pas voir ces fichiers dans l'onglet Mes amis</p> <p>L'onglet "Rechercher" liste les fichiers de vos amis et des fichiers distants qui peuvent ĆŖtre atteints anonymement en utilisant le systĆØme Ć  effet tunnel Ć  sauts multiples.</p> + + + Move in Queue... Mettre en file d'attente... @@ -24499,7 +26050,7 @@ p, li { white-space: pre-wrap; } Choisir le rĆ©pertoire - + Anonymous end-to-end encrypted tunnel 0x Tunnel chiffrĆ© de bout en bout anonyme 0x @@ -24520,7 +26071,7 @@ p, li { white-space: pre-wrap; } Retroshare - + @@ -24553,17 +26104,7 @@ p, li { white-space: pre-wrap; } Le fichier %1 n'est pas terminĆ©. Si c'est un fichier multimĆ©dia, essayez de le prĆ©visualiser. - - Warning - Attention - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Changer le nom du fichier @@ -24578,7 +26119,7 @@ p, li { white-space: pre-wrap; } S'il vous plaĆ®t entrez un nouveau--et valide--nomdefichier - + Expand all Tout dĆ©plier @@ -24705,18 +26246,23 @@ 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> + + + + Columns Colonnes - + File Transfers Transferts de fichiers - + Path Chemin @@ -24726,7 +26272,7 @@ p, li { white-space: pre-wrap; } Afficher la colonne des chemins - + Could not delete preview file N'a pas pu supprimer le fichier d'aperƧu @@ -24736,7 +26282,7 @@ p, li { white-space: pre-wrap; } Le rĆ©essayer ? - + Create Collection... CrĆ©er une collection ... @@ -24751,12 +26297,7 @@ p, li { white-space: pre-wrap; } Vue collection ... - - <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> - - - - + Collection Collection @@ -24766,7 +26307,7 @@ p, li { white-space: pre-wrap; } %1 tunnels - + Anonymous tunnel 0x Tunnel anonyme 0x @@ -24987,6 +26528,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + Tunnels anonymes + Authenticated tunnels @@ -25180,17 +26725,12 @@ p, li { white-space: pre-wrap; } Formulaire - + Enable Retroshare WEB Interface Activer l'interface WEB de Retroshare - - Status: - - - - + Web parameters ParamĆØtres web @@ -25224,33 +26764,27 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + Port: + Port: + Allow access from all IP addresses (Default: localhost only) - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <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> - + Webinterface not enabled Interface web non permise @@ -25260,12 +26794,12 @@ p, li { white-space: pre-wrap; } L'interface web n'est pas activĆ©e. Activez lĆ  via Options -> Interface web. - + failed to start Webinterface Ć©chec de lancement de l'interface web - + Webinterface Interface web @@ -25402,7 +26936,11 @@ p, li { white-space: pre-wrap; } Pages Wiki - + New Group + Nouveau groupe + + + Page Name Nom de la page @@ -25417,7 +26955,7 @@ p, li { white-space: pre-wrap; } Id d'origine - + << << @@ -25505,7 +27043,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Historique des modifications de la page @@ -25540,7 +27078,7 @@ p, li { white-space: pre-wrap; } PageId - + \/ \/ @@ -25570,18 +27108,14 @@ p, li { white-space: pre-wrap; } Mots clĆ©s - - History - Historique - - - + + Show Edit History Afficher l'historique des modifications - + Status Statut @@ -25602,7 +27136,7 @@ p, li { white-space: pre-wrap; } Revenir - + Submit Soumettre @@ -25674,6 +27208,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + TimeRange + Create Account @@ -25685,7 +27223,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + RafraĆ®chir + + + Settings @@ -25700,7 +27247,7 @@ p, li { white-space: pre-wrap; } Autres - + Who to Follow @@ -25720,7 +27267,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25750,17 +27297,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Mois dernier + + + Last Week + Semaine derniĆØre + + + Today + Aujourd'hui + + + New + Nouveau + + + from + De + + + until + jusqu'Ć  + + + Search/Filter + Rechercher/Filtrer + + + Network Wide + Tout le rĆ©seau + + + Manage Accounts + Gestionnaire de comptes + + + Showing: + Affichage : + + + Yourself Moi + + Friends + Amis + Following Following - + Custom + PersonnalisĆ© + + + Account 1 + Compte 1 + + + Account 2 + Compte 2 + + + Account 3 + Compte 3 + + + CheckBox + CheckBox + + + Post Pulse to Wire + Publier Pulse sur Wire + + + RetroShare @@ -25823,42 +27438,35 @@ p, li { white-space: pre-wrap; } Formulaire - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: Emplacement : - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25903,41 +27511,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - Following - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Inconnue @@ -26015,7 +27593,7 @@ p, li { white-space: pre-wrap; } %1a %2j - + k e.g: 3.1 k k @@ -26048,11 +27626,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Images (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? @@ -26171,6 +27753,10 @@ p, li { white-space: pre-wrap; } Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_hu.ts b/retroshare-gui/src/lang/retroshare_hu.ts index d5967ea59..7ef052108 100644 --- a/retroshare-gui/src/lang/retroshare_hu.ts +++ b/retroshare-gui/src/lang/retroshare_hu.ts @@ -84,6 +84,13 @@ Csak rejtett csomópont + + AddCommentDialog + + Add Comment + HozzĆ”szólĆ”s Ć­rĆ”sa + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Ɩsszetett keresĆ©s - + Search Criteria KeresĆ©si feltĆ©tel - + Add a further search criterion. TovĆ”bbi keresĆ©si feltĆ©tel hozzĆ”adĆ”sa. @@ -137,7 +144,7 @@ KeresĆ©si feltĆ©telek tƶrlĆ©se. - + Cancels the search. KeresĆ©s megszakĆ­tĆ”sa. @@ -157,6 +164,177 @@ KeresĆ©s + + AlbumCreateDialog + + Create Album + Album lĆ©trehozĆ”sa + + + Album Name: + Album neve: + + + Category: + Kategória: + + + Animals + Ɓllatok + + + Family + CsalĆ”d + + + Friends + BarĆ”tok + + + Flowers + VirĆ”gok + + + Holiday + VakĆ”ció + + + Landscapes + TĆ”jegysĆ©gek + + + Pets + HĆ”ziĆ”llatok + + + Portraits + PortrĆ©k + + + Travel + UtazĆ”s + + + Work + Munka + + + Random + VĆ©letlenszerű + + + Caption: + KĆ©palƔƭrĆ”s: + + + Where: + HelyszĆ­n: + + + Photographer: + FĆ©nykĆ©pezte: + + + Description: + LeĆ­rĆ”s: + + + Share Options + MegosztĆ”si beĆ”llĆ­tĆ”sok + + + Policy: + SzabĆ”lyok: + + + Quality: + MinősĆ©g: + + + Comments: + HozzĆ”szólĆ”sok: + + + Identity: + SzemĆ©lyazonossĆ”g: + + + Public + Publikus + + + Restricted + KorlĆ”tozott + + + Resize Images (< 1Mb) + KĆ©pek Ć”tmĆ©retezĆ©se (< 1Mb) + + + Resize Images (< 10Mb) + KĆ©pek Ć”tmĆ©retezĆ©se (< 10Mb) + + + Send Original Images + Eredeti kĆ©pek küldĆ©se + + + No Comments Allowed + HozzĆ”szólĆ”sok letiltva + + + Authenticated Comments + HitelesĆ­tett hozzĆ”szólĆ”sok + + + Any Comments Allowed + Minden hozzĆ”szólĆ”s engedĆ©lyezve + + + Publish with Identity + 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;"> +<p style=" margin-top:0px; 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;"> Dobd be ide a kĆ©peket, majd kattints rĆ”juk, hogy szerkeszd a rĆ©szleteiket.</span></p></body></html> + + + Back + Vissza + + + Add Photos + FĆ©nykĆ©pek hozzĆ”adĆ”sa + + + Publish Album + Album kƶzzĆ©tĆ©tele + + + Untitle Album + NĆ©vtelen album + + + Say something about this album... + Mondj valamit az albumról... + + + Where were these taken? + Ezek hol kĆ©szültek? + + + Load Album Thumbnail + Album bĆ©lyegkĆ©p betƶltĆ©se + + AlbumDialog @@ -165,11 +343,19 @@ Album Album + + Album Thumbnail + Album bĆ©lyegkĆ©p + TextLabel CĆ­mke + + Summary + Ɩsszefoglalva + Album Title: @@ -185,6 +371,34 @@ Caption KĆ©palƔƭrĆ”s + + Where: + HelyszĆ­n: + + + When + Mikor + + + Description: + LeĆ­rĆ”s: + + + Share Options + MegosztĆ”si beĆ”llĆ­tĆ”sok + + + Comments + HozzĆ”szólĆ”sok + + + Publish Identity + SzemĆ©lyazonossĆ”g kƶzzĆ©tĆ©tele + + + Visibility + LĆ”thatósĆ”g + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -553,7 +767,7 @@ 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. VigyĆ”zat: Az itt lĆ”tható szolgĆ”ltatĆ”sok kĆ­sĆ©rleti jellegűek, viszont ƶrƶmmel fogadjuk segĆ­tsĆ©ged a tesztelĆ©sben. @@ -569,6 +783,14 @@ p, li { white-space: pre-wrap; } Circles Kƶrƶk + + GxsForums + Gxs fórumok + + + GxsChannels + Gxs csatornĆ”k + The Wire @@ -580,23 +802,10 @@ p, li { white-space: pre-wrap; } FĆ©nykĆ©pek - - AspectRatioPixmapLabel - - - Save image - KĆ©p mentĆ©se - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + AvatĆ”r hozzĆ”adĆ”sa + Remove EltĆ”volĆ­tĆ”s - + Set your Avatar picture AvatĆ”r beĆ”llĆ­tĆ”sa @@ -658,6 +871,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + AvatĆ”r betƶltĆ©se + AvatarWidget @@ -726,10 +943,22 @@ p, li { white-space: pre-wrap; } VisszaĆ”llĆ­tĆ”s - + Receive Rate + FogadĆ”si arĆ”ny + + + Send Rate + KüldĆ©si arĆ”ny + + + Always on Top Mindig felül + + Style + StĆ­lus + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ p, li { white-space: pre-wrap; } % Opaque % Ć”tlĆ”tszósĆ”g + + Save + MentĆ©s + + + Cancel + MĆ©gse + Since: Ɓtvitel kezdete: + + Hide Settings + BeĆ”llĆ­tĆ”sok elrejtĆ©se + BandwidthStatsWidget @@ -822,7 +1063,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment HozzĆ”szólĆ”s @@ -852,12 +1093,12 @@ p, li { white-space: pre-wrap; } - + <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> - + ago @@ -865,7 +1106,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up SzavazĆ”s mellette @@ -885,7 +1126,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -923,7 +1164,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up SzavazĆ”s mellette @@ -943,7 +1184,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -973,7 +1214,7 @@ p, li { white-space: pre-wrap; } MegosztĆ”s - + Toggle Message Read Status Üzenet olvasottsĆ”gĆ”nak vĆ”ltĆ”sa @@ -983,7 +1224,7 @@ p, li { white-space: pre-wrap; } Új - + TextLabel @@ -991,12 +1232,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this Tetszik - + 0 0 @@ -1016,18 +1257,18 @@ p, li { white-space: pre-wrap; } AvatĆ”r - + New Comment - + Copy RetroShare Link - + Expand LenyitĆ”s @@ -1042,12 +1283,12 @@ p, li { white-space: pre-wrap; } - + Name NĆ©v - + Comm value @@ -1216,17 +1457,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels CsatornĆ”k - + Tabs Fülek - + General ƁltalĆ”nos @@ -1236,17 +1477,11 @@ p, li { white-space: pre-wrap; } - - Downloads - LetƶltĆ©sek + Load posts in background (Thread) + HozzĆ”szólĆ”sok betƶltĆ©se a hĆ”ttĆ©rben (FonĆ”l) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Minden egyes csatorna megnyitĆ”sa Ćŗj fülƶn @@ -1254,7 +1489,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Tetszik @@ -1302,18 +1537,18 @@ into the image, so as to AvatĆ”r - + New Comment - + Copy RetroShare Link - + Expand LenyitĆ”s @@ -1328,7 +1563,7 @@ into the image, so as to - + Name NĆ©v @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + HozzĆ”szólĆ”s + + + + Comments + HozzĆ”szólĆ”sok + + + Hide Elrejt @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name NĆ©v @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby TĆ”rsalgószoba megjelenĆ­tĆ©se @@ -1549,6 +1794,22 @@ into the image, so as to Chats TĆ”rsalgószobĆ”k + + You have %1 new messages + %1 Ćŗj üzeneted van + + + You have %1 new message + %1 Ćŗj üzeneted van + + + %1 new messages + %1 Ćŗj üzenet + + + %1 new message + %1 Ćŗj üzenet + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby Ismeretlen szoba - - + + Remove All Ɩsszes eltĆ”volĆ­tĆ”sa @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name NĆ©v - + Count RĆ©sztvevők szĆ”ma @@ -1601,7 +1861,33 @@ into the image, so as to TĆ©ma - + + 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 @@ -1611,7 +1897,7 @@ into the image, so as to 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 @@ -1670,12 +1956,12 @@ Kattints egy tĆ”rsalgószobĆ”ra a bal oldali listĆ”ban, hogy lĆ”sd a rĆ©szleteke 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: @@ -1685,31 +1971,31 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. VĆ”lassz szemĆ©lyazonossĆ”got ehhez a szobĆ”hoz: - + Create chat lobby + TĆ”rsalgószoba lĆ©trehozĆ”sa + + + [No topic provided] [Nincs tĆ©ma beĆ”llĆ­tva] - - + Selected lobby info + KivĆ”lasztott csevegőszoba adatai + + + Private PrivĆ”t - - - + Public Publikus - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted NĆ©vtelen azonosĆ­tók elfogadottak @@ -1719,25 +2005,42 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Automatikus feliratkozĆ”s megszüntetĆ©se - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Automatikus feliratkozĆ”s engedĆ©lyezĆ©se - + Search Chat lobbies TĆ”rsalgószobĆ”k keresĆ©se - + Search Name NĆ©v keresĆ©se - + Subscribed + Feliratkozva + + + Columns Oszlopok + + Yes + Igen + + + No + Nem + Chat rooms @@ -1749,47 +2052,47 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. - + Chat Room info - + Chat room Name: TĆ”rsalgószoba neve: - + Chat room Id: TĆ”rsalgószoba azonosĆ­tó: - + Topic: TĆ©ma: - + Type: TĆ­pus: - + Security: BiztonsĆ”g: - + Peers: Partnerek: - - - - - - + + + + + + TextLabel SzƶvegcĆ­mke @@ -1804,24 +2107,13 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. NĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek - + Show MegjelenĆ­tĆ©s - - Private Subscribed - - - - - - Public Subscribed - - - - + column oszlop @@ -1835,7 +2127,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. ChatMsgItem - + Remove Item EltĆ”volĆ­tĆ”s @@ -1880,22 +2172,46 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. ChatPage - + General ƁltalĆ”nos + + Distant Chat + TĆ”voli beszĆ©lgetĆ©s + Everyone Mindenki + + Contacts + Kapcsolatok + Nobody Senki - + Accept encrypted distant chat from + TitkosĆ­tott tĆ”voli beszĆ©lgetĆ©s fogadĆ”sa tőle: + + + Chat Settings + BeszĆ©lgetĆ©s beĆ”llĆ­tĆ”sai + + + Enable Emoticons Private Chat + Hangulatjelek engedĆ©lyezĆ©se PrivĆ”t beszĆ©lgetĆ©snĆ©l + + + Enable Emoticons Group Chat + Hangulatjelek engedĆ©lyezĆ©se Csoportos beszĆ©lgetĆ©snĆ©l + + + Enable custom fonts EgyĆ©ni betűtĆ­pus engedĆ©lyezĆ©se @@ -1904,6 +2220,10 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Enable custom font size EgyĆ©ni betűmĆ©ret engedĆ©lyezĆ©se + + Minimum font size + MinimĆ”lis betűmĆ©ret + Enable bold @@ -1915,7 +2235,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Dőlt betűk engedĆ©lyezĆ©se - + General settings @@ -1940,7 +2260,11 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. BeĆ”gyazott kĆ©pek betƶltĆ©se - + Chat Lobby + TĆ”rsalgószoba + + + Blink tab icon Villogó ikon a fülƶn @@ -1949,6 +2273,10 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Do not send typing notifications Ne küldjƶn Ć©rtesĆ­tĆ©st arról, ha Ć­rok + + Private Chat + PrivĆ”t beszĆ©lgetĆ©s + Open Window for new chat @@ -1970,7 +2298,11 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Villogó ikon az ablakon/fülƶn - + Chat Font + BeszĆ©lgetĆ©s betűtĆ­pusa + + + Change Chat Font BeszĆ©lgetĆ©s betűtĆ­pusĆ”nak megvĆ”ltoztatĆ”sa @@ -1980,10 +2312,14 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. BeszĆ©lgetĆ©s betűtĆ­pusa: - + History ElőzmĆ©nyek + + Style + StĆ­lus + @@ -1998,13 +2334,17 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Variant: VĆ”ltozat: + + Group chat + Csoportos beszĆ©lgetĆ©s + Private chat PrivĆ”t beszĆ©lgetĆ©s - + Choose your default font for Chat. VĆ”lassz betűtĆ­pust a BeszĆ©lgetĆ©shez. @@ -2068,28 +2408,22 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. <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 + TĆ”rsalgószobĆ”k + Enabled: EngedĆ©lyezve: - + Search KeresĆ©s - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2433,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms TĆ”rsalgószobĆ”k @@ -2206,7 +2530,11 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. TĆ”rolĆ”si idő napokban (0=vĆ©gtelen) - + Search by default + KeresĆ©s alapĆ©rtelmezĆ©sei + + + Case sensitive Kis- Ć©s nagybetű Ć©rzĆ©keny @@ -2245,6 +2573,10 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. 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 @@ -2312,7 +2644,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. ChatToaster - + Show Chat BeszĆ©lgetĆ©s mutatĆ”sa @@ -2348,7 +2680,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. ChatWidget - + Close BezĆ”rĆ”s @@ -2383,12 +2715,12 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Dőlt - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Hangulatjel beillesztĆ©se @@ -2397,6 +2729,10 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Attach a Picture KĆ©p csatolĆ”sa + + <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 @@ -2468,6 +2804,11 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. Insert horizontal rule VĆ­zszintes vonalzó beillesztĆ©se + + + Save image + KĆ©p mentĆ©se + Import sticker @@ -2505,7 +2846,7 @@ Kattints duplĆ”n egy tĆ”rsalgószobĆ”ra a belĆ©pĆ©shez. - + is typing... Ć©ppen Ć­r... @@ -2529,7 +2870,7 @@ a HTML Ć”talakĆ­tĆ”s utĆ”n. VĆ”lassz betütĆ­pust. - + Do you really want to physically delete the history? TĆ©nyleg tƶrƶlni akarod az előzmĆ©nyeket? @@ -2579,7 +2920,7 @@ a HTML Ć”talakĆ­tĆ”s utĆ”n. elfoglalt Ć©s valószĆ­nűleg nem fog vĆ”laszolni - + Find Case Sensitively Kis- Ć©s nagybetű Ć©rzĆ©kenysĆ©g szerinti keresĆ©s @@ -2601,7 +2942,7 @@ a HTML Ć”talakĆ­tĆ”s utĆ”n. 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> @@ -2616,12 +2957,16 @@ a HTML Ć”talakĆ­tĆ”s utĆ”n. <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 @@ -2637,12 +2982,12 @@ a HTML Ć”talakĆ­tĆ”s utĆ”n. - + <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ó @@ -2654,12 +2999,12 @@ 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. @@ -2679,7 +3024,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.ƍrj be egy üzenetet ide - + Don't stop to color after Ne Ć”llj le a szĆ­nezĆ©ssel, miutĆ”n @@ -2705,7 +3050,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. CirclesDialog - + Showing details: RĆ©szletek megjelenĆ­tĆ©se: @@ -2727,7 +3072,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - + Personal Circles SzemĆ©lyes kƶreim @@ -2753,7 +3098,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - + Friends BarĆ”tok @@ -2813,7 +3158,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.BarĆ”tok barĆ”tai - + External Circles (Admin) Külső kƶrƶk (Admin) @@ -2829,7 +3174,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - + Circles Kƶrƶk @@ -2881,48 +3226,43 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - + RetroShare RetroShare - + - + Error : cannot get peer details. Hiba: a partner adatai nem elĆ©rhetőek. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2934,7 +3274,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.TitkosĆ­tĆ”s - + Not connected Nem csatlakozott @@ -3016,17 +3356,25 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.nincs - + <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> @@ -3041,7 +3389,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.<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 Ā­ @@ -3058,16 +3406,118 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.Connect Friend Wizard BarĆ”t hozzĆ”adĆ”sa varĆ”zsló + + Add a new Friend + Új barĆ”t hozzĆ”adĆ”sa + + + &You get a certificate file from your friend + &TanĆŗsĆ­tvĆ”ny fĆ”jl Ć©rkezett a barĆ”todtól + + + &Make friend with selected friends of my friends + &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) + + + Include signatures + AlƔƭrĆ”sokat tartalmaz + + + 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 + + + Run Email program + Levelező program indĆ­tĆ”sa + 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 + + + Certificate files + TanĆŗsĆ­tvĆ”ny fĆ”jlok + + + Use PGP certificates saved in files. + FĆ”jlokba mentett PGP tanĆŗsĆ­tvĆ”nyok hasznĆ”lata. + + + Import friend's certificate... + BarĆ”t tanĆŗsĆ­tvĆ”nyĆ”nak importĆ”lĆ”sa + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + KĆ©szĆ­ttetned kell egy fĆ”jlt, ami tartalmazza a tanĆŗsĆ­tvĆ”nyodat, majd ezt el kell juttatnod a barĆ”todhoz. TermĆ©szetesen hasznĆ”lhatsz korĆ”bban kĆ©szĆ­tett fĆ”jlt is. + + + Export my certificate... + TanĆŗsĆ­tvĆ”nyom exportĆ”lĆ”sa... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Dobd be ebbe az ablakba a barĆ”tod tanĆŗsĆ­tvĆ”nyĆ”t, vagy add meg az elĆ©rĆ©si ĆŗtjĆ”t az alĆ”bbi mezőben + + + Browse + BƶngĆ©szĆ©s + + + Friends of friends + BarĆ”tok barĆ”tai + + + Select now who you want to make friends with. + Most vĆ”laszd ki, hogy kivel szeretnĆ©l barĆ”ti kapcsolatot lĆ©trehozni. + + + Show me: + Mutasd + + + Make friend with these peers + BarĆ”tkozĆ”s velük + RetroShare ID RetroShare azonosĆ­tó + + Use RetroShare ID for adding a Friend which is available in your network. + RetroShare azonosĆ­tó hasznĆ”lata egy a hĆ”lózatodban elĆ©rhető barĆ”t felvĆ©telĆ©hez. + + + Add Friends RetroShare ID... + 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 azonosĆ­tójĆ”t + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + ƍrd be a barĆ”tod RetroShare azonosĆ­tójĆ”t! Pl.: Partner@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3109,7 +3559,27 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.Email - + Invite Friends by Email + BarĆ”tok meghĆ­vĆ”sa emailben + + + Enter your friends' email addresses (separate each one with a semicolon) + ƍrd be a barĆ”taid email cĆ­meit (külƶnĆ­tsd el őket egy-egy pontosvesszővel) + + + Your friends' email addresses: + A barĆ”taid email cĆ­mei: + + + Enter Friends Email addresses + ƍrd be a barĆ”taid email cĆ­meit + + + Subject: + TĆ”rgy: + + + @@ -3125,32 +3595,78 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.A kĆ©relem rĆ©szletei - + Peer details Partner rĆ©szletei - + Name: NĆ©v: + + Email: + Email: + + + 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. + Location: Hely: - + Options BeĆ”llĆ­tĆ”sok - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + 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> - + Add friend to group: BarĆ”t hozzĆ”adĆ”sa a csoporthoz: @@ -3160,7 +3676,7 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.BarĆ”t azonosĆ­tĆ”sa (PGP kulcs alƔƭrĆ”sa) - + Please paste below your friend's Retroshare ID @@ -3185,22 +3701,16 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with BarĆ”t hozzĆ”adĆ”sa - + To accept the Friend Request, click the Finish button. + A barĆ”ti kĆ©relem elfogadĆ”sĆ”hoz kattints a KĆ©sz gombra. + + + Sorry, some error appeared SajnĆ”lom, hiba tƶrtĆ©nt @@ -3220,27 +3730,32 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz.A barĆ”tod rĆ©szletei: - + Key validity: Kulcs Ć©rvĆ©nyessĆ©ge: - + Profile ID: - + + Signers + AlƔƭrók + + + <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. - + To accept the Friend Request, click the Accept button. @@ -3286,17 +3801,49 @@ A nevet kettős kattintĆ”ssal hozzĆ”adhatod a szƶvegszerkesztőhƶz. - + Certificate Load Failed A tanĆŗsĆ­tvĆ”ny betƶltĆ©se sikertelen - + Cannot get peer details of PGP key %1 + A %1 PGP kulcshoz tartozó partner adatainak lehĆ­vĆ”sa sikertelen + + + Any peer I've not signed + AkĆ”rki, akit nem Ć­rtam alĆ” + + + Friends of my friends who already trust me + BarĆ”taim barĆ”tai, akik mĆ”r megbĆ­znak bennem + + + Signed peers showing as denied + AlƔƭrt partnerek elutasĆ­tottkĆ©nt jelennek meg + + + Peer name + Partner neve + + + Also signed by + AlƔƭrva Ć”ltala is + + + Peer 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! - + RetroShare Invitation RetroShare meghĆ­vĆ”s @@ -3318,12 +3865,12 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen - + 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?! - + @@ -3331,7 +3878,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen - + This key is already on your trusted list A kulcs mĆ”r fenn van a megbĆ­zhatók listĆ”jĆ”n @@ -3371,7 +3918,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen Van egy barĆ”t felkĆ©rĆ©sed tőle - + Profile password needed. @@ -3396,7 +3943,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen - + Valid Retroshare ID @@ -3406,7 +3953,47 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen - + Certificate Load Failed:file %1 not found + TanĆŗsĆ­tvĆ”ny betƶltĆ©se sikertelen: nem talĆ”lható ez a fĆ”jl: %1 + + + This Peer %1 is not available in your Network + Nem elĆ©rhető a hĆ”lózatodban %1 azonosĆ­tójĆŗ partner + + + Use new certificate format (safer, more robust) + Új tanĆŗsĆ­tvĆ”ny formĆ”tum hasznĆ”lata (biztonsĆ”gosabb, robusztusabb) + + + Use old (backward compatible) certificate format + RĆ©gi tĆ­pusĆŗ tanĆŗsĆ­tvĆ”ny hasznĆ”lata (visszafelĆ© kompatibilis) + + + Remove signatures + AlƔƭrĆ”sok eltĆ”volĆ­tĆ”sa + + + RetroShare Invite + RetroShare meghĆ­vĆ”s + + + Connect Friend Help + BarĆ”t csatlakozĆ”sa sĆŗgó + + + You can copy this text and send it to your friend via email or some other way + Ezt a szƶveget mĆ”solhatod, majd elküldheted a barĆ”todnak emailben, illetve megoszthatod vele egyĆ©b módon is. + + + 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... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3445,7 +4032,11 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen *** Nincs *** - + Use as direct source, when available + Kƶzvetlen forrĆ”skĆ©nt hasznĆ”lat, amikor lehetsĆ©ges + + + IP-Addr: IP-cĆ­m: @@ -3455,7 +4046,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen IP-cĆ­m: - + Show Advanced options Haladó beĆ”llĆ­tĆ”sok megjelenĆ­tĆ©se @@ -3464,6 +4055,10 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen <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> @@ -3474,13 +4069,45 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen <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> + + Recommend many friends to each others + BarĆ”taid ajĆ”nlĆ”sa egymĆ”snak + + + Friend Recommendations + AjĆ”nlott barĆ”tok + + + 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 + + + Message: + Üzenet: + + + Recommend friends + BarĆ”tok ajĆ”nlĆ”sa + + + To + CĆ­mzett + + + Please select at least one friend for recommendation. + KĆ©rlek, vĆ”lassz ki az ajĆ”nlĆ”shoz legalĆ”bb egy barĆ”tot. + + + Please select at least one friend as recipient. + KĆ©rlek, vĆ”lassz ki legalĆ”bb egy barĆ”tot cĆ­mzettnek. + Add key to keyring Kulcs hozzĆ”adĆ”sa a kulcstartóhoz - + This key is already in your keyring Ez a kulcs mĆ”r szerepel a kulcstartódban @@ -3496,7 +4123,7 @@ 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. @@ -3531,7 +4158,7 @@ tĆ”voli üzeneteket szeretnĆ©l küldeni ennek a partnernek, IP hozzĆ”adĆ”sa a fehĆ©rlistĆ”hoz - + No IP in this certificate! Ez a tanĆŗsĆ­tvĆ”ny nem tartalmaz IP-t! @@ -3541,10 +4168,27 @@ tĆ”voli üzeneteket szeretnĆ©l küldeni ennek a partnernek, <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> - + + [Unknown] + [Ismeretlen] + + + 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 + ConnectProgressDialog @@ -3606,7 +4250,7 @@ tĆ”voli üzeneteket szeretnĆ©l küldeni ennek a partnernek, - + UDP Setup UDP kapcsolat lĆ©trehozĆ”sa @@ -3634,7 +4278,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant KapcsolódĆ”si segĆ©d @@ -3644,20 +4288,17 @@ p, li { white-space: pre-wrap; } ƉrvĆ©nytelen partner azonosĆ­tó - - + Unknown State Ismeretlen Ć”llapot - - + Offline KilĆ©pett - - + Behind Symmetric NAT Szimmetrikus NAT mƶgƶtt @@ -3667,14 +4308,12 @@ p, li { white-space: pre-wrap; } NAT mƶgƶtt, DHT nĆ©lkül - - + NET Restart HĆ”lózat ĆŗjraindĆ­tĆ”sa - - + Behind NAT NAT mƶgƶtt @@ -3684,8 +4323,7 @@ p, li { white-space: pre-wrap; } Nincs DHT - - + NET STATE GOOD! A hĆ”lózat elĆ©rhető! @@ -3710,7 +4348,7 @@ p, li { white-space: pre-wrap; } RS partnerek keresĆ©se - + Lookup requires DHT A felkutatĆ”shoz DHT szüksĆ©ges @@ -4002,7 +4640,7 @@ p, li { white-space: pre-wrap; } KĆ©rlek, próbĆ”ld meg Ćŗjból importĆ”lni a tanĆŗsĆ­tvĆ”nyt - + @@ -4010,8 +4648,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! VĆ©grehajthatatlan tovĆ”bbĆ­tĆ”s! @@ -4021,7 +4658,7 @@ p, li { white-space: pre-wrap; } VĆ©grehajthatatlan tovĆ”bbĆ­tĆ”s Ć©s nincs DHT - + Searching KeresĆ©s @@ -4057,12 +4694,12 @@ p, li { white-space: pre-wrap; } Kƶr rĆ©szletei - + Name NĆ©v - + <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> @@ -4082,7 +4719,7 @@ p, li { white-space: pre-wrap; } - + IDs AzonosĆ­tó @@ -4102,18 +4739,18 @@ p, li { white-space: pre-wrap; } Szűrő - + Cancel - + Nickname BecenĆ©v - + Invited Members MeghĆ­vott tagok @@ -4128,7 +4765,15 @@ p, li { white-space: pre-wrap; } Ismert szemĆ©lyek - + ID + AzonosĆ­tó + + + Type + TĆ­pus + + + Name: NĆ©v: @@ -4168,19 +4813,23 @@ p, li { white-space: pre-wrap; } - - + Only visible to members of: + Csak a kƶvetkező csoportok tagjai szĆ”mĆ”ra lĆ”tható: + + + + RetroShare RetroShare - + Please set a name for your Circle KĆ©rlek, nevezd el a kƶrƶdet - + No Restriction Circle Selected Nincs korlĆ”tozĆ”s kivĆ”lasztva. @@ -4190,24 +4839,12 @@ p, li { white-space: pre-wrap; } Nincs hatĆ”r kivĆ”lasztva. - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Ismeretlen] - + Add HozzĆ”adĆ”s @@ -4217,7 +4854,7 @@ p, li { white-space: pre-wrap; } EltĆ”volĆ­tĆ”s - + Search KeresĆ©s @@ -4232,6 +4869,10 @@ p, li { white-space: pre-wrap; } Signed AlƔƭrt + + Signed by known nodes + Ismert csomópontok Ć”ltal alƔƭrva + Edit Circle @@ -4248,6 +4889,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP SzemĆ©lyazonossĆ”g + + Anon Id + NĆ©vtelen azonosĆ­tó + Circle name @@ -4270,13 +4915,17 @@ p, li { white-space: pre-wrap; } Új kƶr lĆ©trehozĆ”sa - + Create LĆ©trehoz - + PGP Linked Id + PGP-hez linkelt azonosĆ­tó + + + Add Member Tag hozzĆ”adĆ”sa @@ -4295,7 +4944,7 @@ p, li { white-space: pre-wrap; } Csoport lĆ©trehozĆ”sa - + Group Name: Csoport neve: @@ -4330,7 +4979,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Új bejegyzĆ©s a csatornĆ”n @@ -4340,7 +4989,7 @@ p, li { white-space: pre-wrap; } Üzenet - + Post @@ -4401,11 +5050,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> DobĆ”ld be a fĆ”jlokat / HasznĆ”ld a fĆ”jl hozzĆ”adĆ”sa gombot Ćŗj fĆ”jlok megosztĆ”sĆ”hoz.</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;"> MĆ”solj/Illessz be RetroShare hivatkozĆ”sokat a megosztĆ”saidból</span></p></body></html> + + Add File to Attach + MellĆ©klet csatolĆ”sa + Add Channel Thumbnail ElőnĆ©zeti kĆ©p hozzĆ”adĆ”sa + + Message + Üzenet + + + Subject : + TĆ”rgy: + @@ -4491,17 +5152,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4520,18 +5181,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + A fĆ”jl mĆ”r hozzĆ” van adva Ć©s hashelve van. + Please add a Subject KĆ©rlek, adj meg egy tĆ”rgyat - - Cannot publish post - - - - + Load thumbnail picture ElőnĆ©zeti kĆ©p betƶltĆ©se @@ -4546,12 +5206,18 @@ p, li { white-space: pre-wrap; } Elrejt - + + Generate mass data Adattƶmeg lĆ©trehozĆ”sa - + + Do you really want to generate %1 messages ? + Valóban generĆ”lni szeretnĆ©l %1 üzenetet ? + + + You are about to add files you're not actually sharing. Do you still want this to happen? FĆ”jlokat fogsz hozzĆ”adni a megosztĆ”sodhoz. Biztos ezt szeretnĆ©d tenni? @@ -4585,7 +5251,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Fórum üzenet beküldĆ©se @@ -4594,6 +5260,10 @@ p, li { white-space: pre-wrap; } Forum Fórum + + Subject + TĆ”rgy + Attach File @@ -4614,8 +5284,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4634,7 +5304,7 @@ p, li { white-space: pre-wrap; } FĆ”jlokat az ablakba dobĆ”lva csatolhatsz - + Post @@ -4664,17 +5334,17 @@ p, li { white-space: pre-wrap; } - + No Forum Nincs fórum - + In Reply to VĆ”lasz - + Title CĆ­m @@ -4728,7 +5398,7 @@ Tƶrƶlni szeretnĆ©d? KĆ©p betƶltĆ©se - + No compatible ID for this forum Nem kompatibilis azonosĆ­tó ehhez a fórumhoz @@ -4738,8 +5408,8 @@ Tƶrƶlni szeretnĆ©d? 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 @@ -4748,6 +5418,10 @@ Tƶrƶlni szeretnĆ©d? Do you really want to generate %1 messages ? Valóban generĆ”lni szeretnĆ©l %1 üzenetet ? + + Send + KüldĆ©s + Post as @@ -4762,7 +5436,23 @@ Tƶrƶlni szeretnĆ©d? CreateLobbyDialog - + Create Chat Lobby + 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 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. + + + Lobby name: + Chatszoba neve: + + + Lobby topic: + A szoba tĆ©mĆ”ja: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4797,7 +5487,7 @@ Tƶrƶlni szeretnĆ©d? - + Create @@ -4807,7 +5497,7 @@ Tƶrƶlni szeretnĆ©d? - + require PGP-signed identities PGP hitelesĆ­tĆ©sű azonosĆ­tó megkƶvetelĆ©se @@ -4822,7 +5512,11 @@ Tƶrƶlni szeretnĆ©d? VĆ”lassz ki barĆ”tokat a csoportos beszĆ©lgetĆ©shez. - + Invited friends + MeghĆ­vott barĆ”tok + + + Create Chat Room TĆ”rsalgószoba lĆ©trehozĆ”sa @@ -4843,7 +5537,7 @@ Tƶrƶlni szeretnĆ©d? Kapcsolatok: - + Identity to use: HasznĆ”landó szemĆ©lyazonossĆ”g: @@ -4851,17 +5545,17 @@ Tƶrƶlni szeretnĆ©d? CryptoPage - + Public Information Publikus adatok - + Name: NĆ©v: - + Location: Hely: @@ -4871,12 +5565,12 @@ Tƶrƶlni szeretnĆ©d? HelyszĆ­n azonosĆ­tó: - + Software Version: AlkalmazĆ”s verziója: - + Online since: Online ettől kezdve: @@ -4896,7 +5590,12 @@ Tƶrƶlni szeretnĆ©d? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4906,7 +5605,7 @@ Tƶrƶlni szeretnĆ©d? - + Other Information EgyĆ©b adatok @@ -4916,12 +5615,17 @@ Tƶrƶlni szeretnĆ©d? - + Profile Profil - + + Certificate + TanĆŗsĆ­tvĆ”ny + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4931,7 +5635,11 @@ Tƶrƶlni szeretnĆ©d? AlƔƭrĆ”sokat tartalmaz - + Save Key into a file + Kulcs mentĆ©se fĆ”jlba + + + Export Identity SzemĆ©lyazonossĆ”g exportĆ”lĆ”sa @@ -5003,33 +5711,33 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + TextLabel SzƶvegcĆ­mke - + PGP fingerprint: PGP ujjlenyomat: - + + Node information + Csomópont informĆ”ció + + + PGP Id : PGP azonosĆ­tó : - + Friend nodes: BarĆ”t csomópontok: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5068,6 +5776,14 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Node Csomópont + + Create new node... + Új csomópont lĆ©trehozĆ”sa... + + + show statistics window + Statisztika megjelenĆ­tĆ©se + DHTGraphSource @@ -5119,7 +5835,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. DLListDelegate - + B B @@ -5787,7 +6503,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. DownloadToaster - + Start file FĆ”jl indĆ­tĆ”sa @@ -5795,38 +6511,38 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. ExprParamElement - + - + to neki - + ignore case nagybetűk figyelmen kĆ­vül hagyĆ”sa - - - yyyy-MM-dd - + + + dd.MM.yyyy + yyyy.MM.dd - - + + KB KB - - + + MB MB - - + + GB GB @@ -5834,12 +6550,12 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. ExpressionWidget - + Expression Widget FeltĆ©telek beĆ”llĆ­tĆ”sa - + Delete this expression FeltĆ©tel tƶrlĆ©se @@ -6001,7 +6717,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. FilesDefs - + Picture KĆ©p @@ -6011,7 +6727,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Videó - + Audio Hang @@ -6071,21 +6787,11 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories BarĆ”tok mappĆ”i @@ -6207,7 +6913,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + ID AzonosĆ­tó @@ -6242,6 +6948,10 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Show State Ɓllapot megjelenĆ­tĆ©se + + Trusted nodes + MegbĆ­zható csomópontok + @@ -6249,7 +6959,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Csoportok mutatĆ”sa - + Group Csoport @@ -6285,7 +6995,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. HozzĆ”adĆ”s a csoporthoz - + Search KeresĆ©s @@ -6301,7 +7011,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. RendezĆ©s Ć”llapot szerint - + Profile details Profil rĆ©szletek @@ -6545,7 +7255,7 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz FriendRequestToaster - + Confirm Friend Request BarĆ”ti felkĆ©rĆ©s jóvĆ”hagyĆ”sa @@ -6562,6 +7272,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz FriendSelectionWidget + + Search : + KeresĆ©s: + Sort by state @@ -6583,7 +7297,7 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz BarĆ”t keresĆ©se - + Mark all Jelƶld mind @@ -6594,132 +7308,16 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Egyiket se jelƶld - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - NĆ©v - - - - Node ID - - - - - Address - CĆ­m - - - - Status - Ɓllapot - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - BarĆ”tsĆ”g kezdemĆ©nyezĆ©se - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Ɓllapot szerkesztĆ©se - - + + Broadcast Üzenőfal @@ -6802,38 +7400,33 @@ Also check your ports! AlapĆ©rtelmezett betűtĆ­pus visszaĆ”llĆ­tĆ”sa - + Keyring Kulcstartó - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <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> + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare üzenőfal: az ide Ć­rt üzeneteidet az ƶsszes barĆ”tod lĆ”thatja. - - + + Network HĆ”lózat - - Friend Server - - - - + Network graph HĆ”lózat grĆ”f - - <h1><img width="%1" 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> - - - - + Set your status message here. Add meg az Ć”llapotüzenetedet. @@ -6851,17 +7444,7 @@ Also check your ports! Jelszó - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Az ƶsszes adatnak legalĆ”bb 3 karakter hosszĆŗnak kell lennie @@ -6871,12 +7454,17 @@ Also check your ports! A jelszavak nem egyeznek - + Port Port - + + Use BOB + HasznĆ”lj BOB-t + + + This password is for PGP Ez egy PGP jelszó @@ -6897,38 +7485,50 @@ Also check your ports! 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 + + + 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 - + Node type: @@ -6948,12 +7548,12 @@ Also check your ports! - + <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 @@ -6963,43 +7563,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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> @@ -7047,13 +7646,13 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre 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 @@ -7063,7 +7662,7 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre Új Retroshare csomópont lĆ©trehozĆ”sa - + Tor/I2P address Tor/I2P cĆ­m @@ -7098,7 +7697,7 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7108,7 +7707,12 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7118,7 +7722,12 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre - + + I2P instance address with BOB enabled + I2P hivatkozĆ”s bekapcsolt BOB-val + + + I2P instance address I2P hivatkozĆ”s cĆ­me @@ -7344,13 +7953,36 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre Első lĆ©pĆ©sek - + Invite Friends BarĆ”tok meghĆ­vĆ”sa - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">A RetroShare nem műkƶdhet barĆ”tok nĆ©lkül. Kattints a gombra a folyamat elindĆ­tĆ”sĆ”hoz.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Küldj emailben egy meghĆ­vót a tanĆŗsĆ­tvĆ”nyoddal együtt a barĆ”taidnak.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Gondoskodj róla, hogy te is megkapd az ő tanĆŗsĆ­tvĆ”nyukat... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Csak akkor csatlakozhattok a barĆ”toddal egymĆ”shoz, ha mĆ”r mindketten felvettĆ©tek a mĆ”sikat.</span></p></body></html> + + + Add Your Friends to RetroShare BarĆ”taid hozzĆ”adĆ”sa a RetroSharehez @@ -7360,103 +7992,95 @@ Most mĆ”r Ć”tmĆ”solhatod egy mĆ”sik szĆ”mĆ­tógĆ©pre BarĆ”t hozzĆ”adĆ”sa - - Connect To Friends - CsatlakozĆ”s a barĆ”tokhoz - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Haladó: Port nyitĆ”sa a tűzfalon - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + CsatlakozĆ”s a barĆ”tokhoz + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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> + + + + Advanced: Open Firewall Port + Haladó: Port nyitĆ”sa a tűzfalon + + + Further Help and Support TovĆ”bbi segĆ­tsĆ©g Ć©s tĆ”mogatĆ”s - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website RetroShare weboldal megnyitĆ”sa @@ -7481,7 +8105,7 @@ p, li { white-space: pre-wrap; } VisszajelzĆ©s emailben - + RetroShare Invitation RetroShare meghĆ­vĆ”s @@ -7531,12 +8155,12 @@ p, li { white-space: pre-wrap; } RetroShare visszajelzĆ©s - + RetroShare Support RetroShare tĆ”mogatĆ”s - + 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ő. @@ -7660,7 +8284,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Csoportos beszĆ©lgetĆ©s mutatĆ”sa @@ -7668,7 +8292,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Ismeretlen] @@ -7838,7 +8462,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title CĆ­m @@ -7851,12 +8475,12 @@ p, li { white-space: pre-wrap; } - + Description LeĆ­rĆ”s - + Number of Unread message @@ -7881,7 +8505,35 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Csƶkkenő sorbarendezĆ©s + + + Sort Ascending Order + Nƶvekvő sorbarendezĆ©s + + + Sort by Name + RendezĆ©s nĆ©v szerint + + + Sort by Popularity + RendezĆ©s nĆ©pszerűsĆ©g szerint + + + Sort by Last Post + RendezĆ©s utolsó üzenet szerint + + + 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) @@ -7896,14 +8548,14 @@ p, li { white-space: pre-wrap; } AzonosĆ­tó - - + + Last Post Utolsó bejegyzĆ©s - + Name NĆ©v @@ -7914,13 +8566,17 @@ p, li { white-space: pre-wrap; } - + Never Soha - + Display + MegjelenĆ­tĆ©s beĆ”llĆ­tĆ”sai + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7933,7 +8589,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and Ć©s @@ -8069,7 +8725,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels CsatornĆ”k @@ -8080,22 +8736,22 @@ p, li { white-space: pre-wrap; } Csatorna lĆ©trehozĆ”sa - + Enable Auto-Download Automatikus letƶltĆ©s engedĆ©lyezĆ©se - + My Channels CsatornĆ”im - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels FeliratkozĆ”sok @@ -8115,12 +8771,12 @@ p, li { white-space: pre-wrap; } VĆ”lassz a csatornĆ”hoz letƶltĆ©si kƶnyvtĆ”rat - + Disable Auto-Download Automatikus letƶltĆ©s tiltĆ”sa - + Set download directory ƁllĆ­tsd be a letƶltĆ©si kƶnyvtĆ”rat @@ -8155,22 +8811,22 @@ p, li { white-space: pre-wrap; } - + Play LejĆ”tszĆ”s - + Open folder Mappa megnyitĆ”sa - + Open file - + Error Hiba @@ -8190,17 +8846,17 @@ p, li { white-space: pre-wrap; } EllenőrzĆ©s - + Are you sure that you want to cancel and delete the file? - + Can't open folder A mappa nem nyitható meg - + Play File FĆ”jl lejĆ”tszĆ”sa @@ -8210,10 +8866,37 @@ p, li { white-space: pre-wrap; } Nem talĆ”lható %1 fĆ”jl + + GxsChannelFilesWidget + + Form + Forma + + + Filename + FĆ”jlnĆ©v + + + Size + MĆ©ret + + + Title + CĆ­m + + + Published + KƶzzĆ©tĆ©ve + + + Status + Ɓllapot + + GxsChannelGroupDialog - + Create New Channel Új csatorna lĆ©trehozĆ”sa @@ -8251,19 +8934,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + FeliratkozĆ”s a csatornĆ”ra @@ -8277,7 +8950,7 @@ p, li { white-space: pre-wrap; } - + Expand LenyitĆ”s @@ -8292,7 +8965,7 @@ p, li { white-space: pre-wrap; } Csatorna leĆ­rĆ”sa - + Loading TƶltĆ©s @@ -8307,9 +8980,8 @@ p, li { white-space: pre-wrap; } - - Never - Soha + New Channel + Új csatorna @@ -8320,7 +8992,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Új hozzĆ”szólĆ”s: @@ -8341,7 +9013,7 @@ p, li { white-space: pre-wrap; } - + Play LejĆ”tszĆ”s @@ -8397,24 +9069,28 @@ p, li { white-space: pre-wrap; } Files FĆ”jlok + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + VigyĆ”zz! A fĆ”jl tƶrlődni fog kevesbb, mint %1 óra %2 perc mĆŗlva. Ha menteni szeretnĆ©d, tedd meg időben. + Hide Elrejt - + New Új - + 0 0 - - + + Comment HozzĆ”szólĆ”s @@ -8429,17 +9105,21 @@ p, li { white-space: pre-wrap; } Nem tetszik - + Loading + TƶltĆ©s + + + Loading... - + Comments HozzĆ”szólĆ”sok - + Post @@ -8464,16 +9144,115 @@ p, li { white-space: pre-wrap; } MĆ©dia lejĆ”tszĆ”sa + + GxsChannelPostsWidget + + Post to Channel + Új bejegyzĆ©s + + + Add new post + Új hozzĆ”szólĆ”s + + + Loading + TƶltĆ©s + + + Search channels + KeresĆ©s a csatornĆ”kban + + + Title + CĆ­m + + + Search Title + CĆ­m keresĆ©se + + + Message + Üzenet + + + Search Message + Üzenet keresĆ©se + + + Filename + FĆ”jlnĆ©v + + + Search Filename + KeresĆ©s a fĆ”jlok kƶzƶtt + + + No Channel Selected + Nincs csatorna kivĆ”lasztva + + + Never + Soha + + + Public + NyilvĆ”nos + + + Disable Auto-Download + Automatikus letƶltĆ©s tiltĆ”sa + + + Enable Auto-Download + Automatikus letƶltĆ©s engedĆ©lyezĆ©se + + + Show files + Mutasd a fĆ”jlokat + + + Administrator: + AdminisztrĆ”tor: + + + Last Post: + Utolsó bejegyzĆ©s + + + unknown + ismeretlen + + + Distribution: + MegosztĆ”s + + + Feeds + HĆ­rcsatornĆ”k + + + Files + FĆ”jlok + + + Subscribers + Feliratkozottak + + + Description: + LeĆ­rĆ”s: + + GxsChannelPostsWidgetWithModel - + Post to Channel Új bejegyzĆ©s - + Add new post Új hozzĆ”szólĆ”s @@ -8543,7 +9322,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8579,7 +9358,7 @@ p, li { white-space: pre-wrap; } - + Comments HozzĆ”szólĆ”sok @@ -8594,13 +9373,13 @@ p, li { white-space: pre-wrap; } HĆ­rcsatornĆ”k - - + + Click to switch to list view - + Show unread posts only @@ -8615,7 +9394,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8630,7 +9409,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8690,22 +9469,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8780,13 +9549,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Feliratkozva @@ -8837,17 +9605,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8867,11 +9635,19 @@ p, li { white-space: pre-wrap; } Remove Item TĆ©tel tƶrlĆ©se + + for identity + előle: + Grant membership request TagsĆ”gi kĆ©relem jóvĆ”hagyĆ”sa + + Revoke membership request + TagsĆ”gi kĆ©relem visszavonĆ”sa + @@ -8962,7 +9738,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container HozzĆ”szólĆ”s a tĆ”rolóhoz @@ -8975,7 +9751,7 @@ p, li { white-space: pre-wrap; } Forma - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9005,7 +9781,7 @@ p, li { white-space: pre-wrap; } FrissĆ­tĆ©s - + Comment HozzĆ”szólĆ”s @@ -9044,7 +9820,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment VĆ”lasz a hozzĆ”szólĆ”sra @@ -9068,21 +9844,6 @@ p, li { white-space: pre-wrap; } Vote Down SzavazĆ”s ellene - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9092,7 +9853,7 @@ p, li { white-space: pre-wrap; } HozzĆ”szólĆ”s Ć­rĆ”sa - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9121,10 +9882,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">HozzĆ”szólĆ”s</span></p></body></html> + + + Signed by + AlƔƭrva Ć”ltala + Reply to Comment @@ -9153,7 +9930,7 @@ before you can comment mielőtt hozzĆ”szólhatsz - + It remains %1 characters after HTML conversion. @@ -9195,6 +9972,14 @@ mielőtt hozzĆ”szólhatsz Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Fórum adminisztrĆ”torok hozzĆ”adĆ”sa + + + Select Forum Admins + Fórum adminisztrĆ”torok kivĆ”lasztĆ”sa + Create @@ -9204,7 +9989,7 @@ mielőtt hozzĆ”szólhatsz GxsForumGroupItem - + Subscribe to Forum FeliratkozĆ”s a fórumra @@ -9220,7 +10005,7 @@ mielőtt hozzĆ”szólhatsz - + Expand LenyitĆ”s @@ -9240,9 +10025,8 @@ mielőtt hozzĆ”szólhatsz - - TextLabel - + Loading + TƶltĆ©s @@ -9273,13 +10057,13 @@ mielőtt hozzĆ”szólhatsz GxsForumMsgItem - - + + Subject: TĆ”rgy: - + Unsubscribe To Forum LeiratkozĆ”s a fórumról @@ -9290,7 +10074,7 @@ mielőtt hozzĆ”szólhatsz - + Expand LenyitĆ”s @@ -9310,17 +10094,21 @@ mielőtt hozzĆ”szólhatsz VĆ”lasz cĆ­mzettje: - + Loading + TƶltĆ©s + + + Loading... - + Forum Feed - + Hide Elrejt @@ -9333,66 +10121,63 @@ mielőtt hozzĆ”szólhatsz Forma - + Start new Thread for Selected Forum Új fonĆ”l indĆ­tĆ”sa a kivĆ”lasztotta fórumban - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Fórumok keresĆ©se - + Last Post + Utolsó beküldĆ©s + + + New Thread Új szĆ”l + + + Threaded View + Fa nĆ©zet + + + + Flat View + Egyszerű nĆ©zet + - + Title CĆ­m - - + + Date DĆ”tum - + Author Szerző - + + Save image + KĆ©p mentĆ©se + + + Loading TƶltĆ©s - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9402,7 +10187,12 @@ mielőtt hozzĆ”szólhatsz - + + Lastest post in thread + + + + Reply Message VĆ”lasz az üzenetre @@ -9426,6 +10216,10 @@ mielőtt hozzĆ”szólhatsz Download all files Ɩsszes fĆ”jl letƶltĆ©se + + Next unread + Kƶvetkező olvasatlan + Search Title @@ -9442,23 +10236,31 @@ mielőtt hozzĆ”szólhatsz Szerző keresĆ©se - + Content + Tartalom + + + Search Content + Tartalom keresĆ©se + + + No name Nincs nĆ©v - - + + Reply VĆ”lasz - + <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> - + Loading... @@ -9501,12 +10303,20 @@ mielőtt hozzĆ”szólhatsz RetroShare hivatkozĆ”s mĆ”solĆ”sa - + Hide Elrejt - + Expand + LenyitĆ”s + + + [Banned] + [Letiltva] + + + [unknown] [ismeretlen] @@ -9536,8 +10346,8 @@ mielőtt hozzĆ”szólhatsz - - + + Distribution @@ -9551,6 +10361,26 @@ mielőtt hozzĆ”szólhatsz Anti-spam SzemĆ©tszűrő + + [ ... Redacted message ... ] + [ ... Szerkesztett üzenet ... ] + + + Anonymous + NĆ©vtelen + + + signed + alƔƭrt + + + none + nincs + + + [ ... Missing Message ... ] + [ ... HiĆ”nyzó üzenet ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9620,12 +10450,16 @@ mielőtt hozzĆ”szólhatsz Eredeti üzenet - + New thread Új szĆ”l - + Read status + Elolvasott / nem olvasott + + + Edit SzerkesztĆ©s @@ -9686,7 +10520,7 @@ mielőtt hozzĆ”szólhatsz Szerző megitĆ©lĆ©se - + Show column @@ -9706,7 +10540,7 @@ mielőtt hozzĆ”szólhatsz - + Anonymous/unknown posts forwarded if reputation is positive @@ -9758,7 +10592,7 @@ This message is missing. You should receive it later. - + No result. @@ -9768,7 +10602,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9783,7 +10617,17 @@ This message is missing. You should receive it later. - + 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. + + + (Latest) (Legutóbbi) @@ -9849,12 +10693,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Fórum @@ -9885,16 +10729,35 @@ This message is missing. You should receive it later. EgyĆ©b fórumok + + GxsForumsFillThread + + Waiting + VĆ”rakozĆ”s + + + Retrieving + LekĆ©rdezĆ©s + + + Loading + TƶltĆ©s + + GxsGroupDialog - + Name NĆ©v - + Add Icon + Ikon hozzĆ”adĆ”sa + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Kulccsal rendelkező szemĆ©lyek Ć­rhatnak a korlĆ”tozott csoportokban Ć©s olvashatjĆ”k, valamint Ć­rhatnak a privĆ”t csatornĆ”kra is. @@ -9903,14 +10766,22 @@ This message is missing. You should receive it later. Share Publish Key KƶzzĆ©tĆ©teli kulcs megosztĆ”sa + + check peers you would like to share private publish key with + Jelƶld ki azon partnereidet, akikkel szeretnĆ©l privĆ”t kulcsot megosztani. + + + Share Key With + Kulcs megosztĆ”sa velük: + - + Description LeĆ­rĆ”s - + Message Distribution Üzenet elosztĆ”s @@ -9918,7 +10789,7 @@ This message is missing. You should receive it later. - + Public Publikus @@ -9937,6 +10808,14 @@ This message is missing. You should receive it later. New Thread Új fonĆ”l + + Required + SzüksĆ©ges + + + Encrypted Msgs + TitkosĆ­tott üzenetek + Personal Signatures @@ -9978,7 +10857,7 @@ This message is missing. You should receive it later. - + Comments: HozzĆ”szólĆ”sok @@ -10001,7 +10880,7 @@ This message is missing. You should receive it later. - + All People @@ -10017,12 +10896,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10039,23 +10918,23 @@ This message is missing. You should receive it later. - + Message tracking Üzenet kƶvetĆ©se - - + + PGP signature required PGP hitelesĆ­tĆ©s szüksĆ©ges - + Never Soha - + Only friends nodes in group @@ -10071,28 +10950,22 @@ This message is missing. You should receive it later. KĆ©rlek, adj meg egy nevet - + PGP signature from known ID required SzüksĆ©g van PGP alƔƭrĆ”sra egy ismert azonosĆ­tótól - - - [None] - - - - + Load Group Logo Csoport logó betƶltĆ©se - + Submit Group Changes - + Owner: Tulajdonos @@ -10102,12 +10975,12 @@ This message is missing. You should receive it later. - + Info InformĆ”ció - + ID AzonosĆ­tó @@ -10117,7 +10990,7 @@ This message is missing. You should receive it later. Utolsó beküldĆ©s - + <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> @@ -10192,12 +11065,7 @@ This message is missing. You should receive it later. AlƔƭratlan Ć©s ismeretlen csomóponthoz tartozó azonosĆ­tók eltĆ”volĆ­tĆ”sa a kedvencek kƶzül - - Author: - - - - + Popularity NĆ©pszerűsĆ©g @@ -10213,22 +11081,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create - + + Author + Szerző + + + GxsIdLabel Gxs azonosĆ­tó cĆ­mke @@ -10236,7 +11109,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading TƶltĆ©s @@ -10296,7 +11169,7 @@ This message is missing. You should receive it later. RĆ©szletek szerkesztĆ©se - + Synchronise posts of last... Add meg a szinkronizĆ”landó elmĆŗlt időtartamot... @@ -10353,12 +11226,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + NyilvĆ”nos engedĆ©lyek megosztĆ”sa + + + Copy RetroShare Link RetroShare hivatkozĆ”s mĆ”solĆ”sa @@ -10381,7 +11258,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Nincs alƔƭrĆ”s @@ -10394,24 +11271,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + TƶltĆ©s + + + Not found Nem talĆ”lható + + No Signature + Nincs alƔƭrĆ”s + - - + + [Banned] [Letiltva] + + Authentication + AzonosĆ­tĆ”s + unknown Key ismeretlen kulcs - + anonymous + nĆ©vtelen + + + Loading... @@ -10421,12 +11314,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name SzemĆ©lyazonossĆ”g&nbsp;nĆ©v @@ -10446,14 +11334,6 @@ This message is missing. You should receive it later. [Ismeretlen] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10465,7 +11345,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10513,13 +11393,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Ismeretlen] GxsMessageFramePostWidget + + Loading + TƶltĆ©s + Loading... @@ -10651,6 +11535,10 @@ This message is missing. You should receive it later. Popularity NĆ©pszerüsĆ©g + + Details + RĆ©szletek + @@ -10683,6 +11571,33 @@ This message is missing. You should receive it later. Nem + + GxsTunnelsDialog + + Authenticated tunnels: + AzonosĆ­tott csatornĆ”k + + + Tunnel ID: %1 + AlagĆŗt azonosĆ­tó: %1 + + + status: %1 + Ć”llapot: %1 + + + total sent: %1 bytes + elküldve: %1 byte + + + total recv: %1 bytes + fogadva: %1 byte + + + Unknown Peer + Ismeretlen kapcsolat + + HashBox @@ -10895,12 +11810,48 @@ This message is missing. You should receive it later. About NĆ©vjegy + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10916,7 +11867,7 @@ p, li { white-space: pre-wrap; } - + Authors Szerzők @@ -10935,7 +11886,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -11013,12 +11964,12 @@ p, li { white-space: pre-wrap; } Forma - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11033,7 +11984,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11042,12 +11993,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + 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, @@ -11058,12 +12029,20 @@ 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 @@ -11073,7 +12052,7 @@ privĆ”t Ć©s biztonsĆ”gos decentralizĆ”lt kommunikĆ”ciót nyĆŗjtó szolgĆ”ltatĆ”s Mentsd el egy fĆ”jlba a tanusĆ­tvĆ”nyodat - + Send via Email Küld el emailben @@ -11093,37 +12072,13 @@ privĆ”t Ć©s biztonsĆ”gos decentralizĆ”lt kommunikĆ”ciót nyĆŗjtó szolgĆ”ltatĆ”s - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11135,12 +12090,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11155,7 +12110,12 @@ new short format RetroShare meghĆ­vó - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... MentĆ©s mint... @@ -11420,14 +12380,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Ɩsszes - + Reputation NĆ©pszerűsĆ©g @@ -11437,12 +12397,12 @@ p, li { white-space: pre-wrap; } KeresĆ©s - + Anonymous Id NĆ©vtelen azonosĆ­tó - + Create new Identity Új szemĆ©lyazonossĆ”g lĆ©trehozĆ”sa @@ -11452,7 +12412,7 @@ p, li { white-space: pre-wrap; } Hozz lĆ©tre Ćŗj kƶrt - + Persons SzemĆ©lyek @@ -11467,27 +12427,27 @@ p, li { white-space: pre-wrap; } SzemĆ©ly - + Close 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 @@ -11503,39 +12463,29 @@ p, li { white-space: pre-wrap; } BĆ­rĆ”ló szavazatok - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics HasznĆ”lati statisztika - + Circles Kƶrƶk - + Circle name Kƶr neve @@ -11555,20 +12505,18 @@ p, li { white-space: pre-wrap; } SzemĆ©lyes kƶrƶk - + - Edit identity SzemĆ©lyazonossĆ”g szerkesztĆ©se - - + Delete identity SzemĆ©lyazonossĆ”g tƶrlĆ©se - + Chat with this peer BeszĆ©lgetĆ©s ezzel a partnerrel @@ -11578,78 +12526,78 @@ p, li { white-space: pre-wrap; } 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 - + Type: TĆ­pus: - + 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: - + Negative rossz - + Neutral semleges @@ -11660,17 +12608,17 @@ p, li { white-space: pre-wrap; } jó - + <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 - + Anonymous NĆ©vtelen @@ -11685,24 +12633,24 @@ p, li { white-space: pre-wrap; } 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 @@ -11717,12 +12665,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles MĆ”s kƶrƶk @@ -11732,7 +12675,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: Kƶr azonosĆ­tó: @@ -11807,7 +12750,7 @@ p, li { white-space: pre-wrap; } Nem-tag (nem fĆ©rsz hozzĆ” a kƶr adataihoz) - + Identity ID: SzemĆ©lyazonossĆ”g azonosĆ­tó: @@ -11837,7 +12780,7 @@ p, li { white-space: pre-wrap; } ismeretlen - + Invited MeghĆ­vott @@ -11852,7 +12795,7 @@ p, li { white-space: pre-wrap; } Tag - + Edit Circle Kƶr szerkesztĆ©se @@ -11900,7 +12843,7 @@ p, li { white-space: pre-wrap; } TagsĆ”g megadĆ”sa - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11911,7 +12854,7 @@ 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] @@ -11954,7 +12897,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.NĆ©vtelen szemĆ©lyazonossĆ”g - + Boards @@ -12034,7 +12977,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + information InformĆ”ció @@ -12050,12 +12993,25 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.SzemĆ©lyazonossĆ”g mĆ”solĆ”sa a vĆ”gólapra - + Send invite? + Küldesz meghĆ­vót + + + 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 @@ -12104,6 +13060,10 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Chat BeszĆ©lgetĆ©s + + Unknown + Ismeretlen + [Unknown] @@ -12144,11 +13104,19 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.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. @@ -12160,7 +13128,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.TitkosĆ­tĆ”s feloldĆ”sa (Ć”ltalĆ”nos) - + Add to Contacts HozzĆ”adĆ”s a kapcsolatokhoz @@ -12210,21 +13178,21 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - - - + + + People SzemĆ©lyek - + Your Avatar Click here to change your avatar SajĆ”t avatĆ”r - + Linked to neighbor nodes @@ -12234,7 +13202,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Linked to a friend Retroshare node @@ -12249,7 +13217,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Chat with this person BeszĆ©lgetĆ©s ezzel a szemĆ©llyel @@ -12264,12 +13232,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.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 @@ -12289,12 +13257,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.TĆ©nyleg tƶrƶlni szeretnĆ©d ezt a szemĆ©lyazonossĆ”got? - + Owned by - + Node name: @@ -12304,7 +13272,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Csomópont azonosĆ­tó : - + Really delete? TĆ©nyleg tƶrlƶd? @@ -12312,7 +13280,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. IdEditDialog - + Nickname BecenĆ©v @@ -12342,7 +13310,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.ƁlnĆ©v - + Import image @@ -12352,19 +13320,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Új szemĆ©lyazonossĆ”g @@ -12378,7 +13339,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + @@ -12388,12 +13349,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.N/A - - No avatar chosen - - - - + Edit identity SzemĆ©lyazonossĆ”g szerkesztĆ©se @@ -12404,27 +13360,27 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.FrissĆ­t - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12444,7 +13400,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Identity update failed @@ -12454,7 +13410,11 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Error getting key! + Hiba a kulcs beolvasĆ”sakor! + + + Error KeyID invalid Hiba, Ć©rvĆ©nytelen Kulcs azonosĆ­tó @@ -12469,7 +13429,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Ismeretlen igazi nĆ©v - + Create New Identity Új szemĆ©lyazonossĆ”g lĆ©trehozĆ”sa @@ -12479,15 +13439,10 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.TĆ­pus - + Choose image... - - - Remove - EltĆ”volĆ­tĆ”s - @@ -12513,7 +13468,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.HozzĆ”adĆ”s - + Create @@ -12523,13 +13478,17 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Your Avatar Click here to change your avatar SajĆ”t avatĆ”r - + Set Avatar + AvatĆ”r beĆ”llĆ­tĆ”sa + + + Linked to your profile @@ -12539,7 +13498,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.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. @@ -12598,6 +13557,10 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.PGP name: + + GXS id: + GXS azonosĆ­tó: + PGP id: @@ -12613,7 +13576,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Copy MĆ”solĆ”s @@ -12623,12 +13586,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.EltĆ”volĆ­tĆ”s - + %1 's Message History - + Mark all Ɩsszes megjelƶlĆ©se @@ -12647,38 +13610,26 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Quote IdĆ©zĆ©s + + Send + KüldĆ©s + ImageUtil - - + + Save image KĆ©p mentĆ©se - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename KĆ©p mentĆ©se sikertelen, Ć©rvĆ©nytelen fĆ”jlnĆ©v - - Copy image - - - - - + Not an image Ez nem kĆ©p @@ -12696,32 +13647,27 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Enable RetroShare JSON API Server - + Port: Port: - + Listen Address: - - Status: - Ɓllapot: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12742,12 +13688,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12756,31 +13697,26 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File FĆ”jl megnyitĆ”sa - + Open Folder Mappa megnyitĆ”sa - + Checking... EllenőrzĆ©s... @@ -12790,7 +13726,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.FĆ”jlok ellenőrzĆ©se - + Recommend in a message to... @@ -12818,7 +13754,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. MainWindow - + Add Friend BarĆ”t hozzĆ”adĆ”sa @@ -12834,8 +13770,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - - + Options BeĆ”llĆ­tĆ”sok @@ -12856,7 +13791,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Quit KilĆ©pĆ©s @@ -12867,12 +13802,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Gyors beĆ”llĆ­tĆ”sok varĆ”zsló - + RetroShare %1 a secure decentralized communication platform RetroShare %1 egy biztonsĆ”gos, kƶzpontosĆ­tatlan kommunikĆ”ciós platform - + Unfinished Befejezetlen @@ -12901,12 +13836,11 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - Status Ɓllapot - + Notify ƉrtesĆ­tĆ©s @@ -12917,35 +13851,31 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - Open Messages Levelek megnyitĆ”sa - - + Bandwidth Graph SĆ”vszĆ©lessĆ©g grafikon - + Applications AlkalmazĆ”sok - Help SĆŗgó - - + Minimize MinimalizĆ”lĆ”s - + Maximize Teljes kĆ©pernyő @@ -12960,12 +13890,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.RetroShare - - Close window - - - - + %1 new message %1 Ćŗj üzenet @@ -12995,7 +13920,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.%1 csatlakozott barĆ”t - + Do you really want to exit RetroShare ? TĆ©nyleg ki szeretnĆ©l lĆ©pni a RetroShareből? @@ -13015,7 +13940,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Mutat - + Make sure this link has not been forged to drag you to a malicious website. Bizonyosodj meg róla, hogy ez a hivatkozĆ”s nem egy veszĆ©lyes weboldalra mutat. @@ -13060,13 +13985,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.SzolgĆ”ltatĆ”s jogosultsĆ”gok mĆ”trix - - + Statistics Statisztika - + Show web interface BeĆ©pĆ­tett bƶngĆ©sző megnyitĆ”sa @@ -13081,7 +14005,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Really quit ? TĆ©nyleg kilĆ©psz? @@ -13090,17 +14014,17 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.MessageComposer - + Compose ƍrĆ”s - + Contacts Kapcsolatok - + Paragraph BekezdĆ©s @@ -13136,12 +14060,12 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.CĆ­msor 6 - + Font size BetűmĆ©ret - + Increase font size BetűmĆ©ret nƶvelĆ©se @@ -13156,32 +14080,32 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.FĆ©lkƶvĆ©r - + Italic Dőlt - + Alignment IgazĆ­tĆ”s - + Add an Image KĆ©p hozzĆ”adĆ”sa - + Sets text font to code style KódrĆ©szlet beĆ”llĆ­tĆ”sa - + Underline AlĆ”hĆŗzott - + Subject: TĆ”rgy: @@ -13192,32 +14116,32 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból. - + Tags CĆ­mkĆ©k - + 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 - + Recommended Files AjĆ”nlott fĆ”jlok @@ -13287,7 +14211,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Hosszabb idĆ©zet - + Send To: KüldĆ©s neki: @@ -13311,6 +14235,10 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.&Justify &sorkizĆ”rt + + All addresses (mixed) + Minden cĆ­m (vegyes) + All people @@ -13322,7 +14250,7 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.Kapcsolataim - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Szia,<br>SzeretnĆ©m a figyelmedbe ajĆ”nlani egy barĆ”tomat. Ha bennem megbĆ­zol, benne is megbĆ­zhatsz. <br> @@ -13342,18 +14270,18 @@ Ezek a szemĆ©lyazonossĆ”gok hamarosan kikerülnek a tĆ”mogatĆ”sból.szeretne a barĆ”tod lenni - + 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 Szia %1,<br><br>%2 szeretne a barĆ”tod lenni.<br><br>VĆ”laszolj neki:<br>%3<br><br>Kƶszƶnettel,<br>a RetroShare csapat - - + + Save Message Üzenet mentĆ©se - + Message has not been Sent. Do you want to save message to draft box? Az üzenet nem lett elküldve. @@ -13365,17 +14293,7 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? RetroShare link beillesztĆ©se - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" HozzĆ”adĆ”s cĆ­mzettkĆ©nt @@ -13395,7 +14313,7 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? HozzĆ”adĆ”s ajĆ”nlottkĆ©nt - + Original Message Eredeti üzenet @@ -13405,21 +14323,21 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? Feladó - + - + To Neki - - + + Cc MĆ”solat - + Sent Küldve @@ -13434,7 +14352,7 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? %1, %2 Ć­rta: - + Re: VĆ”: @@ -13444,30 +14362,30 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? Tov: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? TĆ”rgy nĆ©lkül szeretnĆ©d elküldeni az üzenetet? - + Please insert at least one recipient. KĆ©rlek, adj meg legalĆ”bb egy fogadót. - + Bcc Rejtett mĆ”solat - + Unknown Ismeretlen @@ -13582,13 +14500,13 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? RĆ©szletek - + Open File... FĆ”jl megnyitĆ”sa... - + HTML-Files (*.htm *.html);;All Files (*) HTML-FĆ”jlok (*.htm *.html);;Ɩsszes fĆ”jl (*) @@ -13608,7 +14526,7 @@ SzeretnĆ©d piszkozatkĆ©nt menteni az üzenetet? PDF ExportĆ”lĆ”sa - + Message has not been Sent. Do you want to save message ? Az üzenet nem lett elküldve. @@ -13630,7 +14548,7 @@ SzeretnĆ©d menteni az üzenetet? Extra fĆ”jl hozzĆ”adĆ”sa - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13654,24 +14572,28 @@ SzeretnĆ©d menteni az üzenetet? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Van egy barĆ”t felkĆ©rĆ©sed + Respond now: VĆ”lasz most: - - + + Close BezĆ”rĆ”s - + From: Feladó: - + Friend Nodes BarĆ”t csomópontok @@ -13716,13 +14638,13 @@ SzeretnĆ©d menteni az üzenetet? - - + + Thanks, <br> Kƶsz, <br> - + Distant identity: TĆ”voli szemĆ©lyazonossĆ”g: @@ -13732,12 +14654,12 @@ SzeretnĆ©d menteni az üzenetet? [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ó: @@ -13815,7 +14737,7 @@ SzeretnĆ©d menteni az üzenetet? AlapĆ©rtelmezett - + A new tab Új fül @@ -13825,7 +14747,7 @@ SzeretnĆ©d menteni az üzenetet? Új ablak - + Edit Tag CĆ­mke szerkesztĆ©se @@ -13848,7 +14770,7 @@ SzeretnĆ©d menteni az üzenetet? MessageToaster - + Sub: TĆ”rgy: @@ -13856,7 +14778,7 @@ SzeretnĆ©d menteni az üzenetet? MessageUserNotify - + Message Üzenet @@ -13884,7 +14806,7 @@ SzeretnĆ©d menteni az üzenetet? MessageWidget - + Recommended Files AjĆ”nlott fĆ”jlok @@ -13894,37 +14816,37 @@ SzeretnĆ©d menteni az üzenetet? Az ƶsszes ajĆ”nlott fĆ”jl letƶltĆ©se - + Subject: TĆ”rgy: - + From: Feladó: - + To: CĆ­mzett: - + Cc: MĆ”solat: - + Bcc: Rejtett mĆ”solat: - + Tags: CĆ­mkĆ©k: - + Reply VĆ”lasz @@ -13964,7 +14886,7 @@ SzeretnĆ©d menteni az üzenetet? - + Send Invite MeghĆ­vó küldĆ©se @@ -14016,7 +14938,7 @@ SzeretnĆ©d menteni az üzenetet? - + Confirm %1 as friend Elfogadom %1 barĆ”ti felkĆ©rĆ©sĆ©t @@ -14026,12 +14948,12 @@ SzeretnĆ©d menteni az üzenetet? %1 hozzĆ”adĆ”sa barĆ”tkĆ©nt - + View source - + No subject Nincs tĆ”rgy @@ -14041,22 +14963,17 @@ SzeretnĆ©d menteni az üzenetet? LetƶltĆ©s - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14066,23 +14983,17 @@ SzeretnĆ©d menteni az üzenetet? - - Show less - - - - - Show more - + Send invite? + Küldesz meghĆ­vót? - + Download all Az ƶsszes letƶltĆ©se - + Print Document Dokumentum nyomtatĆ”sa @@ -14097,12 +15008,12 @@ SzeretnĆ©d menteni az üzenetet? Html-FĆ”jlok (*.htm *.html);;Ɩsszes fĆ”jl (*) - + Load images always for this message Ezen üzenethez mindig tƶltse be a kĆ©peket - + Hide the attachment pane CsatolmĆ”ny mező elrejtĆ©se @@ -14124,6 +15035,42 @@ SzeretnĆ©d menteni az üzenetet? Compose ƍrĆ”s + + Reply to selected message + VĆ”lasz a kijelƶlt üzenetre + + + Reply + VĆ”lasz + + + Reply all to selected message + VĆ”lasz az ƶsszes kijelƶlt üzenetre + + + Reply all + VĆ”lasz mindenre + + + Forward selected message + Kijelƶlt üzenet tovĆ”bbĆ­tĆ”sa + + + Forward + Előre + + + Remove selected message + Kijelƶlt üzenet eltĆ”volĆ­tĆ”sa + + + Delete + TƶrlĆ©s + + + Print selected message + Kijelƶlt üzenet nyomtatĆ”sa + Print @@ -14202,7 +15149,7 @@ SzeretnĆ©d menteni az üzenetet? MessagesDialog - + New Message Új üzenet @@ -14212,16 +15159,60 @@ SzeretnĆ©d menteni az üzenetet? ƍrĆ”s - + Reply to selected message + VĆ”lasz a kivĆ”lasztott üzenetre + + + Reply + VĆ”lasz + + + Reply all to selected message + VĆ”lasz az ƶsszes kivĆ”lasztott üzenetre + + + Reply all + VĆ”lasz mindenre + + + Forward selected message + KivĆ”lasztott üzenet tovĆ”bbĆ­tĆ”sa + + + Foward + TovĆ”bbĆ­tĆ”s + + + Remove selected message + KivĆ”lasztott üzenet eltĆ”volĆ­tĆ”sa + + + Delete + TƶrlĆ©s + + + Print selected message + KivĆ”lasztott üzenet nyomtatĆ”sa + + + Print + NyomtatĆ”s + + + Display + MegjelenĆ­tĆ©s beĆ”llĆ­tĆ”sai + + + - - + + Tags CĆ­mkĆ©k - - + + Inbox BeĆ©rkezett üzenetek @@ -14251,17 +15242,21 @@ SzeretnĆ©d menteni az üzenetet? Kuka - + Total Inbox: Ɩsszes beĆ©rkezett: - + Folders + MappĆ”k + + + Quick View Gyors nĆ©zet - + Print... NyomtatĆ”s... @@ -14271,6 +15266,26 @@ SzeretnĆ©d menteni az üzenetet? Print Preview NyomatĆ”si kĆ©p + + Buttons Icon Only + Gombok csak ikonokkĆ©nt + + + Buttons Text Beside Icon + Szƶveg az ikonok mellett + + + Buttons with Text + Gombok csak szƶveggel + + + Buttons Text Under Icon + Gombok ikon alatti szƶveggel + + + Set Text Under Icon + Szƶveg beĆ”llĆ­tĆ”sa + Save As... @@ -14292,7 +15307,7 @@ SzeretnĆ©d menteni az üzenetet? Üzenet tovĆ”bbĆ­tĆ”sa - + Subject TĆ”rgy @@ -14302,7 +15317,7 @@ SzeretnĆ©d menteni az üzenetet? Feladó - + Date DĆ”tum @@ -14312,7 +15327,39 @@ SzeretnĆ©d menteni az üzenetet? Tartalom - + Click to sort by attachments + RendezĆ©s mellĆ©kletek szerint + + + Click to sort by subject + RendezĆ©s tĆ”rgy szerint + + + Click to sort by read + RendezĆ©s olvasottsĆ”g szerint + + + Click to sort by from + RendezĆ©s alak szerint + + + Click to sort by date + RendezĆ©s dĆ”tum szerint + + + Click to sort by tags + RendezĆ©s cĆ­mkĆ©k szerint + + + Click to sort by star + RendezĆ©s csillagozottsĆ”g szerint + + + Forward selected Message + Kijelƶlt üzenet tovĆ”bbĆ­tĆ”sa + + + Search Subject TĆ”rgy keresĆ©se @@ -14321,11 +15368,6 @@ SzeretnĆ©d menteni az üzenetet? Search From KeresĆ©s ebből - - - Search To - - Search Date @@ -14352,14 +15394,14 @@ SzeretnĆ©d menteni az üzenetet? MellĆ©kletek keresĆ©se - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - + Csillagozott @@ -14433,7 +15475,7 @@ SzeretnĆ©d menteni az üzenetet? - Show in People + Show author in People @@ -14447,7 +15489,7 @@ SzeretnĆ©d menteni az üzenetet? - + No message using %1 tag available. @@ -14462,33 +15504,34 @@ SzeretnĆ©d menteni az üzenetet? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Piszkozatok - + No Box selected. - - To - CĆ­mzett + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Nincs elĆ©rhető csillagozott üzenet. A csillagokkal megjelƶlheted fontos üzeneteidet, hogy azokat kƶnnyen megtalĆ”ld. Ehhez kattints a vilĆ”gosszürke csillagra az üzenet mellett. - + No system messages available. + Nincs elĆ©rhető rendszerüzenet. + + + To + CĆ­mzett + + + Click to sort by to + RendezĆ©s cĆ­mzett szerint + + + @@ -14496,6 +15539,22 @@ SzeretnĆ©d menteni az üzenetet? Total: Ɩsszes: + + Messages + Üzenetek + + + Click to sort by signature + RendezĆ©s alƔƭrĆ”s szerint + + + This message was signed and the signature checks + Az üzenet alƔƭrĆ”st tartalmazott Ć©s az Ć©rtĆ©ke egyezett + + + This message was signed but the signature doesn't check + Az üzenet alƔƭrĆ”st tartalmazott, de az Ć©rtĆ©ke nem egyezik meg + Mail @@ -14523,17 +15582,7 @@ SzeretnĆ©d menteni az üzenetet? MimeTextEdit - - Save image - KĆ©p mentĆ©se - - - - Copy image - - - - + Paste as plain text BeillesztĆ©s sima szƶvegkĆ©nt @@ -14587,7 +15636,7 @@ SzeretnĆ©d menteni az üzenetet? - + Expand LenyitĆ”s @@ -14597,7 +15646,7 @@ SzeretnĆ©d menteni az üzenetet? EltĆ”volĆ­tĆ”s - + from tőle @@ -14632,10 +15681,14 @@ SzeretnĆ©d menteni az üzenetet? Függő üzenetek - + Hide Elrejt + + Send invite? + Küldesz meghĆ­vót? + NATStatus @@ -14773,7 +15826,7 @@ SzeretnĆ©d menteni az üzenetet? Partner azonosĆ­tó - + Remove unused keys... HasznĆ”latlan kulcsok eltĆ”volĆ­tĆ”sa... @@ -14783,7 +15836,7 @@ SzeretnĆ©d menteni az üzenetet? - + Clean keyring Kulcstartó takarĆ­tĆ”sa @@ -14801,13 +15854,7 @@ MegyjegyzĆ©s: A rĆ©gi kulcstartódról biztonsĆ”gi mĆ”solat kĆ©szül. Az eltĆ”volĆ­tĆ”s sikertelenül vĆ©gződhet, ha egyszerre tƶbb Retroshare klienst futtatsz ugyanazon a gĆ©pen. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Kulcstartó adatai @@ -14843,13 +15890,18 @@ A biztonsĆ”g kedvƩƩrt a kulcstartód ezt megelőzően el lett mentve egy fĆ”jl Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. AdatrendezĆ©si hiba a kulcstartóban. Ez valószĆ­nűleg egy programhiba. KĆ©rlek lĆ©pj kapcsolatba a fejlesztőkkel. + + + Export/create a new node + + Trusted keys only Csak megbĆ­zható kulcsok - + Search name NĆ©v keresĆ©se @@ -14859,18 +15911,25 @@ A biztonsĆ”g kedvƩƩrt a kulcstartód ezt megelőzően el lett mentve egy fĆ”jl Partner azonosĆ­tó keresĆ©se - + Profile details... Profil rĆ©szletei - + Key removal has failed. Your keyring remains intact. Reported error: + + NetworkPage + + Network + HĆ”lózat + + NetworkView @@ -14897,7 +15956,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14918,7 +15977,7 @@ Reported error: - + Groups Csoportok @@ -14948,19 +16007,19 @@ Reported error: barĆ”tlista visszaĆ”llĆ­tĆ”sa a megtartott csoportokkal - - + + Search KeresĆ©s - + ID AzonosĆ­tó - + Search ID AzonosĆ­tó keresĆ©se @@ -14970,12 +16029,12 @@ Reported error: - + Show Items Elemek megjelenĆ­tĆ©se - + Last contact @@ -14985,7 +16044,7 @@ Reported error: IP - + Group Csoport @@ -15100,7 +16159,7 @@ Reported error: Ɩsszes becsukĆ”sa - + Do you want to remove this node? El szeretnĆ©d tĆ”volĆ­tani ezt a csomópontot? @@ -15110,7 +16169,7 @@ Reported error: El szeretnĆ©d tĆ”volĆ­tani ezt a barĆ”tot? - + Done! KĆ©sz! @@ -15224,7 +16283,11 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz NewsFeed - + Log entries + NaplóbejegyzĆ©sek + + + Activity Stream @@ -15239,7 +16302,11 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Ɩsszes eltĆ”volĆ­tĆ”sa - + This is a test. + Ez egy teszt. + + + Newest on top A legĆŗjabb felül @@ -15249,12 +16316,16 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz A legrĆ©gibb felül - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Log + Napló + + + Activity @@ -15309,6 +16380,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Blogs Blogok + + Security + BiztonsĆ”g + @@ -15330,6 +16405,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Message Üzenet + + Connect attempt + CsatlakozĆ”si kĆ­sĆ©rlet + @@ -15346,6 +16425,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Ip security IP biztonsĆ”g + + Log + Napló + Friend Connected @@ -15356,6 +16439,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Circles Kƶrƶk + + Links + HivatkozĆ”sok + Activity @@ -15408,6 +16495,14 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Chat rooms TĆ”rsalgószobĆ”k + + Chat Rooms + TĆ”rsalgószobĆ”k + + + Case sensitive + Kis- Ć©s nagybetű Ć©rzĆ©keny + Position @@ -15483,6 +16578,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Disable All Toaster temporarily + + Feed + HĆ­rcsatorna + Systray @@ -15492,7 +16591,7 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz NotifyQt - + Passphrase required @@ -15512,12 +16611,12 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz Rossz jelszó! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Nem regisztrĆ”lt beĆ©pülő/futtatható Ć”llomĆ”ny @@ -15532,7 +16631,19 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz KĆ©rlek, ellenőrĆ­zd a rendszerórĆ”dat. - + Examining shared files... + Megosztott fĆ”jlok vizsgĆ”lata... + + + Hashing file + FĆ”jl hashelĆ©se + + + Saving file index... + FĆ”jlindex mentĆ©se + + + Test Teszt @@ -15543,19 +16654,17 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz - Unknown title Ismeretlen cĆ­m - + - Encrypted message TitkosĆ­tott üzenet - + 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). @@ -15563,7 +16672,7 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz OnlineToaster - + Friend Online Bejelentkezett barĆ”t @@ -15615,6 +16724,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz PGPKeyDialog + + Dialog + PĆ”rbeszĆ©d + Profile info @@ -15680,6 +16793,10 @@ legalĆ”bb egy partner nem lett hozzĆ”adva a csoporthoz 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> @@ -15705,20 +16822,23 @@ p, li { white-space: pre-wrap; } PGP kulcs - - Friend options - - - - + 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> + Keysigning: + + Sign PGP key + PGP kulcs alƔƭrĆ”sa + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15755,20 +16875,29 @@ p, li { white-space: pre-wrap; } AlƔƭrĆ”sokat tartalmaz - + + Options + 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 - Kƶzvetlen forrĆ”skĆ©nt hasznĆ”lat, amikor csak lehetsĆ©ges + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15801,21 +16930,21 @@ p, li { white-space: pre-wrap; } kB/mĆ”sodpercenkĆ©nt - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Hiba: a partner adatai nem elĆ©rhetőek. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) A RetroShare nem tĆ”mogatja a kulcsot. @@ -15836,7 +16965,7 @@ 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. @@ -15905,6 +17034,10 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen Check the password! + + Maybe password is wrong + TalĆ”n rossz a jelszó + You haven't set a trust level for this key. @@ -15912,12 +17045,12 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen - + Retroshare profile RetroShare profil - + This is your own PGP key, and it is signed by : @@ -15943,7 +17076,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen PeerItem - + Chat BeszĆ©lgetĆ©s @@ -15964,7 +17097,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen EltĆ”volĆ­tĆ”s - + Name: NĆ©v: @@ -16004,7 +17137,7 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen IdőeltolódĆ”s: - + Write Message Üzenet Ć­rĆ”sa @@ -16018,6 +17151,10 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen Friend Connected BarĆ”t bejelentkezett + + Connect Attempt + KapcsolódĆ”si kĆ­sĆ©rlet + Connection refused by peer @@ -16056,13 +17193,17 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen Unknown Ismeretlen + + Unknown Peer + Ismeretlen partner + Hide Elrejt - + Send Message Üzenet küldĆ©se @@ -16114,6 +17255,10 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen 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 + Invite to Circle @@ -16229,6 +17374,13 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen + + PhotoCommentItem + + Form + Forma + + PhotoDialog @@ -16236,11 +17388,23 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen PhotoShare FĆ©nykĆ©pmegosztĆ”s + + Photo + FĆ©nykĆ©p + TextLabel CĆ­mke + + Comment + HozzĆ”szólĆ”s + + + Summary + Ɩsszefoglalva + Album / Photo Name @@ -16301,6 +17465,14 @@ FigyelmeztetĆ©s: az Ɓtvitel beĆ”llĆ­tĆ”sainĆ”l Nem engedĆ©lyezted a kƶzvetlen ... ... + + Add Comment + HozzĆ”szólĆ”s Ć­rĆ”sa + + + Write a comment... + HozzĆ”szólĆ”s Ć­rĆ”sa... + Album @@ -16371,6 +17543,10 @@ p, li { white-space: pre-wrap; } Create Album Album lĆ©trehozĆ”sa + + View Album + Album megnĆ©zĆ©se + Edit Album Details @@ -16392,17 +17568,17 @@ p, li { white-space: pre-wrap; } DiavetĆ­tĆ©s - + My Albums Albumaim - + Subscribed Albums Album feliratkozĆ”sok - + Shared Albums Megosztott albumok @@ -16431,7 +17607,7 @@ requesting to edit it! PhotoSlideShow - + Album Name Album neve @@ -16490,19 +17666,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16538,12 +17714,12 @@ requesting to edit it! PluginItem - + TextLabel SzƶvegcĆ­mke - + Show more details about this plugin BeĆ©pülő rĆ©szleteinek mutatĆ”sa @@ -16689,6 +17865,51 @@ p, li { white-space: pre-wrap; } Plugin look-up directories BeĆ©plők kƶnyvtĆ”rai + + [disabled] + [leĆ”llĆ­tva] + + + No API number supplied. Please read plugin development manual. + Nincs tĆ”mogatott API szĆ”m. KĆ©rlek, olvasd el a beĆ©pülők fejlesztĆ©sĆ©hez kapcsolódó leĆ­rĆ”st. + + + [loading problem] + [betƶltĆ©si hiba] + + + No SVN number supplied. Please read plugin development manual. + Nincs tĆ”mogatott SVN szĆ”m. KĆ©rlek, olvasd el a beĆ©pülők fejlesztĆ©sĆ©hez kapcsolódó leĆ­rĆ”st. + + + Loading error. + Hiba a betƶltĆ©skor + + + Missing symbol. Wrong version? + HizĆ”nyzó szimbólum. Rossz verzió? + + + No plugin object + Nem talĆ”lható beĆ©pülő + + + Plugins is loaded. + BeĆ©pülő betƶltve. + + + Unknown status. + Ismeretlen Ć”llapot. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Fejlesztő verziók hasznĆ”latƔƩrt jelƶld be ezt, Ć­gy a hash Ć©rtĆ©keik nem +lesznek ellenőrĆ­zve. AlapĆ”llapotban a hash Ć©rtĆ©k ellenőrzĆ©se megvĆ©d +a kĆ”rtevőkĆ©nt műkƶdő beĆ©pülők hasznĆ”latĆ”tól. + Plugins @@ -16758,27 +17979,12 @@ p, li { white-space: pre-wrap; } Mindig felül - - Ban this person (Sets negative opinion) - SzemĆ©ly bannolĆ”sa (NegatĆ­v vĆ©lemĆ©nyt Ć”llĆ­t be) - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16812,6 +18018,14 @@ p, li { white-space: pre-wrap; } Close conversation? + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Ha bezĆ”rod ezt az ablakot, akkor a beszĆ©lgetĆ©s megszakad Ć©s megszűnik titkosĆ­tott alagĆŗt. + + + Kill the tunnel? + AlagĆŗt bezĆ”rĆ”sa? + PostedCardView @@ -16831,7 +18045,7 @@ p, li { white-space: pre-wrap; } Új - + Vote up SzavazĆ”s mellette @@ -16851,8 +18065,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments HozzĆ”szólĆ”sok @@ -16877,13 +18091,13 @@ p, li { white-space: pre-wrap; } - - + + Comment HozzĆ”szólĆ”s - + Comments HozzĆ”szólĆ”sok @@ -16911,12 +18125,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + Ɓltala alƔƭrva: + + + Notes + Jegyzetek + + + Create a new Post - + RetroShare RetroShare @@ -16931,22 +18153,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File KĆ©p betƶltĆ©se - + Post image @@ -16962,17 +18174,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16982,7 +18184,19 @@ p, li { white-space: pre-wrap; } - + Submit Post + BeküldĆ©s + + + Submit + JóvĆ”hagyĆ”s + + + Submit a new Post + Új hozzĆ”szólĆ”s beküldĆ©se + + + Please add a Title KĆ©rlek, adj meg egy cĆ­met @@ -17002,22 +18216,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17032,7 +18236,7 @@ p, li { white-space: pre-wrap; } HozzĆ”szólĆ”s mint - + Post @@ -17043,7 +18247,7 @@ p, li { white-space: pre-wrap; } KĆ©p - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17053,7 +18257,7 @@ p, li { white-space: pre-wrap; } CĆ­m - + Link HivatkozĆ”s @@ -17061,12 +18265,40 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + KƶzzĆ©tett hivatkozĆ”sok + + + Create Topic + TĆ©ma lĆ©trehozĆ”sa + + + My Topics + Topikjaim + + + Subscribed Topics + Feliratkozott tĆ©mĆ”k + + + Popular Topics + NĆ©pszerű tĆ©mĆ”k + + + Other Topics + EgyĆ©b tĆ©mĆ”k + + + Links + HivatkozĆ”sok + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17100,7 +18332,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Beküldƶtt tĆ©ma + + + Add Topic Admins + TĆ©ma adminok hozzĆ”adĆ”sa + + + Select Topic Admins + TĆ©ma adminok kivĆ”lasztĆ”sa + + + Create New Topic + Új tĆ©ma lĆ©trehozĆ”sa + + + Edit Topic + TĆ©ma szerkesztĆ©se + + + Update Topic + TĆ©ma frissĆ­tĆ©se + + + Create New Board @@ -17138,17 +18394,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17164,7 +18410,7 @@ p, li { white-space: pre-wrap; } - + Expand LenyitĆ”s @@ -17179,17 +18425,16 @@ p, li { white-space: pre-wrap; } - + Loading + TƶltĆ©s + + + Loading... - - Never - Soha - - - + New Board @@ -17202,18 +18447,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Oldal + + + + Comments HozzĆ”szólĆ”sok - + Copy RetroShare Link @@ -17224,12 +18473,12 @@ p, li { white-space: pre-wrap; } - + Comment HozzĆ”szólĆ”s - + Comments HozzĆ”szólĆ”sok @@ -17239,7 +18488,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>Az üzenet szerzője (azonosĆ­tó: %1) bannolva van.</b> - + Click to view Picture @@ -17249,17 +18498,21 @@ p, li { white-space: pre-wrap; } Elrejt - + Vote up SzavazĆ”s mellette - + Vote down SzavazĆ”s ellene - + \/ + \/ + + + Set as read and remove item MegjelƶlĆ©s olvasottkĆ©nt Ć©s eltĆ”volĆ­tĆ”s @@ -17269,7 +18522,7 @@ p, li { white-space: pre-wrap; } Új - + New Comment: Új hozzĆ”szólĆ”s @@ -17279,7 +18532,7 @@ p, li { white-space: pre-wrap; } - + Name NĆ©v @@ -17320,10 +18573,77 @@ p, li { white-space: pre-wrap; } - + Loading TƶltĆ©s + + By + Ć”ltal + + + + PostedListWidget + + Form + Forma + + + Hot + NĆ©pszerű + + + New + Új + + + Top + Magas + + + Today + Ma + + + Yesterday + Tegnap + + + This Week + A hĆ©ten + + + This Month + A hónapban + + + This Year + Az Ć©vben + + + Submit a new Post + Új hozzĆ”szólĆ”s beküldĆ©se + + + Next + Kƶvetkező + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + KĆ©rlek, hozz lĆ©tre vagy vĆ”lassz ki egy AlƔƭró azonosĆ­tót a szavazĆ”s előtt + + + Previous + Előző + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17343,17 +18663,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17363,15 +18673,15 @@ p, li { white-space: pre-wrap; } AdminisztrĆ”tor: - + - + unknown ismeretlen - + Distribution: @@ -17381,42 +18691,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts BejegyzĆ©sek - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17436,7 +18746,7 @@ p, li { white-space: pre-wrap; } NĆ©pszerű - + Search KeresĆ©s @@ -17466,17 +18776,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17491,17 +18801,12 @@ p, li { white-space: pre-wrap; } Üres - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17511,31 +18816,27 @@ p, li { white-space: pre-wrap; } SzerkesztĆ©s - - + information InformĆ”ció - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17550,7 +18851,7 @@ p, li { white-space: pre-wrap; } FeliratkozĆ”s - + Never Soha @@ -17624,16 +18925,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Nincs csatorna kivĆ”lasztva - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17642,6 +18933,14 @@ p, li { white-space: pre-wrap; } Tabs Fülek + + Open each topic in a new tab + Minden egyes tĆ©ma megnyitĆ”sa Ćŗj fülƶn + + + Links + HivatkozĆ”sok + Open each board in a new tab @@ -17655,6 +18954,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Beküldve + Board Post @@ -17723,16 +19026,16 @@ p, li { white-space: pre-wrap; } Profilkezelő - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17842,7 +19145,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. ProfileWidget - + Edit status message Ɓllapot szerkesztĆ©se @@ -17858,7 +19161,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Profilkezelő - + Public Information Publikus adatok @@ -17893,12 +19196,12 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Online ettől kezdve: - + Other Information EgyĆ©b adatok - + My Address CĆ­mem @@ -17942,27 +19245,51 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. PulseAddDialog - + Post From: + KüldĆ©s ebből: + + + Account 1 + Profil 1 + + + Account 2 + Profil 2 + + + Account 3 + Profil 3 + + + Add to Pulse Pulzushoz adĆ”s - + filter + szűrő + + + URL Adder + URL hozzĆ”adó + + + Display As MutatĆ”s mint - + URL URL - + GroupLabel - + IDLabel @@ -17972,12 +19299,12 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Feladó: - + Head - + Head Shot @@ -18007,13 +19334,13 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. rossz - - + + Whats happening? - + @@ -18025,22 +19352,12 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18049,13 +19366,17 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Cancel MĆ©gse + + Post Pulse to Wire + Pulzus küldĆ©se a vezetĆ©khez + Post - + Reply to Pulse @@ -18070,24 +19391,34 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - KĆ©p betƶltĆ©se + From + Feladó + + + Date + DĆ”tum + + + ... + ... @@ -18098,7 +19429,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. Forma - + @@ -18117,7 +19448,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. PulseReply - + icn @@ -18127,7 +19458,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + REPLY @@ -18154,7 +19485,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + FOLLOW @@ -18164,7 +19495,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18184,7 +19515,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18300,7 +19631,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + FOLLOW @@ -18308,42 +19639,37 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18375,7 +19701,7 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. - + FOLLOW @@ -18383,8 +19709,8 @@ az importĆ”lĆ”s gombot, hogy betƶltsd. QObject - - + + Confirmation MegerősĆ­tĆ©s @@ -18655,12 +19981,12 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs Partner rĆ©szletei - + File Request canceled FĆ”jl kĆ©rĆ©se megszakĆ­tva - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. A RetroShare ezen verziója OpenPGP-SDK-t hasznĆ”l. Ennek hĆ”la, nem hasznĆ”lja a rendszer PGP kulcstartójĆ”t, viszont van egy sajĆ”t kulcstartója, amit az ƶsszes futó RetroShare elĆ©rhet. <br><br>Úgy tűnik, hogy mĆ©g nem rendelkezel ilyen kulcstartóval annak ellenĆ©re, hogy mĆ”r lĆ©trehozott RetroShare fiókjaidban szerepelnek PGP kulcsok. Ez valószĆ­nűleg azĆ©rt lehetsĆ©ges, mert most frissĆ­tettĆ©l az alkalmazĆ”s Ćŗj verziójĆ”ra. @@ -18691,7 +20017,7 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs VĆ”ratlan hiba tƶrtĆ©nt. KĆ©rlek jelentsd 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! A Tor-kezelő nem indul! @@ -18727,7 +20053,7 @@ The error reported is:" - + Multiple instances Tƶbb pĆ©ldĆ”ny @@ -18750,26 +20076,6 @@ KĆ©rlek, előszƶr zĆ”rd be azt. ZĆ”rolt fĆ”jl: ZĆ”rolófĆ”jl: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18852,7 +20158,7 @@ A hibajelentĆ©s: Adat tovĆ”bbĆ­tĆ”sa - + You appear to have nodes associated to DSA keys: @@ -18862,7 +20168,7 @@ A hibajelentĆ©s: - + enabled elindĆ­tva @@ -18872,7 +20178,7 @@ A hibajelentĆ©s: leĆ”llĆ­tva - + Move IP %1 to whitelist @@ -18888,7 +20194,7 @@ A hibajelentĆ©s: - + %1 seconds ago %1 mĆ”sodperccel ezelőtt @@ -18956,7 +20262,7 @@ Security: no anonymous IDs BiztonsĆ”g: nĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek - + Join chat room BelĆ©pĆ©s a tĆ”rsalgószobĆ”ba @@ -18984,7 +20290,7 @@ BiztonsĆ”g: nĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek nem lehet Ć©rtelmezni az XML fĆ”jlt! - + Indefinitely @@ -19164,29 +20470,13 @@ BiztonsĆ”g: nĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek Ban list - - - Name - NĆ©v - - Node - Csomópont - - - - Address - CĆ­m - - - - Status Ɓllapot - + NXS @@ -19379,6 +20669,10 @@ BiztonsĆ”g: nĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek Click to resume the hashing process + + <p>This certificate contains: + <p>Ez a tanĆŗsĆ­tvĆ”ny tartalmaz: + Idle @@ -19429,18 +20723,6 @@ BiztonsĆ”g: nĆ©vtelen azonosĆ­tók nem engedĆ©lyezettek Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19603,7 +20885,7 @@ p, li { white-space: pre-wrap; } - + Network Wide EgĆ©sz hĆ”lózat @@ -19786,7 +21068,7 @@ p, li { white-space: pre-wrap; } Forma - + The loading of embedded images is blocked. A beĆ”gyazott kĆ©pek megjelenĆ­tĆ©se tiltva van. @@ -19799,7 +21081,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default AlapĆ©rtelmezetten engedĆ©lyezve @@ -19972,22 +21254,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - KĆ©p mentĆ©se - - - - Copy image - - - - + Document source @@ -19995,12 +21267,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options Fa nĆ©zet beĆ”llĆ­tĆ”sa - + Show Header @@ -20030,6 +21302,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + Mutatandó oszlop... + + + [no title] + [nincs cĆ­m] + RatesStatus @@ -20690,7 +21970,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name NĆ©v @@ -20811,7 +22091,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name NĆ©v @@ -20831,7 +22111,7 @@ If you believe it is correct, remove the corresponding line from the file and re IP - + Profile ID @@ -20888,7 +22168,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] [ ... Szerkesztett üzenet ... ] @@ -20902,6 +22182,11 @@ prevents the message to be forwarded to your friends. [Unknown] [Ismeretlen] + + + [ ... Missing Message ... ] + [ ... HiĆ”nyzó üzenet ... ] + RsMessageModel @@ -20915,11 +22200,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20942,18 +22222,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + RendezĆ©s olvasottsĆ”g szerint - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + RendezĆ©s alak szerint @@ -20976,9 +22251,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20999,7 +22272,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Az ƶsszes tĆ”rolt RetroShare beĆ”llĆ­tĆ”s visszavĆ”ltĆ”sa alapĆ©rtelmezettre. @@ -21060,7 +22333,7 @@ prevents the message to be forwarded to your friends. RetroShare nyelvi beĆ”llĆ­tĆ”sa. - + Unable to open log file '%1': %2 NaplófĆ”jl megnyitĆ”sa sikertelen: '%1': %2 @@ -21081,7 +22354,11 @@ prevents the message to be forwarded to your friends. - + Revision + VĆ”ltozat + + + opmode műkƶdĆ©si mód @@ -21111,7 +22388,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21129,7 +22406,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21146,12 +22423,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) ƍrj be egy kulcsszót (legalĆ”bb hĆ”rom karakter hosszĆŗ legyen) - + Start Search KeresĆ©s indĆ­tĆ”sa @@ -21213,7 +22490,7 @@ prevents the message to be forwarded to your friends. TisztĆ­tĆ”s - + KeyWords Kulcsszavak @@ -21228,7 +22505,7 @@ prevents the message to be forwarded to your friends. KeresĆ©s azonosĆ­tó - + Filename FĆ”jlnĆ©v @@ -21328,23 +22605,23 @@ prevents the message to be forwarded to your friends. KivĆ”lasztott letƶltĆ©se - + File Name FĆ”jlnĆ©v - + Download LetƶltĆ©s - + Copy RetroShare Link RetroShare link mĆ”solĆ”sa - + Send RetroShare Link RetroShare hivatkozĆ”s küldĆ©se @@ -21354,7 +22631,7 @@ prevents the message to be forwarded to your friends. - + Download Notice MegjegyzĆ©s letƶltĆ©se @@ -21391,7 +22668,7 @@ prevents the message to be forwarded to your friends. Ɩsszes eltĆ”volĆ­tĆ”sa - + Folder Mappa @@ -21402,17 +22679,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) Új RetroShare hivatkozĆ”s(ok) - + Open Folder Mappa megnyitĆ”sa - + Create Collection... GyűjtemĆ©ny lĆ©trehozĆ”sa @@ -21432,7 +22709,7 @@ prevents the message to be forwarded to your friends. LetƶltĆ©s kollekciófĆ”jlból... - + Collection Kollekció @@ -21440,7 +22717,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Partner rĆ©szletei @@ -21456,22 +22733,22 @@ prevents the message to be forwarded to your friends. EltĆ”volĆ­tĆ”s - + IP address: IP cĆ­m: - + Peer ID: Partner azonosĆ­tó: - + Location: Hely: - + Peer Name: Kapcsolat neve: @@ -21488,7 +22765,7 @@ prevents the message to be forwarded to your friends. Elrejt - + but reported: @@ -21513,8 +22790,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21522,7 +22799,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare a barĆ”tod szeretne lenni @@ -21553,7 +22830,7 @@ prevents the message to be forwarded to your friends. - + Expand LenyitĆ”s @@ -21598,12 +22875,12 @@ prevents the message to be forwarded to your friends. Ɓllapot: - + Write Message Üzenet Ć­rĆ”sa - + Connect Attempt CsatlakozĆ”si kĆ­sĆ©rlet @@ -21623,22 +22900,17 @@ prevents the message to be forwarded to your friends. Ismeretlen (kimenő) csatlakozĆ”si kĆ­sĆ©rlet - + Unknown Security Issue Ismeretlen biztonsĆ”gi kockĆ”zat - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown Ismeretlen @@ -21648,7 +22920,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Ismeretlen partner + + + Hide Elrejt @@ -21658,7 +22934,7 @@ prevents the message to be forwarded to your friends. El szeretnĆ©d tĆ”volĆ­tani ezt a barĆ”tot? - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21668,12 +22944,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= Partner/csomópont nincs a barĆ”tlistĆ”don (PGP azonosĆ­tó= @@ -21732,12 +23008,12 @@ prevents the message to be forwarded to your friends. - + Local Address Helyi cĆ­m - + NAT NAT @@ -21758,22 +23034,22 @@ prevents the message to be forwarded to your friends. Port: - + Local network Helyi hĆ”lózat - + External ip address finder Külső IP cĆ­m kereső - + UPnP UPnP - + Known / Previous IPs: Ismert / Előző IP cĆ­mek: @@ -21786,16 +23062,21 @@ 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. - - - + + Allow RetroShare to ask my ip to these websites: + EngedĆ©lyezem a RetroSharenek, hogy a kƶvetkező oldalakon lekĆ©rdezze az IP cĆ­memet: + + + + + kB/s KB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21805,46 +23086,23 @@ behind a firewall or a VPN. - + Onion Address Onion cĆ­m - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21854,7 +23112,7 @@ List of found external IP: Rejtett - LĆ”sd BeĆ”llĆ­tĆ”sok - + I2P Address I2P cĆ­m @@ -21879,95 +23137,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client ügyfĆ©l @@ -21982,7 +23182,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21992,7 +23256,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -22004,12 +23283,12 @@ 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> @@ -22019,7 +23298,7 @@ Also check your ports! TisztĆ­tĆ”s - + Download limit (KB/s) LetƶltĆ©si korlĆ”t (KB/s) @@ -22034,23 +23313,23 @@ Also check your ports! 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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22061,7 +23340,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + Ɩnműkƶdő I2P/BOB + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22071,7 +23360,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22081,7 +23375,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address CĆ­m @@ -22121,7 +23425,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why kulcs betƶltĆ©se - + Start IndĆ­tĆ”s @@ -22136,7 +23440,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why LeĆ”llĆ­tĆ”s - + + BOB status + + + + Incoming Bejƶvő @@ -22172,32 +23481,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay KƶzvetĆ­tő @@ -22252,7 +23536,7 @@ If you have issues connecting over Tor check the Tor logs too. Ɩsszesen: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22277,7 +23561,7 @@ If you have issues connecting over Tor check the Tor logs too. 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>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> @@ -22289,7 +23573,7 @@ If you have issues connecting over Tor check the Tor logs too. HĆ”lózat - + IP Filters IP szűrők @@ -22312,7 +23596,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Ɓllapot @@ -22372,28 +23656,17 @@ If you have issues connecting over Tor check the Tor logs too. HozzĆ”adĆ”s a fehĆ©rlistĆ”hoz - + Hidden Service Configuration Rejtett szolgĆ”ltatĆ”s beĆ”llĆ­tĆ”sai - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22409,18 +23682,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22455,12 +23728,12 @@ If you have issues connecting over Tor check the Tor logs too. KĆ©rlek adj meg egy szolgĆ”ltatĆ”s cĆ­met - + IP Range IP tartomĆ”ny - + Reported by DHT for IP masquerading @@ -22483,22 +23756,22 @@ If you have issues connecting over Tor check the Tor logs too. 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> @@ -22533,7 +23806,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22543,12 +23816,12 @@ If you have issues connecting over Tor check the Tor logs too. Tor Socks Proxy - + Tor outgoing Okay Tor kimenő forgalom Rendben - + Tor proxy is not enabled Tor proxy nincs engedĆ©lyezve @@ -22628,7 +23901,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with Jelƶld be, hogy mely partnereiddel szeretnĆ©l privĆ”t kulcsot megosztani @@ -22638,12 +23911,12 @@ If you have issues connecting over Tor check the Tor logs too. MegosztĆ”s barĆ”tnak - + 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. @@ -22662,7 +23935,7 @@ Select the Friends with which you want to Share your Channel. MegosztĆ”skezelő - + Shared directory Megosztott mappa @@ -22682,17 +23955,17 @@ Select the Friends with which you want to Share your Channel. LĆ”thatósĆ”g - + Add new HozzĆ”adĆ”s - + Cancel MĆ©gse - + Add a Share Directory Mappa hozzĆ”adĆ”sa a megosztĆ”shoz @@ -22702,7 +23975,7 @@ Select the Friends with which you want to Share your Channel. EltĆ”volĆ­tĆ”s - + Apply and close AlkalmazĆ”s Ć©s bezĆ”rĆ”s @@ -22793,7 +24066,7 @@ Select the Friends with which you want to Share your Channel. Nem talĆ”lható mappa, vagy a neve nem elfogadható. - + 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. Ezen listĆ”n a megosztott mappĆ”kat lĆ”thatod. HozzĆ”adhatsz Ćŗjakat vagy eltĆ”volĆ­thatsz mĆ”r megosztottakat az alul talĆ”lható gombok hasznĆ”latĆ”val. Mikor egy Ćŗj mappĆ”t adsz hozzĆ”, az ƶsszes benne talĆ”lható fĆ”jl meg lesz osztva. MegosztĆ”si módokat egyenkĆ©nt testreszabhatod ki a listĆ”n szereplő mappĆ”kra. @@ -22801,7 +24074,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files FĆ”jlok @@ -22852,16 +24125,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files MegosztĆ”s ellenőrzĆ©se - + Download selected KivĆ”lasztott letƶltĆ©se @@ -22871,7 +24139,7 @@ Select the Friends with which you want to Share your Channel. LetƶltĆ©s - + Copy retroshare Links to Clipboard RetroShare hivatkozĆ”s mĆ”solĆ”sa a vĆ”gólapra @@ -22886,7 +24154,7 @@ Select the Friends with which you want to Share your Channel. RetroShare hivatkozĆ”s küldĆ©se - + Some files have been omitted @@ -22902,7 +24170,7 @@ Select the Friends with which you want to Share your Channel. AjĆ”nlĆ”s(ok) - + Create Collection... GyűjtemĆ©ny lĆ©trehozĆ”sa @@ -22927,7 +24195,7 @@ Select the Friends with which you want to Share your Channel. LetƶltĆ©s kollekciófĆ”jlból... - + Some files have been omitted because they have not been indexed yet. @@ -23070,12 +24338,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration BeĆ”llĆ­tĆ”sok betƶltĆ©se - + Create interface Felület lĆ©trehozĆ”sa @@ -23099,7 +24367,7 @@ Select the Friends with which you want to Share your Channel. Jelszó megjegyzĆ©se - + Log In BejelentkezĆ©s @@ -23440,7 +24708,7 @@ This choice can be reverted in settings. Ɓllapot üzenet - + Message: Üzenet: @@ -23685,7 +24953,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Ɩsszes cĆ­mke eltĆ”volĆ­tĆ”sa @@ -23721,15 +24989,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown Ismeretlen @@ -23739,13 +25004,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set Nincs beĆ”llĆ­tva @@ -23755,57 +25025,12 @@ p, li { white-space: pre-wrap; } - - Error - Hiba - - - - Not connected - Nem csatlakozott - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23813,7 +25038,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor Tor @@ -23823,7 +25048,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23834,12 +25059,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23867,7 +25091,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Ɓtvitel beĆ”llĆ­tĆ”sai @@ -23878,7 +25102,7 @@ p, li { white-space: pre-wrap; } Maximum egyidejű letƶltĆ©sek szĆ”ma: - + Shared Directories Megosztott kƶnyvtĆ”rak @@ -23888,27 +25112,22 @@ p, li { white-space: pre-wrap; } A kĆ©sz letƶltĆ©sek automatikus megosztĆ”sa (AjĆ”nlott) - + + Edit Share + + + + Directories - - Configure shared directories - Megosztott kƶnyvtĆ”rak beĆ”llĆ­tĆ”sai - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23993,7 +25212,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24002,12 +25221,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) Ismewrősƶk feltƶltĆ©seinek szĆ”ma legfeljebb (0=korlĆ”tlan) @@ -24032,12 +25246,7 @@ p, li { white-space: pre-wrap; } Kƶzvetlen letƶltĆ©s engedĆ©lyezĆ©se: - - <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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming StreamelĆ©s @@ -24102,7 +25311,12 @@ p, li { white-space: pre-wrap; } MaximĆ”lis tovĆ”bbĆ­tott csatornĆ”k szĆ”ma mĆ”sodpercenkĆ©nt: - + + <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> @@ -24112,17 +25326,7 @@ p, li { white-space: pre-wrap; } - - Warning - VigyĆ”zat - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Fogadó kƶnyvtĆ”r beĆ”llĆ­tĆ”sa @@ -24150,7 +25354,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed LetƶltĆ©s elkĆ©szült @@ -24174,23 +25378,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + %1 letƶltĆ©sed elkĆ©szült + + + You have %1 completed download + %1 letƶltĆ©sed elkĆ©szült + + + %1 completed downloads + %1 elkĆ©szült letƶltĆ©s + + + %1 completed download + %1 elkĆ©szült letƶltĆ©s + TransfersDialog - - + + Downloads LetƶltĆ©sek - + Uploads FeltƶltĆ©sek - + Name i.e: file name NĆ©v @@ -24397,12 +25617,7 @@ p, li { white-space: pre-wrap; } MeghatĆ”rozĆ”s... - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Move in Queue... MozgatĆ”s a sorban... @@ -24427,7 +25642,7 @@ p, li { white-space: pre-wrap; } Mappa kivĆ”lasztĆ”sa - + Anonymous end-to-end encrypted tunnel 0x @@ -24448,7 +25663,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24481,17 +25696,7 @@ p, li { white-space: pre-wrap; } %1 fĆ”jl nem teljes. Amennyiben ez egy mĆ©diafĆ”jl, próbĆ”ld ki az előnĆ©zetet. - - Warning - VigyĆ”zat - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name FĆ”jlnĆ©v megvĆ”ltoztatĆ”sa @@ -24506,7 +25711,7 @@ p, li { white-space: pre-wrap; } KĆ©rlek, Ć­rj be egy Ćŗj --Ć©s megfelelő-- fĆ”jlnevet - + Expand all Ɩsszes lenyitĆ”sa @@ -24633,18 +25838,23 @@ 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> + + + + Columns Oszlopok - + File Transfers FĆ”jl Ć”tvitelek - + Path ElĆ©rĆ©si Ćŗt @@ -24654,7 +25864,7 @@ p, li { white-space: pre-wrap; } ElĆ©rĆ©si Ćŗtvonal mutatĆ”sa - + Could not delete preview file @@ -24664,7 +25874,7 @@ p, li { white-space: pre-wrap; } Újból megpróbĆ”lod? - + Create Collection... GyűjtemĆ©ny lĆ©trehozĆ”sa @@ -24679,7 +25889,7 @@ p, li { white-space: pre-wrap; } GyűjtemĆ©ny megtekintĆ©se - + Collection Kollekció @@ -24689,7 +25899,7 @@ p, li { white-space: pre-wrap; } %1 alagĆŗt - + Anonymous tunnel 0x @@ -24910,6 +26120,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + NĆ©vtelen alagutak + Authenticated tunnels @@ -25103,17 +26317,12 @@ p, li { white-space: pre-wrap; } Forma - + Enable Retroshare WEB Interface - - Status: - Ɓllapot: - - - + Web parameters @@ -25153,27 +26362,21 @@ p, li { white-space: pre-wrap; } 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 + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25183,12 +26386,12 @@ p, li { white-space: pre-wrap; } 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ő @@ -25325,7 +26528,11 @@ p, li { white-space: pre-wrap; } Wiki oldalak - + New Group + Új csoport + + + Page Name OldalnĆ©v @@ -25340,7 +26547,7 @@ p, li { white-space: pre-wrap; } Eredeti azonosĆ­tó - + << << @@ -25428,7 +26635,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History OldalszerkesztĆ©s előzmĆ©nyei @@ -25463,7 +26670,7 @@ p, li { white-space: pre-wrap; } Oldal azonosĆ­tó - + \/ \/ @@ -25493,18 +26700,14 @@ p, li { white-space: pre-wrap; } CĆ­mkĆ©k - - History - ElőzmĆ©nyek - - - + + Show Edit History SzerkesztĆ©si előzmĆ©nyek mutatĆ”sa - + Status Ɓllapot @@ -25525,7 +26728,7 @@ p, li { white-space: pre-wrap; } VisszaĆ”llĆ­tĆ”s - + Submit JóvĆ”hagyĆ”s @@ -25597,6 +26800,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + IdőhatĆ”r + Create Account @@ -25608,7 +26815,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + FrissĆ­tĆ©s + + + Settings @@ -25623,7 +26839,7 @@ p, li { white-space: pre-wrap; } Tƶbbiek - + Who to Follow @@ -25643,7 +26859,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25673,17 +26889,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Utolsó hónap + + + Last Week + Utolsó hĆ©t + + + Today + Ma + + + New + Új + + + from + tőle + + + until + eddig + + + Search/Filter + Kereső/SzűrĆ©s + + + Network Wide + EgĆ©sz hĆ”lózat + + + Manage Accounts + Profilok kezelĆ©se + + + Showing: + MutatĆ”s: + + + Yourself SajĆ”t magad + + Friends + BarĆ”tok + Following Kƶvetve - + Custom + Testreszabott + + + Account 1 + Profil 1 + + + Account 2 + Profil 2 + + + Account 3 + Profil 3 + + + CheckBox + JelƶlőnĆ©gyzet + + + Post Pulse to Wire + Pulzus küldĆ©se a vezetĆ©khez + + + RetroShare RetroShare @@ -25746,42 +27030,35 @@ p, li { white-space: pre-wrap; } Forma - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - EltĆ”volĆ­tĆ”s - - - Location: Hely: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25826,41 +27103,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - Kƶvetve - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Ismeretlen @@ -25938,7 +27185,7 @@ p, li { white-space: pre-wrap; } %1y %2d - + k e.g: 3.1 k k @@ -25971,11 +27218,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + KĆ©pek (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? @@ -26094,6 +27345,10 @@ p, li { white-space: pre-wrap; } Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_it.ts b/retroshare-gui/src/lang/retroshare_it.ts index ade137565..389d7d42d 100644 --- a/retroshare-gui/src/lang/retroshare_it.ts +++ b/retroshare-gui/src/lang/retroshare_it.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Aggiungi un commento + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Ricerca Avanzata - + Search Criteria Criteri di Ricerca - + Add a further search criterion. Aggiungi un altro criterio di ricerca. @@ -137,7 +144,7 @@ Reinizializza i criteri di ricerca. - + Cancels the search. Annulla la ricerca. @@ -157,6 +164,177 @@ Ricerca + + AlbumCreateDialog + + Create Album + Creare Album + + + Album Name: + Nome album: + + + Category: + Categoria: + + + Animals + Animali + + + Family + Famiglia + + + Friends + Amici + + + Flowers + Fiori + + + Holiday + Vacanze + + + Landscapes + Panorami + + + Pets + Animali domestici + + + Portraits + Ritratti + + + Travel + Viaggi + + + Work + Lavoro + + + Random + Casuale + + + Caption: + Didascalia: + + + Where: + Dove: + + + Photographer: + Fotografo: + + + Description: + Descrizione: + + + Share Options + Opzioni condivisione + + + Policy: + Politica: + + + Quality: + QualitĆ : + + + Comments: + Commenti: + + + Identity: + IdentitĆ : + + + Public + Pubblico + + + Restricted + Limitato + + + Resize Images (< 1Mb) + Ridimensionare le immagini (< 1 Mb) + + + Resize Images (< 10Mb) + Ridimensionare le immagini (< 10 Mb) + + + Send Original Images + Invia le immagini originali + + + No Comments Allowed + Nessun commento permesso + + + Authenticated Comments + Commenti autenticati + + + Any Comments Allowed + Eventuali commenti ammessi + + + Publish with Identity + Pubblica con identitĆ  + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> Trascina &amp; Lascia per inserire immagini. Clicca sull'immagine per modificare i dettagli in basso.</span></p></body></html> + + + Back + Indietro + + + Add Photos + Aggiungi foto + + + Publish Album + Pubblicare Album + + + Untitle Album + Togli titolo Album + + + Say something about this album... + DƬ qualcosa su questo album... + + + Where were these taken? + Dove sono state prese queste? + + + Load Album Thumbnail + Miniatura dell'Album Load + + AlbumDialog @@ -165,11 +343,19 @@ Album Album + + Album Thumbnail + Miniatura dell'album + TextLabel EtichettaTesto + + Summary + Riassunto + Album Title: @@ -185,6 +371,34 @@ Caption Didascalia + + Where: + Dove: + + + When + Quando + + + Description: + Descrizione: + + + Share Options + Opzioni condivisione + + + Comments + Commenti + + + Publish Identity + Pubblicare l'identitĆ  + + + Visibility + VisibilitĆ  + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -553,7 +767,7 @@ 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. Avvertimento: I servizi qui presenti sono sperimentali. Per favore aiutaci a testarli. @@ -569,6 +783,14 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Circles Circoli + + GxsForums + GxsForums + + + GxsChannels + Canali Gxs + The Wire @@ -580,23 +802,10 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Fotografie - - AspectRatioPixmapLabel - - - Save image - Salva immagine - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Browse... + + Add Avatar + Aggiungi Avatar + Remove Rimuovi - + Set your Avatar picture Imposta immagine Avatar @@ -658,6 +871,10 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Carica Avatar + AvatarWidget @@ -726,10 +943,22 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Reimposta - + Receive Rate + VelocitĆ  di Ricezione + + + Send Rate + VelocitĆ  di Invio + + + Always on Top Sempre in Primopiano + + Style + Stile + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro % Opaque % OpacitĆ  + + Save + Salva + + + Cancel + Annulla + Since: Dal: + + Hide Settings + Nascondi Impostazioni + BandwidthStatsWidget @@ -822,7 +1063,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro BoardPostDisplayWidgetBase - + Comment Commento @@ -852,12 +1093,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>L’autore di questo messaggio (con ID %1) ĆØ bloccato.</b> - + ago @@ -865,7 +1106,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro BoardPostDisplayWidget_card - + Vote up Vota per @@ -885,7 +1126,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro \/ - + Posted by @@ -923,7 +1164,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro BoardPostDisplayWidget_compact - + Vote up Vota per @@ -943,7 +1184,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro \/ - + Click to view picture @@ -973,7 +1214,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Condividi - + Toggle Message Read Status Cambia lo stato dei messaggi letti @@ -983,7 +1224,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Nuovo - + TextLabel @@ -991,12 +1232,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro BoardsCommentsItem - + I like this Mi piace - + 0 0 @@ -1016,18 +1257,18 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro Avatar - + New Comment - + Copy RetroShare Link - + Expand Allarga @@ -1042,12 +1283,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro - + Name Nome - + Comm value @@ -1216,17 +1457,17 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro ChannelPage - + Channels Canali - + Tabs Tabs - + General Generale @@ -1236,17 +1477,11 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro - - Downloads - Scaricamenti + Load posts in background (Thread) + Carica i post in sottofondo (Argomento) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Apri ogni canale in una nuova tab @@ -1254,7 +1489,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARƀ PERSO* quando aggiorneremo il pro ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Mi piace @@ -1302,18 +1537,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link - + Expand Allarga @@ -1328,7 +1563,7 @@ into the image, so as to - + Name Nome @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + Commento + + + + Comments + + + + Hide Nascondi @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name Nome @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Mostra Chat di Gruppo @@ -1549,6 +1794,22 @@ into the image, so as to Chats Chat + + You have %1 new messages + Hai %1 nuovi messaggi + + + You have %1 new message + Hai %1 nuovo messaggio + + + %1 new messages + %1 nuovi messaggi + + + %1 new message + %1 nuovo messaggio + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby Gruppo di interesse sconosciuto - - + + Remove All Rimuovi tutto @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nome - + Count Count @@ -1601,7 +1861,33 @@ into the image, so as to Argomento - + + 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 @@ -1611,7 +1897,7 @@ into the image, so as to Lascia questa stanza - + Create a non anonymous identity and enter this room Crea un'identitĆ  non anonima ed entra in questa stanza @@ -1670,12 +1956,12 @@ 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: @@ -1685,31 +1971,31 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Scegli un'identitĆ  per questa stanza di conversazione: - + Create chat lobby + Crea chat di gruppo + + + [No topic provided] [Nessun argomento disponibile] - - + Selected lobby info + Informazioni sul gruppo di interesse selezionato + + + Private Privato - - - + Public Pubblico - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted ID anonime accettati @@ -1719,25 +2005,42 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Disabilita Abbonamento Automatico - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Abilita Abbonamento Automatico - + Search Chat lobbies Cerca i gruppi delle chat - + Search Name Cerca nome - + Subscribed + Sottoscritto + + + Columns Colonne + + Yes + SƬ + + + No + No + Chat rooms @@ -1749,47 +2052,47 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. - + Chat Room info - + Chat room Name: Nome chat room: - + Chat room Id: ID chat room: - + Topic: Argomento: - + Type: Tipo: - + Security: Sicurezza: - + Peers: Amici: - - - - - - + + + + + + TextLabel Etichetta Testo @@ -1804,24 +2107,13 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Nessuna ID anonima - + Show Mostra - - Private Subscribed - - - - - - Public Subscribed - - - - + column colonna @@ -1835,7 +2127,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. ChatMsgItem - + Remove Item Rimuovi Elemento @@ -1880,22 +2172,46 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.ChatPage - + General Generale + + Distant Chat + Conversazione a distanza + Everyone Tutti + + Contacts + Contatti + Nobody Nessuno - + Accept encrypted distant chat from + Accetta una conversazione criptata a distanza da + + + Chat Settings + Impostazioni Chat + + + Enable Emoticons Private Chat + Abilita Emoticons nella Conversazione Privata + + + Enable Emoticons Group Chat + Abilita Emoticons per la Chat di Gruppo + + + Enable custom fonts Attivare i caratteri personalizzati @@ -1904,6 +2220,10 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Enable custom font size Abilita dimensione del carattere personalizzata + + Minimum font size + Dimensioni minime del font + Enable bold @@ -1915,7 +2235,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Abilitare il corsivo - + General settings @@ -1940,7 +2260,11 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Carica immagini incorporate - + Chat Lobby + Grippo di discussione + + + Blink tab icon Lampeggiare l'icona sulla scheda @@ -1949,6 +2273,10 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Do not send typing notifications Non inviare le notifiche di digitazione + + Private Chat + Chat Privata + Open Window for new chat @@ -1970,7 +2298,11 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Lampeggiare l'icona finestra/scheda - + Chat Font + Chat Font + + + Change Chat Font Cambia Font per la Chat @@ -1980,10 +2312,14 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Font per la Chat - + History Storico + + Style + Stile + @@ -1998,13 +2334,17 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Variant: Variante + + Group chat + Chat di gruppo + Private chat Chat privata - + Choose your default font for Chat. @@ -2068,28 +2408,22 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.<html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/><body><p align="justify">In questa finestra puoi impostare quanti messaggi delle aree di conversazione RetroShare conserverĆ  salvati sul disco e quanto verrĆ  mostrato delle previe conversazioni, per i diversi sistemi di chat. Il periodo massimo di archiviazione consente di eliminare i messaggi vecchi e previene che lo storico delle conversazioni si riempa con chiacchiere volatili (p.es. aree di conversazione e conversazioni a distanza).</p></body></html> + + Chatlobbies + Gruppi di chat + Enabled: Abilitato: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2433,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Chat room @@ -2206,7 +2530,11 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Periodo massimo di archiviazione, in giorni (0 = mantieni tutti): - + Search by default + Ricerca predefinita + + + Case sensitive Maiusc./minusc. significativo @@ -2245,6 +2573,10 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Threshold for automatic search Soglia per la ricerca automatica + + Default identity for chat lobbies: + IdentitĆ  predefinita per le aree di conversazione: + Show Bar by default @@ -2312,7 +2644,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. ChatToaster - + Show Chat Mostra Chat @@ -2348,7 +2680,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. ChatWidget - + Close Chiudi @@ -2383,12 +2715,12 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Corsivo - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Inserisci emoticon @@ -2468,6 +2800,11 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare.Insert horizontal rule Inserisci riga orizzontale + + + Save image + Salva immagine + Import sticker @@ -2505,7 +2842,7 @@ Fai doppio clic su una stanza di conversazione per entrare e conversare. - + is typing... sta scrivendo... @@ -2529,7 +2866,7 @@ dopo la conversione in HTML. - + Do you really want to physically delete the history? Vuoi veramente cancellare lo storico dal disco? @@ -2579,7 +2916,7 @@ dopo la conversione in HTML. ĆØ occupato probabilmente non risponderĆ  - + Find Case Sensitively Ricerca rispettando maiuscole/minuscole @@ -2601,7 +2938,7 @@ dopo la conversione in HTML. Non smettere di colorare dopo X elementi trovati (richiede più potenza CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Trova precedente </b><br/><i>Ctrl+Shift+G</i> @@ -2616,12 +2953,16 @@ dopo la conversione in HTML. <b>Trova </b><br/><i>Ctrl+F</i> - + (Status) (Stato) - + Set text font & color + Imposta font e colore del testo + + + Attach a File Allega un file @@ -2637,12 +2978,12 @@ dopo la conversione in HTML. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Contrassegna questo testo selezionato</b><br><i>Ctr+M</i> - + Person id: @@ -2653,12 +2994,12 @@ Double click on it to add his name on text writer. - + Unsigned Non firmato - + items found. elementi trovati. @@ -2678,7 +3019,7 @@ Double click on it to add his name on text writer. Digitare un messaggio qui - + Don't stop to color after Non smettere di colorare dopo @@ -2704,7 +3045,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Visualizzando i dettagli: @@ -2726,7 +3067,7 @@ Double click on it to add his name on text writer. - + Personal Circles Circoli personali @@ -2752,7 +3093,7 @@ Double click on it to add his name on text writer. - + Friends Amici @@ -2812,7 +3153,7 @@ Double click on it to add his name on text writer. Amico di Amici - + External Circles (Admin) Cerchia Esterna (Admin) @@ -2828,7 +3169,7 @@ Double click on it to add his name on text writer. - + Circles Circoli @@ -2880,48 +3221,43 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. Errore: impossibile ottenere dettagli contatto - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2933,7 +3269,7 @@ Double click on it to add his name on text writer. Cifratura - + Not connected Non connesso @@ -3015,17 +3351,25 @@ Double click on it to add his name on text writer. nessuno - + <p>This certificate contains: <p>Questo certificato contiene: - + <li>a <b>node ID</b> and <b>name</b> <li>un <b>ID nodo</b> ed un <b>nome</b> - + an <b>onion address</b> and <b>port</b> + un <b>indirizzo onion</b> ed una <b>porta</b> + + + an <b>IP address</b> and <b>port</b> + un <b>indirizz IP</b> ed una <b>porta</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Puoi usare questo certificato per farti nuovi amici. Invialo per email, o consegnalo di persona.</p> @@ -3040,7 +3384,7 @@ Double click on it to add his name on text writer. <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> - + with con @@ -3057,16 +3401,108 @@ Double click on it to add his name on text writer. Connect Friend Wizard Wizard Connessione Amici + + Add a new Friend + Aggiungere un nuovo amico + + + &You get a certificate file from your friend + &Y-Ottieno un file di certificato dal tuo amico + + + &Make friend with selected friends of my friends + Fatti a&mico con amici degli amici selezionati + + + Include signatures + Includi firme + + + Copy your Cert to Clipboard + Copia nel PortaBlocco il Certificato + + + Save your Cert into a File + Salva il tuo certificato in un File + + + Run Email program + Lancia il programma di posta elettronica + Open Cert of your friend from File + + Please, paste your friend's Retroshare certificate into the box below + Per favore, incolla il certificato Retroshare del tuo amico nel riquadro sottostante + + + Certificate files + File di certificato + + + Use PGP certificates saved in files. + Utilizzo di certificati PGP salvato nel file. + + + Import friend's certificate... + Importare il certificato di un amico... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + ƈ necessario generare un file con il tuo certificato e darlo al tuo amico. Inoltre, ĆØ possibile utilizzare un file giĆ  generato. + + + Export my certificate... + Esportare il mio certificato... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Trascinare e rilasciare il certificato di tuoi amici in questa finestra o specificare il percorso nella casella sottostante + + + Browse + Scorri + + + Friends of friends + Amici di amici + + + Select now who you want to make friends with. + Selezionare ora con chi desideri fare amicizia. + + + Show me: + Fammi vedere: + + + Make friend with these peers + Farti amico con questi contatti + RetroShare ID ID RetroShare + + Use RetroShare ID for adding a Friend which is available in your network. + Utilizzare ID RetroShare per aggiuntgere un amico disponibile in rete. + + + Add Friends RetroShare ID... + Aggiungere l'ID RetroShare degli amici.... + + + Paste Friends RetroShare ID in the box below + Incollare ID degli amici RetroShare nella casella sottostante + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Immettere l'ID RetroShare del tuo amico, ad esempio Peer@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3108,7 +3544,27 @@ Double click on it to add his name on text writer. Email - + Invite Friends by Email + Invitare gli amici via Email + + + Enter your friends' email addresses (separate each one with a semicolon) + Inserire indirizzi email dei tuoi amici (separare ognuno con un punto e virgola) + + + Your friends' email addresses: + Indirizzi email dei tuoi amici: + + + Enter Friends Email addresses + Inserisci gli indirizzi Email di amici + + + Subject: + Oggetto: + + + @@ -3124,32 +3580,77 @@ Double click on it to add his name on text writer. Dettagli su richiesta - + Peer details Dettagli contatto - + Name: Nome: + + Email: + Posta elettronica: + + + Node: + Nodo : + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Tieni conto che se aggiungi troppi amici RetroShare richiederĆ  quantitĆ  eccessive di banda, memoria e CPU. Puoi aggiungere quanti amici vuoi, ma oltre i 40 probabilmente serviranno troppo risorse. + Location: LocalitĆ : - + Options Opzioni - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Questa procedura guidata aiuterĆ  a collegarti ai tuoi amici nella rete RetroShare.<br>Scegli come vorresti aggiungere un amico: + + + Enter the certificate manually + Inserisce il certificato manualmente + + + Enter RetroShare ID manually + Inserisce l’ID RetroShare manualmente + + + &Send an Invitation by Web Mail Providers + &Spedisci un Invinto tramite gestori di Web Mail + + + Recommend many friends to each other + Raccomanda molti amici a vicenda + + + 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> - + Add friend to group: Aggiungi i tuoi amici al gruppo: @@ -3159,7 +3660,7 @@ Double click on it to add his name on text writer. Autenticare amico (firma chiave PGP) - + Please paste below your friend's Retroshare ID @@ -3184,22 +3685,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Aggiungi come amico per connettersi con - + To accept the Friend Request, click the Finish button. + Per accettare la Richiesta di Amicizia, fai clic sul bottone Fine. + + + Sorry, some error appeared Siamo spiacenti, si ĆØ verificato qualche errore @@ -3219,27 +3714,32 @@ Double click on it to add his name on text writer. Dettagli sul tuo amico: - + Key validity: Chiave validitĆ : - + Profile ID: - + + Signers + Firmatari + + + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. Questo contatto ĆØ giĆ  sulla tua lista amici. Aggiungendolo potrebbe aver appena impostato l'indirizzo ip. - + To accept the Friend Request, click the Accept button. @@ -3285,17 +3785,49 @@ Double click on it to add his name on text writer. - + Certificate Load Failed Errore caricando il certificato - + Cannot get peer details of PGP key %1 + Non ĆØ possibile ottenere dettagli contatto della chiave PGP %1 + + + Any peer I've not signed + Qualsiasi contatto che non ho firmato + + + Friends of my friends who already trust me + Amici dei miei amici che giĆ  si fidano di me + + + Signed peers showing as denied + Contatti Firmati appaiono come non accettati + + + Peer name + Nome contatto + + + Also signed by + Firmato anche da + + + Peer id + Id contatto + + + Certificate appears to be valid + Il certificato sembra valido + + + Not a valid Retroshare certificate! Non ĆØ un certificato Retroshare valido! - + RetroShare Invitation Inviti RetroShare @@ -3315,12 +3847,12 @@ 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? - + @@ -3328,7 +3860,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3368,7 +3900,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Hai una richiesta di amicizia da - + Profile password needed. @@ -3393,7 +3925,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3403,7 +3935,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + Fallito caricamento certificato: file %1 introvabile + + + This Peer %1 is not available in your Network + Questo contatto %1 indisponibile sulla tua rete + + + Use new certificate format (safer, more robust) + Utilizza nuovo formato di certificato (più sicuro, più robusto) + + + Use old (backward compatible) certificate format + Usa precedente formato di certificato (compatibile) + + + Remove signatures + Rimuovi firme + + + RetroShare Invite + Invito RetroShare + + + Connect Friend Help + Aiuto connessione amico + + + You can copy this text and send it to your friend via email or some other way + Puoi copiare questo testo e inviarlo al tuo amico via email o qualche altra maniera + + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Il vostro Certificato ĆØ copiato nel PortaBlocco, incollalo e invialo ai tuoi amici via email o qualche altro modo + + + Save as... + Salva come... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3442,7 +4014,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** Nessuno *** - + Use as direct source, when available + Usa come fonte diretta, quando disponibile + + + IP-Addr: Ind. IP: @@ -3452,7 +4028,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Indirizzo IP - + Show Advanced options Mostra Opzioni avanzate @@ -3461,6 +4037,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> @@ -3471,13 +4051,45 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> + + Recommend many friends to each others + Raccomanda molti amici gli uni agli altri + + + Friend Recommendations + Consigli dell'amico + + + 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. + + + Message: + Messaggio: + + + Recommend friends + Raccomanda amici + + + To + 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. + Add key to keyring Aggiungi chiave al portachiavi. - + This key is already in your keyring Questa chiave ĆØ giĆ  presente nel portachiavi @@ -3493,7 +4105,7 @@ messaggi distanti a questo contatto anche se non hai amici. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Il certificato ha un numero di versione errato. Ricorda che la versione 0.5 e la 0.6 delle reti sono incompatibili. @@ -3528,7 +4140,7 @@ anche se non hai amici. Aggiungi IP alla whitelist - + No IP in this certificate! Nessun IP in questo certificato @@ -3538,10 +4150,27 @@ anche se non hai amici. <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> - + + [Unknown] + + + + Added with certificate from %1 Aggiunto con certificato da %1 + + Paste Cert of your friend from Clipboard + Incolla il Certificato del tuo amico dal PortaBlocco + + + Certificate Load Failed:can't read from file %1 + Fallito caricamento certificato: impossibile leggere dal file %1 + + + Certificate Load Failed:something is wrong with %1 + Fallito caricamento certificato: qualcosa non va con %1 + ConnectProgressDialog @@ -3603,7 +4232,7 @@ anche se non hai amici. - + UDP Setup Impostazione UDP @@ -3631,7 +4260,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant Assistente di connessione @@ -3641,20 +4270,17 @@ p, li { white-space: pre-wrap; } ID dell'amico non valido - - + Unknown State Stato sconosciuto - - + Offline Offline - - + Behind Symmetric NAT Dietro ad un NAT simmetrico @@ -3664,14 +4290,12 @@ p, li { white-space: pre-wrap; } Dietro un NAT & nessun DHT - - + NET Restart Riavvio rete - - + Behind NAT Dietro un NAT @@ -3681,8 +4305,7 @@ p, li { white-space: pre-wrap; } Nessun DHT - - + NET STATE GOOD! Stato della rete buono! @@ -3707,7 +4330,7 @@ p, li { white-space: pre-wrap; } Ricerca degli amici RS in corso - + Lookup requires DHT Il controllo richiede DHT @@ -3999,7 +4622,7 @@ p, li { white-space: pre-wrap; } Si prega di riprovare importando l'intero Certificato - + @@ -4007,8 +4630,7 @@ p, li { white-space: pre-wrap; } N/D - - + UNVERIFIABLE FORWARD! FORWARD NON VERIFICABILE! @@ -4018,7 +4640,7 @@ p, li { white-space: pre-wrap; } FORWARD NON VERIFICABILE E NESSUNA DHT! - + Searching Cercando @@ -4054,12 +4676,12 @@ p, li { white-space: pre-wrap; } Dettagli della cerchia - + Name Nome - + <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> @@ -4079,7 +4701,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4099,18 +4721,18 @@ p, li { white-space: pre-wrap; } Filtro - + Cancel Annulla - + Nickname Soprannome - + Invited Members Membri invitati @@ -4125,7 +4747,15 @@ p, li { white-space: pre-wrap; } Persone conosciute - + ID + ID + + + Type + Tipo + + + Name: Nome: @@ -4165,19 +4795,23 @@ p, li { white-space: pre-wrap; } - - + Only visible to members of: + Visibile soltanto ai membri di: + + + + RetroShare RetroShare - + Please set a name for your Circle Per favore imposta un nome per la tua cerchia - + No Restriction Circle Selected Nessuna cerchia ristretta selezionata @@ -4187,24 +4821,12 @@ p, li { white-space: pre-wrap; } Nessuna cerchia limitata selezionata - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Aggiungi @@ -4214,7 +4836,7 @@ p, li { white-space: pre-wrap; } Rimuovi - + Search Cerca @@ -4229,6 +4851,10 @@ p, li { white-space: pre-wrap; } Signed Firmato + + Signed by known nodes + Firmato da Nodi conosciuti + Edit Circle @@ -4245,6 +4871,10 @@ p, li { white-space: pre-wrap; } PGP Identity IdentitĆ  PGP + + Anon Id + Id Anonimo + Circle name @@ -4267,13 +4897,17 @@ p, li { white-space: pre-wrap; } Crea una nuova cerchia - + Create Crea - + PGP Linked Id + PGP Id Collegato + + + Add Member Aggiungere membro @@ -4292,7 +4926,7 @@ p, li { white-space: pre-wrap; } Crea un Gruppo - + Group Name: Nome gruppo: @@ -4327,7 +4961,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nuovo post nel canale @@ -4337,7 +4971,7 @@ p, li { white-space: pre-wrap; } Post del canale - + Post @@ -4398,11 +5032,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Usa i bottoni Trascina-Lascia / Aggiungi Files, per segmentare nuovi 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;"> Copia/Incolla collegamenti RetroShare dalle tue condivisioni</span></p></body></html> + + Add File to Attach + Aggiungi un file da allegare + Add Channel Thumbnail Aggiungi miniature del canale + + Message + Messaggio + + + Subject : + Oggetto: + @@ -4488,17 +5134,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4517,18 +5163,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + File giĆ  aggiunto e codificato + Please add a Subject Aggiungi un Oggetto - - Cannot publish post - - - - + Load thumbnail picture Carica una miniatura d'immagine @@ -4543,12 +5188,18 @@ p, li { white-space: pre-wrap; } Nascondi - + + Generate mass data Genera dati di massa - + + Do you really want to generate %1 messages ? + Vuoi davvero generare %1 messaggi ? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Stai per aggiungere dei file che non stai condividendo veramente. Vuoi comunque che questo succeda? @@ -4582,7 +5233,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Posta un Messaggio nel Forum @@ -4591,6 +5242,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Oggetto + Attach File @@ -4611,8 +5266,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4631,7 +5286,7 @@ p, li { white-space: pre-wrap; } Puoi allegare files con Trascina e Lascia qui in questa finestra - + Post @@ -4661,17 +5316,17 @@ p, li { white-space: pre-wrap; } - + No Forum Nessun forum - + In Reply to In Risposta a - + Title Titolo @@ -4724,7 +5379,7 @@ Do you want to discard this message? Carica un file immagine - + No compatible ID for this forum ID non compatibile con questo forum @@ -4734,8 +5389,8 @@ Do you want to discard this message? 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. - - + + Generate mass data Genera dati di massa @@ -4744,6 +5399,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? Vuoi davvero generare %1 messaggi ? + + Send + Invia + Post as @@ -4758,7 +5417,23 @@ Do you want to discard this message? CreateLobbyDialog - + Create Chat Lobby + Crea un gruppo di Chat + + + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. + Un gruppo di discussione (lobby) ĆØ un gruppo di conversazione anonimo e decentralizzato. Tutti i partecipanti ricevono tutti i messaggi. Una volta creata la lobby ĆØ possibile invitare altri amici dalla scheda amici. + + + Lobby name: + Nome del gruppo: + + + Lobby topic: + Argomento Gruppo di Conversazione: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4793,7 +5468,7 @@ Do you want to discard this message? - + Create Crea @@ -4803,7 +5478,11 @@ Do you want to discard this message? Annulla - + <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. + + + require PGP-signed identities richiede identitĆ  firmate-PGP @@ -4818,7 +5497,11 @@ Do you want to discard this message? Seleziona gli Amici con cui avere conversazione di gruppo. - + Invited friends + Amici invitati + + + Create Chat Room Crea una stanza di conversazione @@ -4839,7 +5522,7 @@ Do you want to discard this message? Contatti: - + Identity to use: IdentitĆ  da utilizzare: @@ -4847,17 +5530,17 @@ Do you want to discard this message? CryptoPage - + Public Information Informazioni pubbliche - + Name: Nome: - + Location: LocalitĆ : @@ -4867,12 +5550,12 @@ Do you want to discard this message? ID della localitĆ : - + Software Version: Versione del software: - + Online since: Online dal: @@ -4892,7 +5575,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4902,7 +5590,7 @@ Do you want to discard this message? - + Other Information Altre informazioni @@ -4912,12 +5600,17 @@ Do you want to discard this message? - + Profile Profilo - + + Certificate + Certicato + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4927,7 +5620,11 @@ Do you want to discard this message? Includi Firma - + Save Key into a file + Salvare la chiave in un file + + + Export Identity Esporta IdentitĆ  @@ -4999,33 +5696,33 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + TextLabel Etichetta Testo - + PGP fingerprint: Impronta PGP: - + + Node information + Informazioni nodo + + + PGP Id : Id PGP : - + Friend nodes: Nodi amici: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5064,6 +5761,14 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Node Nodo + + Create new node... + Crea nuovo nodo... + + + show statistics window + Mostra la finestra delle statistiche + DHTGraphSource @@ -5080,6 +5785,10 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare 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> + <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 trusted nodes 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 trusted nodes.</p> @@ -5115,7 +5824,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari DLListDelegate - + B B @@ -5783,7 +6492,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari DownloadToaster - + Start file File di avvio @@ -5791,38 +6500,38 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari ExprParamElement - + - + to a - + ignore case ignora maius./minus. - - - yyyy-MM-dd - + + + dd.MM.yyyy + gg.MM.aaaa - - + + KB KB - - + + MB MB - - + + GB GB @@ -5830,12 +6539,12 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari ExpressionWidget - + Expression Widget Widget di Espressione - + Delete this expression Cancella Espressione @@ -5997,7 +6706,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari FilesDefs - + Picture Immagine @@ -6007,7 +6716,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Video - + Audio File audio @@ -6067,21 +6776,11 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Cartelle amici @@ -6203,7 +6902,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + ID ID @@ -6238,6 +6937,10 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Show State Mostra Stato + + Trusted nodes + Nodi fidati + @@ -6245,7 +6948,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Mostra Grupppi - + Group Gruppo @@ -6281,7 +6984,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Aggiungi al gruppo - + Search Cerca @@ -6297,7 +7000,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Ordina per stato - + Profile details Dettagli profilo @@ -6541,7 +7244,7 @@ uno o più peer non sono stati aggiunti ad un gruppo FriendRequestToaster - + Confirm Friend Request Conferma richiesta di amicizia @@ -6558,6 +7261,10 @@ uno o più peer non sono stati aggiunti ad un gruppo FriendSelectionWidget + + Search : + Cerca: + Sort by state @@ -6579,7 +7286,7 @@ uno o più peer non sono stati aggiunti ad un gruppo Cerca Amici - + Mark all Contrassegna tutto @@ -6590,134 +7297,16 @@ uno o più peer non sono stati aggiunti ad un gruppo - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Nome - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Fatti amico - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - Il proxy non ĆØ abilitato, o ĆØ danneggiato. -I servizi sono tutti sù e ben funzionanti?? -Controlla anche le tue porte! - - FriendsDialog - + Edit status message Modificare il messaggio di stato - - + + Broadcast Trasmetti @@ -6800,38 +7389,33 @@ Controlla anche le tue porte! Reinizializza carattere predefinito - + Keyring Deposito delle Chiavi - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Rete</h1> <p>La scheda Rete mostra i tui nodi RetroShare amici: i nodi di RetroShare adiacenti che sono collegati a te. </p> <p>Puoi raggruppare assieme i nodi per consentire un accesso più granulare alle informazioni, p.es. consentire solo ad alcuni nodi di vedere certi tuoi file.</p> <p>A destra, troverai 3 schede utili: <ul><li>Diffusione, per inviare messaggi contemporaneamente a tutti i nodi connessi</li> <li>Grafico rete locale, mostra la rete intorno a te, basandosi sulle informazioni di rilevamento</li> <li>Portachiavi, contiene le chiavi di nodo che hai raccolto, per lo più trasmesse dai tuoi nodi amici</li></ul></p> + + + Retroshare broadcast chat: messages are sent to all connected friends. - - + + Network Rete - - Friend Server - - - - + Network graph Grafico della rete - - <h1><img width="%1" 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> - - - - + Set your status message here. Imposta il tuo messaggio di stato qui @@ -6849,17 +7433,7 @@ Controlla anche le tue porte! Parola chiave - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Ogni campio deve avere minimo 3 caratteri @@ -6869,12 +7443,17 @@ Controlla anche le tue porte! Le password non corrispondono - + Port Porta - + + Use BOB + + + + This password is for PGP Questa Password ĆØ per PGP @@ -6895,38 +7474,46 @@ Controlla anche le tue porte! Impossibile generare il nuovo certificato, forse la password PGP ĆØ errata! - + Options + 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> - + Node name Nome nodo - + Node type: @@ -6946,12 +7533,12 @@ Controlla anche le tue porte! - + <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 @@ -6961,43 +7548,42 @@ Controlla anche le tue porte! - + <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> - - Use I2P - - - - + <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 + Opzioni avanzate + + + hidden address indirizzo nascosto - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Il tuo profilo ĆØ associato ad una coppia di chiavi PGP. RetroShare attualmente ignora chiavi DSA. - + <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> @@ -7045,13 +7631,13 @@ il bottone IMPORT per caricarlo Profilo non salvato. Si ĆØ verificato un errore. - + Import profile Importa profilo - + Create new profile and new Retroshare node @@ -7061,7 +7647,7 @@ il bottone IMPORT per caricarlo Crea nuovo nodo Retroshare - + Tor/I2P address Indirizzo Tor/I2P @@ -7096,7 +7682,7 @@ il bottone IMPORT per caricarlo - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7106,7 +7692,12 @@ il bottone IMPORT per caricarlo - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7116,7 +7707,12 @@ il bottone IMPORT per caricarlo - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7342,13 +7938,36 @@ il bottone IMPORT per caricarlo Avvio - + Invite Friends Invita amici - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 ĆØ nulla senza i tuoi amici. Fai click sul bottone per cominciare il processo.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Manda un invito via mail col tuo &quot;ID Certificato&quot; ai tuoi amici </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Assicurati di ricevere anche il loro invito... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Puoi connetterti agli amici solo se vi siete aggiunti reciprocamente.</span></p></body></html> + + + Add Your Friends to RetroShare Aggiungi i tuoi amici a RetroShare @@ -7358,103 +7977,89 @@ il bottone IMPORT per caricarlo Aggiungi amici - - Connect To Friends - Connetti con amici - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Avanzate: Apri porta nel firewall - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + Connetti con amici + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Avanzate: Apri porta nel firewall + + + Further Help and Support Ulteriore aiuto e supporto - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Apri il sito di RS @@ -7479,7 +8084,7 @@ p, li { white-space: pre-wrap; } Opinioni via email - + RetroShare Invitation Inviti RetroShare @@ -7529,12 +8134,12 @@ p, li { white-space: pre-wrap; } Opinioni su RetroShare - + RetroShare Support Supporto RetroShare - + It has many features, including built-in chat, messaging, Ha molte funzionalitĆ , come conversazioni integrate, messaggerie, @@ -7658,7 +8263,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Mostra conversazioni di gruppo @@ -7666,7 +8271,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Sconosciuto] @@ -7832,11 +8437,15 @@ p, li { white-space: pre-wrap; } You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum. Puoi far sapere agli amici del tuo forum condividendolo con loro. Seleziona gli amici con cui vuoi condividere il forum. + + Share topic admin permissions + Condividi i permessi amministrativi dell’argomento + GroupTreeWidget - + Title Titolo @@ -7849,12 +8458,12 @@ p, li { white-space: pre-wrap; } - + Description Descrizione - + Number of Unread message @@ -7879,7 +8488,27 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + Ordinamento decrescente + + + Sort Ascending Order + Ordinamento crescente + + + Sort by Name + Ordina per nome + + + Sort by Popularity + Ordina per popolaritĆ  + + + Sort by Last Post + Ordina per post recente + + + You are admin (modify names and description using Edit menu) @@ -7894,14 +8523,14 @@ p, li { white-space: pre-wrap; } Id - - + + Last Post Ultimo post - + Name Nome @@ -7912,13 +8541,17 @@ p, li { white-space: pre-wrap; } PopolaritĆ  - + Never Mai - + Display + Mostra + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7931,7 +8564,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and e @@ -8067,7 +8700,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Canali @@ -8078,22 +8711,22 @@ p, li { white-space: pre-wrap; } Cra canale - + Enable Auto-Download Abilita scaricamento automatico - + My Channels Miei canali - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Canali sottoscritti @@ -8113,12 +8746,12 @@ p, li { white-space: pre-wrap; } Seleziona la cartella di download per il canale - + Disable Auto-Download Annulla scaricamento automatico - + Set download directory Imposta la cartella di download @@ -8153,22 +8786,22 @@ p, li { white-space: pre-wrap; } - + Play Esegui - + Open folder Apri cartella - + Open file - + Error Errore @@ -8188,17 +8821,17 @@ p, li { white-space: pre-wrap; } Verifica - + Are you sure that you want to cancel and delete the file? Sei sicuro di voler annullare ed eliminare questo file? - + Can't open folder Non ĆØ possibile aprire la cartella - + Play File Riprodurre File @@ -8208,10 +8841,37 @@ p, li { white-space: pre-wrap; } Il file %1 non esiste nella posizione. + + GxsChannelFilesWidget + + Form + Modulo + + + Filename + Nome file + + + Size + Dimensioni + + + Title + Titolo + + + Published + Pubblicato + + + Status + Status + + GxsChannelGroupDialog - + Create New Channel Crea un Nuovo Canale @@ -8249,19 +8909,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Abbonati al Canale @@ -8275,7 +8925,7 @@ p, li { white-space: pre-wrap; } - + Expand Allarga @@ -8290,7 +8940,7 @@ p, li { white-space: pre-wrap; } Descrizione Canale - + Loading Sto caricando... @@ -8305,9 +8955,8 @@ p, li { white-space: pre-wrap; } - - Never - Mai + New Channel + Nuovo canale @@ -8318,7 +8967,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Nuovo commento: @@ -8339,7 +8988,7 @@ p, li { white-space: pre-wrap; } - + Play Esegui @@ -8396,24 +9045,28 @@ p, li { white-space: pre-wrap; } Files Files + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Attenzione! Hai meno di %1 ore e %2 minuti prima che questo file venga eliminato. Considera di salvarlo. + Hide Nascondi - + New Nuovo - + 0 0 - - + + Comment Commento @@ -8428,17 +9081,21 @@ p, li { white-space: pre-wrap; } Non mi piace - + Loading + Sto caricando... + + + Loading... - + Comments - + Post @@ -8463,16 +9120,119 @@ p, li { white-space: pre-wrap; } Esegui Media + + GxsChannelPostsWidget + + Post to Channel + Posta sul Canale + + + Loading + Sto caricando... + + + Search channels + Cerca canali + + + Title + Titolo + + + Search Title + Ricerca Titolo + + + Message + Messaggio + + + Search Message + Cerca Messaggio + + + Filename + Nome file + + + Search Filename + Cerca Nome File + + + No Channel Selected + Nessun Canale Selezionato + + + Never + Mai + + + Public + Pubblico + + + Disable Auto-Download + Disabilita Download Automatico + + + Enable Auto-Download + Abilita Download Automatico + + + Show feeds + Mostra notizie + + + Show files + Mostra files + + + Administrator: + Amministratore: + + + Last Post: + Ultimo post: + + + unknown + sconosciuto + + + Distribution: + Distribuzione: + + + Feeds + Dispaccio + + + Files + Files + + + Subscribers + Iscritti + + + Description: + Descrizione: + + + Posts (at neighbor nodes): + Posts (a nodi adiacenti): + + GxsChannelPostsWidgetWithModel - + Post to Channel Posta sul Canale - + Add new post @@ -8542,7 +9302,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8578,7 +9338,7 @@ p, li { white-space: pre-wrap; } - + Comments Commenti @@ -8593,13 +9353,13 @@ p, li { white-space: pre-wrap; } Dispaccio - - + + Click to switch to list view - + Show unread posts only @@ -8614,7 +9374,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8629,7 +9389,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8689,22 +9449,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8751,7 +9501,7 @@ p, li { white-space: pre-wrap; } Unknown - Scononsciuto + @@ -8779,13 +9529,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Sottoscritto @@ -8817,12 +9566,12 @@ p, li { white-space: pre-wrap; } Disable Auto-Download - Annulla scaricamento automatico + Enable Auto-Download - Abilita scaricamento automatico + @@ -8836,17 +9585,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8961,7 +9710,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Commenta Contenitore @@ -8974,7 +9723,7 @@ p, li { white-space: pre-wrap; } Modulo - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9004,7 +9753,7 @@ p, li { white-space: pre-wrap; } Aggiornamento - + Comment Commento @@ -9043,7 +9792,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Risposta al commento @@ -9067,21 +9816,6 @@ p, li { white-space: pre-wrap; } Vote Down Vota contro - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9091,7 +9825,7 @@ p, li { white-space: pre-wrap; } Commento di rendere - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9120,10 +9854,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">Comment</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//IT" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">Commento</span></p></body></html> + + + Signed by + FIrmato da + Reply to Comment @@ -9152,7 +9902,7 @@ before you can comment prima che tu possa commentare - + It remains %1 characters after HTML conversion. @@ -9194,6 +9944,14 @@ prima che tu possa commentare Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Aggiungi Amministratori al Forum + + + Select Forum Admins + Seleziona Amministratori del Forum + Create @@ -9203,7 +9961,7 @@ prima che tu possa commentare GxsForumGroupItem - + Subscribe to Forum Abbonati al Forum @@ -9219,7 +9977,7 @@ prima che tu possa commentare - + Expand Allarga @@ -9239,9 +9997,8 @@ prima che tu possa commentare - - TextLabel - + Loading + Sto caricando... @@ -9272,13 +10029,13 @@ prima che tu possa commentare GxsForumMsgItem - - + + Subject: Oggetto: - + Unsubscribe To Forum Abbandona Forum @@ -9289,7 +10046,7 @@ prima che tu possa commentare - + Expand Allarga @@ -9309,17 +10066,21 @@ prima che tu possa commentare In Risposta a: - + Loading + Sto caricando... + + + Loading... - + Forum Feed Forum Notizie - + Hide Nascondi @@ -9332,66 +10093,63 @@ prima che tu possa commentare Modulo - + Start new Thread for Selected Forum Avvia un nuovo argomento nel forum selezionato - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Ricerca forums - + Last Post + Ultimo post + + + New Thread Nuovo Thread + + + Threaded View + Vista per argomento + + + + Flat View + Vista semplice + - + Title Titolo - - + + Date Data - + Author Autore - + + Save image + Salva immagine + + + Loading Sto caricando - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9401,7 +10159,12 @@ prima che tu possa commentare - + + Lastest post in thread + + + + Reply Message Messaggio di risposta @@ -9425,6 +10188,10 @@ prima che tu possa commentare Download all files Scarica tutti i files + + Next unread + Successivo non letto + Search Title @@ -9441,23 +10208,31 @@ prima che tu possa commentare Cerca autore - + Content + Contenuto + + + Search Content + Ricerca di contenuti + + + No name Nessun nome - - + + Reply Rispondi - + <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> - + Loading... @@ -9500,12 +10275,20 @@ prima che tu possa commentare Copia collegamento RetroShare - + Hide Nascondi - + Expand + Allarga + + + [Banned] + [Bloccato] + + + [unknown] [sconosciuto] @@ -9535,8 +10318,8 @@ prima che tu possa commentare - - + + Distribution Distribuzione @@ -9550,6 +10333,26 @@ prima che tu possa commentare Anti-spam Anti-spam + + [ ... Redacted message ... ] + [ ... Messaggio Redatto ... ] + + + Anonymous + Anonimo + + + signed + firmato + + + none + nessuno + + + [ ... Missing Message ... ] + [ ... Messaggio Perso ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9619,12 +10422,12 @@ prima che tu possa commentare Messaggio Originale - + New thread - + Edit Modifica @@ -9685,7 +10488,7 @@ prima che tu possa commentare Reputazione autore - + Show column @@ -9705,7 +10508,7 @@ prima che tu possa commentare - + Anonymous/unknown posts forwarded if reputation is positive @@ -9757,7 +10560,7 @@ This message is missing. You should receive it later. - + No result. @@ -9767,7 +10570,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9782,7 +10585,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9848,12 +10651,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Forums @@ -9884,16 +10687,35 @@ This message is missing. You should receive it later. Altri froum + + GxsForumsFillThread + + Waiting + in attesa + + + Retrieving + Recupero + + + Loading + Caricamento + + GxsGroupDialog - + Name Nome - + Add Icon + Aggiungi icona + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels I destinatari della chiave possono pubblicare nei canali di tipo limitato, e vedere e pubblicare in questi canali. @@ -9902,14 +10724,22 @@ This message is missing. You should receive it later. Share Publish Key Condividi chiave pubblicazione + + check peers you would like to share private publish key with + verifica i contatti con cui vuoi condividere la chiave privata di pubblicazione + + + Share Key With + Condividi chiave con + - + Description Descrizione - + Message Distribution Distribuzione messaggio @@ -9917,7 +10747,7 @@ This message is missing. You should receive it later. - + Public Pubblico @@ -9936,6 +10766,14 @@ This message is missing. You should receive it later. New Thread Nuovo Thread + + Required + Obbligatorio + + + Encrypted Msgs + Messaggi cifrati + Personal Signatures @@ -9977,7 +10815,7 @@ This message is missing. You should receive it later. - + Comments: Commenti: @@ -10000,7 +10838,7 @@ This message is missing. You should receive it later. Anti-spam: - + All People @@ -10016,12 +10854,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10038,23 +10876,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required Richiesta firma PGP - + Never Mai - + Only friends nodes in group @@ -10070,28 +10908,30 @@ This message is missing. You should receive it later. Aggiungi un Nome - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo caricamento Logo Gruppo - + Submit Group Changes Applica Modifiche al Gruppo - + Failed to Prepare Group MetaData - please Review + Non ĆØ stato possibile preparare i MetaDati del Gruppo — procedi con la Revisione + + + Will be used to send feedback + VerrĆ  utilizzato per inviare feedback + + + Owner: Proprietario: @@ -10101,12 +10941,12 @@ This message is missing. You should receive it later. Inserisci qui una descrizione - + Info Info - + ID ID @@ -10116,7 +10956,7 @@ This message is missing. You should receive it later. Ultimo 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> @@ -10191,12 +11031,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity PopolaritĆ  @@ -10212,22 +11047,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Annulla - + Create Crea - + + Author + Autore + + + GxsIdLabel GxsIdLabel @@ -10235,7 +11075,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Sto caricando... @@ -10295,7 +11135,7 @@ This message is missing. You should receive it later. Modifica Dettagli - + Synchronise posts of last... @@ -10352,12 +11192,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link Copia Collegamento RetroShare @@ -10380,7 +11220,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Nessuna firma @@ -10393,24 +11233,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Sto caricando... + + + Not found Non trovato + + No Signature + Nessuna firma + - - + + [Banned] [Bloccato] + + Authentication + Autenticazione + unknown Key Chiave sconosciuta - + anonymous + Anonimo + + + Loading... @@ -10420,12 +11276,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Nome&nbsp;dell’identitĆ  @@ -10439,20 +11290,16 @@ This message is missing. You should receive it later. Node Nodo + + Signed&nbsp;by + Firmato&nbsp;da + [Unknown] [Scononsciuto] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10464,7 +11311,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10512,13 +11359,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + Sto caricando... + Loading... @@ -10650,6 +11501,10 @@ This message is missing. You should receive it later. Popularity PopolaritĆ  + + Details + Dettagli + @@ -10659,7 +11514,7 @@ This message is missing. You should receive it later. Unknown Peer - Contatto sconosciuto + @@ -10669,7 +11524,7 @@ This message is missing. You should receive it later. Unknown - Scononsciuto + @@ -10682,6 +11537,29 @@ This message is missing. You should receive it later. No + + GxsTunnelsDialog + + Tunnel ID: %1 + ID tunnel: %1 + + + from: %1 + da: %1 + + + to: %1 + a: %1 + + + status: %1 + stato: %1 + + + Unknown Peer + Nodo sconosciuto + + HashBox @@ -10899,7 +11777,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10915,7 +11793,7 @@ p, li { white-space: pre-wrap; } - + Authors Autori @@ -10934,7 +11812,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -11012,7 +11890,7 @@ p, li { white-space: pre-wrap; } Modulo - + Add friend @@ -11022,7 +11900,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11050,7 +11928,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11060,7 +11938,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard Copia nel PortaBlocco il Certificato @@ -11070,7 +11948,7 @@ private and secure decentralized communication platform. Salva il tuo certificato in un File - + Send via Email Invia via email @@ -11090,37 +11968,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11132,12 +11986,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11152,7 +12006,12 @@ new short format Invito RetroShare - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Salva come... @@ -11417,14 +12276,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Tutto - + Reputation Reputazione @@ -11434,12 +12293,12 @@ p, li { white-space: pre-wrap; } Cerca - + Anonymous Id Id Anonimo - + Create new Identity Crea nuova identitĆ  @@ -11449,7 +12308,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11464,27 +12323,27 @@ p, li { white-space: pre-wrap; } - + Close Chiudi - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes Voti positivi @@ -11500,39 +12359,29 @@ p, li { white-space: pre-wrap; } Voti negativi - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles Circoli - + Circle name Nome della cerchia @@ -11552,20 +12401,18 @@ p, li { white-space: pre-wrap; } Circoli personali - + - Edit identity Modifica IdentitĆ  - - + Delete identity Cancella identitĆ  - + Chat with this peer Conversa con questo contatto @@ -11575,78 +12422,78 @@ p, li { white-space: pre-wrap; } Avvia una conversazione a distanza con questo contatto - + Owner node ID : ID nodo proprietario : - + Identity name : Nome dell’identitĆ  : - + () () - + Identity ID ID dell'identitĆ  - + Send message Invia Messaggio - + Identity info Info sull'identitĆ  - + Identity ID : ID dell’identitĆ  : - + Owner node name : Nome nodo proprietario : - + Create new... - + Type: Tipo: - + Send Invite Manda invito - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> <html><head/><body><p>Opinione media dei nodi adiacenti riguardo questa identitĆ . Negativa ĆØ male,</p><p>positiva ĆØ buono. Zero ĆØ neutrale.</p></body></html> - + Your opinion: La tua opinione: - + Negative Negativo - + Neutral Neutrale @@ -11657,17 +12504,17 @@ p, li { white-space: pre-wrap; } Positivo - + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> <html><head/><body><p>Punteggio complessivo della reputazione, tenendo conto del tuo voto e quello dei tuoi amici.</p><p>Negativo ĆØ male, positivo ĆØ bene. Zero ĆØ neutrale. Se il punteggio ĆØ troppo basso, l’identitĆ  viene marchiata come pessima, e sarĆ  filtrata via nei forum, nelle aree di conversazione, nei canali, ecc.</p></body></html> - + Overall: Complessivo: - + Anonymous Anonimo @@ -11682,24 +12529,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you Questa identitĆ  ti appartiene - - + + My own identities Le mie identitĆ  - - + + My contacts Contatti - + Show Items @@ -11714,12 +12561,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11729,7 +12571,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11804,7 +12646,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: ID dell'identitĆ : @@ -11834,7 +12676,7 @@ p, li { white-space: pre-wrap; } sconosciuto - + Invited @@ -11849,7 +12691,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle Modifica Circolo @@ -11897,7 +12739,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. @@ -11905,7 +12747,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11948,7 +12790,7 @@ These identities will soon be not supported anymore. IdentitĆ  anonima - + Boards @@ -12028,7 +12870,7 @@ These identities will soon be not supported anymore. - + information @@ -12044,12 +12886,17 @@ These identities will soon be not supported anymore. - + Banned Bloccato - + + <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> + + + + positive positivo @@ -12098,6 +12945,10 @@ These identities will soon be not supported anymore. Chat Chat + + Unknown + Sconosciuto + [Unknown] @@ -12154,7 +13005,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12204,21 +13055,21 @@ These identities will soon be not supported anymore. Ciao,<br>vorrei essere tuo amico sul network RetroShare.<br> - - - + + + People Persone - + Your Avatar Click here to change your avatar Il Tuo Avatar - + Linked to neighbor nodes Collegato a nodi adiacenti @@ -12228,7 +13079,7 @@ These identities will soon be not supported anymore. Collegato a nodi distanti - + Linked to a friend Retroshare node Collegato a un nodo RetroShare tuo amico @@ -12243,7 +13094,7 @@ These identities will soon be not supported anymore. Collegato a un nodo RetroShare sconosciuto - + Chat with this person Conversa con questa persona @@ -12258,12 +13109,12 @@ These identities will soon be not supported anymore. Conversazione a distanza con questa persona: rifiutata. - + Last used: Ultimo utilizzo: - + +50 Known PGP +50 PGP Conosciuta @@ -12283,12 +13134,12 @@ These identities will soon be not supported anymore. Vuoi davvero eliminare questa identitĆ ? - + Owned by Appartenente a - + Node name: Nome nodo: @@ -12298,7 +13149,7 @@ These identities will soon be not supported anymore. ID Nodo : - + Really delete? Cancellare davvero? @@ -12306,7 +13157,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname Soprannome @@ -12336,7 +13187,7 @@ These identities will soon be not supported anymore. Pseudonimo - + Import image @@ -12346,19 +13197,12 @@ These identities will soon be not supported anymore. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Nuova identitĆ  @@ -12372,7 +13216,7 @@ These identities will soon be not supported anymore. - + @@ -12382,12 +13226,7 @@ These identities will soon be not supported anymore. N/D - - No avatar chosen - - - - + Edit identity Modifica IdentitĆ  @@ -12398,27 +13237,27 @@ These identities will soon be not supported anymore. Aggiorna - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12438,7 +13277,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12448,7 +13287,11 @@ These identities will soon be not supported anymore. - + Error getting key! + Errore ricevendo la chiave! + + + Error KeyID invalid Errore KeyId non valido @@ -12463,7 +13306,7 @@ These identities will soon be not supported anymore. Nome reale sconosciuto - + Create New Identity Crea Nuova IdentitĆ  @@ -12473,15 +13316,10 @@ These identities will soon be not supported anymore. Tipo - + Choose image... - - - Remove - Rimuovi - @@ -12507,7 +13345,7 @@ These identities will soon be not supported anymore. Aggiungi - + Create Crea @@ -12517,13 +13355,17 @@ These identities will soon be not supported anymore. Annulla - + Your Avatar Click here to change your avatar Il Tuo Avatar - + Set Avatar + Imposta Avatar + + + Linked to your profile Collegato al tuo profilo @@ -12533,7 +13375,7 @@ These identities will soon be not supported anymore. Puoi avere una o più identitĆ . Vengono impiegate quando scrivi nelle aree di discussione, sui forum e per i commenti nei canali. Fungono da destinazione per le conversazioni a distanza e per il sistema postale a distanza di RetroShare. - + The nickname is too short. Please input at least %1 characters. Nickname troppo corto. Inserisci almeno %1 caratteri. @@ -12592,6 +13434,10 @@ These identities will soon be not supported anymore. PGP name: Nome PGP: + + GXS id: + id GXS: + PGP id: @@ -12607,7 +13453,7 @@ These identities will soon be not supported anymore. - + Copy Copia @@ -12617,12 +13463,12 @@ These identities will soon be not supported anymore. Rimuovi - + %1 's Message History - + Mark all Contrassegna tutto @@ -12641,38 +13487,26 @@ These identities will soon be not supported anymore. Quote Cita + + Send + Invia + ImageUtil - - + + Save image Salva immagine - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12690,32 +13524,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: Porta: - + Listen Address: - - Status: - Stato: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12736,12 +13565,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12750,31 +13574,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Aprire file - + Open Folder Apri cartella - + Checking... Verifica... @@ -12784,7 +13603,7 @@ These identities will soon be not supported anymore. Verifica file - + Recommend in a message to... @@ -12812,7 +13631,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Aggiungi amico @@ -12828,8 +13647,7 @@ These identities will soon be not supported anymore. - - + Options Opzioni @@ -12850,7 +13668,7 @@ These identities will soon be not supported anymore. - + Quit Esci @@ -12861,12 +13679,12 @@ These identities will soon be not supported anymore. Auto configuratore rapido - + RetroShare %1 a secure decentralized communication platform RetroShare %1 una piattaforma di comunicazione sicura decentralizzata - + Unfinished Non finito @@ -12893,12 +13711,11 @@ Libera un po' di spazio e clicca OK. - Status Stato - + Notify Notifica @@ -12909,35 +13726,31 @@ Libera un po' di spazio e clicca OK. - Open Messages Apri messaggi - - + Bandwidth Graph Grafico banda passante - + Applications Applicazioni - Help Aiuto - - + Minimize Riduci - + Maximize Ingrandisci @@ -12952,12 +13765,7 @@ Libera un po' di spazio e clicca OK. RetroShare - - Close window - - - - + %1 new message %1 nuovo messaggio @@ -12987,7 +13795,7 @@ Libera un po' di spazio e clicca OK. amici connessi %1 - + Do you really want to exit RetroShare ? Vuoi davvero uscire da RetroShare? @@ -13007,7 +13815,7 @@ Libera un po' di spazio e clicca OK. Mostra - + Make sure this link has not been forged to drag you to a malicious website. Accertati che questo link non sia stato creato per condurti a siti malevoli. @@ -13052,13 +13860,12 @@ Libera un po' di spazio e clicca OK. Matrice dei permessi sui servizi - - + Statistics Statistiche - + Show web interface Mostra interfaccia web @@ -13073,7 +13880,7 @@ Libera un po' di spazio e clicca OK. - + Really quit ? Uscire davvero? @@ -13082,17 +13889,17 @@ Libera un po' di spazio e clicca OK. MessageComposer - + Compose Componi - + Contacts Contatti - + Paragraph Paragrafo @@ -13128,12 +13935,12 @@ Libera un po' di spazio e clicca OK. Titolo 6 - + Font size Dimensione carattere - + Increase font size Ingrandisci carattere @@ -13148,32 +13955,32 @@ Libera un po' di spazio e clicca OK. Grassetto - + Italic Corsivo - + Alignment Allinemento - + Add an Image Aggiungere un'immagine - + Sets text font to code style Predefinisci il carattere di testo con stile di codice - + Underline Sottolinea - + Subject: Oggetto: @@ -13184,32 +13991,32 @@ Libera un po' di spazio e clicca OK. - + Tags Etichette - + Address list: - + Recommend this friend - + Set Text color Imposta colore del testo - + Set Text background color Imposta colore di sfondo del testo - + Recommended Files Files raccomandati @@ -13279,7 +14086,7 @@ Libera un po' di spazio e clicca OK. Aggiungi citazione - + Send To: Invia a: @@ -13314,7 +14121,7 @@ Libera un po' di spazio e clicca OK. Contatti - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Ciao, <br>ti raccomando un mio buon amico; ci si può fidare di lui quanto di me. <br> @@ -13334,19 +14141,19 @@ Libera un po' di spazio e clicca OK. vuole essere amico con te su 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 Hi %1,<br><br>%2 vuole esserti amico su RetroShare.<br><br>Rispondi ora:<br>%3<br><br>Grazie,<br>Il Team RetroShare - - + + Save Message Salva messaggio - + Message has not been Sent. Do you want to save message to draft box? Messaggio non inviato @@ -13358,17 +14165,7 @@ Vuoi salvarlo nelle bozze? Incolla collegamento RetroShare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Aggiungi in "A:" @@ -13388,7 +14185,7 @@ Vuoi salvarlo nelle bozze? Aggiungi come raccomandato - + Original Message Messaggio Originale @@ -13398,21 +14195,21 @@ Vuoi salvarlo nelle bozze? Da - + - + To A - - + + Cc CC - + Sent Inviato @@ -13427,7 +14224,7 @@ Vuoi salvarlo nelle bozze? Su %1, %2 scrive: - + Re: Re: @@ -13437,30 +14234,30 @@ Vuoi salvarlo nelle bozze? Inoltra: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Invio messaggio senza oggetto? - + Please insert at least one recipient. Inserisci almeno un destinatario. - + Bcc BCC - + Unknown Scononsciuto @@ -13575,13 +14372,13 @@ Vuoi salvarlo nelle bozze? Dettagli - + Open File... Apri file ... - + HTML-Files (*.htm *.html);;All Files (*) HTML-Files (*.htm *.html);;Tutti Files (*) @@ -13601,7 +14398,7 @@ Vuoi salvarlo nelle bozze? Esporta PDF - + Message has not been Sent. Do you want to save message ? Messaggio non inviato. @@ -13623,7 +14420,7 @@ Vuoi salvarlo? Aggiungi File Extra - + Hi,<br>I want to be friends with you on RetroShare.<br> Ciao,<br>vorrei essere tuo amico sul network RetroShare.<br> @@ -13647,24 +14444,28 @@ Vuoi salvarlo? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Hai una richiesta di amicizia + Respond now: Rispondi subito: - - + + Close Chiudi - + From: Da: - + Friend Nodes Nodi Amici @@ -13709,13 +14510,13 @@ Vuoi salvarlo? Elenco ordinato (romani maiuscolo) - - + + Thanks, <br> Grazie, <br> - + Distant identity: IdentitĆ  distante: @@ -13725,12 +14526,12 @@ Vuoi salvarlo? [Mancante] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Devi crearti un’identitĆ  per firmare i messaggi a distanza, altrimenti rimuovi i contatti a distanza dalla lista di destinazione. - + Node name & id: Nome & ID nodo: @@ -13808,7 +14609,7 @@ Vuoi salvarlo? Predefinito - + A new tab Una nuova cartella @@ -13818,7 +14619,7 @@ Vuoi salvarlo? Una nuova finestra - + Edit Tag Modifica etichetta @@ -13841,7 +14642,7 @@ Vuoi salvarlo? MessageToaster - + Sub: Sotto: @@ -13849,7 +14650,7 @@ Vuoi salvarlo? MessageUserNotify - + Message Messaggio @@ -13877,7 +14678,7 @@ Vuoi salvarlo? MessageWidget - + Recommended Files Files raccomandati @@ -13887,37 +14688,37 @@ Vuoi salvarlo? Scarica tutti i files raccomandati - + Subject: Oggetto: - + From: Da: - + To: A: - + Cc: Copia a: - + Bcc: Bcc: - + Tags: Etichette: - + Reply Rispondi @@ -13957,7 +14758,7 @@ Vuoi salvarlo? - + Send Invite Manda invito @@ -14009,7 +14810,7 @@ Vuoi salvarlo? - + Confirm %1 as friend Conferma %1 come amico @@ -14019,12 +14820,12 @@ Vuoi salvarlo? Aggiungi %1 come amico - + View source - + No subject Nessun oggetto @@ -14034,22 +14835,17 @@ Vuoi salvarlo? Scarica - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14058,24 +14854,14 @@ Vuoi salvarlo? %1 (%2) - - - Show less - - - - - Show more - - - + Download all Scarica tutto - + Print Document Stampa Documento @@ -14090,12 +14876,12 @@ Vuoi salvarlo? HTML-Files (*.htm *.html);;Tutti Files (*) - + Load images always for this message Carica sempre le immagini per questo messaggio - + Hide the attachment pane Nascondi pannello allegati @@ -14117,6 +14903,42 @@ Vuoi salvarlo? Compose Compose + + Reply to selected message + Rispondi al messaggio selezionato + + + Reply + Rispondi + + + Reply all to selected message + Rispondi a tutti i messaggi + + + Reply all + Rispondi a tutti + + + Forward selected message + Inoltra messaggio selezionato + + + Forward + Avanti + + + Remove selected message + Rimuovi messaggio selezionato + + + Delete + Cancella + + + Print selected message + Stampa messaggio selzionato + Print @@ -14195,7 +15017,7 @@ Vuoi salvarlo? MessagesDialog - + New Message Nuovo messaggio @@ -14205,16 +15027,60 @@ Vuoi salvarlo? Componi - + Reply to selected message + Rispondi al messaggio selezionato + + + Reply + Rispondi + + + Reply all to selected message + Rispondi a tutti i messaggi + + + Reply all + Rispondi a tutti + + + Forward selected message + Inoltra messaggio selezionato + + + Foward + Inoltra: + + + Remove selected message + Rimuovi messaggio selezionato + + + Delete + Cancella + + + Print selected message + Stampa messaggio selzionato + + + Print + Stampa + + + Display + Mostra + + + - - + + Tags Etichette - - + + Inbox Casella di posta: @@ -14244,17 +15110,21 @@ Vuoi salvarlo? Cestino - + Total Inbox: Totale ricezione: - + Folders + Cartelle + + + Quick View Panoramica - + Print... Stampa... @@ -14264,6 +15134,26 @@ Vuoi salvarlo? Print Preview Anteprima stampa + + Buttons Icon Only + Solo icone bottoni + + + Buttons Text Beside Icon + Testo bottoni accanto alle icone + + + Buttons with Text + Bottoni con testo + + + Buttons Text Under Icon + Testo bottoni sotto le icone + + + Set Text Under Icon + Predisponi testo sotto icone + Save As... @@ -14285,7 +15175,7 @@ Vuoi salvarlo? Inoltra messaggio - + Subject Oggetto @@ -14295,7 +15185,7 @@ Vuoi salvarlo? Da - + Date Data @@ -14305,7 +15195,39 @@ Vuoi salvarlo? Contenuti - + Click to sort by attachments + Clicca per ordinare per allegato + + + Click to sort by subject + Clicca per ordinare per oggetto + + + Click to sort by read + Clicca per ordinare per lettura + + + Click to sort by from + Clicca per ordinare per mittente + + + Click to sort by date + Clicca per ordinare per data + + + Click to sort by tags + Clicca per ordinare per etichetta + + + Click to sort by star + Clicca per ordinare per evidenziatura + + + Forward selected Message + Inoltra messaggio selezionato + + + Search Subject Oggetto ricerca @@ -14315,11 +15237,6 @@ ricerca Search From Ricerca da - - - Search To - - Search Date @@ -14346,14 +15263,14 @@ ricerca Ricerca allegati - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messaggi</h1> <p>RetroShare ha un suo sistema postale email interno. Puoi inviare/ricevere email a/da nodi amici a cui sei connesso.</p> <p>ƈ altresƬ possibile inviare messaggi alle IdentitĆ  altrui utilizzando il sistema di instradazione globale. Questi messaggi sono sempre crittografati e firmati, e vengono reinstradati da nodi intermedi finchĆ© non raggiungono la destinazione finale.</p> <p>I messaggi a distanza rimangono nella tua Casella in Uscita fin quando non ricevono una ricevuta di confermata consegna.</p> <p>Generalmente, puoi utilizzare i messaggi per raccomandare file ai tuoi amici, incollandovi i link ai file, o per raccomandare nodi amici ad altri nodi amici, al fine di irrobustire la tua rete, o per inviare un feedback al titolare di un canale.</p> - + Starred - + Evidenziato @@ -14427,7 +15344,7 @@ ricerca - Show in People + Show author in People @@ -14441,7 +15358,7 @@ ricerca - + No message using %1 tag available. @@ -14456,33 +15373,34 @@ ricerca - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Bozze - + No Box selected. - - To - A + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Messaggi speciali non disponibili. I contrassegni (star) consentono di dare ai messaggi uno status speciale per renderli più facili da trovare. Per contrassegnare un messaggio, fare clic sulla stella grigia accanto a un qualsiasi messaggio. - + No system messages available. + Nessun messaggio sistema. + + + To + A + + + Click to sort by to + Clicca per ordinare per + + + @@ -14490,6 +15408,26 @@ ricerca Total: Totale: + + Messages + Messaggi + + + Click to sort by signature + Clicca per ordinare per firma + + + This message was signed and the signature checks + Questo messaggio ĆØ stato firmato, e la firma corrisponde + + + This message was signed but the signature doesn't check + Questo messaggio ĆØ stato firmato, ma la firma non corrisponde + + + This message comes from a distant person. + Questo messaggio proviene da una persona distante + Mail @@ -14517,17 +15455,7 @@ ricerca MimeTextEdit - - Save image - Salva immagine - - - - Copy image - - - - + Paste as plain text Incolla come testo non formattato @@ -14581,7 +15509,7 @@ ricerca - + Expand Allarga @@ -14591,7 +15519,7 @@ ricerca Rimuovi elemento - + from Da @@ -14626,7 +15554,7 @@ ricerca Messaggio in attesa - + Hide Nascondi @@ -14767,7 +15695,7 @@ ricerca ID contatto - + Remove unused keys... Rimuovi chiavi non usate... @@ -14777,7 +15705,7 @@ ricerca - + Clean keyring Pulisci il portachiavi @@ -14795,13 +15723,7 @@ Nota: Il tuo vecchio portachiavi sarĆ  salvato. La rimozione potrebbe fallire quando istanze multiple di Retroshare sono in esecuzione sulla stessa macchina. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Informazioni sul Portachiavi @@ -14837,13 +15759,18 @@ Per sicurezza, il tuo portachiavi ĆØ stato precedentemente salvato su di un file Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inconsistenza nei dati nel portachiavi. Questo ĆØ molto probabilmente un bug. Per favore contatta gli sviluppatori. + + + Export/create a new node + Esporta/crea un nuovo nodo + Trusted keys only Solo chiavi fidate - + Search name Cerca nome @@ -14853,12 +15780,12 @@ Per sicurezza, il tuo portachiavi ĆØ stato precedentemente salvato su di un file Ricerca ID contatto - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14867,6 +15794,13 @@ Reported error: Errore riportato: + + NetworkPage + + Network + Rete + + NetworkView @@ -14893,7 +15827,7 @@ Errore riportato: NewFriendList - + Offline Friends @@ -14914,7 +15848,7 @@ Errore riportato: - + Groups Gruppi @@ -14944,19 +15878,19 @@ Errore riportato: Esporta il tuo elenco amici, inclusi i gruppi - - + + Search - + ID ID - + Search ID @@ -14966,12 +15900,12 @@ Errore riportato: - + Show Items - + Last contact @@ -14981,7 +15915,7 @@ Errore riportato: IP - + Group Gruppo @@ -15096,7 +16030,7 @@ Errore riportato: - + Do you want to remove this node? Vuoi rimuovere questo nodo? @@ -15106,7 +16040,7 @@ Errore riportato: Vuoi rimuovere questo amico? - + Done! Fatto! @@ -15220,7 +16154,7 @@ uno o più peer non sono stati aggiunti ad un gruppo NewsFeed - + Activity Stream @@ -15235,7 +16169,11 @@ uno o più peer non sono stati aggiunti ad un gruppo Rimuovi tutto - + This is a test. + Questo ĆØ un test. + + + Newest on top Più recenti in cima @@ -15245,12 +16183,12 @@ uno o più peer non sono stati aggiunti ad un gruppo Più vecchi in cima - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15305,6 +16243,10 @@ uno o più peer non sono stati aggiunti ad un gruppo Blogs Blogs + + Security + Sicurezza + @@ -15326,6 +16268,10 @@ uno o più peer non sono stati aggiunti ad un gruppo Message Messaggio + + Connect attempt + Tentativo connessione + @@ -15352,6 +16298,10 @@ uno o più peer non sono stati aggiunti ad un gruppo Circles Circoli + + Links + Link + Mails @@ -15480,16 +16430,24 @@ uno o più peer non sono stati aggiunti ad un gruppo Disable All Toaster temporarily Disabilita temporaneamente tutte le notifiche del Toaster + + Feed + Dispaccio + Systray Riquadro sistema + + Count all unread messages + Conta tutti i messaggi non letti + NotifyQt - + Passphrase required @@ -15509,12 +16467,12 @@ uno o più peer non sono stati aggiunti ad un gruppo Password errata ! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Plugin/eseguibile non registrato @@ -15529,7 +16487,19 @@ uno o più peer non sono stati aggiunti ad un gruppo Per favore controlla l'orologio di sistema. - + Examining shared files... + Esame files condivisi... + + + Hashing file + Calcolando l' hash del file + + + Saving file index... + Salvataggio indice file... + + + Test Test @@ -15540,19 +16510,17 @@ uno o più peer non sono stati aggiunti ad un gruppo - Unknown title Titolo sconosciuto - + - Encrypted message Messaggio criptato - + For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). PerchĆ© le aree di discussione funzionino correttamente, l'orario del tuo computer deve essere corretto. Per favore controlla che questo sia il tuo caso (Una probabile differenza di diversi minuti ĆØ stata rilevata con i tuoi amici). @@ -15560,7 +16528,7 @@ uno o più peer non sono stati aggiunti ad un gruppo OnlineToaster - + Friend Online Amico online @@ -15612,6 +16580,10 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti PGPKeyDialog + + Dialog + Dialogo + Profile info @@ -15677,6 +16649,10 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti This profile has signed your own profile key + + Key signatures : + Firme chiave : + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> @@ -15702,20 +16678,23 @@ p, li { white-space: pre-wrap; } Chiave PGP - - Friend options + + These options apply to all nodes of the profile: - - 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> Keysigning: + + Sign PGP key + Firma Chiave PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15752,7 +16731,12 @@ p, li { white-space: pre-wrap; } Includi firme - + + Options + 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> @@ -15766,6 +16750,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15798,21 +16786,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Errore: impossibile ottenere dettagli contatto - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) L'algoritmo a chiave fornito non ĆØ supportato da RetroShare (chiavi RSA solo sono supportate al momento) @@ -15830,7 +16818,7 @@ 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. Il livello di fiducia ĆØ un modo per esprimere la fiducia che riponi in questa chiave. Non viene utilizzato dal programma, nĆ© viene condiviso, ma può esserti utile a ricordare le chiavi buone e quelle cattive. @@ -15899,6 +16887,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Forse la password ĆØ sbagliata + You haven't set a trust level for this key. @@ -15906,12 +16898,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile Profilo Retroshare - + This is your own PGP key, and it is signed by : Questa ĆØ la tua chiave PGP, ed ĆØ firmata da : @@ -15937,7 +16929,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Conversazione @@ -15958,7 +16950,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Rimuovi elemento - + Name: Nome: @@ -15998,7 +16990,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Scrivi messaggio @@ -16012,6 +17004,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected Amico connesso + + Connect Attempt + Tentativo connessione + Connection refused by peer @@ -16048,7 +17044,11 @@ Warning: In your File-Transfer option, you select allow direct download to No. Unknown - Scononsciuto + + + + Unknown Peer + Contatto sconosciuto @@ -16056,7 +17056,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Nascondi - + Send Message Invia Messaggio @@ -16223,6 +17223,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + Modulo + + PhotoDialog @@ -16230,11 +17237,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare Sondivisione Foto + + Photo + Foto + TextLabel Etichetta Testo + + Comment + Commento + + + Summary + Riassunto + Album / Photo Name @@ -16295,6 +17314,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Aggiungi un commento + + + Write a comment... + Scrivi un commento... + Album @@ -16361,6 +17388,10 @@ p, li { white-space: pre-wrap; } Create Album Creare Album + + View Album + Vista Album + Edit Album Details @@ -16382,17 +17413,17 @@ p, li { white-space: pre-wrap; } Proiezione - + My Albums Miei album - + Subscribed Albums Album Sottoscritti - + Shared Albums Album condivisi @@ -16421,7 +17452,7 @@ requesting to edit it! PhotoSlideShow - + Album Name Nome album @@ -16480,19 +17511,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16528,12 +17559,12 @@ requesting to edit it! PluginItem - + TextLabel EtichettaTesto - + Show more details about this plugin Visualizza ulteriori dettagli su questo plugin @@ -16679,6 +17710,59 @@ Altro... Plugin look-up directories Cartella scorcio moduli aggiuntivi + + Plugin disabled. Click the enable button and restart Retroshare + Plugin disattivato. Cliccare il bottone "attiva" e riavviare RetroShare. + + + [disabled] + [disattivato] + + + No API number supplied. Please read plugin development manual. + Nessun numero di API in dotazione. Si prega di leggere manuale di sviluppo plugin. + + + [loading problem] + [problema di caricamento] + + + No SVN number supplied. Please read plugin development manual. + Nessun numero SVN in dotazione. Si prega di leggere manuale di sviluppo plugin. + + + Loading error. + Errore caricamento. + + + Missing symbol. Wrong version? + Simbolo errato. Versione sbagliata? + + + No plugin object + Nessun oggetto modulo aggiuntivo + + + Plugins is loaded. + Modulo aggiuntivo caricato. + + + Unknown status. + Stato sconosciuto. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Abilita se stai sviluppando dei plugins. +Su di essi non verrĆ  effettuato il controllo dell'hash. +Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin contraffatti. + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;I Plugin</h1> <p>I plugins vengono caricati dalle cartelle elencate nella lista sottostante.</p><p>Per motivi di sicurezza, i plugin accettati vengono caricati automaticamente fino a quando non vengono modificati l'eseguibile principale di RetroShare o la libreria dei plugin. In tal caso, l'utente dovrĆ  riconfermarli. Dopo l'avvio del programma, puoi abilitare manualmente un plugin cliccando sul bottone "Abilita" e riavviando RetroShare.</p> <p>Se vuoi sviluppare un tuo plugin, contatta il team degli sviluppatori, saranno felici di aiutarti!</p> + Plugins @@ -16748,27 +17832,12 @@ Altro... Disponi finestra in cima - - Ban this person (Sets negative opinion) - Banna persona (esprimi ufficialmente parere negativo) - - - - Give neutral opinion - Esprimi parere neutro - - - - Give positive opinion - Esprimi parere positivo - - - + Choose window color... - + Dock window @@ -16802,6 +17871,14 @@ Altro... Close conversation? + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Chiudere questa finestra terminerĆ  la conversazione, verrĆ  notificato all'altro peer e rimuoverĆ  il tunnel cifrato. + + + Kill the tunnel? + Terminare il tunnel? + PostedCardView @@ -16821,7 +17898,7 @@ Altro... Nuovo - + Vote up Vota per @@ -16841,8 +17918,8 @@ Altro... \/ - - + + Comments Commenti @@ -16867,13 +17944,13 @@ Altro... - - + + Comment Commento - + Comments @@ -16901,12 +17978,20 @@ Altro... PostedCreatePostDialog - + Signed by: + Firmato da: + + + Notes + Note + + + Create a new Post - + RetroShare RetroShare @@ -16921,22 +18006,12 @@ Altro... - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Carica un file immagine - + Post image @@ -16952,17 +18027,7 @@ Altro... - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16972,7 +18037,23 @@ Altro... - + Submit Post + Inviare Post + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + Stai proponendo un link. La chiave per una proposizione di successo ĆØ: contenuti interessanti, e un titolo descrittivo. + + + Submit + Invia + + + Submit a new Post + Invia un nuovo Post + + + Please add a Title Aggiungi un Titolo @@ -16992,22 +18073,12 @@ Altro... - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17022,7 +18093,7 @@ Altro... Pubblica come - + Post @@ -17033,7 +18104,7 @@ Altro... Immagine - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17043,7 +18114,7 @@ Altro... Titolo - + Link Collegamento @@ -17051,12 +18122,40 @@ Altro... PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Link Postato + + + Create Topic + Crea Argomento + + + My Topics + Miei argomenti + + + Subscribed Topics + Argomenti sottoscritti + + + Popular Topics + Argomenti popolari + + + Other Topics + Altri argomenti + + + Links + Link + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17090,7 +18189,31 @@ Altro... PostedGroupDialog - + Posted Topic + Argomento inviato + + + Add Topic Admins + Aggiungi Amministratore degli Argomenti + + + Select Topic Admins + Seleziona Amministratore degli Argomenti + + + Create New Topic + Crea Nuovo Argomento + + + Edit Topic + Modifica Argomento + + + Update Topic + Aggiorna Argomento + + + Create New Board @@ -17128,17 +18251,7 @@ Altro... PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17154,7 +18267,7 @@ Altro... - + Expand Allarga @@ -17169,17 +18282,16 @@ Altro... - + Loading + Sto caricando... + + + Loading... - - Never - Mai - - - + New Board @@ -17192,18 +18304,22 @@ Altro... PostedItem - + 0 0 - - + Site + Sito + + + + Comments Commenti - + Copy RetroShare Link @@ -17214,12 +18330,12 @@ Altro... - + Comment Commento - + Comments @@ -17229,7 +18345,7 @@ Altro... <p><font color="#ff0000"><b>L’autore di questo messaggio (con ID %1) ĆØ bloccato.</b> - + Click to view Picture @@ -17239,17 +18355,21 @@ Altro... Nascondi - + Vote up Vota per - + Vote down Vota contro - + \/ + \/ + + + Set as read and remove item Definisci letto e rimuovi elemento @@ -17259,7 +18379,7 @@ Altro... Nuovo - + New Comment: Nuovo commento: @@ -17269,7 +18389,7 @@ Altro... - + Name Nome @@ -17310,10 +18430,77 @@ Altro... - + Loading Sto caricando... + + By + Da + + + + PostedListWidget + + Form + Modulo + + + Hot + Scottante + + + New + Nuovo + + + Top + In alto + + + Today + Oggi + + + Yesterday + Ieri + + + This Week + Questa settimana + + + This Month + Questo mese + + + This Year + Quest'anno + + + Submit a new Post + Invia un nuovo Post + + + Next + Successivo + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Per favore crea o scegli un Id per firmare prima di votare + + + Previous + Precedente + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17333,17 +18520,7 @@ Altro... - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17353,15 +18530,15 @@ Altro... Amministratore: - + - + unknown sconosciuto - + Distribution: Distribuzione: @@ -17371,42 +18548,42 @@ Altro... - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Post - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17426,7 +18603,7 @@ Altro... Scottante - + Search @@ -17456,17 +18633,17 @@ Altro... - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17481,17 +18658,12 @@ Altro... Vuoto - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17501,31 +18673,27 @@ Altro... Modifica - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17540,7 +18708,7 @@ Altro... Entra - + Never Mai @@ -17582,7 +18750,7 @@ Altro... Unknown - Scononsciuto + @@ -17614,16 +18782,6 @@ Altro... No Channel Selected Nessun Canale Selezionato - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17632,6 +18790,10 @@ Altro... Tabs Tabs + + Open each topic in a new tab + Apri ciascun argomento in una nuova scheda + Open each board in a new tab @@ -17645,6 +18807,10 @@ Altro... PostedUserNotify + + Posted + Pubblicato + Board Post @@ -17713,16 +18879,16 @@ Altro... Gestore Profilo - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17832,7 +18998,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari ProfileWidget - + Edit status message Modificare il messaggio di stato @@ -17848,7 +19014,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Gestore Profilo - + Public Information Informazioni pubbliche @@ -17883,12 +19049,12 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari in linea dal: - + Other Information Altre informazioni - + My Address Il mio indirizzo @@ -17932,27 +19098,51 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari PulseAddDialog - + Post From: + Post da: + + + Account 1 + Conto 1 + + + Account 2 + Conto 2 + + + Account 3 + Conto 3 + + + Add to Pulse Aggiungere al segnale - + filter + filtro + + + URL Adder + Aggiunge URL + + + Display As Visualizzare come - + URL URL - + GroupLabel - + IDLabel @@ -17962,12 +19152,12 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Da: - + Head - + Head Shot @@ -17997,13 +19187,13 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Negativo - - + + Whats happening? - + @@ -18015,22 +19205,12 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18039,13 +19219,17 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari Cancel Annulla + + Post Pulse to Wire + Manda un segnale sul filo + Post - + Reply to Pulse @@ -18060,24 +19244,34 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Carica un file immagine + From + Da + + + Date + Data + + + ... + ... @@ -18088,7 +19282,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + @@ -18107,7 +19301,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari PulseReply - + icn @@ -18117,7 +19311,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + REPLY @@ -18144,7 +19338,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + FOLLOW @@ -18154,7 +19348,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18174,7 +19368,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18290,7 +19484,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + FOLLOW @@ -18298,42 +19492,37 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18365,7 +19554,7 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari - + FOLLOW @@ -18373,8 +19562,8 @@ Ora puoi copiarla su un altro computer e utilizzare il pulsante Importa per cari QObject - - + + Confirmation Conferma @@ -18644,12 +19833,12 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Dettagli contatto - + File Request canceled Richiesta file cancellata - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Questa versione di RetroShare usa OpenPGP-SDK. Come effetto collaterale, non utilizza il portachiavi PGP condiviso di sistema, ma ha il proprio portachiavi condiviso da tutte le istanze di RetroShare. <br><br>Non sembri avere un tale portachiavi, sebbene chiavi PGP siano menzionati da account RetroShare esistenti, probabilmente perchĆ© hai appena cambiato per questa nuova versione del software. @@ -18680,7 +19869,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Errore inatteso. Riferisci "RsInit::InitRetroShare unexpected return code %1". - + Cannot start Tor Manager! @@ -18714,7 +19903,7 @@ The error reported is:" - + Multiple instances Istanze multiple @@ -18738,26 +19927,6 @@ Blocca file. Blocco del file: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18840,7 +20009,7 @@ L’errore segnalato ĆØ: Inoltro dati - + You appear to have nodes associated to DSA keys: Sembri avere nodi associati a chiavi DSA: @@ -18850,7 +20019,7 @@ L’errore segnalato ĆØ: Chiavi DSA non sono ancora supportate da questa versione di RetroShare. Tutti questi nodi saranno inutilizzabili. Siamo molto spiacenti per questo. - + enabled abilitato @@ -18860,7 +20029,7 @@ L’errore segnalato ĆØ: disabilitato - + Move IP %1 to whitelist Sposta l’IP %1 alla lista bianca @@ -18876,7 +20045,7 @@ L’errore segnalato ĆØ: - + %1 seconds ago %1 secondi fa @@ -18943,7 +20112,7 @@ Security: no anonymous IDs - + Join chat room @@ -18971,7 +20140,7 @@ Security: no anonymous IDs impossibile analizzare il file XML! - + Indefinitely @@ -19151,29 +20320,13 @@ Security: no anonymous IDs Ban list - - - Name - Nome - - Node - Nodo - - - - Address - - - - - Status - + NXS @@ -19244,7 +20397,7 @@ Security: no anonymous IDs Unknown - Scononsciuto + @@ -19366,6 +20519,10 @@ Security: no anonymous IDs Click to resume the hashing process + + <p>This certificate contains: + <p>Questo certificato contiene: + Idle @@ -19416,18 +20573,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19590,7 +20735,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Tutta la rete @@ -19773,7 +20918,7 @@ p, li { white-space: pre-wrap; } Modulo - + The loading of embedded images is blocked. Caricamento immagini bloccato @@ -19786,7 +20931,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Concesso di default @@ -19959,22 +21104,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Salva immagine - - - - Copy image - - - - + Document source @@ -19982,12 +21117,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20679,7 +21814,7 @@ Se ritieni sia corretto, rimuovi dal file la riga corrispondente e ri-aprilo con RsDownloadListModel - + Name i.e: file name Nome @@ -20794,13 +21929,13 @@ Se ritieni sia corretto, rimuovi dal file la riga corrispondente e ri-aprilo con Unknown - Scononsciuto + RsFriendListModel - + Name Nome @@ -20820,7 +21955,7 @@ Se ritieni sia corretto, rimuovi dal file la riga corrispondente e ri-aprilo con IP - + Profile ID @@ -20876,7 +22011,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] [ ... Messaggio Redatto ... ] @@ -20890,6 +22025,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... Messaggio Perso ... ] + RsMessageModel @@ -20903,11 +22043,6 @@ prevents the message to be forwarded to your friends. From Da - - - To - A - Subject @@ -20930,18 +22065,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Clicca per ordinare per lettura - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Clicca per ordinare per mittente @@ -20964,9 +22094,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20987,7 +22115,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Ripristina TUTTI i parametri Retroshare memorizzati @@ -21048,7 +22176,7 @@ prevents the message to be forwarded to your friends. Definisci lingua RetroShare - + Unable to open log file '%1': %2 Impossibile aprire file di LOG '%1': %2 @@ -21069,7 +22197,11 @@ prevents the message to be forwarded to your friends. Impossibile creare la cartella dati: %1 - + Revision + Revisione + + + opmode @@ -21099,7 +22231,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: Codice linguaggio incorretto: @@ -21117,7 +22249,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21134,12 +22266,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Immetti una chiave (di almeno 3 caratteri) - + Start Search Inizia ricerca @@ -21200,7 +22332,7 @@ prevents the message to be forwarded to your friends. Cancella - + KeyWords Parole Chiave @@ -21215,7 +22347,7 @@ prevents the message to be forwarded to your friends. Rierca ID - + Filename Nome File @@ -21315,23 +22447,23 @@ prevents the message to be forwarded to your friends. Scarica selezionati - + File Name Nome File - + Download Scarica - + Copy RetroShare Link Copia collegamento RetroShare - + Send RetroShare Link Invia collegamento RetroShare @@ -21341,7 +22473,7 @@ prevents the message to be forwarded to your friends. - + Download Notice Scarica Informativa @@ -21378,7 +22510,7 @@ prevents the message to be forwarded to your friends. Rimuovi tutto - + Folder Cartella @@ -21389,17 +22521,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) Nuovo collegamento(i) RetroShare - + Open Folder Apri cartella - + Create Collection... Crea Raccolta... @@ -21419,7 +22551,7 @@ prevents the message to be forwarded to your friends. Scarica da una raccolta di file... - + Collection Raccolta @@ -21427,7 +22559,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Dettagli contatto @@ -21443,22 +22575,22 @@ prevents the message to be forwarded to your friends. Rimuovi Elemento - + IP address: Indirizzo IP: - + Peer ID: ID contatto: - + Location: LocalitĆ : - + Peer Name: Nome contatto: @@ -21475,7 +22607,7 @@ prevents the message to be forwarded to your friends. Nascondi - + but reported: @@ -21500,8 +22632,8 @@ prevents the message to be forwarded to your friends. <p>Questo ĆØ l’IP a cui il tuo amico sostiene di essere connesso. Se avete appena cambiato gli IP, allora questo ĆØ un falso allarme. Altrimenti, significa che la tua connessione a questo amico ĆØ inoltrata da un peer intermedio, ed ĆØ una cosa sospetta.</p> - - + + <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> <html><head/><body><p>Questo avviso serve a proteggerti dagli attacchi tramite inoltro del traffico. In simili casi, l’amico a cui sei connesso non vedrĆ  il tuo IP esterno, vedrĆ  invece l’IP di chi esegue l’attacco.</p><p><br/></p><p>Però, se per qualche motivo avete appena cambiato gli IP (alcuni ISP ti cambiano l’IP a intervalli regolari), allora questo avviso ti sta solo dicendo che un amico si ĆØ connesso al tuo nuovo IP prima che RetroShare si sia accorto che l’IP ĆØ cambiato. In questo caso, non c’è nulla che non vada.</p><p><br/></p><p>Puoi facilmente evitare falsi allarmi mettendo in lista bianca i tuoi indirizzi IP (p.es. l’intervallo dei tuoi IP), o disabilitando del tutto questi avvisi in Opzioni-&gt;Notifica-&gt;News Feed.</p></body></html> @@ -21509,7 +22641,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare vuole essere amico con te su RetroShare @@ -21540,7 +22672,7 @@ prevents the message to be forwarded to your friends. - + Expand Allarga @@ -21585,12 +22717,12 @@ prevents the message to be forwarded to your friends. Stato: - + Write Message Scrivi messaggio - + Connect Attempt Tentativo Connessione @@ -21610,24 +22742,19 @@ prevents the message to be forwarded to your friends. Tentativi di connessione sconosciuto (uscente) - + Unknown Security Issue Evento di sicurezza sconosciuto - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown - Scononsciuto + @@ -21635,7 +22762,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Contatto sconosciuto + + + Hide Nascondi @@ -21645,7 +22776,7 @@ prevents the message to be forwarded to your friends. Vuoi rimuovere questo amico? - + Certificate has wrong signature!! This peer is not who he claims to be. Il Certificato ha una firma errata!! Questo contatto non ĆØ chi afferma di essere. @@ -21655,12 +22786,12 @@ prevents the message to be forwarded to your friends. Certificato Mancante/Danneggiato. Non ĆØ un vero utente RetroShare. - + Certificate caused an internal error. Il certificato ha causato un errore interno. - + Peer/node not in friendlist (PGP id= Peer/nodo non in lista-amici (PGP id= @@ -21719,12 +22850,12 @@ prevents the message to be forwarded to your friends. - + Local Address Indirizzo Locale - + NAT @@ -21745,22 +22876,22 @@ prevents the message to be forwarded to your friends. Porta: - + Local network Rete locale - + External ip address finder Rilevatore di indirizzo IP esterno - + UPnP UPnP - + Known / Previous IPs: IP conosciuti / precedenti: @@ -21773,16 +22904,21 @@ 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. - - - + + Allow RetroShare to ask my ip to these websites: + Permetti a RetroShare di chiedere il mio IP a questi siti: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. L’intervallo di porte consentite va da 10 a 65535. In genere le porte al di sotto della 1024 sono riservate al sistema. @@ -21792,46 +22928,23 @@ behind a firewall or a VPN. L’intervallo di porte consentite va da 10 a 65535. In genere le porte al di sotto della 1024 sono riservate al sistema. - + Onion Address Indirizzo Onion - + Discovery On (recommended) Scoperta Attivata (raccomandato) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off Scoperta Disattivata @@ -21841,7 +22954,7 @@ List of found external IP: Nascosto - Vedi Configurazione - + I2P Address Indirizzo I2P @@ -21866,95 +22979,37 @@ List of found external IP: in entrata ok - - - + + Proxy seems to work. Il proxy sembra funzionare. - - + I2P proxy is not enabled proxy di I2P non abilitato - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21969,7 +23024,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21979,7 +23098,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. Sei raggiungibile tramite servizio nascosto. @@ -21993,12 +23127,12 @@ I servizi sono tutti sù e ben funzionanti?? Controlla anche le tue porte! - + [Hidden mode] [ModalitĆ  Nascosta] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Questo azzera la lista degli indirizzi noti. Questa azione ĆØ utile se per qualche ragione la tua lista di indirizzi contenesse un indirizzo non valido/irrilevante/scaduto che vorresti evitare di passare ai tuoi amici come indirizzo di contatto.</p></body></html> @@ -22008,7 +23142,7 @@ Controlla anche le tue porte! Cancella - + Download limit (KB/s) Limite scaricamento (KB/s) @@ -22023,23 +23157,23 @@ Controlla anche le tue porte! Limite caricamento (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>Il limite di upload copre l’intero software. Un limite di upload troppo piccolo potrebbe eventualmente bloccare i servizi a bassa prioritĆ  (forum, canali). Il valore minimo raccomandato ĆØ di 50KB/s. </p></body></html> - + WARNING: These values don't take into account the Relays. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22050,7 +23184,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22060,7 +23204,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22070,7 +23219,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22110,7 +23269,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Start @@ -22125,7 +23284,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Stop - + + BOB status + + + + Incoming In arrivo @@ -22161,32 +23325,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Relay @@ -22241,7 +23380,7 @@ If you have issues connecting over Tor check the Tor logs too. Totale: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22266,7 +23405,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22278,7 +23417,7 @@ If you have issues connecting over Tor check the Tor logs too. Rete - + IP Filters Filtro IP @@ -22301,7 +23440,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Status @@ -22361,28 +23500,17 @@ If you have issues connecting over Tor check the Tor logs too. Aggiungi alla lista bianca - + Hidden Service Configuration Configurazione Servizio Nascosto - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22398,18 +23526,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 - + Service Address Indirizzo Servizio @@ -22444,12 +23572,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range Intervallo IP - + Reported by DHT for IP masquerading Segnalato dalla DHT per mascheramento IP @@ -22472,22 +23600,22 @@ If you have issues connecting over Tor check the Tor logs too. Aggiunto da te - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>Gli IP della lista bianca vengono ottenuti dalle seguenti fonti: IP provenienti da un certificato scambiato manualmente; gamme di IP inserite da te in questa finestra o negli elementi immessi nella sicurezza.</p><p>Il comportamento di default di RetroShare ĆØ di (1) autorizzare sempre la connessione ai peer il cui IP ĆØ nella lista bianca, anche se quell’IP appare anche nella lista nera; (2) opzionalmente richiede che gli IP siano nella lista bianca. Puoi modificare questo comportamento per ciascun contatto nella finestra &quot;Dettagli&quot; di ciascun nodo RetroShare. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>La DHT ti consente di rispondere a richieste di connessione dai tuoi amici che usano la DHT di BitTorrent. Migliora notevolmente la connettivitĆ . Nessuna informazione viene memorizzata nella DHT; viene impiegata solo come sistema di proxy per entrare in contatto con altri nodi di RetroShare.</p><p>Il servizio Discovery invia il nome del nodo e gli ID dei tuoi contatti fidati ai peers connessi, per aiutarli a scegliere nuovi amici. Però l’amicizia non ĆØ mai automatica, ed entrambi i peer dovranno pur sempre aggiudicarsi la fiducia a vicenda per consentire la connessione. </p></body></html> - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>Il punto diventa verde non appena RetroShare riesce ad ottenere il tuo IP dai siti elencati qui sotto, se hai abilitato l’operazione. RetroShare utilizzerĆ  anche altri metodi per scoprire il tuo IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Questa lista viene compilata automaticamente con informazioni reperite da molteplici fonti: i contatti mascherati segnalati dalla DHT; gli intervalli IP immessi da te; e gli intervalli IP segnalati dai tuoi amici. Le impostazioni di default dovrebbero proteggerti dal relaying del traffico su larga scala.</p><p>L'individuazione automatizzata degli IP mascherati potrebbe far finire in lista nera gli IP dei tuoi amici. In questo caso, usa il menù contestuale per metterli in lista bianca.</p></body></html> @@ -22522,7 +23650,7 @@ If you have issues connecting over Tor check the Tor logs too. Blocca automaticamente gli intervalli degli IP mascherati della DHT che iniziano da - + Outgoing Manual Tor/I2P @@ -22532,12 +23660,12 @@ If you have issues connecting over Tor check the Tor logs too. Tor Socks Proxy - + Tor outgoing Okay Tor in uscita ok - + Tor proxy is not enabled proxy di Tor non abilitato @@ -22617,7 +23745,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with verifica i contatti con cui vuoi condividere la chiave privata di pubblicazione @@ -22627,12 +23755,12 @@ If you have issues connecting over Tor check the Tor logs too. Condividi con amici - + Share Condividi - + You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel. Puoi far sapere agli amici del tuo Canale condividendolo con loro. @@ -22652,7 +23780,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Gestore cartella condivisa - + Shared directory @@ -22672,17 +23800,17 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. VisibilitĆ  - + Add new - + Cancel Annulla - + Add a Share Directory Aggiungi cartella condivisa @@ -22692,7 +23820,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Rimuovi - + Apply and close Applicare e chiudere @@ -22783,7 +23911,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Cartella non trovata o nome Cartella non accettato. - + This is a list of shared folders. You can add and remove folders using the buttons at the bottom. When you add a new folder, intially all files in that folder are shared. You can separately setup share flags for each shared directory. Questo ĆØ un elenco delle cartelle condivise. Puoi aggiungere e rimuovere cartelle usando i bottoni in fondo. Quando aggiungi una nuova cartella, all’inizio tutti i file in essa contenuti vengono condivisi. Puoi impostare separatamente i parametri di condivisione per ciascuna cartella condivisa. @@ -22791,7 +23919,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. SharedFilesDialog - + Files Files @@ -22842,16 +23970,11 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files controllare i file - + Download selected Scarica selezionati @@ -22861,7 +23984,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Scarica - + Copy retroshare Links to Clipboard Copia negli Appunti Collegamenti RetroShare @@ -22876,7 +23999,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Invia collegamento RetroShare - + Some files have been omitted @@ -22892,7 +24015,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Raccomandazione(i) - + Create Collection... Crea Raccolta... @@ -22917,7 +24040,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Scarica da una raccolta di file... - + Some files have been omitted because they have not been indexed yet. @@ -23060,12 +24183,12 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. SplashScreen - + Load configuration Carica configurazione - + Create interface Crea interfaccia @@ -23089,7 +24212,7 @@ Seleziona gli Amici con cui vuoi Condividere il Canale. Ricorda parola-chiave - + Log In Login @@ -23442,7 +24565,7 @@ Questa scelta può essere ripristinata in Impostazioni. Messaggio di stato - + Message: Messaggio: @@ -23687,7 +24810,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Rimuovi tutte le etichette @@ -23723,17 +24846,14 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown - Scononsciuto + @@ -23741,13 +24861,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23757,57 +24882,12 @@ p, li { white-space: pre-wrap; } - - Error - Errore - - - - Not connected - Non connesso - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23815,7 +24895,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23825,7 +24905,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23836,12 +24916,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23869,7 +24948,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Opzioni traferimento @@ -23880,7 +24959,7 @@ p, li { white-space: pre-wrap; } Massimo scaricamenti simultanei: - + Shared Directories @@ -23890,27 +24969,22 @@ p, li { white-space: pre-wrap; } Condividi automaticamente cartella ricezione (Raccomandato) - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) minuto(i) @@ -23995,7 +25069,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24004,12 +25078,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -24034,12 +25103,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Streaming @@ -24104,7 +25168,12 @@ p, li { white-space: pre-wrap; } Massimo numero di richieste di tunnel inoltrate per secondo: - + + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>costringe il trasferimento a richiedere chunk di file da 1MB in ordine crescente, facilitando l’anteprima durante lo scaricamento. <span style=" font-weight:600;">Random</span> ĆØ puramente casuale e favorisce lo swarming. <span style=" font-weight:600;">Progressivo</span> ĆØ un compromesso: seleziona il prossimo chunk casualmente entro un margine che non superi i 50MB di distanza dalla fine del file parziale. Questo consente una randomizzazione parziale ma al contempo previene lunghi tempi di inizializzazione per grossi file vuoti.</p></body></html> + + + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> <html><head/><body><p>RetroShare sospenderĆ  tutti i trasferimenti ed il salvataggio del file di configurazione qualora lo spazio libero sul disco dovesse scendere al di sotto di questo limite. Su alcuni sistemi, questo previene la perdita di informazioni. Una finestra di popup ti avviserĆ  quando questo accade.</p></body></html> @@ -24114,17 +25183,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Questo valore controlla quante richieste di tunnel al secondo può inoltrare il tuo contatto.</p><p>Se disponi di una connessione Internet a banda larga, può portarlo su fino a 30-40, consentendo cosƬ il passaggio di tunnel statisticamente più lunghi. Fai molta attenzione però: questo genererĆ  molti pacchetti piccoli che possono rallentare notevolmente il tuo trasferimento di file.</p><p>Il valore predefinito ĆØ 20. Nel dubbio, lascialo cosƬ.</p></body></html> - - Warning - Avvertimento - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24152,7 +25211,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Completato scaricamento @@ -24176,23 +25235,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Hai scaricato il %1 + + + You have %1 completed download + Hai completato il %1 di scaricamento + + + %1 completed downloads + completato %1 scaricamenti + + + %1 completed download + completato %1 scaricamento + TransfersDialog - - + + Downloads Scaricamenti - + Uploads Caricamenti - + Name i.e: file name Nome @@ -24399,7 +25474,11 @@ p, li { white-space: pre-wrap; } Specifica... - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Trasferimento File</h1> <p>RetroShare offre due modi per trasferie file: trasferimenti diretti dai tuoi amici, e trasferimenti a distanza anonimizzati con tunnel. Inoltre, il trasferimento file ĆØ multi-fonte e consente lo swarming (puoi essere una fonta mentre scarichi).</p> <p>Puoi condividere file usando l’icona <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> bekka barra laterale sinistra. Queste file verranno elencati nella finestrella "I Miei File". Per ciascun gruppo di amici, puoi stabilire se potranno vedere o meno questi file nella finestra "File degli Amici".</p> <p>La finestra di ricerca riporta i file nelle liste dei file dei tuoi amici, ed i file distanti che possono essere raggiunti anonimamente tramite il sistema di tunneling a multi-hop.</p> + + + Move in Queue... Sposta in coda... @@ -24424,7 +25503,7 @@ p, li { white-space: pre-wrap; } Scegli la cartella - + Anonymous end-to-end encrypted tunnel 0x @@ -24445,7 +25524,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24478,17 +25557,7 @@ p, li { white-space: pre-wrap; } File %1 non completato. Se file multimediale, provane un anteprima. - - Warning - Avvertimento - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Cambia il nome del file @@ -24503,7 +25572,7 @@ p, li { white-space: pre-wrap; } Per favore inserisci un nuovo--e valido--nome per il file - + Expand all Espandi tutto @@ -24630,18 +25699,23 @@ 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> + + + + Columns Colonne - + File Transfers Trasferimento file - + Path Tracciato @@ -24651,7 +25725,7 @@ p, li { white-space: pre-wrap; } Visualizza colonna dei Percorsi - + Could not delete preview file Impossibile eliminare il file anteprima @@ -24661,7 +25735,7 @@ p, li { white-space: pre-wrap; } Riprovare? - + Create Collection... Crea Raccolta... @@ -24676,12 +25750,7 @@ p, li { white-space: pre-wrap; } Guarda Raccolta... - - <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> - - - - + Collection Raccolta @@ -24691,7 +25760,7 @@ p, li { white-space: pre-wrap; } %1 tunnel - + Anonymous tunnel 0x Tunnel anonimo 0x @@ -24820,7 +25889,7 @@ p, li { white-space: pre-wrap; } Unknown Peer - Contatto sconosciuto + @@ -24912,6 +25981,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + Tunnel anonimi + Authenticated tunnels @@ -25105,17 +26178,12 @@ p, li { white-space: pre-wrap; } Modulo - + Enable Retroshare WEB Interface Abilita l’Interfaccia Web di RetroShare - - Status: - Stato: - - - + Web parameters Parametri web @@ -25149,33 +26217,27 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + Port: + Porta: + Allow access from all IP addresses (Default: localhost only) - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interfaccia Web</h1><p>L’Interfaccia Web ti consente di controllare RetroShare tramite browser. Più dispositivi possono condividere il controllo di un’istanza di RetroShare. Quindi, potresti avviare una conversazione su un tablet, per poi proseguirla su un PC da tavolo.</p> <p>Attenzione: non esporre l’Interfaccia Web all’Internet, dato che non dispone di alcun sistema di controllo dell’accesso, nĆ© di cifratura. Se vuoi usare l’Interfaccia Web tramite Internet, usa un tunnel SSH o un proxy verso una connessione sicura.</p> - + Webinterface not enabled Interfaccia Web non abilitata @@ -25185,12 +26247,12 @@ p, li { white-space: pre-wrap; } L’Interfaccia Web non ĆØ abilitata. Attivala in Impostazioni -> Interfaccia Web - + failed to start Webinterface Non so riuscito ad avviare l’Interfaccia Web - + Webinterface Interfaccia Web @@ -25327,7 +26389,11 @@ p, li { white-space: pre-wrap; } Pagine wiki - + New Group + Nuovo gruppo + + + Page Name Nome della Pagina @@ -25342,7 +26408,7 @@ p, li { white-space: pre-wrap; } Id originale - + << << @@ -25430,7 +26496,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Storico modifiche pagina @@ -25465,7 +26531,7 @@ p, li { white-space: pre-wrap; } Id pagina - + \/ \/ @@ -25495,18 +26561,14 @@ p, li { white-space: pre-wrap; } Etichette - - History - Storico - - - + + Show Edit History Visualizza storico modifiche - + Status Status @@ -25527,7 +26589,7 @@ p, li { white-space: pre-wrap; } Rimposta - + Submit Invia @@ -25599,6 +26661,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + Lasso di tempo + Create Account @@ -25610,7 +26676,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Aggiornamento + + + Settings @@ -25625,7 +26700,7 @@ p, li { white-space: pre-wrap; } Altri - + Who to Follow @@ -25645,7 +26720,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25675,17 +26750,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Mese scorso + + + Last Week + La settimana scorsa + + + Today + Oggi + + + New + Nuovo + + + from + Da + + + until + fino al + + + Search/Filter + Ricerca/filtro + + + Network Wide + Livello di rete + + + Manage Accounts + Gestire gli account + + + Showing: + Mostrando: + + + Yourself Te stesso + + Friends + Amici + Following Seguendo - + Custom + Personalizzato + + + Account 1 + Conto 1 + + + Account 2 + Conto 2 + + + Account 3 + Conto 3 + + + CheckBox + Casella da baffare + + + Post Pulse to Wire + Posta segnale sil filo + + + RetroShare RetroShare @@ -25748,42 +26891,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Rimuovi - - - Location: LocalitĆ : - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25828,41 +26964,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/D - - - - Following - Seguendo - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Scononsciuto @@ -25940,7 +27046,7 @@ p, li { white-space: pre-wrap; } %1y %2d - + k e.g: 3.1 k k @@ -25973,11 +27079,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Immagini (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_ja_JP.ts b/retroshare-gui/src/lang/retroshare_ja_JP.ts index 5f2256dd5..ce4e63aeb 100644 --- a/retroshare-gui/src/lang/retroshare_ja_JP.ts +++ b/retroshare-gui/src/lang/retroshare_ja_JP.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + ć‚³ćƒ”ćƒ³ćƒˆć‚’čæ½åŠ  + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: 高度な検瓢 - + Search Criteria ę¤œē“¢åŸŗęŗ– - + Add a further search criterion. ć•ć‚‰ć«ę¤œē“¢åŸŗęŗ–ć‚’čæ½åŠ  @@ -137,7 +144,7 @@ ę¤œē“¢åŸŗęŗ–ć‚’ćƒŖć‚»ćƒƒćƒˆ - + Cancels the search. ę¤œē“¢ć‚’ć‚­ćƒ£ćƒ³ć‚»ćƒ« @@ -157,6 +164,121 @@ 検瓢 + + AlbumCreateDialog + + 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: + ć‚³ćƒ”ćƒ³ćƒˆ: + + + Public + ćƒ‘ćƒ–ćƒŖćƒƒć‚Æ + + + Resize Images (< 1Mb) + ć‚¤ćƒ”ćƒ¼ć‚øć®ć‚µć‚¤ć‚ŗć‚’å¤‰ę›“ (< 1Mb) + + + Resize Images (< 10Mb) + ć‚¤ćƒ”ćƒ¼ć‚øć®ć‚µć‚¤ć‚ŗć‚’å¤‰ę›“ (< 10Mb) + + + Back + ęˆ»ć‚‹ + + + Add Photos + å†™ēœŸć‚’čæ½åŠ  + + + Where were these taken? + ć„ć¤ę’®ć‚Šć¾ć—ćŸć‹ļ¼Ÿ + + AlbumDialog @@ -185,6 +307,22 @@ Caption + + Where: + ä½ē½®: + + + Description: + čŖ¬ę˜Žļ¼š + + + Share Options + å…±ęœ‰ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³ + + + Comments + ć‚³ćƒ”ćƒ³ćƒˆ + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -541,7 +679,7 @@ 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. @@ -567,23 +705,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -626,7 +751,7 @@ p, li { white-space: pre-wrap; } 削除 - + Set your Avatar picture @@ -713,10 +838,22 @@ p, li { white-space: pre-wrap; } ćƒŖć‚»ćƒƒćƒˆ - + Receive Rate + å—äæ”é€Ÿåŗ¦ + + + Send Rate + é€äæ”é€Ÿåŗ¦ + + + Always on Top åøøć«ę‰‹å‰ć«č”Øē¤ŗ + + Style + ć‚¹ć‚æć‚¤ćƒ« + Changes the transparency of the Bandwidth Graph @@ -732,11 +869,23 @@ p, li { white-space: pre-wrap; } % Opaque % äøé€ę˜Ž + + Save + äæå­˜ + + + Cancel + ć‚­ćƒ£ćƒ³ć‚»ćƒ« + Since: 開始: + + Hide Settings + čØ­å®šć‚’éžč”Øē¤ŗ + BandwidthStatsWidget @@ -809,7 +958,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment ć‚³ćƒ”ćƒ³ćƒˆ @@ -839,12 +988,12 @@ p, li { white-space: pre-wrap; } RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -852,7 +1001,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -872,7 +1021,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -910,7 +1059,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -930,7 +1079,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -960,7 +1109,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status 未読/ę—¢čŖ­ć®åˆ‡ć‚Šę›æćˆ @@ -970,7 +1119,7 @@ p, li { white-space: pre-wrap; } ę–°č¦ - + TextLabel ćƒ©ćƒ™ćƒ« @@ -978,12 +1127,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 0 @@ -1003,18 +1152,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - + Expand 展開 @@ -1029,12 +1178,12 @@ p, li { white-space: pre-wrap; } ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ - + Name 名前 - + Comm value @@ -1203,17 +1352,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General äø€čˆ¬ @@ -1223,17 +1372,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1241,7 +1380,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1264,7 +1403,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1289,18 +1428,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - + Expand 展開 @@ -1315,7 +1454,7 @@ into the image, so as to ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ - + Name 名前 @@ -1325,7 +1464,17 @@ into the image, so as to - + + Comment + ć‚³ćƒ”ćƒ³ćƒˆ + + + + Comments + + + + Hide éžč”Øē¤ŗ @@ -1333,7 +1482,7 @@ into the image, so as to ChatLobbyDialog - + Name 名前 @@ -1524,7 +1673,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby ćƒćƒ£ćƒƒćƒˆćƒ­ćƒ“ćƒ¼ć‚’č”Øē¤ŗ @@ -1557,14 +1706,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1572,13 +1720,13 @@ into the image, so as to ChatLobbyWidget - - + + Name 名前 - + Count ć‚«ć‚¦ćƒ³ćƒˆ @@ -1588,7 +1736,29 @@ into the image, so as to 話锌 - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + ćƒ—ćƒ©ć‚¤ćƒ™ćƒ¼ćƒˆćƒćƒ£ćƒƒćƒˆ + + + + + Public chat rooms + å…¬é–‹ćƒćƒ£ćƒƒćƒˆ + + + Create chat room @@ -1598,7 +1768,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1655,12 +1825,12 @@ 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: @@ -1670,42 +1840,27 @@ Double click a chat room to enter and chat. - + Create chat lobby + ćƒćƒ£ćƒƒćƒˆćƒ­ćƒ“ćƒ¼ć‚’ä½œęˆ + + + [No topic provided] [č©±é”ŒćÆć‚ć‚Šć¾ć›ć‚“] - - + Private ćƒ—ćƒ©ć‚¤ćƒ™ćƒ¼ćƒˆ - - Private Subscribed - - - - - - Public Subscribed - - - - - - + Public ćƒ‘ćƒ–ćƒŖćƒƒć‚Æ - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1715,25 +1870,38 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns + + Yes + はい + + + No + 恄恄恈 + Chat rooms @@ -1745,47 +1913,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: 話锌: - + Type: ć‚æć‚¤ćƒ— - + Security: - + Peers: - - - - - - + + + + + + TextLabel ćƒ©ćƒ™ćƒ« @@ -1800,7 +1968,7 @@ Double click a chat room to enter and chat. - + Show @@ -1820,7 +1988,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ @@ -1865,7 +2033,7 @@ Double click a chat room to enter and chat. ChatPage - + General äø€čˆ¬ @@ -1880,7 +2048,15 @@ Double click a chat room to enter and chat. - + Chat Settings + チャット設定 + + + Enable Emoticons Group Chat + ć‚°ćƒ«ćƒ¼ćƒ—ćƒćƒ£ćƒƒćƒˆć§é””ę–‡å­—ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ + + + Enable custom fonts @@ -1900,7 +2076,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1925,7 +2101,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1934,6 +2110,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + ćƒ—ćƒ©ć‚¤ćƒ™ćƒ¼ćƒˆćƒćƒ£ćƒƒćƒˆ + Open Window for new chat @@ -1955,7 +2135,11 @@ Double click a chat room to enter and chat. - + Chat Font + ćƒćƒ£ćƒƒćƒˆćƒ•ć‚©ćƒ³ćƒˆ + + + Change Chat Font ćƒćƒ£ćƒƒćƒˆćƒ•ć‚©ćƒ³ćƒˆć‚’å¤‰ę›“ @@ -1965,10 +2149,14 @@ Double click a chat room to enter and chat. ćƒćƒ£ćƒƒćƒˆćƒ•ć‚©ćƒ³ćƒˆ: - + History 屄歓 + + Style + ć‚¹ć‚æć‚¤ćƒ« + @@ -1983,13 +2171,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + ć‚°ćƒ«ćƒ¼ćƒ—ćƒćƒ£ćƒƒćƒˆ + Private chat ćƒ—ćƒ©ć‚¤ćƒ™ćƒ¼ćƒˆćƒćƒ£ćƒƒćƒˆ - + Choose your default font for Chat. @@ -2059,22 +2251,12 @@ Double click a chat room to enter and chat. - + Search 検瓢 - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2084,17 +2266,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2141,7 +2313,7 @@ Double click a chat room to enter and chat. Description: - čŖ¬ę˜Ž + @@ -2191,7 +2363,7 @@ Double click a chat room to enter and chat. - + Case sensitive å¤§ę–‡å­—ćƒ»å°ę–‡å­—ć‚’åŒŗåˆ„ @@ -2297,7 +2469,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat ćƒćƒ£ćƒƒćƒˆć‚’č”Øē¤ŗ @@ -2333,7 +2505,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close 閉恘悋 @@ -2368,12 +2540,12 @@ Double click a chat room to enter and chat. ę–œä½“ - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2453,6 +2625,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2490,7 +2667,7 @@ Double click a chat room to enter and chat. - + is typing... ę›øćč¾¼ćæäø­... @@ -2512,7 +2689,7 @@ after HTML conversion. - + Do you really want to physically delete the history? ęœ¬å½“ć«å±„ę­“ć‚’å‰Šé™¤ć—ć¾ć™ć‹ļ¼Ÿ @@ -2562,7 +2739,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2584,7 +2761,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2599,12 +2776,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2620,12 +2797,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2636,12 +2813,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2661,7 +2838,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2687,7 +2864,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2709,7 +2886,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2735,7 +2912,7 @@ Double click on it to add his name on text writer. - + Friends 友達 @@ -2795,7 +2972,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2811,7 +2988,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2863,45 +3040,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. ć‚Øćƒ©ćƒ¼: ćƒ”ć‚¢č©³ē“°ć‚’å–å¾—ć§ćć¾ć›ć‚“. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2911,7 +3088,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2993,17 +3170,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3023,7 +3195,7 @@ Double click on it to add his name on text writer. - + with @@ -3045,6 +3217,10 @@ Double click on it to add his name on text writer. Open Cert of your friend from File + + Browse + ćƒ–ćƒ©ć‚¦ć‚ŗ + RetroShare ID @@ -3091,7 +3267,7 @@ Double click on it to add his name on text writer. Eピール - + @@ -3107,12 +3283,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: 名前: @@ -3122,17 +3298,17 @@ Double click on it to add his name on text writer. 堓所: - + Options - + <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: @@ -3142,7 +3318,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3167,22 +3343,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3202,27 +3368,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3268,17 +3439,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed čØ¼ę˜Žę›øć®čŖ­ćæč¾¼ćæć«å¤±ę•— - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3298,12 +3469,12 @@ 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? - + @@ -3311,7 +3482,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3351,7 +3522,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3376,7 +3547,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3386,7 +3557,11 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Save as... + åå‰ć‚’ä»˜ć‘ć¦äæå­˜ + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3425,7 +3600,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3435,7 +3610,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3460,7 +3635,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3473,7 +3648,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3508,7 +3683,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3518,7 +3693,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3583,7 +3763,7 @@ even if you don't make friends. - + UDP Setup @@ -3611,7 +3791,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3621,20 +3801,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3644,14 +3821,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3661,8 +3836,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3687,7 +3861,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3979,7 +4153,7 @@ p, li { white-space: pre-wrap; } - + @@ -3987,8 +4161,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! @@ -3998,7 +4171,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4034,12 +4207,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4059,7 +4232,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4079,18 +4252,18 @@ p, li { white-space: pre-wrap; } - + Cancel ć‚­ćƒ£ćƒ³ć‚»ćƒ« - + Nickname - + Invited Members @@ -4105,7 +4278,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + ć‚æć‚¤ćƒ— + + + Name: 名前: @@ -4145,19 +4326,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4167,24 +4348,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add 追加 @@ -4194,7 +4363,7 @@ p, li { white-space: pre-wrap; } - + Search 検瓢 @@ -4247,13 +4416,13 @@ p, li { white-space: pre-wrap; } - + Create 作成 - + Add Member @@ -4272,7 +4441,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4307,7 +4476,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4317,7 +4486,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4377,6 +4546,10 @@ p, li { white-space: pre-wrap; } Add Channel Thumbnail + + Subject : + 件名: + @@ -4462,17 +4635,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4497,12 +4670,7 @@ p, li { white-space: pre-wrap; } ä»¶åć‚’čæ½åŠ ć—ć¦ćć ć•ć„ - - Cannot publish post - - - - + Load thumbnail picture @@ -4517,12 +4685,18 @@ p, li { white-space: pre-wrap; } éžč”Øē¤ŗ - + + 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? @@ -4556,7 +4730,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,6 +4739,10 @@ p, li { white-space: pre-wrap; } Forum + + Subject + 件名 + Attach File @@ -4585,8 +4763,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4605,7 +4783,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4635,17 +4813,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title ć‚æć‚¤ćƒˆćƒ« @@ -4698,7 +4876,7 @@ Do you want to discard this message? ē”»åƒćƒ•ć‚”ć‚¤ćƒ«ć‚’é–‹ć - + No compatible ID for this forum @@ -4708,8 +4886,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4718,6 +4896,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? + + Send + 送俔 + Post as @@ -4732,7 +4914,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4767,7 +4949,7 @@ Do you want to discard this message? - + Create 作成 @@ -4777,7 +4959,7 @@ Do you want to discard this message? ć‚­ćƒ£ćƒ³ć‚»ćƒ« - + require PGP-signed identities @@ -4792,7 +4974,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4813,7 +4995,7 @@ Do you want to discard this message? - + Identity to use: @@ -4821,17 +5003,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: 名前: - + Location: 堓所: @@ -4841,12 +5023,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4866,7 +5048,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4876,7 +5063,7 @@ Do you want to discard this message? - + Other Information @@ -4886,12 +5073,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4901,7 +5093,7 @@ Do you want to discard this message? - + Export Identity @@ -4971,33 +5163,33 @@ and use the import button to load it - + TextLabel ćƒ©ćƒ™ćƒ« - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5087,7 +5279,7 @@ and use the import button to load it DLListDelegate - + B @@ -5755,7 +5947,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5763,38 +5955,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5802,12 +5994,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5969,7 +6161,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5979,7 +6171,7 @@ and use the import button to load it - + Audio @@ -6039,21 +6231,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6175,7 +6357,7 @@ and use the import button to load it - + ID ID @@ -6217,7 +6399,7 @@ and use the import button to load it - + Group @@ -6253,7 +6435,7 @@ and use the import button to load it - + Search 検瓢 @@ -6269,7 +6451,7 @@ and use the import button to load it - + Profile details @@ -6506,7 +6688,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6544,7 +6726,7 @@ at least one peer was not added to a group - + Mark all @@ -6555,132 +6737,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - 名前 - - - - Node ID - - - - - Address - - - - - Status - ēŠ¶ę…‹ - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6763,38 +6829,33 @@ Also check your ports! ćƒ•ć‚©ćƒ³ćƒˆć‚’ćƒ‡ćƒ•ć‚©ćƒ«ćƒˆć«ęˆ»ć™ - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6812,17 +6873,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters ć™ć¹ć¦ć®ćƒ•ć‚£ćƒ¼ćƒ«ćƒ‰ćÆęœ€ä½Ž3ę–‡å­—ä»„äøŠåæ…č¦ć§ć™ @@ -6832,12 +6883,17 @@ Also check your ports! - + Port ćƒćƒ¼ćƒˆ - + + Use BOB + + + + This password is for PGP @@ -6858,38 +6914,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6909,12 +6965,12 @@ Also check your ports! - + <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 @@ -6924,43 +6980,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 ćƒ©ćƒ™ćƒ« - + 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> @@ -7004,13 +7055,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7020,7 +7071,7 @@ and use the import button to load it - + Tor/I2P address @@ -7055,7 +7106,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7065,7 +7116,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7075,7 +7131,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7301,13 +7362,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7317,57 +7392,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7375,45 +7432,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7438,7 +7499,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7488,12 +7549,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7617,7 +7678,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7625,7 +7686,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7795,7 +7856,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title ć‚æć‚¤ćƒˆćƒ« @@ -7808,12 +7869,12 @@ p, li { white-space: pre-wrap; } - + Description čŖ¬ę˜Ž - + Number of Unread message @@ -7838,7 +7899,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7853,14 +7914,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post ęœ€ę–°ć®ęŠ•ēØæ - + Name 名前 @@ -7871,13 +7932,17 @@ p, li { white-space: pre-wrap; } äŗŗę°—åŗ¦ - + Never - + Display + 蔨示 + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7890,7 +7955,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8026,7 +8091,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8037,22 +8102,22 @@ p, li { white-space: pre-wrap; } ćƒćƒ£ćƒ³ćƒćƒ«ć‚’ä½œęˆ - + Enable Auto-Download č‡Ŗå‹•ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ęœ‰åŠ¹ - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels č³¼čŖ­ęøˆćæć®ćƒćƒ£ćƒ³ćƒćƒ« @@ -8072,12 +8137,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download č‡Ŗå‹•ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ē„”åŠ¹ - + Set download directory @@ -8112,22 +8177,22 @@ p, li { white-space: pre-wrap; } - + Play å†ē”Ÿ - + Open folder - + Open file - + Error @@ -8147,17 +8212,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8167,10 +8232,25 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + ćƒ•ć‚©ćƒ¼ćƒ  + + + Title + ć‚æć‚¤ćƒˆćƒ« + + + Status + ēŠ¶ę…‹ + + GxsChannelGroupDialog - + Create New Channel @@ -8208,19 +8288,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - ćƒ©ćƒ™ćƒ« - - - - Subscribe this Channel - + + Subscribe to Channel + ćƒćƒ£ćƒ³ćƒćƒ«ć‚’č³¼čŖ­ @@ -8234,7 +8304,7 @@ p, li { white-space: pre-wrap; } - + Expand 展開 @@ -8249,7 +8319,7 @@ p, li { white-space: pre-wrap; } ćƒćƒ£ćƒ³ćƒćƒ«ć®čŖ¬ę˜Ž - + Loading ćƒ­ćƒ¼ćƒ‰äø­ @@ -8264,9 +8334,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + ę–°č¦ćƒćƒ£ćƒ³ćƒćƒ« @@ -8277,7 +8346,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8298,7 +8367,7 @@ p, li { white-space: pre-wrap; } - + Play å†ē”Ÿ @@ -8360,18 +8429,18 @@ p, li { white-space: pre-wrap; } éžč”Øē¤ŗ - + New ę–°č¦ - + 0 0 - - + + Comment ć‚³ćƒ”ćƒ³ćƒˆ @@ -8386,17 +8455,21 @@ p, li { white-space: pre-wrap; } - + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + + Loading... - + Comments - + Post @@ -8421,16 +8494,51 @@ p, li { white-space: pre-wrap; } ćƒ”ćƒ‡ć‚£ć‚¢ć‚’å†ē”Ÿ + + GxsChannelPostsWidget + + Post to Channel + ćƒćƒ£ćƒ³ćƒćƒ«ć«ęŠ•ēØæ + + + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + + Title + ć‚æć‚¤ćƒˆćƒ« + + + No Channel Selected + ćƒćƒ£ćƒ³ćƒćƒ«ćŒéøęŠžć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚ + + + Disable Auto-Download + č‡Ŗå‹•ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ē„”åŠ¹ + + + Enable Auto-Download + č‡Ŗå‹•ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ęœ‰åŠ¹ + + + Files + ćƒ•ć‚”ć‚¤ćƒ« + + + Description: + čŖ¬ę˜Ž + + GxsChannelPostsWidgetWithModel - + Post to Channel ćƒćƒ£ćƒ³ćƒćƒ«ć«ęŠ•ēØæ - + Add new post @@ -8500,7 +8608,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8536,7 +8644,7 @@ p, li { white-space: pre-wrap; } - + Comments ć‚³ćƒ”ćƒ³ćƒˆ @@ -8551,13 +8659,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8572,7 +8680,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8587,7 +8695,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8647,22 +8755,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8737,13 +8835,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8794,17 +8891,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel ćƒ©ćƒ™ćƒ« - + Circle name: - + Accept @@ -8919,7 +9016,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8932,7 +9029,7 @@ p, li { white-space: pre-wrap; } ćƒ•ć‚©ćƒ¼ćƒ  - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8962,7 +9059,7 @@ p, li { white-space: pre-wrap; } - + Comment ć‚³ćƒ”ćƒ³ćƒˆ @@ -9001,7 +9098,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9025,21 +9122,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9049,7 +9131,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; } @@ -9078,7 +9160,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9109,7 +9191,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9160,7 +9242,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9176,7 +9258,7 @@ before you can comment - + Expand 展開 @@ -9196,9 +9278,8 @@ before you can comment - - TextLabel - ćƒ©ćƒ™ćƒ« + Loading + ćƒ­ćƒ¼ćƒ‰äø­ @@ -9229,13 +9310,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9246,7 +9327,7 @@ before you can comment - + Expand 展開 @@ -9266,17 +9347,21 @@ before you can comment - + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + + Loading... - + Forum Feed - + Hide éžč”Øē¤ŗ @@ -9289,66 +9374,63 @@ before you can comment ćƒ•ć‚©ćƒ¼ćƒ  - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + Last Post + ęœ€ę–°ć®ęŠ•ēØæ + + + New Thread + + + Threaded View + + + + + Flat View + + - + Title ć‚æć‚¤ćƒˆćƒ« - - + + Date ęœŸę—„ - + Author - + + Save image + + + + Loading ćƒ­ćƒ¼ćƒ‰äø­ - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9358,7 +9440,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9398,23 +9485,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9457,12 +9544,16 @@ before you can comment RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - + Hide éžč”Øē¤ŗ - + Expand + 展開 + + + [unknown] @@ -9492,8 +9583,8 @@ before you can comment - - + + Distribution @@ -9576,12 +9667,12 @@ before you can comment - + New thread - + Edit @@ -9642,7 +9733,7 @@ before you can comment - + Show column @@ -9662,7 +9753,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9714,7 +9805,7 @@ This message is missing. You should receive it later. - + No result. @@ -9724,7 +9815,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9739,7 +9830,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9805,12 +9896,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9841,16 +9932,23 @@ This message is missing. You should receive it later. + + GxsForumsFillThread + + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + GxsGroupDialog - + Name 名前 - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9861,12 +9959,12 @@ This message is missing. You should receive it later. - + Description čŖ¬ę˜Ž - + Message Distribution @@ -9874,7 +9972,7 @@ This message is missing. You should receive it later. - + Public ćƒ‘ćƒ–ćƒŖćƒƒć‚Æ @@ -9934,7 +10032,7 @@ This message is missing. You should receive it later. - + Comments: ć‚³ćƒ”ćƒ³ćƒˆ: @@ -9957,7 +10055,7 @@ This message is missing. You should receive it later. - + All People @@ -9973,12 +10071,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9995,23 +10093,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10027,28 +10125,22 @@ This message is missing. You should receive it later. åå‰ć‚’čæ½åŠ ć—ć¦ćć ć•ć„ - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: ꉀ꜉者: @@ -10058,12 +10150,12 @@ This message is missing. You should receive it later. - + Info ęƒ…å ± - + ID ID @@ -10073,7 +10165,7 @@ This message is missing. You should receive it later. ęœ€ę–°ć®ęŠ•ēØæ - + <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> @@ -10148,12 +10240,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity äŗŗę°—åŗ¦ @@ -10169,22 +10256,27 @@ This message is missing. You should receive it later. - + Created - + Cancel ć‚­ćƒ£ćƒ³ć‚»ćƒ« - + Create 作成 - + + Author + + + + GxsIdLabel @@ -10192,7 +10284,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading ćƒ­ćƒ¼ćƒ‰äø­ @@ -10252,7 +10344,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10309,12 +10401,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ @@ -10337,7 +10429,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10350,14 +10442,18 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + + Not found - - + + [Banned] @@ -10367,7 +10463,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10377,12 +10473,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10402,14 +10493,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10421,7 +10504,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10469,13 +10552,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + Loading... @@ -10856,7 +10943,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10872,7 +10959,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10891,7 +10978,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10965,7 +11052,7 @@ p, li { white-space: pre-wrap; } ćƒ•ć‚©ćƒ¼ćƒ  - + Add friend @@ -10975,7 +11062,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11003,7 +11090,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11013,7 +11100,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11023,7 +11110,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11043,37 +11130,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11085,12 +11148,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11105,7 +11168,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... åå‰ć‚’ä»˜ć‘ć¦äæå­˜ @@ -11370,14 +11438,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11387,12 +11455,12 @@ p, li { white-space: pre-wrap; } 検瓢 - + Anonymous Id - + Create new Identity @@ -11402,7 +11470,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11417,27 +11485,27 @@ p, li { white-space: pre-wrap; } - + Close 閉恘悋 - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11453,39 +11521,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11505,20 +11563,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11528,78 +11584,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11610,17 +11666,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 @@ -11635,24 +11691,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11667,12 +11723,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11682,7 +11733,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11757,7 +11808,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11787,7 +11838,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11802,7 +11853,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11850,7 +11901,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. @@ -11858,7 +11909,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11901,7 +11952,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11981,7 +12032,7 @@ These identities will soon be not supported anymore. - + information @@ -11997,12 +12048,17 @@ 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> + + + + positive @@ -12107,7 +12163,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12157,21 +12213,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12181,7 +12237,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12196,7 +12252,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12211,12 +12267,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12236,12 +12292,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12251,7 +12307,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12259,7 +12315,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12289,13 +12345,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12309,7 +12359,7 @@ These identities will soon be not supported anymore. - + @@ -12319,12 +12369,7 @@ These identities will soon be not supported anymore. N/A - - No avatar chosen - - - - + Edit identity @@ -12335,27 +12380,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12375,7 +12420,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12385,18 +12430,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12406,7 +12445,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12416,7 +12460,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12426,15 +12470,10 @@ These identities will soon be not supported anymore. ć‚æć‚¤ćƒ— - + Choose image... - - - Remove - 削除 - @@ -12460,7 +12499,7 @@ These identities will soon be not supported anymore. 追加 - + Create 作成 @@ -12470,13 +12509,13 @@ These identities will soon be not supported anymore. ć‚­ćƒ£ćƒ³ć‚»ćƒ« - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12486,7 +12525,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12560,7 +12599,7 @@ These identities will soon be not supported anymore. - + Copy @@ -12570,12 +12609,12 @@ These identities will soon be not supported anymore. 削除 - + %1 's Message History - + Mark all @@ -12594,38 +12633,26 @@ These identities will soon be not supported anymore. Quote + + Send + 送俔 + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12643,32 +12670,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - ēŠ¶ę…‹: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12689,12 +12711,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12703,31 +12720,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12737,7 +12749,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12765,7 +12777,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12781,8 +12793,7 @@ These identities will soon be not supported anymore. - - + Options @@ -12803,7 +12814,7 @@ These identities will soon be not supported anymore. - + Quit 終了 @@ -12814,12 +12825,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12844,12 +12855,11 @@ These identities will soon be not supported anymore. - Status ēŠ¶ę…‹ - + Notify @@ -12860,35 +12870,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help ćƒ˜ćƒ«ćƒ— - - + Minimize - + Maximize @@ -12903,12 +12909,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message @@ -12938,7 +12939,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12958,7 +12959,7 @@ These identities will soon be not supported anymore. - + Make sure this link has not been forged to drag you to a malicious website. @@ -13003,13 +13004,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13024,7 +13024,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13033,17 +13033,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13079,12 +13079,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13099,32 +13099,32 @@ These identities will soon be not supported anymore. 太字 - + Italic ę–œä½“ - + Alignment - + Add an Image - + Sets text font to code style - + Underline äø‹ē·š - + Subject: @@ -13135,32 +13135,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13230,7 +13230,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13270,7 +13270,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13290,18 +13290,18 @@ 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? @@ -13312,17 +13312,7 @@ Do you want to save message to draft box? RetroSharećƒŖćƒ³ć‚Æć‚’č²¼ć‚Šä»˜ć‘ - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13342,7 +13332,7 @@ Do you want to save message to draft box? - + Original Message @@ -13352,21 +13342,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13381,7 +13371,7 @@ Do you want to save message to draft box? - + Re: @@ -13391,30 +13381,30 @@ Do you want to save message to draft box? - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13529,13 +13519,13 @@ Do you want to save message to draft box? 詳瓰 - + Open File... ćƒ•ć‚”ć‚¤ćƒ«ć‚’é–‹ć... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13555,7 +13545,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13576,7 +13566,7 @@ Do you want to save message ? ć•ć‚‰ć«ćƒ•ć‚”ć‚¤ćƒ«ć‚’čæ½åŠ  - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13606,18 +13596,18 @@ Do you want to save message ? - - + + Close 閉恘悋 - + From: - + Bullet list (disc) @@ -13657,13 +13647,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13673,12 +13663,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: @@ -13756,7 +13746,7 @@ Do you want to save message ? - + A new tab @@ -13766,7 +13756,7 @@ Do you want to save message ? - + Edit Tag @@ -13789,7 +13779,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13797,7 +13787,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13825,7 +13815,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13835,37 +13825,37 @@ Do you want to save message ? - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13905,7 +13895,7 @@ Do you want to save message ? - + Send Invite @@ -13957,7 +13947,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13967,12 +13957,12 @@ Do you want to save message ? - + View source - + No subject @@ -13982,22 +13972,17 @@ Do you want to save message ? ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14006,24 +13991,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14038,12 +14013,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14065,6 +14040,10 @@ Do you want to save message ? Compose + + Forward + 進む + Print @@ -14143,7 +14122,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14153,16 +14132,24 @@ Do you want to save message ? - + Print + 印刷 + + + Display + 蔨示 + + + - - + + Tags - - + + Inbox @@ -14192,17 +14179,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14233,7 +14220,7 @@ Do you want to save message ? - + Subject 件名 @@ -14243,7 +14230,7 @@ Do you want to save message ? - + Date ęœŸę—„ @@ -14253,7 +14240,7 @@ Do you want to save message ? - + Search Subject @@ -14262,16 +14249,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14298,12 +14275,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14379,7 +14356,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14393,7 +14370,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14408,28 +14385,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14464,17 +14431,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14528,7 +14485,7 @@ Do you want to save message ? - + Expand 展開 @@ -14538,7 +14495,7 @@ Do you want to save message ? ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ - + from @@ -14573,7 +14530,7 @@ Do you want to save message ? - + Hide éžč”Øē¤ŗ @@ -14714,7 +14671,7 @@ Do you want to save message ? ćƒ”ć‚¢ ID - + Remove unused keys... @@ -14724,7 +14681,7 @@ Do you want to save message ? - + Clean keyring @@ -14738,13 +14695,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14777,13 +14728,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14793,12 +14749,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14831,7 +14787,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14852,7 +14808,7 @@ Reported error: - + Groups @@ -14882,19 +14838,19 @@ Reported error: - - + + Search 検瓢 - + ID ID - + Search ID @@ -14904,12 +14860,12 @@ Reported error: - + Show Items - + Last contact @@ -14919,7 +14875,7 @@ Reported error: - + Group @@ -15034,7 +14990,7 @@ Reported error: - + Do you want to remove this node? @@ -15044,7 +15000,7 @@ Reported error: - + Done! @@ -15151,7 +15107,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15166,7 +15122,7 @@ at least one peer was not added to a group - + Newest on top @@ -15176,12 +15132,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15419,7 +15375,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15439,12 +15395,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15459,7 +15415,7 @@ at least one peer was not added to a group - + Test @@ -15470,19 +15426,17 @@ at least one peer was not added to a group - 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). @@ -15490,7 +15444,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15629,12 +15583,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15679,7 +15628,12 @@ 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> @@ -15725,21 +15679,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. ć‚Øćƒ©ćƒ¼: ćƒ”ć‚¢č©³ē“°ć‚’å–å¾—ć§ćć¾ć›ć‚“. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15757,7 +15711,7 @@ 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. @@ -15826,6 +15780,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + ćŠćć‚‰ććƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćŒé–“é•ć£ć¦ć„ć¾ć™ + You haven't set a trust level for this key. @@ -15833,12 +15791,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15864,7 +15822,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat チャット @@ -15885,7 +15843,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ - + Name: 名前: @@ -15925,7 +15883,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message ćƒ”ćƒƒć‚»ćƒ¼ć‚øć‚’ä½œęˆ @@ -15983,7 +15941,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.éžč”Øē¤ŗ - + Send Message @@ -16150,6 +16108,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + ćƒ•ć‚©ćƒ¼ćƒ  + + PhotoDialog @@ -16162,6 +16127,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.TextLabel ćƒ©ćƒ™ćƒ« + + Comment + ć‚³ćƒ”ćƒ³ćƒˆ + Album / Photo Name @@ -16222,6 +16191,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + ć‚³ćƒ”ćƒ³ćƒˆć‚’čæ½åŠ  + Album @@ -16301,17 +16274,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16340,7 +16313,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16399,19 +16372,19 @@ requesting to edit it! - - + + TextLabel ćƒ©ćƒ™ćƒ« - + Posted by - + ago @@ -16447,12 +16420,12 @@ requesting to edit it! PluginItem - + TextLabel ćƒ©ćƒ™ćƒ« - + Show more details about this plugin @@ -16594,6 +16567,10 @@ p, li { white-space: pre-wrap; } Plugin look-up directories + + [disabled] + <ē„”åŠ¹> + Plugins @@ -16663,27 +16640,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16736,7 +16698,7 @@ p, li { white-space: pre-wrap; } ę–°č¦ - + Vote up @@ -16756,8 +16718,8 @@ p, li { white-space: pre-wrap; } - - + + Comments ć‚³ćƒ”ćƒ³ćƒˆ @@ -16782,13 +16744,13 @@ p, li { white-space: pre-wrap; } - - + + Comment ć‚³ćƒ”ćƒ³ćƒˆ - + Comments @@ -16816,12 +16778,16 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Notes + ピモ + + + Create a new Post - + RetroShare RetroShare @@ -16836,22 +16802,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File ē”»åƒćƒ•ć‚”ć‚¤ćƒ«ć‚’é–‹ć - + Post image @@ -16867,17 +16823,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16887,7 +16833,11 @@ p, li { white-space: pre-wrap; } - + Submit + ęŠ•ēØæ + + + Please add a Title ć‚æć‚¤ćƒˆćƒ«ć‚’čæ½åŠ ć—ć¦ćć ć•ć„ @@ -16907,22 +16857,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16937,7 +16877,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16948,7 +16888,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16958,7 +16898,7 @@ p, li { white-space: pre-wrap; } ć‚æć‚¤ćƒˆćƒ« - + Link ćƒŖćƒ³ć‚Æ @@ -16966,12 +16906,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17005,7 +16945,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17043,17 +16983,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - ćƒ©ćƒ™ćƒ« - - - + Subscribe to Posted @@ -17069,7 +16999,7 @@ p, li { white-space: pre-wrap; } - + Expand 展開 @@ -17084,17 +17014,16 @@ p, li { white-space: pre-wrap; } - + Loading + ćƒ­ćƒ¼ćƒ‰äø­ + + + Loading... - - Never - - - - + New Board @@ -17107,18 +17036,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + + Comments ć‚³ćƒ”ćƒ³ćƒˆ - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ @@ -17129,12 +17058,12 @@ p, li { white-space: pre-wrap; } - + Comment ć‚³ćƒ”ćƒ³ćƒˆ - + Comments @@ -17144,7 +17073,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17154,17 +17083,17 @@ p, li { white-space: pre-wrap; } éžč”Øē¤ŗ - + Vote up - + Vote down - + Set as read and remove item @@ -17174,7 +17103,7 @@ p, li { white-space: pre-wrap; } ę–°č¦ - + New Comment: @@ -17184,7 +17113,7 @@ p, li { white-space: pre-wrap; } - + Name 名前 @@ -17225,11 +17154,50 @@ p, li { white-space: pre-wrap; } ćƒ©ćƒ™ćƒ« - + Loading ćƒ­ćƒ¼ćƒ‰äø­ + + PostedListWidget + + Form + ćƒ•ć‚©ćƒ¼ćƒ  + + + New + ę–°č¦ + + + Today + 今ꗄ + + + Yesterday + ę˜Øę—„ + + + This Week + 今週 + + + This Month + 今月 + + + This Year + 今幓 + + + RetroShare + RetroShare + + + 1-10 + 1-10 + + PostedListWidgetWithModel @@ -17248,17 +17216,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17268,15 +17226,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17286,42 +17244,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel ćƒ©ćƒ™ćƒ« - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17341,7 +17299,7 @@ p, li { white-space: pre-wrap; } - + Search 検瓢 @@ -17371,17 +17329,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17396,17 +17354,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - - Copy http Link - - - - + Show author in People tab @@ -17416,31 +17369,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17455,7 +17404,7 @@ p, li { white-space: pre-wrap; } 購読 - + Never @@ -17529,16 +17478,6 @@ p, li { white-space: pre-wrap; } No Channel Selected ćƒćƒ£ćƒ³ćƒćƒ«ćŒéøęŠžć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚ - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17628,16 +17567,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17745,7 +17684,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17761,7 +17700,7 @@ and use the import button to load it - + Public Information @@ -17796,12 +17735,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17845,27 +17784,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL URL - + GroupLabel - + IDLabel @@ -17875,12 +17814,12 @@ and use the import button to load it - + Head - + Head Shot @@ -17910,13 +17849,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17928,22 +17867,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17958,7 +17887,7 @@ and use the import button to load it - + Reply to Pulse @@ -17973,24 +17902,30 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - ē”»åƒćƒ•ć‚”ć‚¤ćƒ«ć‚’é–‹ć + Date + ęœŸę—„ + + + ... + ... @@ -18001,7 +17936,7 @@ and use the import button to load it ćƒ•ć‚©ćƒ¼ćƒ  - + @@ -18020,7 +17955,7 @@ and use the import button to load it PulseReply - + icn @@ -18030,7 +17965,7 @@ and use the import button to load it - + REPLY @@ -18057,7 +17992,7 @@ and use the import button to load it - + FOLLOW @@ -18067,7 +18002,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18087,7 +18022,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18203,7 +18138,7 @@ and use the import button to load it - + FOLLOW @@ -18211,42 +18146,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18278,7 +18208,7 @@ and use the import button to load it - + FOLLOW @@ -18286,8 +18216,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18555,12 +18485,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18591,7 +18521,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18625,7 +18555,7 @@ The error reported is:" - + Multiple instances @@ -18644,26 +18574,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18743,7 +18653,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18753,7 +18663,7 @@ Reported error is: - + enabled @@ -18763,7 +18673,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18779,7 +18689,7 @@ Reported error is: - + %1 seconds ago @@ -18846,7 +18756,7 @@ Security: no anonymous IDs - + Join chat room @@ -18874,7 +18784,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19054,29 +18964,13 @@ Security: no anonymous IDs Ban list - - - Name - 名前 - - Node - - - - - Address - - - - - Status ēŠ¶ę…‹ - + NXS @@ -19319,18 +19213,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19470,7 +19352,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19637,7 +19519,7 @@ p, li { white-space: pre-wrap; } ćƒ•ć‚©ćƒ¼ćƒ  - + The loading of embedded images is blocked. @@ -19650,7 +19532,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19823,22 +19705,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19846,12 +19718,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20539,7 +20411,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name 名前 @@ -20660,7 +20532,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name 名前 @@ -20680,7 +20552,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20736,7 +20608,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20750,6 +20622,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20763,11 +20640,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20790,17 +20662,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20824,9 +20691,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20847,7 +20712,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. äæå­˜ć•ć‚ŒćŸ Retoroshare ć®čØ­å®šć‚’ć™ć¹ć¦ćƒŖć‚»ćƒƒćƒˆ. @@ -20908,7 +20773,7 @@ prevents the message to be forwarded to your friends. Retoroshare ć®čØ€čŖžć‚’čØ­å®š. - + Unable to open log file '%1': %2 ćƒ­ć‚°ćƒ•ć‚”ć‚¤ćƒ« '%1" ćŒé–‹ć‘ć¾ć›ć‚“: %2 @@ -20929,7 +20794,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20959,7 +20824,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20977,7 +20842,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20994,12 +20859,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21060,7 +20925,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21075,7 +20940,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21175,23 +21040,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ - + Copy RetroShare Link RetroSharećƒŖćƒ³ć‚Æć‚’ć‚³ćƒ”ćƒ¼ - + Send RetroShare Link @@ -21201,7 +21066,7 @@ prevents the message to be forwarded to your friends. - + Download Notice ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ @@ -21238,7 +21103,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21249,17 +21114,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21279,7 +21144,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21287,7 +21152,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21303,22 +21168,22 @@ prevents the message to be forwarded to your friends. ć‚¢ć‚¤ćƒ†ćƒ ć‚’å‰Šé™¤ - + IP address: - + Peer ID: - + Location: 堓所: - + Peer Name: @@ -21335,7 +21200,7 @@ prevents the message to be forwarded to your friends. éžč”Øē¤ŗ - + but reported: @@ -21360,8 +21225,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21369,7 +21234,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21400,7 +21265,7 @@ prevents the message to be forwarded to your friends. - + Expand 展開 @@ -21445,12 +21310,12 @@ prevents the message to be forwarded to your friends. ēŠ¶ę…‹: - + Write Message ćƒ”ćƒƒć‚»ćƒ¼ć‚øć‚’ä½œęˆ - + Connect Attempt @@ -21470,12 +21335,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21485,17 +21355,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide éžč”Øē¤ŗ @@ -21505,7 +21365,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21515,12 +21375,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21579,12 +21439,12 @@ prevents the message to be forwarded to your friends. - + Local Address ćƒ­ćƒ¼ć‚«ćƒ« ć‚¢ćƒ‰ćƒ¬ć‚¹ - + NAT @@ -21605,22 +21465,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21633,16 +21493,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21652,46 +21517,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21701,7 +21543,7 @@ List of found external IP: - + I2P Address @@ -21726,95 +21568,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21829,7 +21613,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21839,7 +21687,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21851,12 +21714,12 @@ 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> @@ -21866,7 +21729,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21881,23 +21744,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21908,7 +21771,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21918,7 +21791,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21928,7 +21806,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21968,7 +21856,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21983,7 +21871,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming å—äæ” @@ -22019,32 +21912,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22099,7 +21967,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22124,7 +21992,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22136,7 +22004,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22159,7 +22027,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status ēŠ¶ę…‹ @@ -22219,28 +22087,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22256,18 +22113,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22302,12 +22159,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22330,22 +22187,22 @@ 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> @@ -22380,7 +22237,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22390,12 +22247,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22475,7 +22332,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22485,12 +22342,12 @@ 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. @@ -22509,7 +22366,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22529,17 +22386,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel ć‚­ćƒ£ćƒ³ć‚»ćƒ« - + Add a Share Directory @@ -22549,7 +22406,7 @@ Select the Friends with which you want to Share your Channel. 削除 - + Apply and close @@ -22640,7 +22497,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. @@ -22648,7 +22505,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files ćƒ•ć‚”ć‚¤ćƒ« @@ -22699,16 +22556,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22718,7 +22570,7 @@ Select the Friends with which you want to Share your Channel. ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ - + Copy retroshare Links to Clipboard @@ -22733,7 +22585,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22749,7 +22601,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22774,7 +22626,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22917,12 +22769,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22946,7 +22798,7 @@ Select the Friends with which you want to Share your Channel. - + Log In ćƒ­ć‚°ć‚¤ćƒ³ @@ -23285,7 +23137,7 @@ This choice can be reverted in settings. - + Message: @@ -23522,7 +23374,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23558,15 +23410,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23576,13 +23425,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23592,57 +23446,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23650,7 +23459,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23660,7 +23469,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23671,12 +23480,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23704,7 +23512,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23715,7 +23523,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23725,27 +23533,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23830,7 +23633,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23839,12 +23642,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23869,12 +23667,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23939,7 +23732,12 @@ 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> @@ -23949,17 +23747,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23987,7 +23775,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24015,19 +23803,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name 名前 @@ -24234,12 +24022,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> - - - - + Move in Queue... @@ -24264,7 +24047,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24285,7 +24068,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24318,17 +24101,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24343,7 +24116,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24470,18 +24243,23 @@ 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> + + + + Columns - + File Transfers - + Path @@ -24491,7 +24269,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24501,7 +24279,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24516,7 +24294,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24526,7 +24304,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24940,17 +24718,12 @@ p, li { white-space: pre-wrap; } ćƒ•ć‚©ćƒ¼ćƒ  - + Enable Retroshare WEB Interface - - Status: - ēŠ¶ę…‹: - - - + Web parameters @@ -24990,27 +24763,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25020,12 +24783,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25162,7 +24925,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25177,7 +24940,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25265,7 +25028,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25300,7 +25063,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25330,18 +25093,14 @@ p, li { white-space: pre-wrap; } - - History - 屄歓 - - - + + Show Edit History - + Status ēŠ¶ę…‹ @@ -25362,7 +25121,7 @@ p, li { white-space: pre-wrap; } - + Submit ęŠ•ēØæ @@ -25445,7 +25204,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25460,7 +25228,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25480,7 +25248,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25510,17 +25278,29 @@ p, li { white-space: pre-wrap; } - + Today + 今ꗄ + + + New + ę–°č¦ + + + Yourself + + Friends + 友達 + Following - + RetroShare RetroShare @@ -25583,42 +25363,35 @@ p, li { white-space: pre-wrap; } ćƒ•ć‚©ćƒ¼ćƒ  - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - 削除 - - - Location: 堓所: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25663,41 +25436,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25775,7 +25518,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25812,7 +25555,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_ko.ts b/retroshare-gui/src/lang/retroshare_ko.ts index 927baa9e7..d3aa306a1 100644 --- a/retroshare-gui/src/lang/retroshare_ko.ts +++ b/retroshare-gui/src/lang/retroshare_ko.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + 설명 추가 + + AddFileAssociationDialog @@ -122,12 +129,12 @@ 레트딜 쉐얓: ź³ źø‰ ź²€ģƒ‰ - + Search Criteria ź²€ģƒ‰ 문구 - + Add a further search criterion. ź²€ģƒ‰ 문구 ė” ģ¶”ź°€ķ•©ė‹ˆė‹¤. @@ -137,7 +144,7 @@ ź²€ģƒ‰ 문구넼 ģ“ˆźø°ķ™”ķ•©ė‹ˆė‹¤. - + Cancels the search. ź²€ģƒ‰ģ„ ģ·Øģ†Œķ•©ė‹ˆė‹¤. @@ -157,6 +164,177 @@ ź²€ģƒ‰ + + AlbumCreateDialog + + 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) + 그림 크기 씰절(< 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;"> +<p style=" margin-top:0px; 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;"> ź·øė¦¼ģ„ ģ¶”ź°€ķ•˜ė ¤ė©“ ėŒģ–“ė‹¤ė†“ģœ¼ģ‹­ģ‹œģ˜¤. ķ•˜ė‹Ø 세부 정볓넼 ķŽøģ§‘ķ•˜ė ¤ė©“ ź·øė¦¼ģ„ ėˆ„ė„“ģ‹­ģ‹œģ˜¤.</span></p></body></html> + + + Back + ė’¤ė”œ + + + Add Photos + 사진 추가 + + + Publish Album + 앨범 ź²Œģ‹œ + + + Untitle Album + 제목 ģ—†ėŠ” 앨범 + + + Say something about this album... + ģ“ ģ•Øė²”ģ˜ ģ„¤ėŖ…ģ„ ģ ģœ¼ģ„øģš”... + + + Where were these taken? + ģ–“ė””ģ„œ ģ°ģ—ˆģ„ź¹Œģš”? + + + Load Album Thumbnail + 앨범 미리 볓기 그림 불러오기 + + AlbumDialog @@ -165,11 +343,19 @@ Album 앨범 + + Album Thumbnail + 앨범 미리 볓기 그림 + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” + + Summary + ģš”ģ•½ + Album Title: @@ -185,6 +371,30 @@ Caption ģžė§‰ 설명 + + Where: + ģž„ģ†Œ: + + + When + ģ¼ģ‹œ + + + Description: + 설명: + + + Share Options + 공유 ģ˜µģ…˜ + + + Comments + 설명 + + + Publish Identity + ź²Œģ‹œ 신원 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -545,7 +755,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. @@ -571,23 +781,10 @@ p, li { white-space: pre-wrap; } 사진 - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %pKb @@ -624,13 +821,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + ģ•„ė°”ķƒ€ 추가 + Remove 제거 - + Set your Avatar picture ģ•„ė°”ķƒ€ 사진 설정 @@ -649,6 +850,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + ģ•„ė°”ķƒ€ 불러오기 + AvatarWidget @@ -717,10 +922,22 @@ p, li { white-space: pre-wrap; } ģ“ˆźø°ķ™” - + Receive Rate + ģˆ˜ģ‹ ģœØ + + + Send Rate + ģ†”ģ‹ ģœØ + + + Always on Top ķ•­ģƒ ģœ„ė”œ + + Style + ģŠ¤ķƒ€ģ¼ + Changes the transparency of the Bandwidth Graph @@ -736,11 +953,23 @@ p, li { white-space: pre-wrap; } % Opaque % ķˆ¬ėŖ…ė„ + + Save + ģ €ģž„ + + + Cancel + ģ·Øģ†Œ + Since: ģ‹œģ“ˆ: + + Hide Settings + 설정 숨기기 + BandwidthStatsWidget @@ -813,7 +1042,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment 답글 달기 @@ -843,12 +1072,12 @@ p, li { white-space: pre-wrap; } 레트딜 쉐얓 링크 복사 - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -856,7 +1085,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -876,7 +1105,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -914,7 +1143,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -934,7 +1163,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -964,7 +1193,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -974,7 +1203,7 @@ p, li { white-space: pre-wrap; } - + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” @@ -982,12 +1211,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 0 @@ -1007,18 +1236,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 - + Expand ķ™•ģž„ @@ -1033,12 +1262,12 @@ p, li { white-space: pre-wrap; } ķ•­ėŖ© 제거 - + Name ģ“ė¦„ - + Comm value @@ -1207,17 +1436,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General ģ¼ė°˜ @@ -1227,17 +1456,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1245,7 +1464,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1268,7 +1487,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1293,18 +1512,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 - + Expand ķ™•ģž„ @@ -1319,7 +1538,7 @@ into the image, so as to ķ•­ėŖ© 제거 - + Name ģ“ė¦„ @@ -1329,7 +1548,17 @@ into the image, so as to - + + Comment + 답글 달기 + + + + Comments + + + + Hide ģˆØź¹€ @@ -1337,7 +1566,7 @@ into the image, so as to ChatLobbyDialog - + Name ģ“ė¦„ @@ -1528,7 +1757,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby ėŒ€ķ™” ėŒ€źø°ė°© ė³“ģ“źø° @@ -1561,14 +1790,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1576,13 +1804,13 @@ into the image, so as to ChatLobbyWidget - - + + Name ģ“ė¦„ - + Count ź³„ģˆ˜ @@ -1592,7 +1820,29 @@ into the image, so as to 주제 - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1602,7 +1852,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1659,12 +1909,12 @@ 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: @@ -1674,42 +1924,27 @@ Double click a chat room to enter and chat. - + Create chat lobby + ėŒ€ķ™” ėŒ€źø°ė°© ė§Œė“¤źø° + + + [No topic provided] [ģ„¤ģ •ķ•œ ģ£¼ģ œź°€ ģ—†ģŠµė‹ˆė‹¤] - - + Private ź°œģøģš© - - Private Subscribed - - - - - - Public Subscribed - - - - - - + Public 공용 - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1719,22 +1954,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1749,47 +1989,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: ģœ ķ˜•: - + Security: - + Peers: - - - - - - + + + + + + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” @@ -1804,7 +2044,7 @@ Double click a chat room to enter and chat. - + Show ķ‘œģ‹œ @@ -1824,7 +2064,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item ķ•­ėŖ© 제거 @@ -1869,7 +2109,7 @@ Double click a chat room to enter and chat. ChatPage - + General ģ¼ė°˜ @@ -1884,7 +2124,15 @@ Double click a chat room to enter and chat. - + Chat Settings + ėŒ€ķ™” 설정 + + + Enable Emoticons Group Chat + ģ“ėŖØķ‹°ģ½˜ 집단 ėŒ€ķ™” ķ™œģ„±ķ™” + + + Enable custom fonts @@ -1904,7 +2152,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1929,7 +2177,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1938,6 +2186,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + ź°œģø ėŒ€ķ™” + Open Window for new chat @@ -1959,7 +2211,11 @@ Double click a chat room to enter and chat. - + Chat Font + ėŒ€ķ™” 글꼓 + + + Change Chat Font ėŒ€ķ™” 글꼓 바꾸기 @@ -1969,10 +2225,14 @@ Double click a chat room to enter and chat. ėŒ€ķ™” 글꼓: - + History źø°ė” + + Style + ģŠ¤ķƒ€ģ¼ + @@ -1987,13 +2247,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + 집단 ėŒ€ķ™” + Private chat ź°œģø ėŒ€ķ™” - + Choose your default font for Chat. @@ -2063,22 +2327,12 @@ Double click a chat room to enter and chat. - + Search ź²€ģƒ‰ - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2088,17 +2342,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2195,7 +2439,7 @@ Double click a chat room to enter and chat. - + Case sensitive ėŒ€ģ†Œė¬øģž 구분 @@ -2301,7 +2545,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat ėŒ€ķ™” ė³“ģ“źø° @@ -2337,7 +2581,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close ė‹«źø° @@ -2372,12 +2616,12 @@ Double click a chat room to enter and chat. źø°ģšøģž„ - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2457,6 +2701,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2494,7 +2743,7 @@ Double click a chat room to enter and chat. - + is typing... ģž…ė „ģ¤‘ ... @@ -2516,7 +2765,7 @@ after HTML conversion. - + Do you really want to physically delete the history? ģ‹¤ģ œ źø°ė”ģ„ ģ •ė§ė”œ ģ‚­ģ œķ•˜ģ‹œź² ģŠµė‹ˆź¹Œ? @@ -2566,7 +2815,7 @@ after HTML conversion. 다넸 ģš©ė¬“ģ¤‘ģ“ė©° ģ‘ė‹µķ•˜ģ§€ ģ•Šģ„ ģˆ˜ė„ ģžˆģŠµė‹ˆė‹¤ - + Find Case Sensitively @@ -2588,7 +2837,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2603,12 +2852,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2624,12 +2873,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2640,12 +2889,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2665,7 +2914,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2691,7 +2940,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2713,7 +2962,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2739,7 +2988,7 @@ Double click on it to add his name on text writer. - + Friends 친구 @@ -2799,7 +3048,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2815,7 +3064,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2867,45 +3116,45 @@ Double click on it to add his name on text writer. - + RetroShare 레트딜 쉐얓 - + - + Error : cannot get peer details. 오넘 : ė™ė£Œ 세부 정볓넼 ź°€ģ øģ˜¬ 수 ģ—†ģŠµė‹ˆė‹¤ - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2915,7 +3164,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2997,17 +3246,12 @@ Double click on it to add his name on text writer. ģ—†ģŒ - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3027,7 +3271,7 @@ Double click on it to add his name on text writer. - + with @@ -3044,6 +3288,10 @@ Double click on it to add his name on text writer. Connect Friend Wizard 친구 ģ—°ź²° ė§ˆė²•ģ‚¬ + + Include signatures + ģ„œėŖ… ķ¬ķ•Ø + Open Cert of your friend from File @@ -3054,6 +3302,10 @@ Double click on it to add his name on text writer. RetroShare ID 레트딜 쉐얓 ID + + Add Friends RetroShare ID... + 친구 레트딜 쉐얓 ID 추가... + RetroShare is better with Friends @@ -3095,7 +3347,11 @@ Double click on it to add his name on text writer. ģ“ė©”ģ¼ - + Subject: + 제목: + + + @@ -3111,12 +3367,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: ģ“ė¦„: @@ -3126,17 +3382,17 @@ Double click on it to add his name on text writer. 지역: - + Options ģ˜µģ…˜ - + <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: @@ -3146,7 +3402,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3171,22 +3427,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3206,27 +3452,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3272,17 +3523,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed ģ„œėŖ… ė¶ˆėŸ¬ģ˜¤źø°ģ— ģ‹¤ķŒØķ–ˆģŠµė‹ˆė‹¤ - + Not a valid Retroshare certificate! - + RetroShare Invitation 레트딜 쉐얓 ģ“ˆėŒ€ @@ -3302,12 +3553,12 @@ 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? - + @@ -3315,7 +3566,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3355,7 +3606,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3380,7 +3631,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3390,7 +3641,15 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Invite + 레트딜 쉐얓 ģ“ˆėŒ€ + + + Save as... + 다넸 ģ“ė¦„ģœ¼ė”œ ģ €ģž„... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3429,7 +3688,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3439,7 +3698,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3464,7 +3723,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3477,7 +3736,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3512,7 +3771,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3522,7 +3781,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3587,7 +3851,7 @@ even if you don't make friends. - + UDP Setup @@ -3615,7 +3879,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3625,20 +3889,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3648,14 +3909,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3665,8 +3924,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3691,7 +3949,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3983,7 +4241,7 @@ p, li { white-space: pre-wrap; } - + @@ -3991,8 +4249,7 @@ p, li { white-space: pre-wrap; } ģ—†ģŒ - - + UNVERIFIABLE FORWARD! @@ -4002,7 +4259,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4038,12 +4295,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4063,7 +4320,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4083,18 +4340,18 @@ p, li { white-space: pre-wrap; } - + Cancel ģ·Øģ†Œ - + Nickname - + Invited Members @@ -4109,7 +4366,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + ķ˜•ģ‹ + + + Name: ģ“ė¦„: @@ -4149,19 +4414,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare 레트딜 쉐얓 - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4171,24 +4436,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add 추가 @@ -4198,7 +4451,7 @@ p, li { white-space: pre-wrap; } - + Search ź²€ģƒ‰ @@ -4251,13 +4504,13 @@ p, li { white-space: pre-wrap; } - + Create ė§Œė“¤źø° - + Add Member @@ -4276,7 +4529,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4311,7 +4564,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4321,7 +4574,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4381,6 +4634,10 @@ p, li { white-space: pre-wrap; } Add Channel Thumbnail + + Subject : + 제목 : + @@ -4466,17 +4723,17 @@ p, li { white-space: pre-wrap; } - + RetroShare 레트딜 쉐얓 - + This file already in this post: - + Post refers to non shared files @@ -4501,12 +4758,7 @@ p, li { white-space: pre-wrap; } ģ œėŖ©ģ„ ģž…ė „ķ•“ģ£¼ģ‹­ģ‹œģ˜¤ - - Cannot publish post - - - - + Load thumbnail picture @@ -4521,12 +4773,18 @@ p, li { white-space: pre-wrap; } ģˆØź¹€ - + + 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? @@ -4560,7 +4818,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4569,6 +4827,10 @@ p, li { white-space: pre-wrap; } Forum ķ¬ėŸ¼ + + Subject + 제목 + Attach File @@ -4589,8 +4851,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4609,7 +4871,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4639,17 +4901,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title 제목 @@ -4702,7 +4964,7 @@ Do you want to discard this message? 그림 ķŒŒģ¼ 불러오기 - + No compatible ID for this forum @@ -4712,8 +4974,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4722,6 +4984,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? + + Send + 볓낓기 + Post as @@ -4736,7 +5002,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4771,7 +5037,7 @@ Do you want to discard this message? - + Create ė§Œė“¤źø° @@ -4781,7 +5047,7 @@ Do you want to discard this message? ģ·Øģ†Œ - + require PGP-signed identities @@ -4796,7 +5062,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4817,7 +5083,7 @@ Do you want to discard this message? - + Identity to use: @@ -4825,17 +5091,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: ģ“ė¦„: - + Location: 지역: @@ -4845,12 +5111,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4870,7 +5136,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4880,7 +5151,7 @@ Do you want to discard this message? - + Other Information @@ -4890,12 +5161,17 @@ Do you want to discard this message? - + Profile - + + Certificate + ģøģ¦ + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4905,7 +5181,7 @@ Do you want to discard this message? ģ„œėŖ… ķ¬ķ•Ø - + Export Identity @@ -4975,33 +5251,33 @@ and use the import button to load it - + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5091,7 +5367,7 @@ and use the import button to load it DLListDelegate - + B @@ -5759,7 +6035,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5767,38 +6043,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5806,12 +6082,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5973,7 +6249,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5983,7 +6259,7 @@ and use the import button to load it - + Audio @@ -6043,21 +6319,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6179,7 +6445,7 @@ and use the import button to load it - + ID ID @@ -6221,7 +6487,7 @@ and use the import button to load it - + Group @@ -6257,7 +6523,7 @@ and use the import button to load it - + Search ź²€ģƒ‰ @@ -6273,7 +6539,7 @@ and use the import button to load it - + Profile details @@ -6510,7 +6776,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6548,7 +6814,7 @@ at least one peer was not added to a group - + Mark all @@ -6559,132 +6825,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - ģ“ė¦„ - - - - Node ID - - - - - Address - - - - - Status - 상태 - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6767,38 +6917,33 @@ Also check your ports! źø€ź¼“ģ„ 기본으딜 ģž¬ģ„¤ģ • - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6816,17 +6961,7 @@ Also check your ports! ģ•”ķ˜ø - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters ėŖØė“  ė¶„ģ•¼ģ˜ 3 ė¬øģžģ˜ ģµœģ†Œ ķ•„ģš”ķ•©ė‹ˆė‹¤ @@ -6836,12 +6971,17 @@ Also check your ports! - + Port ķ¬ķŠø - + + Use BOB + + + + This password is for PGP @@ -6862,38 +7002,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6913,12 +7053,12 @@ Also check your ports! - + <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 @@ -6928,43 +7068,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + 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> @@ -7008,13 +7143,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7024,7 +7159,7 @@ and use the import button to load it - + Tor/I2P address @@ -7059,7 +7194,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7069,7 +7204,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7079,7 +7219,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7305,13 +7450,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 레트딜 쉐얓에 친구 ģ¶”ź°€ķ•˜źø° @@ -7321,57 +7480,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7379,45 +7520,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7442,7 +7587,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation 레트딜 쉐얓 ģ“ˆėŒ€ @@ -7492,12 +7637,12 @@ p, li { white-space: pre-wrap; } 레트딜 쉐얓 ķ”¼ė“œė°± - + RetroShare Support 레트딜 쉐얓 지원 - + It has many features, including built-in chat, messaging, @@ -7621,7 +7766,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7629,7 +7774,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7799,7 +7944,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title 제목 @@ -7812,12 +7957,12 @@ p, li { white-space: pre-wrap; } - + Description 설명 - + Number of Unread message @@ -7842,7 +7987,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7857,14 +8002,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post ģµœģ‹  ź²Œģ‹œźø€ - + Name ģ“ė¦„ @@ -7875,13 +8020,17 @@ p, li { white-space: pre-wrap; } ģøźø°ė„ - + Never - + Display + ķ‘œģ‹œ + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7894,7 +8043,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8030,7 +8179,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8041,22 +8190,22 @@ p, li { white-space: pre-wrap; } 채널 ė§Œė“¤źø° - + Enable Auto-Download ģžė™ ė‹¤ģš“ė”œė“œ ķ™œģ„±ķ™” - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels ź°€ģž…ķ•œ 채널 @@ -8076,12 +8225,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download ģžė™ ė‹¤ģš“ė”œė“œ ė¹„ķ™œģ„±ķ™” - + Set download directory @@ -8116,22 +8265,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8151,17 +8300,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8171,10 +8320,25 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + ģ–‘ģ‹ + + + Title + 제목 + + + Status + 상태 + + GxsChannelGroupDialog - + Create New Channel @@ -8212,19 +8376,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - ķ…ģŠ¤ķŠø ė ˆģ“ėø” - - - - Subscribe this Channel - + + Subscribe to Channel + 채널에 ź°€ģž… @@ -8238,7 +8392,7 @@ p, li { white-space: pre-wrap; } - + Expand ķ™•ģž„ @@ -8253,7 +8407,7 @@ p, li { white-space: pre-wrap; } 채널 설명 - + Loading ė¶ˆėŸ¬ģ˜¤ėŠ” 중 @@ -8268,9 +8422,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + 새 채널 @@ -8281,7 +8434,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8302,7 +8455,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8364,18 +8517,18 @@ p, li { white-space: pre-wrap; } ģˆØź¹€ - + New 새 źø€ - + 0 0 - - + + Comment 답글 달기 @@ -8390,17 +8543,21 @@ p, li { white-space: pre-wrap; } - + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + + Loading... - + Comments - + Post @@ -8425,16 +8582,55 @@ p, li { white-space: pre-wrap; } 미디얓 ģž¬ģƒ + + GxsChannelPostsWidget + + Post to Channel + 채널에 ź²Œģ‹œķ•˜źø° + + + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + + Title + 제목 + + + Search Title + 제목 ź²€ģƒ‰ + + + No Channel Selected + ģ„ ķƒķ•œ 채널 ģ—†ģŒ + + + Disable Auto-Download + ģžė™ ė‹¤ģš“ė”œė“œ ė¹„ķ™œģ„±ķ™” + + + Enable Auto-Download + ģžė™ ė‹¤ģš“ė”œė“œ ķ™œģ„±ķ™” + + + Feeds + ķ”¼ė“œ + + + Description: + 설명: + + GxsChannelPostsWidgetWithModel - + Post to Channel 채널에 ź²Œģ‹œķ•˜źø° - + Add new post @@ -8504,7 +8700,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8540,7 +8736,7 @@ p, li { white-space: pre-wrap; } - + Comments 설명 @@ -8555,13 +8751,13 @@ p, li { white-space: pre-wrap; } ķ”¼ė“œ - - + + Click to switch to list view - + Show unread posts only @@ -8576,7 +8772,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8591,7 +8787,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8651,22 +8847,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8741,13 +8927,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8798,17 +8983,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + Circle name: - + Accept @@ -8923,7 +9108,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8936,7 +9121,7 @@ p, li { white-space: pre-wrap; } ģ–‘ģ‹ - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8966,7 +9151,7 @@ p, li { white-space: pre-wrap; } - + Comment 답글 달기 @@ -9005,7 +9190,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9029,21 +9214,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9053,7 +9223,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; } @@ -9082,7 +9252,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9113,7 +9283,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9164,7 +9334,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9180,7 +9350,7 @@ before you can comment - + Expand ķ™•ģž„ @@ -9200,9 +9370,8 @@ before you can comment - - TextLabel - ķ…ģŠ¤ķŠø ė ˆģ“ėø” + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 @@ -9233,13 +9402,13 @@ before you can comment GxsForumMsgItem - - + + Subject: 제목: - + Unsubscribe To Forum @@ -9250,7 +9419,7 @@ before you can comment - + Expand ķ™•ģž„ @@ -9270,17 +9439,21 @@ before you can comment - + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + + Loading... - + Forum Feed - + Hide ģˆØź¹€ @@ -9293,66 +9466,63 @@ before you can comment ģ–‘ģ‹ - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums ķ¬ėŸ¼ ź²€ģƒ‰ - + Last Post + ģµœģ‹  ź²Œģ‹œźø€ + + + New Thread + + + Threaded View + + + + + Flat View + + - + Title 제목 - - + + Date ė‚ ģ§œ - + Author ģž‘ģ„±ģž - + + Save image + + + + Loading ė¶ˆėŸ¬ģ˜¤ėŠ” 중 - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9362,7 +9532,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9402,23 +9577,23 @@ before you can comment ģž‘ģ„±ģž ź²€ģƒ‰ - + No name ģ“ė¦„ ģ—†ģŒ - - + + Reply - + <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> - + Loading... @@ -9461,12 +9636,16 @@ before you can comment 레트딜 쉐얓 링크 복사 - + Hide ģˆØź¹€ - + Expand + ķ™•ģž„ + + + [unknown] @@ -9496,8 +9675,8 @@ before you can comment - - + + Distribution @@ -9511,6 +9690,10 @@ before you can comment Anti-spam + + none + ģ—†ģŒ + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9580,12 +9763,12 @@ before you can comment - + New thread - + Edit ķŽøģ§‘ @@ -9646,7 +9829,7 @@ before you can comment - + Show column @@ -9666,7 +9849,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9718,7 +9901,7 @@ This message is missing. You should receive it later. - + No result. @@ -9728,7 +9911,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9743,7 +9926,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9809,12 +9992,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9845,16 +10028,23 @@ This message is missing. You should receive it later. + + GxsForumsFillThread + + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + GxsGroupDialog - + Name ģ“ė¦„ - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9865,12 +10055,12 @@ This message is missing. You should receive it later. - + Description 설명 - + Message Distribution @@ -9878,7 +10068,7 @@ This message is missing. You should receive it later. - + Public 공용 @@ -9938,7 +10128,7 @@ This message is missing. You should receive it later. - + Comments: 설명: @@ -9961,7 +10151,7 @@ This message is missing. You should receive it later. - + All People @@ -9977,12 +10167,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9999,23 +10189,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10031,28 +10221,22 @@ This message is missing. You should receive it later. ģ“ė¦„ģ„ ģž…ė „ķ•“ģ£¼ģ‹­ģ‹œģ˜¤ - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10062,12 +10246,12 @@ This message is missing. You should receive it later. - + Info 정볓 - + ID ID @@ -10077,7 +10261,7 @@ This message is missing. You should receive it later. ģµœģ‹  ź²Œģ‹œźø€ - + <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> @@ -10152,12 +10336,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity ģøźø°ė„ @@ -10173,22 +10352,27 @@ This message is missing. You should receive it later. - + Created - + Cancel ģ·Øģ†Œ - + Create ė§Œė“¤źø° - + + Author + ģž‘ģ„±ģž + + + GxsIdLabel @@ -10196,7 +10380,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading ė¶ˆėŸ¬ģ˜¤ėŠ” 중 @@ -10256,7 +10440,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10313,12 +10497,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 @@ -10341,7 +10525,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10354,14 +10538,18 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + + Not found - - + + [Banned] @@ -10371,7 +10559,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10381,12 +10569,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10406,14 +10589,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10425,7 +10600,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10473,13 +10648,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + Loading... @@ -10860,7 +11039,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10876,7 +11055,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10895,7 +11074,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10969,7 +11148,7 @@ p, li { white-space: pre-wrap; } ģ–‘ģ‹ - + Add friend @@ -10979,7 +11158,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11007,7 +11186,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11017,7 +11196,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11027,7 +11206,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11047,37 +11226,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11089,12 +11244,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11109,7 +11264,12 @@ new short format 레트딜 쉐얓 ģ“ˆėŒ€ - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... 다넸 ģ“ė¦„ģœ¼ė”œ ģ €ģž„... @@ -11374,14 +11534,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All 모두 - + Reputation @@ -11391,12 +11551,12 @@ p, li { white-space: pre-wrap; } ź²€ģƒ‰ - + Anonymous Id - + Create new Identity @@ -11406,7 +11566,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11421,27 +11581,27 @@ p, li { white-space: pre-wrap; } - + Close ė‹«źø° - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11457,39 +11617,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11509,20 +11659,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11532,78 +11680,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11614,17 +11762,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 @@ -11639,24 +11787,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11671,12 +11819,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11686,7 +11829,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11761,7 +11904,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11791,7 +11934,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11806,7 +11949,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11854,7 +11997,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. @@ -11862,7 +12005,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11905,7 +12048,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11985,7 +12128,7 @@ These identities will soon be not supported anymore. - + information @@ -12001,12 +12144,17 @@ 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> + + + + positive @@ -12111,7 +12259,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12161,21 +12309,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12185,7 +12333,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12200,7 +12348,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12215,12 +12363,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12240,12 +12388,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12255,7 +12403,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12263,7 +12411,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12293,13 +12441,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12313,7 +12455,7 @@ These identities will soon be not supported anymore. - + @@ -12323,12 +12465,7 @@ These identities will soon be not supported anymore. ģ—†ģŒ - - No avatar chosen - - - - + Edit identity @@ -12339,27 +12476,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12379,7 +12516,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12389,18 +12526,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12410,7 +12541,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12420,7 +12556,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12430,15 +12566,10 @@ These identities will soon be not supported anymore. ķ˜•ģ‹ - + Choose image... - - - Remove - 제거 - @@ -12464,7 +12595,7 @@ These identities will soon be not supported anymore. 추가 - + Create ė§Œė“¤źø° @@ -12474,13 +12605,13 @@ These identities will soon be not supported anymore. ģ·Øģ†Œ - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12490,7 +12621,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12564,7 +12695,7 @@ These identities will soon be not supported anymore. - + Copy ė³µģ‚¬ķ•˜źø° @@ -12574,12 +12705,12 @@ These identities will soon be not supported anymore. 제거 - + %1 's Message History - + Mark all @@ -12598,38 +12729,26 @@ These identities will soon be not supported anymore. Quote + + Send + 볓낓기 + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12647,32 +12766,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - 상태: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12693,12 +12807,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12707,31 +12816,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12741,7 +12845,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12769,7 +12873,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12785,8 +12889,7 @@ These identities will soon be not supported anymore. - - + Options ģ˜µģ…˜ @@ -12807,7 +12910,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12818,12 +12921,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12852,12 +12955,11 @@ These identities will soon be not supported anymore. - Status 상태 - + Notify @@ -12868,35 +12970,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help ė„ģ›€ė§ - - + Minimize - + Maximize @@ -12911,12 +13009,7 @@ These identities will soon be not supported anymore. 레트딜 쉐얓 - - Close window - - - - + %1 new message @@ -12946,7 +13039,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? ģ •ė§ė”œ 레트딜 쉐얓넼 ė‚˜ź°€ģ‹œź² ģŠµė‹ˆź¹Œ? @@ -12966,7 +13059,7 @@ These identities will soon be not supported anymore. ķ‘œģ‹œ - + Make sure this link has not been forged to drag you to a malicious website. @@ -13011,13 +13104,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13032,7 +13124,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13041,17 +13133,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13087,12 +13179,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13107,32 +13199,32 @@ These identities will soon be not supported anymore. 굵게 - + Italic źø°ģšøģž„ - + Alignment - + Add an Image - + Sets text font to code style - + Underline 밑줄 - + Subject: 제목: @@ -13143,32 +13235,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13238,7 +13330,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13278,7 +13370,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13298,18 +13390,18 @@ 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? @@ -13320,17 +13412,7 @@ Do you want to save message to draft box? 레트딜 쉐얓 링크 붙여넣기 - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13350,7 +13432,7 @@ Do you want to save message to draft box? - + Original Message @@ -13360,21 +13442,21 @@ Do you want to save message to draft box? ė³“ė‚øģ“ - + - + To - - + + Cc - + Sent @@ -13389,7 +13471,7 @@ Do you want to save message to draft box? - + Re: @@ -13399,30 +13481,30 @@ Do you want to save message to draft box? - - - + + + RetroShare 레트딜 쉐얓 - + Do you want to send the message without a subject ? 제목 ģ—†ģ“ ė©”ģ‹œģ§€ė„¼ ė³“ė‚“ģ‹œź² ģŠµė‹ˆź¹Œ? - + Please insert at least one recipient. - + Bcc - + Unknown ģ•Œ 수 ģ—†ģŒ @@ -13537,13 +13619,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13563,7 +13645,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13584,7 +13666,7 @@ Do you want to save message ? 추가 ķŒŒģ¼ 추가 - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13614,18 +13696,18 @@ Do you want to save message ? - - + + Close ė‹«źø° - + From: ģ–“ė””ģ—ģ„œ : - + Bullet list (disc) @@ -13665,13 +13747,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13681,12 +13763,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: @@ -13764,7 +13846,7 @@ Do you want to save message ? źø°ė³øź°’ - + A new tab @@ -13774,7 +13856,7 @@ Do you want to save message ? - + Edit Tag @@ -13797,7 +13879,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13805,7 +13887,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13833,7 +13915,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13843,37 +13925,37 @@ Do you want to save message ? - + Subject: 제목: - + From: ģ–“ė””ģ—ģ„œ : - + To: ģ–“ė””ė”œ : - + Cc: - + Bcc: - + Tags: - + Reply @@ -13913,7 +13995,7 @@ Do you want to save message ? - + Send Invite @@ -13965,7 +14047,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13975,12 +14057,12 @@ Do you want to save message ? - + View source - + No subject 제목 ģ—†ģŒ @@ -13990,22 +14072,17 @@ Do you want to save message ? ė‹¤ģš“ė”œė“œ - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14014,24 +14091,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14046,12 +14113,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14073,6 +14140,10 @@ Do you want to save message ? Compose + + Delete + ģ‚­ģ œ + Print @@ -14151,7 +14222,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14161,16 +14232,24 @@ Do you want to save message ? - + Delete + ģ‚­ģ œ + + + Display + ķ‘œģ‹œ + + + - - + + Tags - - + + Inbox @@ -14200,17 +14279,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14241,7 +14320,7 @@ Do you want to save message ? - + Subject 제목 @@ -14251,7 +14330,7 @@ Do you want to save message ? ė³“ė‚øģ“ - + Date ė‚ ģ§œ @@ -14261,7 +14340,11 @@ Do you want to save message ? - + Click to sort by subject + ģ œėŖ©ė³„ė”œ ģ •ė ¬ķ•˜ė ¤ė©“ ėˆ„ė„“ģ‹­ģ‹œģ˜¤ + + + Search Subject 제목 ź²€ģƒ‰ @@ -14270,16 +14353,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14306,12 +14379,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14387,7 +14460,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14401,7 +14474,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14416,28 +14489,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14472,17 +14535,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14536,7 +14589,7 @@ Do you want to save message ? - + Expand ķ™•ģž„ @@ -14546,7 +14599,7 @@ Do you want to save message ? ķ•­ėŖ© 제거 - + from @@ -14581,7 +14634,7 @@ Do you want to save message ? - + Hide ģˆØź¹€ @@ -14722,7 +14775,7 @@ Do you want to save message ? ė™ė£Œ ID - + Remove unused keys... @@ -14732,7 +14785,7 @@ Do you want to save message ? - + Clean keyring @@ -14746,13 +14799,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14785,13 +14832,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14801,12 +14853,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14839,7 +14891,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14860,7 +14912,7 @@ Reported error: - + Groups @@ -14890,19 +14942,19 @@ Reported error: - - + + Search ź²€ģƒ‰ - + ID ID - + Search ID @@ -14912,12 +14964,12 @@ Reported error: - + Show Items - + Last contact @@ -14927,7 +14979,7 @@ Reported error: - + Group @@ -15042,7 +15094,7 @@ Reported error: - + Do you want to remove this node? @@ -15052,7 +15104,7 @@ Reported error: - + Done! @@ -15159,7 +15211,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15174,7 +15226,7 @@ at least one peer was not added to a group - + Newest on top @@ -15184,12 +15236,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15418,6 +15470,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + ķ”¼ė“œ + Systray @@ -15427,7 +15483,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15447,12 +15503,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15467,7 +15523,7 @@ at least one peer was not added to a group - + Test ģ‹œķ—˜ @@ -15478,19 +15534,17 @@ at least one peer was not added to a group - 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). @@ -15498,7 +15552,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15637,12 +15691,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15687,7 +15736,12 @@ 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> @@ -15733,21 +15787,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare Retroshare (뒤에몫) - - + + Error : cannot get peer details. 오넘 : ė™ė£Œ 세부 정볓넼 ź°€ģ øģ˜¬ 수 ģ—†ģŠµė‹ˆė‹¤ - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15765,7 +15819,7 @@ 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. @@ -15834,6 +15888,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + ė¹„ė°€ė²ˆķ˜øź°€ ģž˜ėŖ»ėœ 것 ź°™ģŠµė‹ˆė‹¤ + You haven't set a trust level for this key. @@ -15841,12 +15899,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15872,7 +15930,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat ėŒ€ķ™” @@ -15893,7 +15951,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ķ•­ėŖ© 제거 - + Name: ģ“ė¦„: @@ -15933,7 +15991,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message ė©”ģ‹œģ§€ ģž‘ģ„± @@ -15991,7 +16049,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ģˆØź¹€ - + Send Message @@ -16158,6 +16216,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + ģ–‘ģ‹ + + PhotoDialog @@ -16170,6 +16235,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” + + Comment + 답글 달기 + + + Summary + ģš”ģ•½ + Album / Photo Name @@ -16230,6 +16303,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + 설명 추가 + Album @@ -16309,17 +16386,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16348,7 +16425,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16407,19 +16484,19 @@ requesting to edit it! - - + + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + Posted by - + ago @@ -16455,12 +16532,12 @@ requesting to edit it! PluginItem - + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + Show more details about this plugin @@ -16671,27 +16748,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16744,7 +16806,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16764,8 +16826,8 @@ p, li { white-space: pre-wrap; } - - + + Comments 설명 @@ -16790,13 +16852,13 @@ p, li { white-space: pre-wrap; } - - + + Comment 답글 달기 - + Comments @@ -16824,12 +16886,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare Retroshare (뒤에몫) @@ -16844,22 +16906,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File 그림 ķŒŒģ¼ 불러오기 - + Post image @@ -16875,17 +16927,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16895,7 +16937,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16915,22 +16957,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16945,7 +16977,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16956,7 +16988,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16966,7 +16998,7 @@ p, li { white-space: pre-wrap; } 제목 - + Link @@ -16974,12 +17006,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17013,7 +17045,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17051,17 +17083,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - ķ…ģŠ¤ķŠø ė ˆģ“ėø” - - - + Subscribe to Posted @@ -17077,7 +17099,7 @@ p, li { white-space: pre-wrap; } - + Expand ķ™•ģž„ @@ -17092,17 +17114,16 @@ p, li { white-space: pre-wrap; } - + Loading + ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + + Loading... - - Never - - - - + New Board @@ -17115,18 +17136,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + + Comments 설명 - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 @@ -17137,12 +17158,12 @@ p, li { white-space: pre-wrap; } - + Comment 답글 달기 - + Comments @@ -17152,7 +17173,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17162,17 +17183,17 @@ p, li { white-space: pre-wrap; } ģˆØź¹€ - + Vote up - + Vote down - + Set as read and remove item ķ•­ėŖ©ģ„ ģ½ģŒģœ¼ė”œ ģ„¤ģ •ķ•˜ź³  제거 @@ -17182,7 +17203,7 @@ p, li { white-space: pre-wrap; } 새 źø€ - + New Comment: @@ -17192,7 +17213,7 @@ p, li { white-space: pre-wrap; } - + Name ģ“ė¦„ @@ -17233,11 +17254,34 @@ p, li { white-space: pre-wrap; } ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + Loading ė¶ˆėŸ¬ģ˜¤ėŠ” 중 + + PostedListWidget + + Form + ģ–‘ģ‹ + + + New + 새 źø€ + + + Next + ė‹¤ģŒ + + + RetroShare + Retroshare (뒤에몫) + + + Previous + ģ“ģ „ + + PostedListWidgetWithModel @@ -17256,17 +17300,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17276,15 +17310,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17294,42 +17328,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel ķ…ģŠ¤ķŠø ė ˆģ“ėø” - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17349,7 +17383,7 @@ p, li { white-space: pre-wrap; } - + Search ź²€ģƒ‰ @@ -17379,17 +17413,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17404,17 +17438,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 - - Copy http Link - - - - + Show author in People tab @@ -17424,31 +17453,27 @@ p, li { white-space: pre-wrap; } ķŽøģ§‘ - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17463,7 +17488,7 @@ p, li { white-space: pre-wrap; } ź°€ģž… - + Never @@ -17537,16 +17562,6 @@ p, li { white-space: pre-wrap; } No Channel Selected ģ„ ķƒķ•œ 채널 ģ—†ģŒ - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17636,16 +17651,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17753,7 +17768,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17769,7 +17784,7 @@ and use the import button to load it - + Public Information @@ -17804,12 +17819,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17853,27 +17868,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17883,12 +17898,12 @@ and use the import button to load it ģ–“ė””ģ—ģ„œ : - + Head - + Head Shot @@ -17918,13 +17933,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17936,22 +17951,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17966,7 +17971,7 @@ and use the import button to load it - + Reply to Pulse @@ -17981,24 +17986,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - 그림 ķŒŒģ¼ 불러오기 + From + ė³“ė‚øģ“ + + + Date + ė‚ ģ§œ + + + ... + ... @@ -18009,7 +18024,7 @@ and use the import button to load it ģ–‘ģ‹ - + @@ -18028,7 +18043,7 @@ and use the import button to load it PulseReply - + icn @@ -18038,7 +18053,7 @@ and use the import button to load it - + REPLY @@ -18065,7 +18080,7 @@ and use the import button to load it - + FOLLOW @@ -18075,7 +18090,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18095,7 +18110,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18211,7 +18226,7 @@ and use the import button to load it - + FOLLOW @@ -18219,42 +18234,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18286,7 +18296,7 @@ and use the import button to load it - + FOLLOW @@ -18294,8 +18304,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18563,12 +18573,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18599,7 +18609,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 예상치 ėŖ»ķ•œ ģ˜¤ė„˜ź°€ ė°œģƒķ–ˆģŠµė‹ˆė‹¤. 'RsInit::InitRetroShare unexpexted return code %1' ģ„ 볓고핓 ģ£¼ģ‹­ģ‹œģ˜¤. - + Cannot start Tor Manager! @@ -18633,7 +18643,7 @@ The error reported is:" - + Multiple instances @@ -18654,26 +18664,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18753,7 +18743,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18763,7 +18753,7 @@ Reported error is: - + enabled @@ -18773,7 +18763,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18789,7 +18779,7 @@ Reported error is: - + %1 seconds ago @@ -18856,7 +18846,7 @@ Security: no anonymous IDs - + Join chat room @@ -18884,7 +18874,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19064,29 +19054,13 @@ Security: no anonymous IDs Ban list - - - Name - ģ“ė¦„ - - Node - - - - - Address - - - - - Status 상태 - + NXS @@ -19329,18 +19303,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19480,7 +19442,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19647,7 +19609,7 @@ p, li { white-space: pre-wrap; } ģ–‘ģ‹ - + The loading of embedded images is blocked. @@ -19660,7 +19622,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19833,22 +19795,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19856,12 +19808,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20549,7 +20501,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name ģ“ė¦„ @@ -20670,7 +20622,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name ģ“ė¦„ @@ -20690,7 +20642,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20746,7 +20698,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20760,6 +20712,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20773,11 +20730,6 @@ prevents the message to be forwarded to your friends. From ė³“ė‚øģ“ - - - To - - Subject @@ -20800,17 +20752,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20834,9 +20781,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20857,7 +20802,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. ģ €ģž„ķ•œ ėŖØė“  레트딜 쉐얓 ģ„¤ģ •ģ„ ģ“ˆźø°ķ™”ķ•©ė‹ˆė‹¤. @@ -20918,7 +20863,7 @@ prevents the message to be forwarded to your friends. 레트딜 쉐얓 언얓넼 ģ„¤ģ •ķ•©ė‹ˆė‹¤. - + Unable to open log file '%1': %2 @@ -20939,7 +20884,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20969,7 +20914,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20987,7 +20932,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21004,12 +20949,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21070,7 +21015,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21085,7 +21030,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21185,23 +21130,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download ė‹¤ģš“ė”œė“œ - + Copy RetroShare Link 레트딜 쉐얓 링크 복사 - + Send RetroShare Link 레트딜 쉐얓 링크 볓낓기 @@ -21211,7 +21156,7 @@ prevents the message to be forwarded to your friends. - + Download Notice ė‹¤ģš“ė”œė“œ @@ -21248,7 +21193,7 @@ prevents the message to be forwarded to your friends. - + Folder ķ“ė” @@ -21259,17 +21204,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) 새 레트딜 쉐얓 링크 ė§Œė“¤źø° - + Open Folder - + Create Collection... @@ -21289,7 +21234,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21297,7 +21242,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21313,22 +21258,22 @@ prevents the message to be forwarded to your friends. ķ•­ėŖ© 제거 - + IP address: - + Peer ID: - + Location: 지역: - + Peer Name: @@ -21345,7 +21290,7 @@ prevents the message to be forwarded to your friends. ģˆØź¹€ - + but reported: @@ -21370,8 +21315,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21379,7 +21324,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare 레트딜 ģ‰ģ–“ģ—ģ„œ ģ—¬ėŸ¬ė¶„ģ„ 친구딜 삼고 ģ‹¶ģ–“ķ•©ė‹ˆė‹¤ @@ -21410,7 +21355,7 @@ prevents the message to be forwarded to your friends. - + Expand ķ™•ģž„ @@ -21455,12 +21400,12 @@ prevents the message to be forwarded to your friends. 상태: - + Write Message ė©”ģ‹œģ§€ ģž‘ģ„± - + Connect Attempt @@ -21480,12 +21425,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown ģ•Œ 수 ģ—†ģŒ @@ -21495,17 +21445,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide ģˆØź¹€ @@ -21515,7 +21455,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21525,12 +21465,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21589,12 +21529,12 @@ prevents the message to be forwarded to your friends. - + Local Address 지역 ģ£¼ģ†Œ - + NAT @@ -21615,22 +21555,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21643,16 +21583,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + ģ“ ģ›¹ģ‚¬ģ“ķŠøģ—ģ„œģ˜ ė‚“ ģ•„ģ“ķ”¼ ģš”ģ²­ģ„ 레트딜 쉐얓가 ķ—ˆģš©ķ•©ė‹ˆė‹¤: + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21662,46 +21607,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21711,7 +21633,7 @@ List of found external IP: - + I2P Address @@ -21736,95 +21658,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21839,7 +21703,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21849,7 +21777,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21861,12 +21804,12 @@ 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> @@ -21876,7 +21819,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21891,23 +21834,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21918,7 +21861,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21928,7 +21881,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21938,7 +21896,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21978,7 +21946,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21993,7 +21961,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22029,32 +22002,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22109,7 +22057,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22134,7 +22082,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22146,7 +22094,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22169,7 +22117,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status 상태 @@ -22229,28 +22177,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22266,18 +22203,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22312,12 +22249,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22340,22 +22277,22 @@ 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> @@ -22390,7 +22327,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22400,12 +22337,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22485,7 +22422,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22495,12 +22432,12 @@ 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. @@ -22519,7 +22456,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22539,17 +22476,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel ģ·Øģ†Œ - + Add a Share Directory @@ -22559,7 +22496,7 @@ Select the Friends with which you want to Share your Channel. 제거 - + Apply and close @@ -22650,7 +22587,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. @@ -22658,7 +22595,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22709,16 +22646,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22728,7 +22660,7 @@ Select the Friends with which you want to Share your Channel. ė‹¤ģš“ė”œė“œ - + Copy retroshare Links to Clipboard 레트딜 쉐얓 링크넼 ķ“ė¦½ė³“ė“œģ— 복사 @@ -22743,7 +22675,7 @@ Select the Friends with which you want to Share your Channel. 레트딜 쉐얓 링크 볓낓기 - + Some files have been omitted @@ -22759,7 +22691,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22784,7 +22716,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22927,12 +22859,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22956,7 +22888,7 @@ Select the Friends with which you want to Share your Channel. - + Log In ė”œź·øģø @@ -23295,7 +23227,7 @@ This choice can be reverted in settings. - + Message: @@ -23532,7 +23464,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23568,15 +23500,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown ģ•Œ 수 ģ—†ģŒ @@ -23586,13 +23515,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23602,57 +23536,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23660,7 +23549,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23670,7 +23559,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23681,12 +23570,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23714,7 +23602,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23725,7 +23613,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23735,27 +23623,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23840,7 +23723,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23849,12 +23732,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23879,12 +23757,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23949,7 +23822,12 @@ 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> @@ -23959,17 +23837,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23997,7 +23865,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24025,19 +23893,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name ģ“ė¦„ @@ -24244,12 +24112,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> - - - - + Move in Queue... @@ -24274,7 +24137,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24295,7 +24158,7 @@ p, li { white-space: pre-wrap; } Retroshare (뒤에몫) - + @@ -24328,17 +24191,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24353,7 +24206,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24480,18 +24333,23 @@ 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> + + + + Columns - + File Transfers - + Path 경딜 @@ -24501,7 +24359,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24511,7 +24369,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24526,7 +24384,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24536,7 +24394,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24950,17 +24808,12 @@ p, li { white-space: pre-wrap; } ģ–‘ģ‹ - + Enable Retroshare WEB Interface - - Status: - 상태: - - - + Web parameters @@ -25000,27 +24853,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25030,12 +24873,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25172,7 +25015,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25187,7 +25030,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25275,7 +25118,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25310,7 +25153,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25340,18 +25183,14 @@ p, li { white-space: pre-wrap; } - - History - źø°ė” - - - + + Show Edit History - + Status 상태 @@ -25372,7 +25211,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25455,7 +25294,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25470,7 +25318,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25490,7 +25338,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25520,17 +25368,25 @@ p, li { white-space: pre-wrap; } - + New + 새 ķ”¼ė“œ + + + Yourself + + Friends + 친구 + Following - + RetroShare @@ -25593,42 +25449,35 @@ p, li { white-space: pre-wrap; } ģ–‘ģ‹ - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - 제거 - - - Location: 지역: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25673,41 +25522,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - ģ—†ģŒ - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) ģ•Œ 수 ģ—†ģŒ @@ -25785,7 +25604,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25822,7 +25641,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_nl.ts b/retroshare-gui/src/lang/retroshare_nl.ts index bb4fef66a..c59474c60 100644 --- a/retroshare-gui/src/lang/retroshare_nl.ts +++ b/retroshare-gui/src/lang/retroshare_nl.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Een opmerking toevoegen + + AddFileAssociationDialog @@ -121,12 +128,12 @@ RetroShare: Geavanceerd Zoeken - + Search Criteria Zoek Criteria - + Add a further search criterion. Voeg een volgend zoek criterium toe @@ -136,7 +143,7 @@ Reset de zoekopdracht - + Cancels the search. Annuleer de zoekopdracht @@ -156,6 +163,177 @@ Zoeken + + AlbumCreateDialog + + Create Album + Maak album + + + Album Name: + Album Naam: + + + Category: + Categorie: + + + Animals + Beesten + + + Family + Familie + + + Friends + Vrienden + + + Flowers + Bloemen + + + Holiday + Vakantie + + + Landscapes + Landschappen + + + Pets + Huisdieren + + + Portraits + Portretten + + + Travel + Reizen + + + Work + Werk + + + Random + Willekeurig + + + Caption: + Onderschrift: + + + Where: + Waar: + + + Photographer: + Fotograaf + + + Description: + Beschrijving + + + Share Options + Deel Opties + + + Policy: + Beleid: + + + Quality: + Kwaliteit + + + Comments: + Opmerkingen: + + + Identity: + Identiteit: + + + Public + Publiek + + + Restricted + Beperkt + + + Resize Images (< 1Mb) + Resize Images (< 1Mb) + + + Resize Images (< 10Mb) + Resize Images (< 10Mb) + + + Send Original Images + Stuur de originele plaatjes + + + No Comments Allowed + Geen opmerkingen toegestaan + + + Authenticated Comments + Toegevoegde opmerkingen + + + Any Comments Allowed + Opmerkingen toegestaan + + + Publish with Identity + Publiceer met de identiteit + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> Sleep &amp; laat los om plaatjes in te voegen. Klik op een plaatje om de gegevens eronder te bewerken.</span></p></body></html> + + + Back + Terug + + + Add Photos + Foto's toevoegen + + + Publish Album + Publiceer Album + + + Untitle Album + Verwijder Album Titel + + + Say something about this album... + Vertel iets over dit album... + + + Where were these taken? + Waar zijn deze genomen? + + + Load Album Thumbnail + Laad album miniatuur + + AlbumDialog @@ -164,11 +342,19 @@ Album Album + + Album Thumbnail + Album miniatuur + TextLabel Tekst label + + Summary + Overzicht + Album Title: @@ -184,6 +370,34 @@ Caption Onderschrift + + Where: + Waar: + + + When + Wanneer + + + Description: + Beschrijving: + + + Share Options + Deel Opties + + + Comments + Opmerkingen + + + Publish Identity + Publiceer Identiteit + + + Visibility + Zichtbaarheid + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -552,7 +766,7 @@ 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. Waarschuwing: Deze service is experimenteel. Help ons door dit te testen.āŽ @@ -568,6 +782,14 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Circles Cirkels + + GxsForums + GxsForums + + + GxsChannels + GxsKanalen + The Wire @@ -579,23 +801,10 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Foto 's - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -632,13 +841,17 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Browse... + + Add Avatar + Avatar toevoegen + Remove Verwijderen - + Set your Avatar picture Uw Avatar afbeelding instellen @@ -657,6 +870,10 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Laad Avatar + AvatarWidget @@ -725,10 +942,22 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Opnieuw instellen - + Receive Rate + Ontvang ranglijst + + + Send Rate + Verzend ranglijst + + + Always on Top Altijd op de voorgrond + + Style + Stijl + Changes the transparency of the Bandwidth Graph @@ -744,11 +973,23 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update % Opaque Ondoorzichtig + + Save + Opslaan + + + Cancel + Annuleren + Since: Sinds + + Hide Settings + Verberg instellingen + BandwidthStatsWidget @@ -821,7 +1062,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BoardPostDisplayWidgetBase - + Comment @@ -851,12 +1092,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Kopieer RetroShare Link - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -864,7 +1105,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BoardPostDisplayWidget_card - + Vote up Stemmen van @@ -884,7 +1125,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update \/ - + Posted by @@ -922,7 +1163,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BoardPostDisplayWidget_compact - + Vote up Stemmen van @@ -942,7 +1183,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update \/ - + Click to view picture @@ -972,7 +1213,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update - + Toggle Message Read Status Verander boodschap gelezen status @@ -982,7 +1223,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Nieuw - + TextLabel Tekst label @@ -990,12 +1231,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BoardsCommentsItem - + I like this Ik vind dit leuk! - + 0 0 @@ -1015,18 +1256,18 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Avatar - + New Comment - + Copy RetroShare Link Kopieer RetroShare Link - + Expand Uitbreiden @@ -1041,12 +1282,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Item verwijderen - + Name Naam - + Comm value @@ -1215,17 +1456,17 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update ChannelPage - + Channels Kanalen - + Tabs Tabbladen - + General Algemeen @@ -1235,17 +1476,11 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update - - Downloads - Downloads + Load posts in background (Thread) + Laad berichten op achtergrond (draad) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Elk kanaal in een nieuw tabblad openen @@ -1253,7 +1488,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update ChannelPostDelegate - + files @@ -1276,7 +1511,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Ik vind dit leuk! @@ -1301,18 +1536,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link Kopieer RetroShare Link - + Expand Uitbreiden @@ -1327,7 +1562,7 @@ into the image, so as to Item verwijderen - + Name Naam @@ -1337,7 +1572,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1345,7 +1590,7 @@ into the image, so as to ChatLobbyDialog - + Name Naam @@ -1536,7 +1781,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Toon chat Portaal @@ -1548,6 +1793,22 @@ into the image, so as to Chats + + You have %1 new messages + U heeft %1 nieuwe berichten + + + You have %1 new message + U heeft %1 nieuw bericht + + + %1 new messages + %1 nieuwe berichten + + + %1 new message + %1 nieuw bericht + You have %1 mentions @@ -1569,14 +1830,13 @@ into the image, so as to - - + Unknown Lobby Onbekende Lobby - - + + Remove All Verwijder alles @@ -1584,13 +1844,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Naam - + Count Count @@ -1600,7 +1860,29 @@ into the image, so as to Onderwerp - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1610,7 +1892,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1667,12 +1949,12 @@ 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: @@ -1682,31 +1964,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Maak een nieuw chat Portaal + + + [No topic provided] [Geen onderwerp ingevoerd] - - + Selected lobby info + Gekozen portaal gegevens + + + Private Prive - - - + Public Publiek - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1716,25 +1998,42 @@ Double click a chat room to enter and chat. Niet Automatisch Abonneren - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Automatisch Abonneren - + Search Chat lobbies Zoek Chat lobby 's - + Search Name Zoek Naam - + Subscribed + Geabonneerd + + + Columns Kolommen + + Yes + Ja + + + No + Nee + Chat rooms @@ -1746,47 +2045,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: Onderwerp: - + Type: Type - + Security: Beveiliging - + Peers: Verbindingen: - - - - - - + + + + + + TextLabel Tekst label @@ -1801,24 +2100,13 @@ Double click a chat room to enter and chat. - + Show Toon - - Private Subscribed - - - - - - Public Subscribed - - - - + column @@ -1832,7 +2120,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Item verwijderen @@ -1877,7 +2165,7 @@ Double click a chat room to enter and chat. ChatPage - + General Algemeen @@ -1892,7 +2180,19 @@ Double click a chat room to enter and chat. - + Chat Settings + Chat instellingen + + + Enable Emoticons Private Chat + Inschakelen Emoticons PrivĆ© Chat + + + Enable Emoticons Group Chat + Inschakelen Emoticons Groep Chat + + + Enable custom fonts Activeer eigen lettertype @@ -1912,7 +2212,7 @@ Double click a chat room to enter and chat. Activeer "Schuin" - + General settings @@ -1937,7 +2237,11 @@ Double click a chat room to enter and chat. Ingesloten afbeeldingen laden - + Chat Lobby + Chat portaal + + + Blink tab icon Knipper "tab" ikoon @@ -1946,6 +2250,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + PrivĆ© Chat + Open Window for new chat @@ -1967,7 +2275,11 @@ Double click a chat room to enter and chat. Knipper "scherm/tab" ikoon - + Chat Font + Chat Font + + + Change Chat Font Verander de Chat Font @@ -1977,10 +2289,14 @@ Double click a chat room to enter and chat. Chat Font: - + History Geschiedenis + + Style + Stijl + @@ -1995,13 +2311,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + Groeps chat + Private chat PrivĆ© Chat - + Choose your default font for Chat. @@ -2065,28 +2385,22 @@ Double click a chat room to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/> <body><p align="justify"> op dit tabblad kunt u instellen hoeveel chatberichten Retroshare blijft opgeslagen op de schijf en hoeveel van de vorige conversatie wordt weergegeven, voor de verschillende chat-systemen. De maximale opslagperiode te ontdoen van oude berichten en voorkomt u dat de chatgeschiedenis uit te vullen met vluchtige chat (bijvoorbeeld chat lobby's en verre chat).</p></body></html> + + Chatlobbies + Chatlobbies + Enabled: Ingeschakeld: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2096,17 +2410,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2153,7 +2457,7 @@ Double click a chat room to enter and chat. Description: - Beschrijving + @@ -2203,7 +2507,11 @@ Double click a chat room to enter and chat. Maximale opslagperiode, in dagen (0 = houden alle): - + Search by default + Standaard zoeken + + + Case sensitive Hoofdletter gevoelig @@ -2309,7 +2617,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Toon chat @@ -2345,7 +2653,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Sluiten @@ -2380,12 +2688,12 @@ Double click a chat room to enter and chat. Schuin - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2465,6 +2773,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2502,7 +2815,7 @@ Double click a chat room to enter and chat. - + is typing... typt.... @@ -2524,7 +2837,7 @@ after HTML conversion. - + Do you really want to physically delete the history? Wil je echt voorgoed de geschiedenis verwijderen? @@ -2574,7 +2887,7 @@ after HTML conversion. is bezig en kan mogelijk niet reageren - + Find Case Sensitively Zoek hoofdlettergevoelig @@ -2596,7 +2909,7 @@ after HTML conversion. Niet stoppen met kleuren na X items gevonden (meer CPU nodig) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Zoek vorige</b> <br/><i>Ctrl + Shift + G</i> @@ -2611,12 +2924,16 @@ after HTML conversion. <b>Vinden</b> <br/><i>Ctrl + F</i> - + (Status) (Status) - + Set text font & color + Tekst instellen lettertype & kleur + + + Attach a File Een bestand toevoegen @@ -2632,12 +2949,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Markeer deze geselecteerde tekst</b><br><i>Ctrl + M</i> - + Person id: @@ -2648,12 +2965,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. objecten gevonden. @@ -2673,7 +2990,7 @@ Double click on it to add his name on text writer. Typ een bericht hier - + Don't stop to color after @@ -2699,7 +3016,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Toon details: @@ -2721,7 +3038,7 @@ Double click on it to add his name on text writer. - + Personal Circles Persoonlijke Cirkels @@ -2747,7 +3064,7 @@ Double click on it to add his name on text writer. - + Friends Vrienden @@ -2807,7 +3124,7 @@ Double click on it to add his name on text writer. Vrienden van Vrienden - + External Circles (Admin) Externe Cirkels (Administrator) @@ -2823,7 +3140,7 @@ Double click on it to add his name on text writer. - + Circles Cirkels @@ -2875,45 +3192,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. Error: kan geen verbindings gegevens vinden. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2923,7 +3240,7 @@ Double click on it to add his name on text writer. Versleuteling - + Not connected Niet verbonden @@ -3005,17 +3322,12 @@ Double click on it to add his name on text writer. Geen - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3035,7 +3347,7 @@ Double click on it to add his name on text writer. - + with @@ -3052,16 +3364,104 @@ Double click on it to add his name on text writer. Connect Friend Wizard Wizard verbinding maken met een vriend + + Add a new Friend + Voeg een nieuwe vriend toe + + + &You get a certificate file from your friend + &U heeft een certificaat bestand gekregen van een vriend + + + &Make friend with selected friends of my friends + &Maak een vriend met geselecteerde vrienden van mijn vrienden + + + Include signatures + Inclusief handtekeningen + + + Copy your Cert to Clipboard + Kopieer uw certificaat naar het klembord + + + Save your Cert into a File + Sla uw Certificaat op in een bestand + + + Run Email program + Start Email programma + Open Cert of your friend from File + + Certificate files + Certificaat bestanden + + + Use PGP certificates saved in files. + Gebruik opgeslagen certificaat bestanden + + + Import friend's certificate... + Importeer een vriend certificaat... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + U moet een certificaat bestand maken en aan een vriend sturen. U kunt een reeds eerder gemaakt bestand gebruiken. + + + Export my certificate... + Exporteer mijn certificaat... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Sleep en plaats uw vriends certificaat in dit scherm of tik de lokatie van het bestand in onderstaande venster + + + Browse + Bladeren + + + Friends of friends + Vrienden van vrienden + + + Select now who you want to make friends with. + Kies nu met wie je vrienden wilt worden + + + Show me: + Toon me: + + + Make friend with these peers + Wordt vriend met deze verbindingen + RetroShare ID RetroShare ID + + Use RetroShare ID for adding a Friend which is available in your network. + Gebruik RetroShare ID om een vriend toe te voegen die al in je netwerk beschikbaar is. + + + Add Friends RetroShare ID... + Voeg je vriend's RetroShare ID toe + + + Paste Friends RetroShare ID in the box below + Plak je vriend's RetroShare ID in het veld hieronder + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Enter de RetroShare ID van je vriend, zoiets als verbinding@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3103,7 +3503,27 @@ Double click on it to add his name on text writer. Email - + Invite Friends by Email + Nodig vrienden uit via email + + + Enter your friends' email addresses (separate each one with a semicolon) + Vul het email adres van uw vriend of vrienden in (elke gescheiden door een ;) + + + Your friends' email addresses: + Uw vriend's email adres: + + + Enter Friends Email addresses + Enter uw vriend's email adres: + + + Subject: + Onderwerp: + + + @@ -3119,32 +3539,44 @@ Double click on it to add his name on text writer. Gegevens van uw aanvraag - + Peer details Verbindings details - + Name: Naam: + + Email: + Email: + + + Node: + Knooppunt + Location: Woonplaats: - + Options Opties - + Enter the certificate manually + Voeg het certificaat handmatig in + + + <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: Voeg een vriend toe aan een groep: @@ -3154,7 +3586,7 @@ Double click on it to add his name on text writer. Verifieer vriend (Teken PGP Sleutel) - + Please paste below your friend's Retroshare ID @@ -3179,22 +3611,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Voeg toe als vriend om mee verbonden te worden - + To accept the Friend Request, click the Finish button. + Om je vriend's verzoek te accepteren klik de Klaar knop + + + Sorry, some error appeared Sorry, een error verscheen @@ -3214,27 +3640,32 @@ Double click on it to add his name on text writer. Gegevens van uw vriend: - + Key validity: Sleutel deugdelijkheid: - + Profile ID: - + + Signers + Ondertekenaars + + + <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. Deze verbinding staat al op je vriend zijn lijst. Toevoegen stelt waarschijnlijk alleen zijn ip adres in. - + To accept the Friend Request, click the Accept button. @@ -3280,17 +3711,45 @@ Double click on it to add his name on text writer. - + Certificate Load Failed Certificaat fout - + Cannot get peer details of PGP key %1 + Kan geen verbindings details krijgen van de PGP sleutel %1 + + + Any peer I've not signed + Iedere verbinding die ik niet bevestigd hebt + + + Friends of my friends who already trust me + Vrienden van vrienden die me al vertrouwen + + + Signed peers showing as denied + Bevestigde verbindingen tonen als geweigerd + + + Peer name + Verbindings naam + + + Also signed by + Ook ondertekend door + + + Peer id + Verbindings ID + + + Not a valid Retroshare certificate! - + RetroShare Invitation RetroShare uitnodiging @@ -3310,12 +3769,12 @@ 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? - + @@ -3323,7 +3782,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3363,7 +3822,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.U heeft een aanvraag om vriend te worden - + Profile password needed. @@ -3388,7 +3847,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3398,7 +3857,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + Certificaat laden lukt niet: bestand %1 niet gevonden + + + This Peer %1 is not available in your Network + Deze verbinding %1 is niet beschikbaar in je netwerk + + + Use new certificate format (safer, more robust) + Gebruik nieuw certificaat format (veiliger) + + + Use old (backward compatible) certificate format + Gebruik oude (backward compatible) certificaat format + + + Remove signatures + Verwijder handtekeningen + + + RetroShare Invite + RetroShare uitnodiging + + + Connect Friend Help + Connect vriend help + + + You can copy this text and send it to your friend via email or some other way + U kunt deze tekst kopiĆ«ren en naar een vriend sturen via mail of een andere manier + + + 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 (*) @@ -3437,7 +3936,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** Geen *** - + Use as direct source, when available + Gebruiken als directe bron indien mogelijk + + + IP-Addr: IP-Adr: @@ -3447,7 +3950,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.IP Adres: - + Show Advanced options @@ -3466,13 +3969,41 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + Alle vrienden aan elke anderen aanbevelen + + + Friend Recommendations + Vriend aanbevelingen + + + Message: + Bericht: + + + Recommend friends + Aanbevolen vrienden + + + To + Aan + + + 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. + Add key to keyring Sleutel toevoegen aan keyring - + This key is already in your keyring Deze sleutel is al in uw keyring @@ -3485,7 +4016,7 @@ even if you don't make friends. Schakel dit selectievakje in om de sleutel toe te voegen aan uw sleutelverzameling. Dit kan handig zijn voor het verzenden van verre berichten naar deze verbinding, zelfs als u vrienden maakt. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Certificaat heeft verkeerde versienummer. Vergeet niet dat v0.6 en v0.5 netwerken niet compatibel zijn. @@ -3520,7 +4051,7 @@ even if you don't make friends. IP toevoegen aan whitelist - + No IP in this certificate! Geen IP in dit certificaat @@ -3530,10 +4061,23 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 Toegevoegd met certificaat van %1 + + Paste Cert of your friend from Clipboard + Certificaat van vriend plakken uit het klempbord + + + Certificate Load Failed:can't read from file %1 + Certificaat laden lukt niet: kan niet lezen van bestand %1 + ConnectProgressDialog @@ -3595,7 +4139,7 @@ even if you don't make friends. - + UDP Setup UDP setup @@ -3623,7 +4167,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant Verbindings assistent @@ -3633,20 +4177,17 @@ p, li { white-space: pre-wrap; } Niet werkende Peer ID - - + Unknown State Onbekende status - - + Offline Offline - - + Behind Symmetric NAT Achter Symmetric NAT @@ -3656,14 +4197,12 @@ p, li { white-space: pre-wrap; } Achter NAT & geen DHT - - + NET Restart Herstarten netwerk - - + Behind NAT Achter NAT @@ -3673,8 +4212,7 @@ p, li { white-space: pre-wrap; } Geen DHT - - + NET STATE GOOD! Net status ok! @@ -3699,7 +4237,7 @@ p, li { white-space: pre-wrap; } Zoek RS Peers - + Lookup requires DHT Lookup heeft DHT nodig @@ -3991,7 +4529,7 @@ p, li { white-space: pre-wrap; } Probeer opnieuw de volledige certificaat te importeren - + @@ -3999,8 +4537,7 @@ p, li { white-space: pre-wrap; } Onbekend - - + UNVERIFIABLE FORWARD! ONCONTROLEERBARE DOORSTURINGEN! @@ -4010,7 +4547,7 @@ p, li { white-space: pre-wrap; } ONCONTROLEERBARE DOORSTURING & GEEN DHT - + Searching Zoeken @@ -4046,12 +4583,12 @@ p, li { white-space: pre-wrap; } Cirkel Gegevens - + Name Naam - + <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> @@ -4071,7 +4608,7 @@ p, li { white-space: pre-wrap; } - + IDs IDs @@ -4091,18 +4628,18 @@ p, li { white-space: pre-wrap; } Filter - + Cancel Annuleren - + Nickname Gebruikersnaam - + Invited Members @@ -4117,7 +4654,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + Type + + + Name: Naam: @@ -4157,19 +4702,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle Kies een naam voor uw Cirkel - + No Restriction Circle Selected Geen Restrictie Cirkel Geselecteerd @@ -4179,24 +4724,12 @@ p, li { white-space: pre-wrap; } Geen Cirkel Limitaties Geselecteerd - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Toevoegen @@ -4206,7 +4739,7 @@ p, li { white-space: pre-wrap; } Verwijder - + Search Zoek @@ -4221,6 +4754,10 @@ p, li { white-space: pre-wrap; } Signed Getekend + + Signed by known nodes + Ondertekend door bekende knooppunten + Edit Circle @@ -4237,6 +4774,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP identiteit + + Anon Id + Anoniem ID + Circle name @@ -4259,13 +4800,17 @@ p, li { white-space: pre-wrap; } - + Create Maak - + PGP Linked Id + PGP geaccocieerd ID + + + Add Member @@ -4284,7 +4829,7 @@ p, li { white-space: pre-wrap; } Maak een groep - + Group Name: Groeps Naam: @@ -4319,7 +4864,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nieuw kanaal bericht @@ -4329,7 +4874,7 @@ p, li { white-space: pre-wrap; } Kanaal bericht - + Post @@ -4390,11 +4935,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Gebruik Slepen en Neerzetten / Voeg Bestanden Toe knop om nieuwe bestanden te indexeren.</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;"> Kopieer en plak RetroShare links van je gedeelden.</span></p></body></html> + + Add File to Attach + Voeg bestand toe + Add Channel Thumbnail Voeg kanaal miniatuur toe + + Message + Bericht + + + Subject : + Onderwerp + @@ -4480,17 +5037,17 @@ p, li { white-space: pre-wrap; }āŽ - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4509,18 +5066,17 @@ p, li { white-space: pre-wrap; }āŽ The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Bestand is reeds toegevoegd en in de hash opgenomen + Please add a Subject Voeg een onderwerp toe - - Cannot publish post - - - - + Load thumbnail picture Laad miniatuur plaatje @@ -4535,12 +5091,18 @@ p, li { white-space: pre-wrap; }āŽ - + + Generate mass data Massa gegevens genereren - + + Do you really want to generate %1 messages ? + Wilt u echt %1 berichten genereren? + + + You are about to add files you're not actually sharing. Do you still want this to happen? U gaat nu bestanden toevoegen die niet gedeeld zijn. Weet u zeker dat u dat wilt? @@ -4574,7 +5136,7 @@ p, li { white-space: pre-wrap; }āŽ CreateGxsForumMsg - + Post Forum Message Post forum bericht @@ -4583,6 +5145,10 @@ p, li { white-space: pre-wrap; }āŽ Forum Forum + + Subject + Onderwerp + Attach File @@ -4603,8 +5169,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4623,7 +5189,7 @@ p, li { white-space: pre-wrap; } U kunt bestanden toevoegen via Slepen en Neerzetten in dit scherm - + Post @@ -4653,17 +5219,17 @@ p, li { white-space: pre-wrap; } - + No Forum Geen Forum - + In Reply to In antwoord op - + Title Titel @@ -4716,7 +5282,7 @@ Do you want to discard this message? Laad images bestand - + No compatible ID for this forum @@ -4726,8 +5292,8 @@ Do you want to discard this message? - - + + Generate mass data Massa gegevens genereren @@ -4736,6 +5302,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? Wilt u echt %1 berichten genereren? + + Send + Verstuur + Post as @@ -4750,7 +5320,23 @@ Do you want to discard this message? CreateLobbyDialog - + Create Chat Lobby + Maak een nieuw chat portaal + + + 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. + Een chat portaal is een centraal en anonieme chat groep. Alle deelnemers ontvangen alle berichten. Zodra er een nieuw portaal is opgericht kunt u vrienden uitnodigen via de "Vrienden" knop. + + + Lobby name: + Portaal naam: + + + Lobby topic: + Portaal onderwerp + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4785,7 +5371,7 @@ Do you want to discard this message? - + Create Maak @@ -4795,7 +5381,7 @@ Do you want to discard this message? Annuleren - + require PGP-signed identities PGP-ondertekende identiteiten vereisen @@ -4810,7 +5396,11 @@ Do you want to discard this message? Kies de vrienden met wie je een groeps chat wil - + Invited friends + Uitgenodigde vrienden + + + Create Chat Room @@ -4831,7 +5421,7 @@ Do you want to discard this message? Contacts: - + Identity to use: @@ -4839,17 +5429,17 @@ Do you want to discard this message? CryptoPage - + Public Information Publieke informatie - + Name: Naam: - + Location: Woonplaats: @@ -4859,12 +5449,12 @@ Do you want to discard this message? Locatie ID: - + Software Version: Software Versie: - + Online since: Online sinds: @@ -4884,7 +5474,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4894,7 +5489,7 @@ Do you want to discard this message? - + Other Information Andere informatie @@ -4904,12 +5499,17 @@ Do you want to discard this message? - + Profile - + + Certificate + Certificaat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4919,7 +5519,11 @@ Do you want to discard this message? Inclusief handtekeningen - + Save Key into a file + Sla sleutel op in een bestand + + + Export Identity Exporteer identiteit @@ -4993,33 +5597,33 @@ en daar de importeer functie gebruiken - + TextLabel Tekst label - + PGP fingerprint: PGP vingerafdruk: - + + Node information + Knooppunt informatie + + + PGP Id : PGP-Id: - + Friend nodes: Vriend knooppunten: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5058,6 +5662,14 @@ en daar de importeer functie gebruiken Node Knooppunt + + Create new node... + Maal nieuw knooppunt + + + show statistics window + toon statistieken scherm + DHTGraphSource @@ -5109,7 +5721,7 @@ en daar de importeer functie gebruiken DLListDelegate - + B B @@ -5777,7 +6389,7 @@ en daar de importeer functie gebruiken DownloadToaster - + Start file Start bestand @@ -5785,38 +6397,38 @@ en daar de importeer functie gebruiken ExprParamElement - + - + to naar - + ignore case negeer - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5824,12 +6436,12 @@ en daar de importeer functie gebruiken ExpressionWidget - + Expression Widget Expression Widget - + Delete this expression Verwijder deze Expression @@ -5991,7 +6603,7 @@ en daar de importeer functie gebruiken FilesDefs - + Picture PLaatje @@ -6001,7 +6613,7 @@ en daar de importeer functie gebruiken Video - + Audio Audio @@ -6061,21 +6673,11 @@ en daar de importeer functie gebruiken C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Vrienden directories @@ -6197,7 +6799,7 @@ en daar de importeer functie gebruiken - + ID ID @@ -6239,7 +6841,7 @@ en daar de importeer functie gebruiken Toon groepen - + Group Groep @@ -6275,7 +6877,7 @@ en daar de importeer functie gebruiken Voeg toe aan groep - + Search Zoeken @@ -6291,7 +6893,7 @@ en daar de importeer functie gebruiken Sorteer per datum - + Profile details @@ -6502,7 +7104,7 @@ at least one peer was not added to a group To - Naar + @@ -6528,7 +7130,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request Bevestig vriend verzoek @@ -6545,6 +7147,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + Zoeken: + Sort by state @@ -6566,7 +7172,7 @@ at least one peer was not added to a group Zoek vrienden - + Mark all Selecteer alles @@ -6577,132 +7183,16 @@ at least one peer was not added to a group Selecteer geen - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Naam - - - - Node ID - - - - - Address - - - - - Status - Status - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Maak een vriend - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Bewerk berichten status - - + + Broadcast Uitzenden @@ -6785,38 +7275,33 @@ Also check your ports! Reset lettertype naar standaard - + Keyring Sleutelbos - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare groepschat: berichten worden verstuurd naar alle verbonden vrienden. - - + + Network Netwerk - - Friend Server - - - - + Network graph Netwerk grafiek - - <h1><img width="%1" 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> - - - - + Set your status message here. Stel hier uw statusbericht in. @@ -6834,17 +7319,7 @@ Also check your ports! Wachtwoord - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Alle velden moet minimaal 3 karakters bevatten @@ -6854,12 +7329,17 @@ Also check your ports! Wachtwoorden komen niet overeen - + Port Poort - + + Use BOB + + + + This password is for PGP @@ -6880,38 +7360,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6931,12 +7411,12 @@ Also check your ports! - + <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 @@ -6946,43 +7426,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7026,13 +7501,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7042,7 +7517,7 @@ and use the import button to load it - + Tor/I2P address @@ -7077,7 +7552,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7087,7 +7562,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7097,7 +7577,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7323,13 +7808,36 @@ and use the import button to load it We gaan starten - + Invite Friends Nodig vrienden uit - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">āŽ +<html><head><meta name="qrichtext" content="1" /><style type="text/css">āŽ +p, li { white-space: pre-wrap; }āŽ +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">āŽ +<p style=" 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 niets zonder uw vrienden. Klik op de knop om het proces te starten.</span></p>āŽ +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p>āŽ +<p style=" 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 een uitnodiging met uw &quot;ID Certificaat&quot; aan uw vrienden.</span></p>āŽ +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Wees zeker dat u een uitnodiging terugkrijgt... </span></p>āŽ +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">U kunt alleen verbinding maken met een vriend als u beide elkaar heeft toegevoegd.</span></p></body></html> + + + Add Your Friends to RetroShare Nodig jouw vrienden uit voor RetroShare @@ -7339,103 +7847,89 @@ and use the import button to load it Voeg vrienden toe - - Connect To Friends - Maak verbinding met vrienden - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Geavanceerd: Open een poort in je Firewall - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + Maak verbinding met vrienden + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Geavanceerd: Open een poort in je Firewall + + + Further Help and Support Meer Help en Ondersteuning - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Open RetroShare Website @@ -7460,7 +7954,7 @@ p, li { white-space: pre-wrap; } Email terugkoppeling - + RetroShare Invitation RetroShare uitnodiging @@ -7510,12 +8004,12 @@ p, li { white-space: pre-wrap; } RetroShare terugkoppeling - + RetroShare Support RetroShare ondersteuning - + It has many features, including built-in chat, messaging, @@ -7639,7 +8133,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Toon groeps chat @@ -7647,7 +8141,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7817,7 +8311,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Titel @@ -7830,12 +8324,12 @@ p, li { white-space: pre-wrap; } - + Description Beschrijving - + Number of Unread message @@ -7860,7 +8354,19 @@ p, li { white-space: pre-wrap; } - + Sort by Name + Sorteer op naam + + + Sort by Popularity + Sorteer op populariteit + + + Sort by Last Post + Sorteer op laatste post + + + You are admin (modify names and description using Edit menu) @@ -7875,14 +8381,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post Het laatste bericht - + Name Naam @@ -7893,13 +8399,17 @@ p, li { white-space: pre-wrap; } Populariteit - + Never - + Display + Toon + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7912,7 +8422,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and en @@ -8048,7 +8558,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanalen @@ -8059,22 +8569,22 @@ p, li { white-space: pre-wrap; } Maak een nieuw kanaal - + Enable Auto-Download Activeer automatisch downloaden - + My Channels Mijn Kanalen - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Geabonneerde kanalen @@ -8094,12 +8604,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download Automatisch downloaden uitschakelen - + Set download directory @@ -8134,22 +8644,22 @@ p, li { white-space: pre-wrap; } - + Play Bespelen - + Open folder Open map - + Open file - + Error Error @@ -8169,17 +8679,17 @@ p, li { white-space: pre-wrap; } Controleren - + Are you sure that you want to cancel and delete the file? Weet u zeker dat u wilt annuleren en daarna het bestand te verwijderen? - + Can't open folder Kan de map niet openen - + Play File Speel bestand @@ -8189,10 +8699,37 @@ p, li { white-space: pre-wrap; } Bestand %1 bestaat niet op deze locatie + + GxsChannelFilesWidget + + Form + Formulier + + + Filename + Bestandsnaam + + + Size + Grootte + + + Title + Titel + + + Published + Gepubliceerd + + + Status + Status + + GxsChannelGroupDialog - + Create New Channel Maak een nieuw kanaal @@ -8230,19 +8767,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - Tekst label - - - - Subscribe this Channel - + + Subscribe to Channel + Registreer bij dit kanaal @@ -8256,7 +8783,7 @@ p, li { white-space: pre-wrap; } - + Expand Uitbreiden @@ -8271,7 +8798,7 @@ p, li { white-space: pre-wrap; } Kanaal beschrijving - + Loading Laden @@ -8286,9 +8813,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + Nieuw kanaal @@ -8299,7 +8825,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8320,7 +8846,7 @@ p, li { white-space: pre-wrap; } - + Play Bespelen @@ -8376,24 +8902,28 @@ p, li { white-space: pre-wrap; } Files Bestanden + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Waarschuwing! U heeft minder dan %1 uur en %2 minuten voordat dit bestand verwijderd is. Overweeg om het op te slaan. + Hide Verberg - + New Nieuw - + 0 0 - - + + Comment Opmerking @@ -8408,17 +8938,21 @@ p, li { white-space: pre-wrap; } Ik vindt dit niet leuk - + Loading + Laden + + + Loading... - + Comments - + Post @@ -8443,16 +8977,87 @@ p, li { white-space: pre-wrap; } Speel media + + GxsChannelPostsWidget + + Post to Channel + Post op dit kanaal + + + Loading + Laden + + + Search channels + Zoek kanalen + + + Title + Titel + + + Search Title + Zoek Titel + + + Message + Bericht + + + Search Message + Zoek bericht + + + Filename + Bestandsnaam + + + Search Filename + Zoek bestandsnaam + + + No Channel Selected + Geen kanaal geselecteerd + + + Disable Auto-Download + Automatisch downloaden uitschakelen + + + Enable Auto-Download + Activeer automatisch downloaden + + + Show feeds + Toon feeds + + + Show files + Bestanden weergeven + + + Feeds + Feeds + + + Files + Bestanden + + + Description: + Beschrijving: + + GxsChannelPostsWidgetWithModel - + Post to Channel Post op dit kanaal - + Add new post @@ -8522,7 +9127,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8558,7 +9163,7 @@ p, li { white-space: pre-wrap; } - + Comments Opmerkingen @@ -8573,13 +9178,13 @@ p, li { white-space: pre-wrap; } Feeds - - + + Click to switch to list view - + Show unread posts only @@ -8594,7 +9199,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8609,7 +9214,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8669,22 +9274,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8759,13 +9354,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Geabonneerd @@ -8816,17 +9410,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel Tekst label - + Circle name: - + Accept @@ -8941,7 +9535,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Opmerkingen container @@ -8954,7 +9548,7 @@ p, li { white-space: pre-wrap; } Formulier - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8984,7 +9578,7 @@ p, li { white-space: pre-wrap; } Ververs - + Comment Opmerkingen @@ -9023,7 +9617,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Antwoord op een opmerking @@ -9047,21 +9641,6 @@ p, li { white-space: pre-wrap; } Vote Down Stem omlaag - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9071,7 +9650,7 @@ p, li { white-space: pre-wrap; } Geef een opmerking - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9100,10 +9679,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Opmerking</span></p></body></html> + + + Signed by + Getekend door + Reply to Comment @@ -9132,7 +9727,7 @@ before you can comment voor je een opmerking kan doen - + It remains %1 characters after HTML conversion. @@ -9174,6 +9769,14 @@ voor je een opmerking kan doen Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Toevoegen van Forum beheerders + + + Select Forum Admins + Selecteer Forum beheerders + Create @@ -9183,7 +9786,7 @@ voor je een opmerking kan doen GxsForumGroupItem - + Subscribe to Forum Registreer bij dit forum @@ -9199,7 +9802,7 @@ voor je een opmerking kan doen - + Expand Uitbreiden @@ -9219,9 +9822,8 @@ voor je een opmerking kan doen - - TextLabel - Tekst label + Loading + Laden @@ -9252,13 +9854,13 @@ voor je een opmerking kan doen GxsForumMsgItem - - + + Subject: Onderwerp: - + Unsubscribe To Forum Uitschrijven bij dit forum @@ -9269,7 +9871,7 @@ voor je een opmerking kan doen - + Expand Uitbreiden @@ -9289,17 +9891,21 @@ voor je een opmerking kan doen In antwoord op: - + Loading + Laden + + + Loading... - + Forum Feed Forum Feed - + Hide Verbergen @@ -9312,66 +9918,63 @@ voor je een opmerking kan doen Formulier - + Start new Thread for Selected Forum Start een nieuw draadje in het geselecteerde forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Zoek forums - + Last Post + Het laatste bericht + + + New Thread Nieuw draadje + + + Threaded View + Threaded View + + + + Flat View + Flat View + - + Title Titel - - + + Date Datum - + Author Auteur - + + Save image + + + + Loading Laden - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9381,7 +9984,12 @@ voor je een opmerking kan doen - + + Lastest post in thread + + + + Reply Message Beantwoord bericht @@ -9405,6 +10013,10 @@ voor je een opmerking kan doen Download all files Download alle bestanden + + Next unread + Volgende ongelezen + Search Title @@ -9421,23 +10033,31 @@ voor je een opmerking kan doen Zoek Auteur - + Content + Inhoud + + + Search Content + Zoek Inhoud + + + No name Geen naam - - + + Reply Antwoord - + <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> - + Loading... @@ -9480,12 +10100,16 @@ voor je een opmerking kan doen Kopieer RetroShare Link - + Hide Verberg - + Expand + Uitbreiden + + + [unknown] @@ -9515,8 +10139,8 @@ voor je een opmerking kan doen - - + + Distribution @@ -9530,6 +10154,22 @@ voor je een opmerking kan doen Anti-spam + + Anonymous + Anoniem + + + signed + Getekend + + + none + Geen + + + [ ... Missing Message ... ] + [ ... Bericht ontbreekt ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9599,12 +10239,12 @@ voor je een opmerking kan doen Origineel bericht - + New thread - + Edit Bewerk @@ -9665,7 +10305,7 @@ voor je een opmerking kan doen - + Show column @@ -9685,7 +10325,7 @@ voor je een opmerking kan doen - + Anonymous/unknown posts forwarded if reputation is positive @@ -9737,7 +10377,7 @@ This message is missing. You should receive it later. - + No result. @@ -9747,7 +10387,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9762,7 +10402,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9828,12 +10468,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Forums @@ -9864,16 +10504,35 @@ This message is missing. You should receive it later. Andere forums + + GxsForumsFillThread + + Waiting + Wachten + + + Retrieving + Ontvangen + + + Loading + Laden + + GxsGroupDialog - + Name Naam - + Add Icon + Ikoon toevoegen + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Sleutel ontvangers kunnen voor een beperkte groep publiceren en kunnen kijken en publiceren op PrivĆ© actige Kanalen. @@ -9882,14 +10541,22 @@ This message is missing. You should receive it later. Share Publish Key Deel Publieke Sleutel + + check peers you would like to share private publish key with + Controleer welke verbinding je wilt delen met een openbare PrivĆ© Sleutel + + + Share Key With + Deel sleutel met + - + Description Beschrijving - + Message Distribution Berichten Distributie @@ -9897,7 +10564,7 @@ This message is missing. You should receive it later. - + Public Publiek @@ -9916,6 +10583,14 @@ This message is missing. You should receive it later. New Thread Nieuw draadje + + Required + Benodigd + + + Encrypted Msgs + Versleutelde berichten + Personal Signatures @@ -9957,7 +10632,7 @@ This message is missing. You should receive it later. - + Comments: Opmerkingen: @@ -9980,7 +10655,7 @@ This message is missing. You should receive it later. - + All People @@ -9996,12 +10671,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10018,23 +10693,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10050,28 +10725,30 @@ This message is missing. You should receive it later. Voeg een naam toe - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo Laad groep logo - + Submit Group Changes Groep wijzigingen verzenden - + Failed to Prepare Group MetaData - please Review + Mislukt te bereiden groep metagegevens - Lees + + + Will be used to send feedback + Zal worden gebruikt voor het verzenden van feedback + + + Owner: Eigenaar: @@ -10081,12 +10758,12 @@ This message is missing. You should receive it later. - + Info - + ID ID @@ -10096,7 +10773,7 @@ This message is missing. You should receive it later. Het laatste bericht - + <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> @@ -10171,12 +10848,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity Populariteit @@ -10192,22 +10864,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Annuleren - + Create Maak - + + Author + Auteur + + + GxsIdLabel @@ -10215,7 +10892,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Laden @@ -10275,7 +10952,7 @@ This message is missing. You should receive it later. Bewerk Details - + Synchronise posts of last... @@ -10332,12 +11009,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link Kopieer RetroShare Link @@ -10360,7 +11037,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Geen handtekening @@ -10373,24 +11050,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Laden + + + Not found Niet gevonden + + No Signature + Geen handtekening + - - + + [Banned] + + Authentication + Verificatie + unknown Key onbekende sleutel - + anonymous + anoniem + + + Loading... @@ -10400,12 +11093,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10425,14 +11113,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10444,7 +11124,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10492,13 +11172,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + Laden + Loading... @@ -10639,7 +11323,7 @@ This message is missing. You should receive it later. Unknown Peer - Onbekenden verbinding + @@ -10879,7 +11563,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10895,7 +11579,7 @@ p, li { white-space: pre-wrap; } - + Authors Auteurs @@ -10914,7 +11598,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10992,7 +11676,7 @@ p, li { white-space: pre-wrap; }āŽ Formulier - + Add friend @@ -11002,7 +11686,7 @@ p, li { white-space: pre-wrap; }āŽ - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11030,7 +11714,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11040,7 +11724,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard Kopieer uw certificaat naar het klembord @@ -11050,7 +11734,7 @@ private and secure decentralized communication platform. Sla uw Certificaat op in een bestand - + Send via Email @@ -11070,37 +11754,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11112,12 +11772,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11132,7 +11792,12 @@ new short format RetroShare uitnodiging - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Sla op als... @@ -11397,14 +12062,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Alles - + Reputation Reputatie @@ -11414,12 +12079,12 @@ p, li { white-space: pre-wrap; } Zoek - + Anonymous Id Anoniem Id - + Create new Identity Maak een nieuwe identiteit @@ -11429,7 +12094,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11444,27 +12109,27 @@ p, li { white-space: pre-wrap; } - + Close Sluiten - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11480,39 +12145,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles Cirkels - + Circle name @@ -11532,20 +12187,18 @@ p, li { white-space: pre-wrap; } Persoonlijke Cirkels - + - Edit identity Identiteit aanpassen - - + Delete identity - + Chat with this peer Chat met deze verbinding @@ -11555,78 +12208,78 @@ p, li { white-space: pre-wrap; } Start een chat met deze verbinding - + Owner node ID : Eigenaar knooppunt-ID: - + Identity name : Identiteitsnaam: - + () - + Identity ID - + Send message Verstuur bericht - + Identity info - + Identity ID : Identiteit ID: - + Owner node name : Knooppuntnaam van de eigenaar: - + Create new... - + Type: Type - + Send Invite - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: - + Negative - + Neutral @@ -11637,17 +12290,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 Anoniem @@ -11662,24 +12315,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you Deze identiteit is eigendom van u - - + + My own identities - - + + My contacts - + Show Items @@ -11694,12 +12347,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11709,7 +12357,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11784,7 +12432,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11814,7 +12462,7 @@ p, li { white-space: pre-wrap; } onbekend - + Invited @@ -11829,7 +12477,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle Bewerk Cirkel @@ -11877,7 +12525,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. @@ -11885,7 +12533,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11928,7 +12576,7 @@ These identities will soon be not supported anymore. Anonieme identiteit - + Boards @@ -12008,7 +12656,7 @@ These identities will soon be not supported anymore. - + information @@ -12024,12 +12672,17 @@ 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> + + + + positive @@ -12134,7 +12787,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12184,21 +12837,21 @@ These identities will soon be not supported anymore. - - - + + + People Mensen - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12208,7 +12861,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12223,7 +12876,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12238,12 +12891,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12263,12 +12916,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12278,7 +12931,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12286,7 +12939,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname Gebruikersnaam @@ -12316,7 +12969,7 @@ These identities will soon be not supported anymore. Pseudoniem - + Import image @@ -12326,19 +12979,12 @@ These identities will soon be not supported anymore. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Nieuwe identiteit @@ -12352,7 +12998,7 @@ These identities will soon be not supported anymore. - + @@ -12362,12 +13008,7 @@ These identities will soon be not supported anymore. Onbekend - - No avatar chosen - - - - + Edit identity Identiteit aanpassen @@ -12378,27 +13019,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12418,7 +13059,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12428,7 +13069,11 @@ These identities will soon be not supported anymore. - + Error getting key! + Fout bij ophalen sleutel! + + + Error KeyID invalid SleutelID is ongeldig @@ -12443,7 +13088,7 @@ These identities will soon be not supported anymore. Onbekende echte naam - + Create New Identity Maak een nieuwe identiteit @@ -12453,15 +13098,10 @@ These identities will soon be not supported anymore. Type - + Choose image... - - - Remove - Verwijderen - @@ -12487,7 +13127,7 @@ These identities will soon be not supported anymore. Toevoegen - + Create Maak @@ -12497,13 +13137,13 @@ These identities will soon be not supported anymore. Annuleren - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12513,7 +13153,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12587,7 +13227,7 @@ These identities will soon be not supported anymore. - + Copy Kopieer @@ -12597,12 +13237,12 @@ These identities will soon be not supported anymore. Verwijderen - + %1 's Message History - + Mark all Merk alles @@ -12621,38 +13261,26 @@ These identities will soon be not supported anymore. Quote Citaat + + Send + Verstuur + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12670,32 +13298,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: Poort: - + Listen Address: - - Status: - Status: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12716,12 +13339,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12730,31 +13348,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Open bestand - + Open Folder Open map - + Checking... Controleren... @@ -12764,7 +13377,7 @@ These identities will soon be not supported anymore. Controleer bestanden - + Recommend in a message to... @@ -12792,7 +13405,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Vriend toevoegen @@ -12808,8 +13421,7 @@ These identities will soon be not supported anymore. - - + Options Opties @@ -12830,7 +13442,7 @@ These identities will soon be not supported anymore. - + Quit Stoppen @@ -12841,12 +13453,12 @@ These identities will soon be not supported anymore. Snel start Wizard - + RetroShare %1 a secure decentralized communication platform RetroShare %1 is een beveiligd gedecentraliseerde communicatie platform - + Unfinished Niet afgemaakt @@ -12874,12 +13486,11 @@ Maak meer ruimte vrij en klik Ok. - Status Status - + Notify Notify @@ -12890,35 +13501,31 @@ Maak meer ruimte vrij en klik Ok. - Open Messages Open berichten - - + Bandwidth Graph Grafische bandbreedte - + Applications Applicaties - Help Help - - + Minimize Minimalisser - + Maximize Maximalisseer @@ -12933,12 +13540,7 @@ Maak meer ruimte vrij en klik Ok. RetroShare - - Close window - - - - + %1 new message %1 nieuw bericht @@ -12968,7 +13570,7 @@ Maak meer ruimte vrij en klik Ok. %1 vrienden verbonden - + Do you really want to exit RetroShare ? Wil je RetroShare stoppen? @@ -12988,7 +13590,7 @@ Maak meer ruimte vrij en klik Ok. Toon - + Make sure this link has not been forged to drag you to a malicious website. Wees er zeker van dat deze link je niet naar een verdachte website stuurt @@ -13033,13 +13635,12 @@ Maak meer ruimte vrij en klik Ok. Service toestemming matrix - - + Statistics Statistieken - + Show web interface @@ -13054,7 +13655,7 @@ Maak meer ruimte vrij en klik Ok. - + Really quit ? @@ -13063,17 +13664,17 @@ Maak meer ruimte vrij en klik Ok. MessageComposer - + Compose Opstellen - + Contacts Contacten - + Paragraph Paragraph @@ -13109,12 +13710,12 @@ Maak meer ruimte vrij en klik Ok. Kop 6 - + Font size Letter grootte - + Increase font size Verklein letter grootte @@ -13129,32 +13730,32 @@ Maak meer ruimte vrij en klik Ok. Vet - + Italic Schuin - + Alignment Uitlijning - + Add an Image Voeg een plaatje toe - + Sets text font to code style Zet lettertype om in code stijl - + Underline Onderlijnd - + Subject: Onderwerp: @@ -13165,32 +13766,32 @@ Maak meer ruimte vrij en klik Ok. - + Tags Labels - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files Aanbevolen bestanden @@ -13260,7 +13861,7 @@ Maak meer ruimte vrij en klik Ok. Voeg een citaat blok toe - + Send To: Verstuur naar: @@ -13300,7 +13901,7 @@ Maak meer ruimte vrij en klik Ok. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hallo,<br>ik wil een goede vriend van mij aanraden; als je mij vertrouwd kun je hem ook vertrouwen. <br> @@ -13320,18 +13921,18 @@ Maak meer ruimte vrij en klik Ok. wil vrienden met je zijn op 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 Hi %1,<br><br>%2 wil vrienden met je zijn op RetroShare<br><br>Reageer nu:<br>%3<br><br>Bedankt,<br>Het RetroShare Team - - + + Save Message Bewaar bericht - + Message has not been Sent. Do you want to save message to draft box? Bericht is niet verzonden.āŽ @@ -13343,17 +13944,7 @@ Wil je het bericht bewaren in de concepten map? PLak RetroShare Link - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Voeg toe aan "Aan" @@ -13373,7 +13964,7 @@ Wil je het bericht bewaren in de concepten map? Voeg toe als "Aanbevolen" - + Original Message Origineel bericht @@ -13383,21 +13974,21 @@ Wil je het bericht bewaren in de concepten map? Van - + - + To Naar - - + + Cc Cc - + Sent Zenden @@ -13412,7 +14003,7 @@ Wil je het bericht bewaren in de concepten map? Op %1, %2 schreef: - + Re: Antw: @@ -13422,30 +14013,30 @@ Wil je het bericht bewaren in de concepten map? Doorst: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Wil je dit bericht versturen zonder onderwerp? - + Please insert at least one recipient. Voeg minstens ƩƩn ontvanger toe. - + Bcc Bcc - + Unknown Onbekend @@ -13560,13 +14151,13 @@ Wil je het bericht bewaren in de concepten map? Gegevens - + Open File... Open bestand... - + HTML-Files (*.htm *.html);;All Files (*) HTML- bestand (*.htm *.html );;Alle bestanden (*) @@ -13586,7 +14177,7 @@ Wil je het bericht bewaren in de concepten map? Export PDF - + Message has not been Sent. Do you want to save message ? Bericht is niet verzonden.āŽ @@ -13608,7 +14199,7 @@ Wil je het bericht bewaren? Voeg extra bestand toe - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13638,18 +14229,18 @@ Wil je het bericht bewaren? - - + + Close Sluiten - + From: Van: - + Bullet list (disc) @@ -13689,13 +14280,13 @@ Wil je het bericht bewaren? - - + + Thanks, <br> - + Distant identity: @@ -13705,12 +14296,12 @@ Wil je het bericht bewaren? - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: @@ -13788,7 +14379,7 @@ Wil je het bericht bewaren? Standaard - + A new tab Een nieuwe tab @@ -13798,7 +14389,7 @@ Wil je het bericht bewaren? Een nieuw scherm - + Edit Tag Bewerk Label @@ -13821,7 +14412,7 @@ Wil je het bericht bewaren? MessageToaster - + Sub: Ond: @@ -13829,7 +14420,7 @@ Wil je het bericht bewaren? MessageUserNotify - + Message Bericht @@ -13857,7 +14448,7 @@ Wil je het bericht bewaren? MessageWidget - + Recommended Files Aanbevolen bestanden @@ -13867,37 +14458,37 @@ Wil je het bericht bewaren? Download alle Aanbevolen bestanden - + Subject: Onderwerp: - + From: Van: - + To: Aan: - + Cc: Cc: - + Bcc: Bcc: - + Tags: Labels: - + Reply Antwoord @@ -13937,7 +14528,7 @@ Wil je het bericht bewaren? - + Send Invite @@ -13989,7 +14580,7 @@ Wil je het bericht bewaren? - + Confirm %1 as friend Bevestig %1 als vriend @@ -13999,12 +14590,12 @@ Wil je het bericht bewaren? Voeg %1 als vriend toe - + View source - + No subject Geen onderwerp @@ -14014,22 +14605,17 @@ Wil je het bericht bewaren? Download - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14038,24 +14624,14 @@ Wil je het bericht bewaren? %1 (%2) - - - Show less - - - - - Show more - - - + Download all Download alles - + Print Document Print Document @@ -14070,12 +14646,12 @@ Wil je het bericht bewaren? HTML- bestand (*.htm *.html );;Alle bestanden (*) - + Load images always for this message Afbeeldingen altijd laden voor dit bericht - + Hide the attachment pane Het venster bijlage verbergen @@ -14097,6 +14673,42 @@ Wil je het bericht bewaren? Compose Opstellen + + Reply to selected message + Antwoord op geselecteerde bericht + + + Reply + Antwoord + + + Reply all to selected message + Antwoord op alle geselecteerde berichten + + + Reply all + Beantwoord alles + + + Forward selected message + Stuur geselecteerd bericht door + + + Forward + Doorsturen + + + Remove selected message + Verwijder geselecteerde bericht + + + Delete + Verwijderen + + + Print selected message + Print geselecteerd bericht + Print @@ -14175,7 +14787,7 @@ Wil je het bericht bewaren? MessagesDialog - + New Message Nieuw bericht @@ -14185,16 +14797,60 @@ Wil je het bericht bewaren? Opstellen - + Reply to selected message + Antwoord op geselecteerde bericht + + + Reply + Antwoord + + + Reply all to selected message + Antwoord op alle geselecteerde berichten + + + Reply all + Beantwoord alles + + + Forward selected message + Stuur geselecteerd bericht door + + + Foward + Doorsturen + + + Remove selected message + Verwijder geselecteerde bericht + + + Delete + Verwijderen + + + Print selected message + Print geselecteerd bericht + + + Print + Print + + + Display + Toon + + + - - + + Tags Labels - - + + Inbox Inbox @@ -14224,17 +14880,21 @@ Wil je het bericht bewaren? Asbak - + Total Inbox: Totaal inbox: - + Folders + Mappen + + + Quick View Snelle blik - + Print... Print... @@ -14244,6 +14904,26 @@ Wil je het bericht bewaren? Print Preview Print Voorbeeld + + Buttons Icon Only + Alleen knoppen tekst + + + Buttons Text Beside Icon + Knoppen tekst naast ikoon + + + Buttons with Text + Knoppen met tekst + + + Buttons Text Under Icon + Knoppen tekst onder ikoon + + + Set Text Under Icon + PLaats Tekst onder ikoon + Save As... @@ -14265,7 +14945,7 @@ Wil je het bericht bewaren? Stuur bericht door - + Subject Onderwerp @@ -14275,7 +14955,7 @@ Wil je het bericht bewaren? Van - + Date Datum @@ -14285,7 +14965,39 @@ Wil je het bericht bewaren? Inhoud - + Click to sort by attachments + Klik om op bijlages te sorteren + + + Click to sort by subject + Klik om op "Onderwerp" te sorteren + + + Click to sort by read + Klik om op "Gelezen" te sorteren + + + Click to sort by from + Klik om op "Afzender" te sorteren + + + Click to sort by date + Klik om op "Datum" te sorteren + + + Click to sort by tags + Klik om op "Labels" te sorteren + + + Click to sort by star + Klik om op "Sterren" te sorteren + + + Forward selected Message + Stuur geselecteerd bericht door + + + Search Subject Zoek Onderwerp @@ -14294,11 +15006,6 @@ Wil je het bericht bewaren? Search From Zoek van - - - Search To - - Search Date @@ -14325,14 +15032,14 @@ Wil je het bericht bewaren? Zoek Bijlagen - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - + Starred @@ -14406,7 +15113,7 @@ Wil je het bericht bewaren? - Show in People + Show author in People @@ -14420,7 +15127,7 @@ Wil je het bericht bewaren? - + No message using %1 tag available. @@ -14435,33 +15142,34 @@ Wil je het bericht bewaren? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Concepten - + No Box selected. - - To - Naar + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Geen "Sterren" berichten aanwezig. Sterren geven je bericht een speciale status zodat je de berichten makkelijker kan vinden. Om een bericht een ster te geven klik je op een lichte grijze ster naast een bericht. - + No system messages available. + Geen systeem berichten beschikbaar + + + To + Naar + + + Click to sort by to + Klik om te sorteren op + + + @@ -14469,6 +15177,22 @@ Wil je het bericht bewaren? Total: Totaal: + + Messages + Berichten + + + Click to sort by signature + Klik om te sorteren op tekening + + + This message was signed and the signature checks + Dit bericht heeft een valide handtekening + + + This message was signed but the signature doesn't check + Dit bericht heeft een ongeldige handtekening + Mail @@ -14496,17 +15220,7 @@ Wil je het bericht bewaren? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14560,7 +15274,7 @@ Wil je het bericht bewaren? - + Expand Uitbreiden @@ -14570,7 +15284,7 @@ Wil je het bericht bewaren? Item verwijderen - + from van @@ -14605,7 +15319,7 @@ Wil je het bericht bewaren? Bericht in behandeling - + Hide Verberg @@ -14746,7 +15460,7 @@ Wil je het bericht bewaren? Verbindings ID - + Remove unused keys... Verwijder ongebruikte sleutels... @@ -14756,7 +15470,7 @@ Wil je het bericht bewaren? - + Clean keyring Schoon sleutelring @@ -14774,13 +15488,7 @@ Opmerkingen: Je oude sleutelbos zal gebackupped worden. Deze operatie kan mislukken als er meerdere Retroshare instanties draaien op dezelfde machine. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Sleutelring info @@ -14816,13 +15524,18 @@ Voor de veiligheid is je sleutelbos gebackupped. Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Datainconsistentie in de sleutelbos. Dit is hoogstwaarschijnlijk een bug. Neem contact op met de ontwikkelaars. + + + Export/create a new node + + Trusted keys only - + Search name @@ -14832,18 +15545,25 @@ Voor de veiligheid is je sleutelbos gebackupped. - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: + + NetworkPage + + Network + Netwerk + + NetworkView @@ -14870,7 +15590,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14891,7 +15611,7 @@ Reported error: - + Groups Groepen @@ -14921,19 +15641,19 @@ Reported error: importeer vriendenlijst, inclusief groepen - - + + Search - + ID ID - + Search ID @@ -14943,12 +15663,12 @@ Reported error: - + Show Items - + Last contact @@ -14958,7 +15678,7 @@ Reported error: IP - + Group Groep @@ -15073,7 +15793,7 @@ Reported error: - + Do you want to remove this node? @@ -15083,7 +15803,7 @@ Reported error: Wil je deze vriend verwijderen= - + Done! Klaar! @@ -15190,7 +15910,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15205,7 +15925,11 @@ at least one peer was not added to a group Verwijder alles - + This is a test. + Dit is een test. + + + Newest on top @@ -15215,12 +15939,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15275,6 +15999,10 @@ at least one peer was not added to a group Blogs Blogs + + Security + Veiligheid + @@ -15296,6 +16024,10 @@ at least one peer was not added to a group Message Bericht + + Connect attempt + Verbindings poging + @@ -15449,6 +16181,10 @@ at least one peer was not added to a group Disable All Toaster temporarily Alle Toasters tijdelijk uitschakelen + + Feed + Feed + Systray @@ -15458,7 +16194,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15478,12 +16214,12 @@ at least one peer was not added to a group Foutief wachtwoord! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Ongeregistreerde plugin/executable @@ -15498,7 +16234,19 @@ at least one peer was not added to a group Controleer uw systeem klok - + Examining shared files... + Onderzoek van gedeelde bestanden... + + + Hashing file + Indexeren van bestanden + + + Saving file index... + Bestands index opslaan... + + + Test Test @@ -15509,19 +16257,17 @@ at least one peer was not added to a group - Unknown title Onbekende titel - + - Encrypted message Versleutelde berichten - + 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). @@ -15529,7 +16275,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online Vriend online @@ -15581,6 +16327,10 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte PGPKeyDialog + + Dialog + Dialoog + Profile info @@ -15671,12 +16421,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15685,6 +16430,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + Onderteken PGP Sleutel + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15721,14 +16470,19 @@ p, li { white-space: pre-wrap; } Inclusief handtekeningen - + + 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 - Gebruiken als directe bron, indien beschikbaar + @@ -15767,21 +16521,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Error: kan geen verbindings gegevens vinden. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) De ingevoerde sleutel algoritme wordt niet ondersteund door RetroShareāŽ @@ -15800,7 +16554,7 @@ 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. @@ -15869,6 +16623,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Misschien is uw wachtwoord fout + You haven't set a trust level for this key. @@ -15876,12 +16634,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15907,7 +16665,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Chat @@ -15928,7 +16686,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Item verwijderen - + Name: Naam: @@ -15968,7 +16726,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Schrijf een bericht @@ -15982,6 +16740,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected Vriend verbonden + + Connect Attempt + Verbindings poging + Connection refused by peer @@ -16020,13 +16782,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown Onbekend + + Unknown Peer + Onbekende Verbinding + Hide Verberg - + Send Message Verstuur bericht @@ -16193,6 +16959,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + Formulier + + PhotoDialog @@ -16200,11 +16973,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare PhotoShare + + Photo + Foto + TextLabel Tekst label + + Comment + Opmerkingen + + + Summary + Overzicht + Album / Photo Name @@ -16265,6 +17050,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Een opmerking toevoegen + + + Write a comment... + Schrijf een opmerking + Album @@ -16335,6 +17128,10 @@ p, li { white-space: pre-wrap; }āŽ Create Album Maak album + + View Album + Bekijk Album + Edit Album Details @@ -16356,17 +17153,17 @@ p, li { white-space: pre-wrap; }āŽ Slide Show - + My Albums Mijn Albums - + Subscribed Albums Geabonneerde Albums - + Shared Albums Gedeelde Albums @@ -16396,7 +17193,7 @@ voordat je het kunt bewerken! PhotoSlideShow - + Album Name Album Naam @@ -16455,19 +17252,19 @@ voordat je het kunt bewerken! - - + + TextLabel Tekst label - + Posted by - + ago @@ -16503,12 +17300,12 @@ voordat je het kunt bewerken! PluginItem - + TextLabel Tekst label - + Show more details about this plugin Toon meer gegevens van deze plugin @@ -16654,6 +17451,41 @@ p, li { white-space: pre-wrap; }āŽ Plugin look-up directories Plugin look-up directories + + No API number supplied. Please read plugin development manual. + Geen API nummer gevonden. Lees de plugin ontwerp handleiding. + + + No SVN number supplied. Please read plugin development manual. + Geen SVN nummer gevonden. Lees de plugin ontwerp handleiding. + + + Loading error. + Laad error. + + + Missing symbol. Wrong version? + Er mist een symbool. Verkeerde versie? + + + No plugin object + Geen plugin object + + + Plugins is loaded. + Plugin is geladen + + + Unknown status. + Onbekende status + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Controleer dit voor plugin ontwikkeling. Zij worden niet gecontroleerd voor de index. Echter, gewoonlijk zal het controleren van de index je beschermen tegen verdacht gebruik van de plugins + Plugins @@ -16723,27 +17555,12 @@ p, li { white-space: pre-wrap; }āŽ Zet scherm boven - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16777,6 +17594,14 @@ p, li { white-space: pre-wrap; }āŽ Close conversation? + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Het sluiten van dit venster zal het gesprek beĆ«indigen en de chat-tunnel verwijderen. + + + Kill the tunnel? + Verwijder de tunnel? + PostedCardView @@ -16796,7 +17621,7 @@ p, li { white-space: pre-wrap; }āŽ Nieuw - + Vote up Stemmen van @@ -16816,8 +17641,8 @@ p, li { white-space: pre-wrap; }āŽ \/ - - + + Comments Opmerkingen @@ -16842,13 +17667,13 @@ p, li { white-space: pre-wrap; }āŽ - - + + Comment - + Comments @@ -16876,12 +17701,20 @@ p, li { white-space: pre-wrap; }āŽ PostedCreatePostDialog - + Signed by: + Ondertekend door: + + + Notes + Notities + + + Create a new Post - + RetroShare RetroShare @@ -16896,22 +17729,12 @@ p, li { white-space: pre-wrap; }āŽ - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Laad images bestand - + Post image @@ -16927,17 +17750,7 @@ p, li { white-space: pre-wrap; }āŽ - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16947,7 +17760,23 @@ p, li { white-space: pre-wrap; }āŽ - + Submit Post + Bevestig Bericht + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + U verzendt een link. De sleutel tot een succesvolle indiening is interessante inhoud en een beschrijvende titel. + + + Submit + Bevestig + + + Submit a new Post + Een nieuw bericht verzenden + + + Please add a Title Voeg een titel toe @@ -16967,22 +17796,12 @@ p, li { white-space: pre-wrap; }āŽ - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16997,7 +17816,7 @@ p, li { white-space: pre-wrap; }āŽ - + Post @@ -17008,7 +17827,7 @@ p, li { white-space: pre-wrap; }āŽ PLaatje - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17018,7 +17837,7 @@ p, li { white-space: pre-wrap; }āŽ Titel - + Link Koppeling @@ -17026,12 +17845,36 @@ p, li { white-space: pre-wrap; }āŽ PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Geposte Links + + + Create Topic + Thema aanmaken + + + My Topics + Mijn Onderwerpen + + + Subscribed Topics + Geabonneerde Onderwerpen + + + Popular Topics + Populaire Onderwerpen + + + Other Topics + Andere Onderwerpen + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17065,7 +17908,31 @@ p, li { white-space: pre-wrap; }āŽ PostedGroupDialog - + Posted Topic + Geplaatst Onderwerp + + + Add Topic Admins + Admins onderwerp toevoegen + + + Select Topic Admins + Selcteer Admins onderwerp + + + Create New Topic + Maak een nieuw onderwerp + + + Edit Topic + Onderwerp bewerken + + + Update Topic + Bijwerken van onderwerp + + + Create New Board @@ -17103,17 +17970,7 @@ p, li { white-space: pre-wrap; }āŽ PostedGroupItem - - Last activity - - - - - TextLabel - Tekst label - - - + Subscribe to Posted Abonneren op onderwerp @@ -17129,7 +17986,7 @@ p, li { white-space: pre-wrap; }āŽ - + Expand Uitbreiden @@ -17144,17 +18001,24 @@ p, li { white-space: pre-wrap; }āŽ - + Posted Description + Geplaatste beschrijving + + + Loading + Laden + + + New Posted + Nieuw geplaatst + + + Loading... - - Never - - - - + New Board @@ -17167,18 +18031,22 @@ p, li { white-space: pre-wrap; }āŽ PostedItem - + 0 0 - - + Site + Site + + + + Comments Opmerkingen - + Copy RetroShare Link Kopieer RetroShare Link @@ -17189,12 +18057,12 @@ p, li { white-space: pre-wrap; }āŽ - + Comment Opmerking - + Comments @@ -17204,7 +18072,7 @@ p, li { white-space: pre-wrap; }āŽ - + Click to view Picture @@ -17214,17 +18082,21 @@ p, li { white-space: pre-wrap; }āŽ - + Vote up Stemmen van - + Vote down Wegstemmen - + \/ + \/ + + + Set as read and remove item Markeer als gelezen en verplaats item @@ -17234,7 +18106,7 @@ p, li { white-space: pre-wrap; }āŽ Nieuw - + New Comment: @@ -17244,7 +18116,7 @@ p, li { white-space: pre-wrap; }āŽ - + Name Naam @@ -17285,10 +18157,73 @@ p, li { white-space: pre-wrap; }āŽ Tekst label - + Loading Laden + + By + Door + + + + PostedListWidget + + Form + Formulier + + + Hot + Hot + + + New + Nieuw + + + Top + Boven + + + Today + Vandaag + + + Yesterday + Gisteren + + + This Week + Deze Week + + + This Month + Deze Maand + + + This Year + Dit Jaar + + + Submit a new Post + Een nieuw bericht verzenden + + + Next + Volgend + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Maak of kies een teken-identiteit voor het stemmen + + + Previous + Vorige + PostedListWidgetWithModel @@ -17308,17 +18243,7 @@ p, li { white-space: pre-wrap; }āŽ - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17328,15 +18253,15 @@ p, li { white-space: pre-wrap; }āŽ - + - + unknown onbekend - + Distribution: @@ -17346,42 +18271,42 @@ p, li { white-space: pre-wrap; }āŽ - + Created - + TextLabel Tekst label - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17401,7 +18326,7 @@ p, li { white-space: pre-wrap; }āŽ Hot - + Search @@ -17431,17 +18356,17 @@ p, li { white-space: pre-wrap; }āŽ - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17456,17 +18381,12 @@ p, li { white-space: pre-wrap; }āŽ - + Copy RetroShare Link Kopieer RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17476,31 +18396,27 @@ p, li { white-space: pre-wrap; }āŽ Bewerk - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17515,7 +18431,7 @@ p, li { white-space: pre-wrap; }āŽ Registreren - + Never @@ -17589,16 +18505,6 @@ p, li { white-space: pre-wrap; }āŽ No Channel Selected Geen kanaal geselecteerd - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17607,6 +18513,10 @@ p, li { white-space: pre-wrap; }āŽ Tabs Tabblad + + Open each topic in a new tab + Elk onderwerp openen in een nieuw tabblad + Open each board in a new tab @@ -17620,6 +18530,10 @@ p, li { white-space: pre-wrap; }āŽ PostedUserNotify + + Posted + Gepost + Board Post @@ -17688,16 +18602,16 @@ p, li { white-space: pre-wrap; }āŽ Profiel Beheerder - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17809,7 +18723,7 @@ en daar de importeer functie gebruiken ProfileWidget - + Edit status message Bewerk berichten status @@ -17825,7 +18739,7 @@ en daar de importeer functie gebruiken Profiel Beheerder - + Public Information Publieke informatie @@ -17860,12 +18774,12 @@ en daar de importeer functie gebruiken Online sinds: - + Other Information Andere informatie - + My Address Mijn adres @@ -17909,27 +18823,51 @@ en daar de importeer functie gebruiken PulseAddDialog - + Post From: + Bericht van: + + + Account 1 + Account 1 + + + Account 2 + Account 2 + + + Account 3 + Account 3 + + + Add to Pulse Voeg aan Pulse toe - + filter + filter + + + URL Adder + URL toevoeger + + + Display As Toon als - + URL URL - + GroupLabel - + IDLabel @@ -17939,12 +18877,12 @@ en daar de importeer functie gebruiken Van: - + Head - + Head Shot @@ -17974,13 +18912,13 @@ en daar de importeer functie gebruiken - - + + Whats happening? - + @@ -17992,22 +18930,12 @@ en daar de importeer functie gebruiken - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18016,13 +18944,17 @@ en daar de importeer functie gebruiken Cancel Annuleren + + Post Pulse to Wire + Post Pulse to Wire + Post - + Reply to Pulse @@ -18037,24 +18969,34 @@ en daar de importeer functie gebruiken - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Laad images bestand + From + Van + + + Date + Datum + + + ... + ... @@ -18065,7 +19007,7 @@ en daar de importeer functie gebruiken Formulier - + @@ -18084,7 +19026,7 @@ en daar de importeer functie gebruiken PulseReply - + icn @@ -18094,7 +19036,7 @@ en daar de importeer functie gebruiken - + REPLY @@ -18121,7 +19063,7 @@ en daar de importeer functie gebruiken - + FOLLOW @@ -18131,7 +19073,7 @@ en daar de importeer functie gebruiken - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18151,7 +19093,7 @@ en daar de importeer functie gebruiken - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18267,7 +19209,7 @@ en daar de importeer functie gebruiken - + FOLLOW @@ -18275,42 +19217,37 @@ en daar de importeer functie gebruiken PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18342,7 +19279,7 @@ en daar de importeer functie gebruiken - + FOLLOW @@ -18350,8 +19287,8 @@ en daar de importeer functie gebruiken QObject - - + + Confirmation Bevestiging @@ -18622,12 +19559,12 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Verbindings details - + File Request canceled Bestands aanvraag gestopt - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Deze versie van RetroShare maakt gebruik van OpenPGP-SDK. Als bijeffect gebruikt het niet de gedeelde PGP sleutelring maar heeft zijn eigen sleutelring die gebruikt wordt door alle RetroShare gevallen.<br><br> @@ -18658,7 +19595,7 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Een onverwachte error verscheen. Stuur een report 'RsInit::InitRetroShare onverwachte return code %1'. - + Cannot start Tor Manager! @@ -18692,7 +19629,7 @@ The error reported is:" - + Multiple instances Meerdere gevallen @@ -18715,26 +19652,6 @@ Lock file:āŽ Lock file:āŽ - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18815,7 +19732,7 @@ De error is: %2 Gegevens doorsturen - + You appear to have nodes associated to DSA keys: @@ -18825,7 +19742,7 @@ De error is: %2 - + enabled @@ -18835,7 +19752,7 @@ De error is: %2 - + Move IP %1 to whitelist @@ -18851,7 +19768,7 @@ De error is: %2 - + %1 seconds ago @@ -18918,7 +19835,7 @@ Security: no anonymous IDs - + Join chat room @@ -18946,7 +19863,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19126,29 +20043,13 @@ Security: no anonymous IDs Ban list - - - Name - Naam - - Node - Knooppunt - - - - Address - - - - - Status Status - + NXS @@ -19391,18 +20292,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19565,7 +20454,7 @@ p, li { white-space: pre-wrap; }āŽ - + Network Wide Netwerk breed @@ -19745,7 +20634,7 @@ p, li { white-space: pre-wrap; }āŽ Formulier - + The loading of embedded images is blocked. Het laden van ingesloten afbeeldingen is geblokkeerd. @@ -19758,7 +20647,7 @@ p, li { white-space: pre-wrap; }āŽ RSPermissionMatrixWidget - + Allowed by default @@ -19931,22 +20820,12 @@ p, li { white-space: pre-wrap; }āŽ RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19954,12 +20833,12 @@ p, li { white-space: pre-wrap; }āŽ RSTreeWidget - + Tree View Options - + Show Header @@ -20651,7 +21530,7 @@ Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijde RsDownloadListModel - + Name i.e: file name Naam @@ -20772,7 +21651,7 @@ Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijde RsFriendListModel - + Name Naam @@ -20792,7 +21671,7 @@ Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijde IP - + Profile ID @@ -20848,7 +21727,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20862,6 +21741,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... Bericht ontbreekt ... ] + RsMessageModel @@ -20875,11 +21759,6 @@ prevents the message to be forwarded to your friends. From Van - - - To - Naar - Subject @@ -20902,18 +21781,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Klik om op "Gelezen" te sorteren - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Klik om op "Afzender" te sorteren @@ -20936,9 +21810,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20959,7 +21831,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Resets ALLE opgslagen RetroShare instellingen @@ -21020,7 +21892,7 @@ prevents the message to be forwarded to your friends. Stel RetroShare's taal in. - + Unable to open log file '%1': %2 Het is niet mogelijk om het log bestand '%1': %2 te openen @@ -21041,7 +21913,7 @@ prevents the message to be forwarded to your friends. Kan geen gegevensmap maken: %1 - + opmode @@ -21071,7 +21943,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21089,7 +21961,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21106,12 +21978,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Plaats een sleutelwoord hier (minstens 3 karakters) - + Start Search Start zoeken @@ -21173,7 +22045,7 @@ prevents the message to be forwarded to your friends. Leeg - + KeyWords Sleutelwoorden @@ -21188,7 +22060,7 @@ prevents the message to be forwarded to your friends. Zoek ID - + Filename Bestandsnaam @@ -21288,23 +22160,23 @@ prevents the message to be forwarded to your friends. Download geselecteerd - + File Name Bestandsnaam - + Download Download - + Copy RetroShare Link Kopieer RetroShare Link - + Send RetroShare Link Stuur RetroShare link @@ -21314,7 +22186,7 @@ prevents the message to be forwarded to your friends. - + Download Notice Download @@ -21351,7 +22223,7 @@ prevents the message to be forwarded to your friends. Verwijder alles - + Folder Map @@ -21362,17 +22234,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) Nieuwe RetroShare link(s) - + Open Folder Open map - + Create Collection... Collectie maken... @@ -21392,7 +22264,7 @@ prevents the message to be forwarded to your friends. Download van collectief bestand... - + Collection Collectie @@ -21400,7 +22272,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Verbindings details @@ -21416,22 +22288,22 @@ prevents the message to be forwarded to your friends. Item verwijderen - + IP address: - + Peer ID: Verbindings ID: - + Location: Woonplaats: - + Peer Name: @@ -21448,7 +22320,7 @@ prevents the message to be forwarded to your friends. Verbergen - + but reported: @@ -21473,8 +22345,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21482,7 +22354,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare wil vrienden zijn met je op RetroShare @@ -21513,7 +22385,7 @@ prevents the message to be forwarded to your friends. - + Expand Uitbreiden @@ -21558,12 +22430,12 @@ prevents the message to be forwarded to your friends. Status: - + Write Message Schrijf een bericht - + Connect Attempt Verbindings poging @@ -21583,22 +22455,17 @@ prevents the message to be forwarded to your friends. Onbekende (uitgaande) verbindings poging - + Unknown Security Issue Onbekend veiligheids probleem - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown Onbekend @@ -21608,7 +22475,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + Onbekenden verbinding + + + Hide Verberg @@ -21618,7 +22489,7 @@ prevents the message to be forwarded to your friends. Wil je deze vriend verwijderen= - + Certificate has wrong signature!! This peer is not who he claims to be. Certificaat heeft verkeerde handtekening! Deze verbinding is niet wie hij beweert te zijn. @@ -21628,12 +22499,12 @@ prevents the message to be forwarded to your friends. Ontbrekende/Beschadigd certificaat. Niet een echte Retroshare gebruiker. - + Certificate caused an internal error. Certificaat heeft een interne fout veroorzaakt. - + Peer/node not in friendlist (PGP id= @@ -21692,12 +22563,12 @@ prevents the message to be forwarded to your friends. - + Local Address Lokaal adres - + NAT @@ -21718,22 +22589,22 @@ prevents the message to be forwarded to your friends. Poort: - + Local network Lokaal Netwerk - + External ip address finder Extern ip adres vinder - + UPnP UPnP - + Known / Previous IPs: Bekende / Eerdere IP's: @@ -21749,16 +22620,21 @@ kun je makkelijker verbonden worden met je vrienden. Het helptāŽ je ook als ja achter een Firewall of VPN zit. - - - + + Allow RetroShare to ask my ip to these websites: + Sta RetroShare toe om mijn ip-adres te vragen aan de volgende websites: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Aanvaardbare poorten variĆ«ren van 10 tot 65535. Normaal zijn poorten onder 1024 gereserveerd door uw systeem. @@ -21768,46 +22644,23 @@ je ook als ja achter een Firewall of VPN zit. Aanvaardbare poorten variĆ«ren van 10 tot 65535. Normaal zijn poorten onder 1024 gereserveerd door uw systeem. - + Onion Address UI adres - + Discovery On (recommended) Discovery ingeschakeld (aanbevolen) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off Ontdekking uit @@ -21817,7 +22670,7 @@ List of found external IP: - + I2P Address @@ -21842,95 +22695,37 @@ List of found external IP: - - - + + Proxy seems to work. Proxy lijkt te werken. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21945,7 +22740,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21955,7 +22814,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21967,12 +22841,12 @@ 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> @@ -21982,7 +22856,7 @@ Also check your ports! Leeg - + Download limit (KB/s) @@ -21997,23 +22871,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22024,7 +22898,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22034,7 +22918,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22044,7 +22933,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22084,7 +22983,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Start @@ -22099,7 +22998,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Stop - + + BOB status + + + + Incoming Binnenkomend @@ -22135,32 +23039,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22215,7 +23094,7 @@ If you have issues connecting over Tor check the Tor logs too. Totaal: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22240,7 +23119,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22252,7 +23131,7 @@ If you have issues connecting over Tor check the Tor logs too. Netwerk - + IP Filters @@ -22275,7 +23154,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Status @@ -22335,28 +23214,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22372,18 +23240,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22418,12 +23286,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22446,22 +23314,22 @@ 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> @@ -22496,7 +23364,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22506,12 +23374,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22591,7 +23459,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with Controleer welke verbinding je wilt delen met een openbare PrivĆ© Sleutel @@ -22601,12 +23469,12 @@ If you have issues connecting over Tor check the Tor logs too. Delen voor vriend - + Share Deel - + 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. U kunt uw vrienden laten weten over uw kanaal door met hen te delen. @@ -22626,7 +23494,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Gedeelde mappen manager - + Shared directory @@ -22646,17 +23514,17 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Zichtbaarheid - + Add new - + Cancel Annuleren - + Add a Share Directory Voeg een gedeelde directory toe @@ -22666,7 +23534,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Verwijderen - + Apply and close Toepassen en sluiten @@ -22757,7 +23625,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. directory niet gevonden of directory naam niet geaccepteerd - + 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. Dit is een lijst van gedeelde mappen. U kunt toevoegen en verwijderen van mappen met behulp van de knoppen aan de onderkant. Wanneer u een nieuwe map, aanvankelijk alle bestanden in die map worden gedeeld. U kunt delen vlaggen voor elke gedeelde map afzonderlijk instellen. @@ -22765,7 +23633,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. SharedFilesDialog - + Files Bestanden @@ -22816,16 +23684,11 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files controleer bestanden - + Download selected Download geselecteerd @@ -22835,7 +23698,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Download - + Copy retroshare Links to Clipboard Kopieer Retroshare link naar het klembord @@ -22850,7 +23713,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Stuur RetroShare links - + Some files have been omitted @@ -22866,7 +23729,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Aanbeveling(en) - + Create Collection... Collectie maken... @@ -22891,7 +23754,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Download van collectief bestand... - + Some files have been omitted because they have not been indexed yet. @@ -23034,12 +23897,12 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. SplashScreen - + Load configuration Laad configuratie - + Create interface Maak interface @@ -23063,7 +23926,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Onthoudt wachtwoord - + Log In Log In @@ -23404,7 +24267,7 @@ This choice can be reverted in settings. Berichten status - + Message: Bericht: @@ -23649,7 +24512,7 @@ p, li { white-space: pre-wrap; }āŽ TagsMenu - + Remove All Tags Verwijder alle labels @@ -23685,15 +24548,12 @@ p, li { white-space: pre-wrap; }āŽ - - + Tor status: - - - + Unknown Onbekend @@ -23703,13 +24563,18 @@ p, li { white-space: pre-wrap; }āŽ - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23719,57 +24584,12 @@ p, li { white-space: pre-wrap; }āŽ - - Error - - - - - Not connected - Niet verbonden - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23777,7 +24597,7 @@ p, li { white-space: pre-wrap; }āŽ TorStatus - + Tor @@ -23787,7 +24607,7 @@ p, li { white-space: pre-wrap; }āŽ - + Tor is currently offline @@ -23798,12 +24618,11 @@ p, li { white-space: pre-wrap; }āŽ - No tor configuration - + Tor proxy is OK @@ -23831,7 +24650,7 @@ p, li { white-space: pre-wrap; }āŽ TransferPage - + Transfer options Overdrachts opties @@ -23842,7 +24661,7 @@ p, li { white-space: pre-wrap; }āŽ Maximum gelijktijdige downloads: - + Shared Directories @@ -23852,27 +24671,22 @@ p, li { white-space: pre-wrap; }āŽ Deel automatisch uw opslag directory (Aanbevolen) - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23957,7 +24771,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23966,12 +24780,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23996,12 +24805,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Streaming @@ -24066,7 +24870,12 @@ p, li { white-space: pre-wrap; } Max. tunnel aanvraag. doorgestuurd per seconde: - + + <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> @@ -24076,17 +24885,7 @@ p, li { white-space: pre-wrap; } - - Warning - Waarschuwing - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24114,7 +24913,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Download klaar @@ -24138,23 +24937,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Je hebt %1 complete downloads + + + You have %1 completed download + Je hebt %1 complete download + + + %1 completed downloads + %1 complete downloads + + + %1 completed download + %1 complete download + TransfersDialog - - + + Downloads Downloads - + Uploads Uploads - + Name i.e: file name Naam @@ -24361,12 +25176,7 @@ p, li { white-space: pre-wrap; } Specificeer... - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Move in Queue... Verplaats in Rij... @@ -24391,7 +25201,7 @@ p, li { white-space: pre-wrap; } Kies directory - + Anonymous end-to-end encrypted tunnel 0x @@ -24412,7 +25222,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24445,17 +25255,7 @@ p, li { white-space: pre-wrap; } Bestand %1 is niet kompleet. Als het een media bestand is probeer deze te openen. - - Warning - Waarschuwing - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Verander bestandsnaam @@ -24470,7 +25270,7 @@ p, li { white-space: pre-wrap; } Vul een nieuwe -en geldige- bestandsnaam in - + Expand all Alles uitklappen @@ -24597,18 +25397,23 @@ 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> + + + + Columns Kolommen - + File Transfers Bestandsoverdrachten - + Path Pad @@ -24618,7 +25423,7 @@ p, li { white-space: pre-wrap; } Pad kolom weergeven - + Could not delete preview file Kan geen gegevens verwijderen voorvertoningsbestand @@ -24628,7 +25433,7 @@ p, li { white-space: pre-wrap; } Probeer het opnieuw? - + Create Collection... Collectie maken.. @@ -24643,7 +25448,7 @@ p, li { white-space: pre-wrap; } Bekijk collectie.. - + Collection Collectie @@ -24653,7 +25458,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x Anonieme tunnel 0x @@ -24782,7 +25587,7 @@ p, li { white-space: pre-wrap; } Unknown Peer - Onbekenden verbinding + @@ -25067,17 +25872,12 @@ p, li { white-space: pre-wrap; } Formulier - + Enable Retroshare WEB Interface - - Status: - Status: - - - + Web parameters @@ -25117,27 +25917,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25147,12 +25937,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25289,7 +26079,11 @@ p, li { white-space: pre-wrap; } Wiki pagina's - + New Group + Nieuwe Groep + + + Page Name Pagina Naam @@ -25304,7 +26098,7 @@ p, li { white-space: pre-wrap; } Orig Id - + << << @@ -25392,7 +26186,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Pagina Bewerkte Geschiedenis @@ -25427,7 +26221,7 @@ p, li { white-space: pre-wrap; } PaginaID - + \/ \/ @@ -25457,18 +26251,14 @@ p, li { white-space: pre-wrap; } Labels - - History - Geschiedenis - - - + + Show Edit History Toon Bewerkte Geschiedenis - + Status Status @@ -25489,7 +26279,7 @@ p, li { white-space: pre-wrap; } Omkeren - + Submit Bevestig @@ -25561,6 +26351,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + TimeRange + Create Account @@ -25572,7 +26366,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Ververs + + + Settings @@ -25587,7 +26390,7 @@ p, li { white-space: pre-wrap; } Anderen - + Who to Follow @@ -25607,7 +26410,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25637,17 +26440,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Verleden Maand + + + Last Week + Verleden Week + + + Today + Vandaag + + + New + Nieuw + + + from + van + + + until + totdat + + + Search/Filter + Zoek/Filter + + + Network Wide + Netwerk breed + + + Manage Accounts + Beheer Accounts + + + Showing: + Toon: + + + Yourself Uzelf + + Friends + Vrienden + Following Volgend - + Custom + Custom + + + Account 1 + Account 1 + + + Account 2 + Account 2 + + + Account 3 + Account 3 + + + CheckBox + CheckBox + + + Post Pulse to Wire + Post Pulse to Wire + + + RetroShare RetroShare @@ -25710,42 +26581,35 @@ p, li { white-space: pre-wrap; } Formulier - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Verwijderen - - - Location: Woonplaats: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25790,41 +26654,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - Volgend - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Onbekend @@ -25902,7 +26736,7 @@ p, li { white-space: pre-wrap; } %1y %2d - + k e.g: 3.1 k k @@ -25939,7 +26773,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_pl.ts b/retroshare-gui/src/lang/retroshare_pl.ts index 637121e24..ef7478036 100644 --- a/retroshare-gui/src/lang/retroshare_pl.ts +++ b/retroshare-gui/src/lang/retroshare_pl.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + Dodaj komentarz + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Wyszukiwanie zaawansowane - + Search Criteria Kryteria wyszukiwania - + Add a further search criterion. Dodaj następne kryterium wyszukiwania. @@ -137,7 +144,7 @@ Resetuj kryteria wyszukiwania. - + Cancels the search. Anuluj wyszukiwanie. @@ -157,6 +164,109 @@ Szukaj + + AlbumCreateDialog + + Create Album + Utwórz album + + + Album Name: + Nazwa albumu: + + + Category: + Kategoria: + + + Animals + Zwierzęta + + + Family + Rodzina + + + Friends + Przyjaciele + + + Flowers + Kwiaty + + + Holiday + Wakacje + + + Pets + Zwierzęta + + + Travel + Podróż + + + Work + Praca + + + Random + Losowe + + + Where: + Gdzie: + + + Photographer: + Fotograf: + + + Description: + Opis + + + Quality: + Jakość: + + + Comments: + Komentarze: + + + Public + Publiczne + + + No Comments Allowed + Komentowanie zabronione + + + Authenticated Comments + Komentarze dozwolone + + + Any Comments Allowed + Jakiekolwiek komentarze dozwolone + + + Back + Wstecz + + + Add Photos + Dodaj zdjęcia + + + Publish Album + Publikuj album + + + Say something about this album... + Powiedz coś o tym albumie... + + AlbumDialog @@ -170,6 +280,10 @@ TextLabel + + Summary + Podsumowanie + Album Title: @@ -185,6 +299,26 @@ Caption + + Where: + Gdzie: + + + When + Kiedy + + + Description: + Opis + + + Comments + Komentarze + + + Visibility + Widoczność + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -549,7 +683,7 @@ 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. @@ -575,23 +709,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -634,7 +755,7 @@ p, li { white-space: pre-wrap; } Usuń - + Set your Avatar picture @@ -721,10 +842,22 @@ p, li { white-space: pre-wrap; } Zresetuj - + Receive Rate + Prędkość pobierania + + + Send Rate + Prędkość wysyłania + + + Always on Top Zawsze na wierzchu + + Style + Styl + Changes the transparency of the Bandwidth Graph @@ -740,11 +873,23 @@ p, li { white-space: pre-wrap; } % Opaque % nieprzezroczysty + + Save + Zapisz + + + Cancel + Anuluj + Since: Od: + + Hide Settings + Ukryj ustawienia + BandwidthStatsWidget @@ -817,7 +962,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -847,12 +992,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -860,7 +1005,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -880,7 +1025,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -918,7 +1063,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -938,7 +1083,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -968,7 +1113,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status Przełącz status przeczytanej wiadomości @@ -978,7 +1123,7 @@ p, li { white-space: pre-wrap; } Nowy - + TextLabel @@ -986,12 +1131,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 0 @@ -1011,18 +1156,18 @@ p, li { white-space: pre-wrap; } Awatar - + New Comment - + Copy RetroShare Link - + Expand Rozwiń @@ -1037,12 +1182,12 @@ p, li { white-space: pre-wrap; } Usuń element - + Name - + Comm value @@ -1211,17 +1356,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels Kanały - + Tabs - + General Ogólne @@ -1231,17 +1376,7 @@ p, li { white-space: pre-wrap; } - - Downloads - Pobierania - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1249,7 +1384,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1272,7 +1407,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1297,18 +1432,18 @@ into the image, so as to Awatar - + New Comment - + Copy RetroShare Link - + Expand Rozwiń @@ -1323,7 +1458,7 @@ into the image, so as to Usuń element - + Name @@ -1333,7 +1468,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide Ukryj @@ -1341,7 +1486,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1532,7 +1677,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Pokaż lobby rozmów @@ -1544,6 +1689,22 @@ into the image, so as to Chats + + You have %1 new messages + Masz %1 nowych wiadomości + + + You have %1 new message + Masz %1 nową wiadomość + + + %1 new messages + %1 nowych wiadomości + + + %1 new message + %1 nowa wiadomość + You have %1 mentions @@ -1565,14 +1726,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1580,13 +1740,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Nazwa - + Count Liczba @@ -1596,7 +1756,29 @@ into the image, so as to Temat - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1606,7 +1788,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1663,12 +1845,12 @@ 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: @@ -1678,31 +1860,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Stwórz lobby rozmów + + + [No topic provided] [Nie podano tematu] - - + Selected lobby info + Informacje o zaznaczonym lobby + + + Private Prywatny - - - + Public Publiczne - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1712,25 +1894,42 @@ Double click a chat room to enter and chat. Wyłącz autosubskrypcję - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Dodaj autosubskrypcję - + Search Chat lobbies Wyszukaj lobby rozmów - + Search Name - + Subscribed + Subskrybowane + + + Columns Kolumny + + Yes + Tak + + + No + Nie + Chat rooms @@ -1742,47 +1941,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: Typ: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1797,24 +1996,13 @@ Double click a chat room to enter and chat. - + Show Pokaż - - Private Subscribed - - - - - - Public Subscribed - - - - + column @@ -1828,7 +2016,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Usuń element @@ -1873,7 +2061,7 @@ Double click a chat room to enter and chat. ChatPage - + General Ogólne @@ -1888,7 +2076,15 @@ Double click a chat room to enter and chat. - + Chat Settings + Ustawienia rozmów + + + Enable Emoticons Group Chat + Włącz emotikony w rozmowach grupowych + + + Enable custom fonts @@ -1908,7 +2104,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1933,7 +2129,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1942,6 +2138,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + Chat Prywatny + Open Window for new chat @@ -1963,7 +2163,11 @@ Double click a chat room to enter and chat. - + Chat Font + Czcionka w rozmowach + + + Change Chat Font Zmień czcionkę @@ -1973,10 +2177,14 @@ Double click a chat room to enter and chat. Czcionka w rozmowach: - + History Historia + + Style + Styl + @@ -1991,13 +2199,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + Chat grupowy + Private chat Chat prywatny - + Choose your default font for Chat. @@ -2067,22 +2279,12 @@ Double click a chat room to enter and chat. - + Search Szukaj - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2092,17 +2294,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2199,7 +2391,7 @@ Double click a chat room to enter and chat. - + Case sensitive Rozróżnianie wielkości liter @@ -2305,7 +2497,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Pokaż Chat @@ -2341,7 +2533,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Zamknij @@ -2376,12 +2568,12 @@ Double click a chat room to enter and chat. Pochylenie - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2461,6 +2653,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2498,7 +2695,7 @@ Double click a chat room to enter and chat. - + is typing... pisze... @@ -2520,7 +2717,7 @@ after HTML conversion. - + Do you really want to physically delete the history? Czy naprawdę chcesz fizycznie usunąć historię? @@ -2570,7 +2767,7 @@ after HTML conversion. jest Zajęty i może nie odpowiedzieć - + Find Case Sensitively @@ -2592,7 +2789,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2607,12 +2804,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2628,12 +2825,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2644,12 +2841,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2669,7 +2866,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2695,7 +2892,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Pokazywanie szczegółów: @@ -2717,7 +2914,7 @@ Double click on it to add his name on text writer. - + Personal Circles Kręgi Osobiste @@ -2743,7 +2940,7 @@ Double click on it to add his name on text writer. - + Friends Przyjaciele @@ -2803,7 +3000,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2819,7 +3016,7 @@ Double click on it to add his name on text writer. - + Circles Kręgi @@ -2871,45 +3068,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2919,7 +3116,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -3001,17 +3198,12 @@ Double click on it to add his name on text writer. brak - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3031,7 +3223,7 @@ Double click on it to add his name on text writer. - + with @@ -3048,11 +3240,23 @@ Double click on it to add his name on text writer. Connect Friend Wizard + + Include signatures + Załącz podpisy + Open Cert of your friend from File + + Export my certificate... + Wyeksportuj swój certyfikat... + + + Browse + Przeglądaj + RetroShare ID @@ -3099,7 +3303,19 @@ Double click on it to add his name on text writer. Email - + Invite Friends by Email + Zaproś Przyjaciół przez Email + + + Enter your friends' email addresses (separate each one with a semicolon) + Wpisz adres email twoich przyjaciół (oddziel każdy średnikiem) + + + Subject: + Temat: + + + @@ -3115,32 +3331,36 @@ Double click on it to add his name on text writer. - + Peer details - + Name: Nazwa: + + Email: + Email: + Location: Miejsce: - + Options Opcje - + <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: Dodaj przyjaciela do grupy: @@ -3150,7 +3370,7 @@ Double click on it to add his name on text writer. Uwierzytelnij znajomego (Podpisz Klucz PGP) - + Please paste below your friend's Retroshare ID @@ -3175,22 +3395,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3210,27 +3420,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3276,17 +3491,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed Ładowanie certyfikatu nie powiodło się - + Not a valid Retroshare certificate! - + RetroShare Invitation Zaproszenie RetroShare @@ -3306,12 +3521,12 @@ 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? - + @@ -3319,7 +3534,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3359,7 +3574,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3384,7 +3599,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3394,7 +3609,19 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Remove signatures + Usuń podpisy + + + You can copy this text and send it to your friend via email or some other way + Możesz skopiować ten tekst i wysłać go do swojego przyjaciele poprzez email, czy też w inny sposób + + + Save as... + Zapisz jako... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3433,7 +3660,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3443,7 +3670,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3462,13 +3689,21 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> + + Message: + Wiadomość: + + + To + Do + Add key to keyring - + This key is already in your keyring @@ -3481,7 +3716,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3516,7 +3751,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3526,7 +3761,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3591,7 +3831,7 @@ even if you don't make friends. - + UDP Setup @@ -3619,7 +3859,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3629,20 +3869,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3652,14 +3889,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3669,8 +3904,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3695,7 +3929,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3987,7 +4221,7 @@ p, li { white-space: pre-wrap; } - + @@ -3995,8 +4229,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -4006,7 +4239,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4042,12 +4275,12 @@ p, li { white-space: pre-wrap; } - + Name Nazwa - + <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> @@ -4067,7 +4300,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4087,18 +4320,18 @@ p, li { white-space: pre-wrap; } - + Cancel Anuluj - + Nickname Ksywa - + Invited Members @@ -4113,7 +4346,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + Typ + + + Name: Nazwa: @@ -4153,19 +4394,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4175,24 +4416,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Dodaj @@ -4202,7 +4431,7 @@ p, li { white-space: pre-wrap; } - + Search Szukaj @@ -4255,13 +4484,13 @@ p, li { white-space: pre-wrap; } - + Create Utwórz - + Add Member @@ -4280,7 +4509,7 @@ p, li { white-space: pre-wrap; } Utwórz Grupę - + Group Name: Nazwa grupy: @@ -4315,7 +4544,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4325,7 +4554,7 @@ p, li { white-space: pre-wrap; } Wiadomość - + Post @@ -4385,6 +4614,14 @@ p, li { white-space: pre-wrap; } Add Channel Thumbnail + + Message + Wiadomość + + + Subject : + Temat: + @@ -4470,17 +4707,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4505,12 +4742,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4525,12 +4757,18 @@ p, li { white-space: pre-wrap; } Ukryj - + + 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? @@ -4564,7 +4802,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4573,6 +4811,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Temat + Attach File @@ -4593,8 +4835,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4613,7 +4855,7 @@ p, li { white-space: pre-wrap; } Możesz dołączyć pliki poprzez "przeciągnij i upuść" w tym oknie - + Post @@ -4643,17 +4885,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to W Odpowiedzi do - + Title Tytuł @@ -4706,7 +4948,7 @@ Do you want to discard this message? Wczytaj obraz - + No compatible ID for this forum @@ -4716,8 +4958,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4726,6 +4968,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? + + Send + Wyślij + Post as @@ -4740,7 +4986,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4775,7 +5021,7 @@ Do you want to discard this message? - + Create Utwórz @@ -4785,7 +5031,7 @@ Do you want to discard this message? Anuluj - + require PGP-signed identities @@ -4800,7 +5046,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4821,7 +5067,7 @@ Do you want to discard this message? Kontakty: - + Identity to use: @@ -4829,17 +5075,17 @@ Do you want to discard this message? CryptoPage - + Public Information Informacje Publiczne - + Name: Nazwa: - + Location: Miejsce: @@ -4849,12 +5095,12 @@ Do you want to discard this message? - + Software Version: - + Online since: Online od: @@ -4874,7 +5120,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4884,7 +5135,7 @@ Do you want to discard this message? - + Other Information Inne Informacje @@ -4894,12 +5145,17 @@ Do you want to discard this message? - + Profile - + + Certificate + Certyfikat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4909,7 +5165,11 @@ Do you want to discard this message? Załącz podpisy - + Save Key into a file + Zapisz Klucz do pliku + + + Export Identity Eksportuj Tożsamość @@ -4979,33 +5239,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5095,7 +5355,7 @@ and use the import button to load it DLListDelegate - + B B @@ -5763,7 +6023,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5771,38 +6031,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.rrrr - - + + KB KB - - + + MB MB - - + + GB GB @@ -5810,12 +6070,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5977,7 +6237,7 @@ and use the import button to load it FilesDefs - + Picture Obraz @@ -5987,7 +6247,7 @@ and use the import button to load it Wideo - + Audio Audio @@ -6047,21 +6307,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Katalogi Przyjaciół @@ -6183,7 +6433,7 @@ and use the import button to load it - + ID ID @@ -6225,7 +6475,7 @@ and use the import button to load it Pokaż Grupy - + Group Grupa @@ -6261,7 +6511,7 @@ and use the import button to load it Dodaj do grupy - + Search Szukaj @@ -6277,7 +6527,7 @@ and use the import button to load it - + Profile details @@ -6514,7 +6764,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6552,7 +6802,7 @@ at least one peer was not added to a group Szukaj Przyjaciół - + Mark all Zaznacz wszystkie @@ -6563,132 +6813,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6771,38 +6905,33 @@ Also check your ports! Zresetuj czcionkę do domyślnej - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6820,17 +6949,7 @@ Also check your ports! Hasło - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6840,12 +6959,17 @@ Also check your ports! - + Port Port - + + Use BOB + + + + This password is for PGP @@ -6866,38 +6990,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6917,12 +7041,12 @@ Also check your ports! - + <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 @@ -6932,43 +7056,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7012,13 +7131,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7028,7 +7147,7 @@ and use the import button to load it - + Tor/I2P address @@ -7063,7 +7182,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7073,7 +7192,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7083,7 +7207,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7309,13 +7438,27 @@ and use the import button to load it Pierwsze kroki - + Invite Friends Zaproś Przyjaciół - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 @@ -7325,103 +7468,89 @@ and use the import button to load it Dodaj Przyjaciół - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Zaawansowane: Otwórz Port Firewalla - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Zaawansowane: Otwórz Port Firewalla + + + Further Help and Support Dalsza Pomoc i Wsparcie - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website Otwórz stronę RS @@ -7446,7 +7575,7 @@ p, li { white-space: pre-wrap; } Opinia Email - + RetroShare Invitation Zaproszenie RetroShare @@ -7496,12 +7625,12 @@ p, li { white-space: pre-wrap; } Opinia o RetroShare - + RetroShare Support Wsparcie RetroShare - + It has many features, including built-in chat, messaging, @@ -7625,7 +7754,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Pokaż Chat Grupy @@ -7633,7 +7762,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7803,7 +7932,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Tytuł @@ -7816,12 +7945,12 @@ p, li { white-space: pre-wrap; } - + Description Opis - + Number of Unread message @@ -7846,7 +7975,19 @@ p, li { white-space: pre-wrap; } - + Sort by Name + Sortuj według Nazwy + + + Sort by Popularity + Sortuj według Popularności + + + Sort by Last Post + Sortuj według Ostatniego Postu + + + You are admin (modify names and description using Edit menu) @@ -7861,14 +8002,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post Ostatni Post - + Name @@ -7879,13 +8020,17 @@ p, li { white-space: pre-wrap; } Popularność - + Never - + Display + Wyświetl + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7898,7 +8043,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and i @@ -8034,7 +8179,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanały @@ -8045,22 +8190,22 @@ p, li { white-space: pre-wrap; } Stwórz kanał - + Enable Auto-Download Włącz auto-pobieranie - + My Channels Moje Kanały - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Subskrybowane kanały @@ -8080,12 +8225,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download Wyłącz auto-pobieranie - + Set download directory @@ -8120,22 +8265,22 @@ p, li { white-space: pre-wrap; } - + Play Odtwórz - + Open folder - + Open file - + Error Błąd @@ -8155,17 +8300,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8175,10 +8320,29 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + Formularz + + + Size + Rozmiar + + + Title + Tytuł + + + Status + Stan + + GxsChannelGroupDialog - + Create New Channel @@ -8216,19 +8380,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Zapisz się na kanał @@ -8242,7 +8396,7 @@ p, li { white-space: pre-wrap; } - + Expand Rozwiń @@ -8257,7 +8411,7 @@ p, li { white-space: pre-wrap; } Opis kanału - + Loading Wczytywanie @@ -8272,9 +8426,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + Nowy kanał @@ -8285,7 +8438,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8306,7 +8459,7 @@ p, li { white-space: pre-wrap; } - + Play Odtwórz @@ -8362,24 +8515,28 @@ p, li { white-space: pre-wrap; } Files Pliki + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Uwaga! Masz mniej niż %1 godzin i %2 minut zanim ten plik zostanie skasowany. Rozważ jego zapisanie. + Hide Ukryj - + New Nowy - + 0 0 - - + + Comment Skomentuj @@ -8394,17 +8551,21 @@ p, li { white-space: pre-wrap; } - + Loading + Wczytywanie + + + Loading... - + Comments - + Post @@ -8429,16 +8590,59 @@ p, li { white-space: pre-wrap; } Odtwórz multimedia + + GxsChannelPostsWidget + + Post to Channel + Napisz post na kanale + + + Loading + Wczytywanie + + + Title + Tytuł + + + Search Title + Szukaj Tytuł + + + Message + Wiadomość + + + No Channel Selected + Nie wybrano kanału + + + Disable Auto-Download + Wyłącz auto-pobieranie + + + Enable Auto-Download + Włącz auto-pobieranie + + + Files + Pliki + + + Description: + Opis + + GxsChannelPostsWidgetWithModel - + Post to Channel Napisz post na kanale - + Add new post @@ -8508,7 +8712,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8544,7 +8748,7 @@ p, li { white-space: pre-wrap; } - + Comments Komentarze @@ -8559,13 +8763,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8580,7 +8784,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8595,7 +8799,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8655,22 +8859,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8745,13 +8939,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Subskrybowane @@ -8802,17 +8995,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8927,7 +9120,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8940,7 +9133,7 @@ p, li { white-space: pre-wrap; } Formularz - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8970,7 +9163,7 @@ p, li { white-space: pre-wrap; } Odśwież - + Comment Komentarz @@ -9009,7 +9202,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Odpowiedz na Komentarz @@ -9033,21 +9226,6 @@ p, li { white-space: pre-wrap; } Vote Down Głosuj przeciw - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9057,7 +9235,7 @@ p, li { white-space: pre-wrap; } Skomentuj - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9086,10 +9264,21 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Komentarz</span></p></body></html> + Reply to Comment @@ -9117,7 +9306,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9168,7 +9357,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum Zasubskrybuj Forum @@ -9184,7 +9373,7 @@ before you can comment - + Expand Rozwiń @@ -9204,9 +9393,8 @@ before you can comment - - TextLabel - + Loading + Wczytywanie @@ -9237,13 +9425,13 @@ before you can comment GxsForumMsgItem - - + + Subject: Temat: - + Unsubscribe To Forum @@ -9254,7 +9442,7 @@ before you can comment - + Expand Rozwiń @@ -9274,17 +9462,21 @@ before you can comment - + Loading + Wczytywanie + + + Loading... - + Forum Feed - + Hide Ukryj @@ -9297,66 +9489,63 @@ before you can comment Formularz - + Start new Thread for Selected Forum Rozpocznij nowy Wątek dla Wybranego Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Przeszukaj fora - + Last Post + Ostatni Post + + + New Thread Nowy Wątek + + + Threaded View + Widok Wątku + + + + Flat View + Widok Płaski + - + Title Tytuł - - + + Date Data - + Author Autor - + + Save image + + + + Loading Wczytywanie - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9366,7 +9555,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message Odpowiedz Wiadomością @@ -9390,6 +9584,10 @@ before you can comment Download all files Pobierz wszystkie pliki + + Next unread + Następne nieprzeczytane + Search Title @@ -9406,23 +9604,31 @@ before you can comment Szukaj Autora - + Content + Zawartość + + + Search Content + Szukaj Zawartości + + + No name Bez nazwy - - + + Reply Odpowiedz - + <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> - + Loading... @@ -9465,12 +9671,16 @@ before you can comment Skopiuj Link RetroShare - + Hide Ukryj - + Expand + Rozwiń + + + [unknown] @@ -9500,8 +9710,8 @@ before you can comment - - + + Distribution @@ -9515,6 +9725,22 @@ before you can comment Anti-spam + + Anonymous + Anonimowy + + + signed + podpisane + + + none + brak + + + [ ... Missing Message ... ] + [ ... Brakująca Wiadomość ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9584,12 +9810,12 @@ before you can comment Oryginalna Wiadomość - + New thread - + Edit Edytuj @@ -9650,7 +9876,7 @@ before you can comment - + Show column @@ -9670,7 +9896,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9722,7 +9948,7 @@ This message is missing. You should receive it later. - + No result. @@ -9732,7 +9958,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9747,7 +9973,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9813,12 +10039,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Fora @@ -9849,16 +10075,31 @@ This message is missing. You should receive it later. Inne Fora + + GxsForumsFillThread + + Waiting + Oczekiwanie + + + Loading + Wczytywanie + + GxsGroupDialog - + Name Nazwa - + Add Icon + Dodaj Ikonę + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9869,12 +10110,12 @@ This message is missing. You should receive it later. - + Description Opis - + Message Distribution Dystrybucja Wiadomości @@ -9882,7 +10123,7 @@ This message is missing. You should receive it later. - + Public Publiczne @@ -9901,6 +10142,14 @@ This message is missing. You should receive it later. New Thread Nowy Wątek + + Required + Wymagane + + + Encrypted Msgs + Zaszyfrowane Wiadomości + Personal Signatures @@ -9942,7 +10191,7 @@ This message is missing. You should receive it later. - + Comments: Komentarze: @@ -9965,7 +10214,7 @@ This message is missing. You should receive it later. - + All People @@ -9981,12 +10230,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10003,23 +10252,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10035,28 +10284,22 @@ This message is missing. You should receive it later. Proszę, dodaj Nazwę - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo Załaduj Logo Grupy - + Submit Group Changes - + Owner: @@ -10066,12 +10309,12 @@ This message is missing. You should receive it later. - + Info - + ID ID @@ -10081,7 +10324,7 @@ This message is missing. You should receive it later. Ostatni 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> @@ -10156,12 +10399,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity Popularność @@ -10177,22 +10415,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Anuluj - + Create Utwórz - + + Author + Autor + + + GxsIdLabel @@ -10200,7 +10443,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Wczytywanie @@ -10260,7 +10503,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10317,12 +10560,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link Skopiuj Link RetroShare @@ -10345,7 +10588,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10358,14 +10601,18 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Wczytywanie + + + Not found - - + + [Banned] @@ -10375,7 +10622,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10385,12 +10632,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10410,14 +10652,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10429,7 +10663,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10477,13 +10711,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + Wczytywanie + Loading... @@ -10864,7 +11102,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10880,7 +11118,7 @@ p, li { white-space: pre-wrap; } - + Authors Autorzy @@ -10899,7 +11137,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10977,7 +11215,7 @@ p, li { white-space: pre-wrap; } Formularz - + Add friend @@ -10987,7 +11225,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11015,7 +11253,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11025,7 +11263,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11035,7 +11273,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11055,37 +11293,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11097,12 +11311,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11117,7 +11331,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Zapisz jako... @@ -11382,14 +11601,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Wszyscy - + Reputation Reputacja @@ -11399,12 +11618,12 @@ p, li { white-space: pre-wrap; } Szukaj - + Anonymous Id - + Create new Identity Stwórz nową Tożsamość @@ -11414,7 +11633,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11429,27 +11648,27 @@ p, li { white-space: pre-wrap; } - + Close Zamknij - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11465,39 +11684,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles Kręgi - + Circle name @@ -11517,20 +11726,18 @@ p, li { white-space: pre-wrap; } Kręgi Osobiste - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11540,78 +11747,78 @@ p, li { white-space: pre-wrap; } - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + Type: Typ: - + Send Invite - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: - + Negative - + Neutral @@ -11622,17 +11829,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 Anonim @@ -11647,24 +11854,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11679,12 +11886,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11694,7 +11896,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11769,7 +11971,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11799,7 +12001,7 @@ p, li { white-space: pre-wrap; } nieznane - + Invited @@ -11814,7 +12016,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11862,7 +12064,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. @@ -11870,7 +12072,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11913,7 +12115,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11993,7 +12195,7 @@ These identities will soon be not supported anymore. - + information @@ -12009,12 +12211,17 @@ 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> + + + + positive @@ -12119,7 +12326,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12169,21 +12376,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12193,7 +12400,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12208,7 +12415,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12223,12 +12430,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12248,12 +12455,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12263,7 +12470,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12271,7 +12478,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname Ksywa @@ -12301,13 +12508,7 @@ These identities will soon be not supported anymore. Pseudonim - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12321,7 +12522,7 @@ These identities will soon be not supported anymore. - + @@ -12331,12 +12532,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12347,27 +12543,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12387,7 +12583,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12397,18 +12593,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12418,7 +12608,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12428,7 +12623,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12438,15 +12633,10 @@ These identities will soon be not supported anymore. Typ - + Choose image... - - - Remove - Usuń - @@ -12472,7 +12662,7 @@ These identities will soon be not supported anymore. Dodaj - + Create Utwórz @@ -12482,13 +12672,13 @@ These identities will soon be not supported anymore. Anuluj - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12498,7 +12688,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12572,7 +12762,7 @@ These identities will soon be not supported anymore. - + Copy Skopiuj @@ -12582,12 +12772,12 @@ These identities will soon be not supported anymore. Usuń - + %1 's Message History - + Mark all Zaznacz wszystkie @@ -12606,38 +12796,26 @@ These identities will soon be not supported anymore. Quote Cytat + + Send + Wyślij + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12655,32 +12833,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - Status: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12701,12 +12874,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12715,31 +12883,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Otwórz Plik - + Open Folder Otwórz folder - + Checking... Sprawdzanie... @@ -12749,7 +12912,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12777,7 +12940,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Dodaj Przyjaciela @@ -12793,8 +12956,7 @@ These identities will soon be not supported anymore. - - + Options Opcje @@ -12815,7 +12977,7 @@ These identities will soon be not supported anymore. - + Quit Zamknij @@ -12826,12 +12988,12 @@ These identities will soon be not supported anymore. Kreator szybkiego startu - + RetroShare %1 a secure decentralized communication platform RetroShare %1 bezpieczna, zdecentralizowana platforma komunikacji - + Unfinished Niedokończone @@ -12856,12 +13018,11 @@ These identities will soon be not supported anymore. - Status Stan - + Notify Powiadom @@ -12872,35 +13033,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications Aplikacje - Help Pomoc - - + Minimize Minimalizuj - + Maximize Maksymalizuj @@ -12915,12 +13072,7 @@ These identities will soon be not supported anymore. RetroShare - - Close window - - - - + %1 new message %1 nowa wiadomość @@ -12950,7 +13102,7 @@ These identities will soon be not supported anymore. %1 przyjaciół połączonych - + Do you really want to exit RetroShare ? Czy naprawczę chcesz wyjść z RetroShare ? @@ -12970,7 +13122,7 @@ These identities will soon be not supported anymore. Pokaż - + Make sure this link has not been forged to drag you to a malicious website. @@ -13015,13 +13167,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13036,7 +13187,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13045,17 +13196,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts Kontakty - + Paragraph Paragraf @@ -13091,12 +13242,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size Zwiększ rozmiar czcionki @@ -13111,32 +13262,32 @@ These identities will soon be not supported anymore. Pogrubienie - + Italic Pochylenie - + Alignment Wyrównanie - + Add an Image Dodaj Obraz - + Sets text font to code style - + Underline Podkreślenie - + Subject: Temat: @@ -13147,32 +13298,32 @@ These identities will soon be not supported anymore. - + Tags Tagi - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files Polecane pliki @@ -13242,7 +13393,7 @@ These identities will soon be not supported anymore. - + Send To: Wyślij do: @@ -13282,7 +13433,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13302,18 +13453,18 @@ These identities will soon be not supported anymore. chce być twoim przyjacielem na 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 Zapisz wiadomość - + Message has not been Sent. Do you want to save message to draft box? Wiadomość nie została wysłana. @@ -13325,17 +13476,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Wklej Link RetroShare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Dodaj do "Do" @@ -13355,7 +13496,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Dodaj jako Polecane - + Original Message Oryginalna Wiadomość @@ -13365,21 +13506,21 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Od - + - + To Do - - + + Cc - + Sent Wysłane @@ -13394,7 +13535,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? - + Re: Re: @@ -13404,30 +13545,30 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Fwd: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Czy chcesz wysłać tą wiadomość bez tematu ? - + Please insert at least one recipient. Proszę dodaj przynajmniej jednego odbiorcę. - + Bcc - + Unknown Nieznane @@ -13542,13 +13683,13 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Szczegóły - + Open File... Otwórz Plik... - + HTML-Files (*.htm *.html);;All Files (*) Pliki HTML (*.htm *.html);;Wszystkie pliki (*) @@ -13568,7 +13709,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Eksport PDF - + Message has not been Sent. Do you want to save message ? Wiadomość nie została wysłana. @@ -13590,7 +13731,7 @@ Czy chcesz zapisać wiadomość ? Dodaj dodatkowy plik - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13620,18 +13761,18 @@ Czy chcesz zapisać wiadomość ? - - + + Close Zamknij - + From: Od klatki: - + Bullet list (disc) @@ -13671,13 +13812,13 @@ Czy chcesz zapisać wiadomość ? - - + + Thanks, <br> - + Distant identity: @@ -13687,12 +13828,12 @@ Czy chcesz zapisać wiadomość ? - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: @@ -13770,7 +13911,7 @@ Czy chcesz zapisać wiadomość ? Domyślne - + A new tab Nowa karta @@ -13780,7 +13921,7 @@ Czy chcesz zapisać wiadomość ? Nowe okno - + Edit Tag Edytuj Tag @@ -13803,7 +13944,7 @@ Czy chcesz zapisać wiadomość ? MessageToaster - + Sub: @@ -13811,7 +13952,7 @@ Czy chcesz zapisać wiadomość ? MessageUserNotify - + Message Wiadomość @@ -13839,7 +13980,7 @@ Czy chcesz zapisać wiadomość ? MessageWidget - + Recommended Files Rekomendowane Pliki @@ -13849,37 +13990,37 @@ Czy chcesz zapisać wiadomość ? Pobierz wszystkie Polecane Pliki - + Subject: Temat: - + From: Od klatki: - + To: Do klatki: - + Cc: - + Bcc: - + Tags: Tagi: - + Reply Odpowiedz @@ -13919,7 +14060,7 @@ Czy chcesz zapisać wiadomość ? - + Send Invite @@ -13971,7 +14112,7 @@ Czy chcesz zapisać wiadomość ? - + Confirm %1 as friend ZatwierdÅŗ %1 jako przyjaciela @@ -13981,12 +14122,12 @@ Czy chcesz zapisać wiadomość ? Dodaj %1 jako przyjaciela - + View source - + No subject Brak tematu @@ -13996,22 +14137,17 @@ Czy chcesz zapisać wiadomość ? Pobierz - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14020,24 +14156,14 @@ Czy chcesz zapisać wiadomość ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all Pobierz wszystkie - + Print Document Drukuj Dokument @@ -14052,12 +14178,12 @@ Czy chcesz zapisać wiadomość ? Pliki HTML (*.htm *.html);;Wszystkie pliki (*) - + Load images always for this message - + Hide the attachment pane @@ -14079,6 +14205,34 @@ Czy chcesz zapisać wiadomość ? Compose + + Reply to selected message + Odpowiedz na wybraną wiadomość + + + Reply + Odpowiedz + + + Reply all to selected message + Odpowiedz na wszystkie wybrane wiadomości + + + Forward selected message + Prześlij dalej wybraną wiadomość + + + Remove selected message + Usuń wybraną wiadomość + + + Delete + Usuń + + + Print selected message + Drukuj wybraną wiadomość + Print @@ -14157,7 +14311,7 @@ Czy chcesz zapisać wiadomość ? MessagesDialog - + New Message Nowa Wiadmość @@ -14167,16 +14321,52 @@ Czy chcesz zapisać wiadomość ? - + Reply to selected message + Odpowiedz na wybraną wiadomość + + + Reply + Odpowiedz + + + Reply all to selected message + Odpowiedz na wszystkie wybrane wiadomości + + + Forward selected message + Prześlij dalej wybraną wiadomość + + + Remove selected message + Usuń wybraną wiadomość + + + Delete + Usuń + + + Print selected message + Drukuj wybraną wiadomość + + + Print + Drukuj + + + Display + Wyświetl + + + - - + + Tags Tagi - - + + Inbox Przychodzące @@ -14206,17 +14396,21 @@ Czy chcesz zapisać wiadomość ? Kosz - + Total Inbox: - + Folders + Foldery + + + Quick View Szybki podgląd - + Print... Drukuj... @@ -14226,6 +14420,26 @@ Czy chcesz zapisać wiadomość ? Print Preview Podgląd Wydruku + + Buttons Icon Only + Tylko ikony przycisków + + + Buttons Text Beside Icon + Tekst obok przycisków ikon + + + Buttons with Text + Przyciski z tekstem + + + Buttons Text Under Icon + Tekst przycisków pod ikonami + + + Set Text Under Icon + Ustaw tekst pod ikoną + Save As... @@ -14247,7 +14461,7 @@ Czy chcesz zapisać wiadomość ? - + Subject Tytuł @@ -14257,7 +14471,7 @@ Czy chcesz zapisać wiadomość ? Od - + Date Data @@ -14267,7 +14481,7 @@ Czy chcesz zapisać wiadomość ? Zawartość - + Search Subject @@ -14276,11 +14490,6 @@ Czy chcesz zapisać wiadomość ? Search From - - - Search To - - Search Date @@ -14307,7 +14516,17 @@ Czy chcesz zapisać wiadomość ? Szukaj Załączników - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen your network, or send feedback to a channel's owner.</p> + + + + + Starred + + + + System System @@ -14377,7 +14596,12 @@ Czy chcesz zapisać wiadomość ? - + + Show author in People + + + + Empty trash @@ -14387,7 +14611,7 @@ Czy chcesz zapisać wiadomość ? - + No message using %1 tag available. @@ -14402,48 +14626,22 @@ Czy chcesz zapisać wiadomość ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - To - Do + Do - - <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 strengthen your network, or send feedback to a channel's owner.</p> - - - - - Starred - - - - - Show in People - - - - + @@ -14451,6 +14649,10 @@ Czy chcesz zapisać wiadomość ? Total: + + Messages + Wiadomości + Mail @@ -14478,17 +14680,7 @@ Czy chcesz zapisać wiadomość ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14542,7 +14734,7 @@ Czy chcesz zapisać wiadomość ? - + Expand Rozwiń @@ -14552,7 +14744,7 @@ Czy chcesz zapisać wiadomość ? Usuń element - + from od @@ -14587,7 +14779,7 @@ Czy chcesz zapisać wiadomość ? - + Hide Ukryj @@ -14728,7 +14920,7 @@ Czy chcesz zapisać wiadomość ? - + Remove unused keys... Usuń nieużywane klucze... @@ -14738,7 +14930,7 @@ Czy chcesz zapisać wiadomość ? - + Clean keyring @@ -14752,13 +14944,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14791,13 +14977,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14807,12 +14998,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14845,7 +15036,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14866,7 +15057,7 @@ Reported error: - + Groups Grupy @@ -14896,19 +15087,19 @@ Reported error: - - + + Search Szukaj - + ID ID - + Search ID @@ -14918,12 +15109,12 @@ Reported error: - + Show Items - + Last contact @@ -14933,7 +15124,7 @@ Reported error: - + Group Grupa @@ -15048,7 +15239,7 @@ Reported error: Zwiń wszystkie - + Do you want to remove this node? @@ -15058,7 +15249,7 @@ Reported error: Czy chcesz usunąć tego Przyjaciela? - + Done! @@ -15165,7 +15356,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15180,7 +15371,11 @@ at least one peer was not added to a group - + This is a test. + To jest test. + + + Newest on top @@ -15190,12 +15385,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15250,6 +15445,10 @@ at least one peer was not added to a group Blogs Blogi + + Security + Bezpieczeństwo + @@ -15327,7 +15526,7 @@ at least one peer was not added to a group Private Chat - Prywatny Chat + @@ -15433,7 +15632,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15453,12 +15652,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15473,7 +15672,7 @@ at least one peer was not added to a group - + Test Test @@ -15484,19 +15683,17 @@ at least one peer was not added to a group - 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). @@ -15504,7 +15701,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15643,12 +15840,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15657,6 +15849,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + Podpisz klucz PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15693,7 +15889,12 @@ p, li { white-space: pre-wrap; } Załącz podpisy - + + 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> @@ -15739,21 +15940,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) @@ -15771,7 +15972,7 @@ 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. @@ -15840,6 +16041,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Być może hasło jest błędne + You haven't set a trust level for this key. @@ -15847,12 +16052,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15878,7 +16083,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Chat @@ -15899,7 +16104,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Usuń element - + Name: Nazwa: @@ -15939,7 +16144,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Napisz wiadomość @@ -15997,7 +16202,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Ukryj - + Send Message @@ -16164,6 +16369,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + Formularz + + PhotoDialog @@ -16171,11 +16383,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare + + Photo + Zdjęcie + TextLabel + + Comment + Komentarz + + + Summary + Podsumowanie + Album / Photo Name @@ -16236,6 +16460,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Dodaj Komentarz + + + Write a comment... + Napisz komentarz... + Album @@ -16302,6 +16534,10 @@ p, li { white-space: pre-wrap; } Create Album Utwórz Album + + View Album + Pokaż Album + Edit Album Details @@ -16323,17 +16559,17 @@ p, li { white-space: pre-wrap; } Pokaz Slajdów - + My Albums Moje Albumy - + Subscribed Albums Subskrybowane Albumy - + Shared Albums @@ -16362,7 +16598,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16421,19 +16657,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16469,12 +16705,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin Pokaż więcej szczegółów o tej wtyczce @@ -16689,27 +16925,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16762,7 +16983,7 @@ p, li { white-space: pre-wrap; } Nowy - + Vote up @@ -16782,8 +17003,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Komentarze @@ -16808,13 +17029,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16842,12 +17063,16 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Notes + Notki + + + Create a new Post - + RetroShare RetroShare @@ -16862,22 +17087,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Wczytaj obraz - + Post image @@ -16893,17 +17108,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16913,7 +17118,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16933,22 +17138,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16963,7 +17158,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16974,7 +17169,7 @@ p, li { white-space: pre-wrap; } Obraz - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16984,7 +17179,7 @@ p, li { white-space: pre-wrap; } Tytuł - + Link @@ -16992,12 +17187,28 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + My Topics + Moje Tematy + + + Subscribed Topics + Subskrybowane Tematy + + + Popular Topics + Popularne Tematy + + + Other Topics + Inne Tematy + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17031,7 +17242,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17069,17 +17280,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17095,7 +17296,7 @@ p, li { white-space: pre-wrap; } - + Expand Rozwiń @@ -17110,17 +17311,16 @@ p, li { white-space: pre-wrap; } - + Loading + Wczytywanie + + + Loading... - - Never - - - - + New Board @@ -17133,18 +17333,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Strona + + + + Comments Komentarze - + Copy RetroShare Link @@ -17155,12 +17359,12 @@ p, li { white-space: pre-wrap; } - + Comment Skomentuj - + Comments @@ -17170,7 +17374,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17180,17 +17384,21 @@ p, li { white-space: pre-wrap; } Ukryj - + Vote up - + Vote down - + \/ + \/ + + + Set as read and remove item @@ -17200,7 +17408,7 @@ p, li { white-space: pre-wrap; } Nowy - + New Comment: @@ -17210,7 +17418,7 @@ p, li { white-space: pre-wrap; } - + Name @@ -17251,11 +17459,42 @@ p, li { white-space: pre-wrap; } - + Loading Wczytywanie + + PostedListWidget + + Form + Formularz + + + New + Nowy + + + Today + Dzisiaj + + + Yesterday + Wczoraj + + + Next + Następne + + + RetroShare + RetroShare + + + Previous + Poprzednie + + PostedListWidgetWithModel @@ -17274,17 +17513,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17294,15 +17523,15 @@ p, li { white-space: pre-wrap; } - + - + unknown nieznane - + Distribution: @@ -17312,42 +17541,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17367,7 +17596,7 @@ p, li { white-space: pre-wrap; } - + Search Szukaj @@ -17397,17 +17626,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17422,17 +17651,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17442,31 +17666,27 @@ p, li { white-space: pre-wrap; } Edytuj - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17481,7 +17701,7 @@ p, li { white-space: pre-wrap; } Zapisz się - + Never @@ -17555,16 +17775,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Nie wybrano kanału - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17654,16 +17864,16 @@ p, li { white-space: pre-wrap; } Menedżer profili - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17771,7 +17981,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17787,7 +17997,7 @@ and use the import button to load it Menedżer profili - + Public Information Informacje Publiczne @@ -17822,12 +18032,12 @@ and use the import button to load it Online od: - + Other Information Inne Informacje - + My Address Mój Adres @@ -17871,27 +18081,43 @@ and use the import button to load it PulseAddDialog - + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + Add to Pulse - + filter + filtr + + + Display As Wyświetl Jako - + URL URL - + GroupLabel - + IDLabel @@ -17901,12 +18127,12 @@ and use the import button to load it Od klatki: - + Head - + Head Shot @@ -17936,13 +18162,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17954,22 +18180,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17984,7 +18200,7 @@ and use the import button to load it - + Reply to Pulse @@ -17999,24 +18215,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Wczytaj obraz + From + Od + + + Date + Data + + + ... + ... @@ -18027,7 +18253,7 @@ and use the import button to load it Formularz - + @@ -18046,7 +18272,7 @@ and use the import button to load it PulseReply - + icn @@ -18056,7 +18282,7 @@ and use the import button to load it - + REPLY @@ -18083,7 +18309,7 @@ and use the import button to load it - + FOLLOW @@ -18093,7 +18319,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18113,7 +18339,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18229,7 +18455,7 @@ and use the import button to load it - + FOLLOW @@ -18237,42 +18463,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18304,7 +18525,7 @@ and use the import button to load it - + FOLLOW @@ -18312,8 +18533,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18582,12 +18803,12 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio - + 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. @@ -18618,7 +18839,7 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio - + Cannot start Tor Manager! @@ -18652,7 +18873,7 @@ The error reported is:" - + Multiple instances @@ -18671,26 +18892,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18770,7 +18971,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18780,7 +18981,7 @@ Reported error is: - + enabled @@ -18790,7 +18991,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18806,7 +19007,7 @@ Reported error is: - + %1 seconds ago @@ -18873,7 +19074,7 @@ Security: no anonymous IDs - + Join chat room @@ -18901,7 +19102,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19081,29 +19282,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - - - - - Address - - - - - Status - + NXS @@ -19346,18 +19531,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19502,7 +19675,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19669,7 +19842,7 @@ p, li { white-space: pre-wrap; } Formularz - + The loading of embedded images is blocked. @@ -19682,7 +19855,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19855,22 +20028,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19878,12 +20041,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20573,7 +20736,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20694,7 +20857,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20714,7 +20877,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20770,7 +20933,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20784,6 +20947,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... Brakująca Wiadomość ... ] + RsMessageModel @@ -20797,11 +20965,6 @@ prevents the message to be forwarded to your friends. From Od - - - To - Do - Subject @@ -20824,17 +20987,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20858,9 +21016,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20881,7 +21037,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20942,7 +21098,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20963,7 +21119,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20993,7 +21149,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21011,7 +21167,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21028,12 +21184,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21094,7 +21250,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21109,7 +21265,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21209,23 +21365,23 @@ prevents the message to be forwarded to your friends. - + File Name Nazwa pliku - + Download Pobierz - + Copy RetroShare Link Skopiuj link RetroShare - + Send RetroShare Link @@ -21235,7 +21391,7 @@ prevents the message to be forwarded to your friends. - + Download Notice Pobierz @@ -21272,7 +21428,7 @@ prevents the message to be forwarded to your friends. - + Folder Folder @@ -21283,17 +21439,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder Otwórz folder - + Create Collection... @@ -21313,7 +21469,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21321,7 +21477,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21337,22 +21493,22 @@ prevents the message to be forwarded to your friends. Usuń element - + IP address: - + Peer ID: - + Location: Miejsce: - + Peer Name: @@ -21369,7 +21525,7 @@ prevents the message to be forwarded to your friends. Ukryj - + but reported: @@ -21394,8 +21550,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21403,7 +21559,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare chce być przyjacielem z tobą na RetroShare @@ -21434,7 +21590,7 @@ prevents the message to be forwarded to your friends. - + Expand Rozwiń @@ -21479,12 +21635,12 @@ prevents the message to be forwarded to your friends. Status: - + Write Message Napisz wiadomość - + Connect Attempt @@ -21504,12 +21660,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown Nieznane @@ -21519,17 +21680,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide Ukryj @@ -21539,7 +21690,7 @@ prevents the message to be forwarded to your friends. Czy chcesz usunąć tego Przyjaciela? - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21549,12 +21700,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21613,12 +21764,12 @@ prevents the message to be forwarded to your friends. - + Local Address Adres Lokalny - + NAT @@ -21639,22 +21790,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21667,16 +21818,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21686,46 +21842,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21735,7 +21868,7 @@ List of found external IP: - + I2P Address @@ -21760,95 +21893,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21863,7 +21938,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21873,7 +22012,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21885,12 +22039,12 @@ 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> @@ -21900,7 +22054,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21915,23 +22069,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21942,7 +22096,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21952,7 +22116,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21962,7 +22131,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22002,7 +22181,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Start @@ -22017,7 +22196,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Stop - + + BOB status + + + + Incoming Przychodzące @@ -22053,32 +22237,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22133,7 +22292,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22158,7 +22317,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22170,7 +22329,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22193,7 +22352,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Stan @@ -22253,28 +22412,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22290,18 +22438,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22336,12 +22484,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22364,22 +22512,22 @@ 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> @@ -22414,7 +22562,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22424,12 +22572,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22509,7 +22657,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22519,12 +22667,12 @@ If you have issues connecting over Tor check the Tor logs too. Podziel się z przyjacielem - + 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. @@ -22543,7 +22691,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22563,17 +22711,17 @@ Select the Friends with which you want to Share your Channel. Widoczność - + Add new - + Cancel Anuluj - + Add a Share Directory @@ -22583,7 +22731,7 @@ Select the Friends with which you want to Share your Channel. Usuń - + Apply and close Zastosuj i zamknij @@ -22674,7 +22822,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. @@ -22682,7 +22830,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files Pliki @@ -22733,16 +22881,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22752,7 +22895,7 @@ Select the Friends with which you want to Share your Channel. Pobierz - + Copy retroshare Links to Clipboard @@ -22767,7 +22910,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22783,7 +22926,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22808,7 +22951,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22951,12 +23094,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22980,7 +23123,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23319,7 +23462,7 @@ This choice can be reverted in settings. - + Message: Wiadomość: @@ -23560,7 +23703,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Usuń wszystkie tagi @@ -23596,15 +23739,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown Nieznane @@ -23614,13 +23754,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23630,57 +23775,12 @@ p, li { white-space: pre-wrap; } - - Error - Błąd - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23688,7 +23788,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23698,7 +23798,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23709,12 +23809,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23742,7 +23841,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Opcje transferu @@ -23753,7 +23852,7 @@ p, li { white-space: pre-wrap; } Maksymalna ilość jednoczesnych pobierań: - + Shared Directories @@ -23763,27 +23862,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23868,7 +23962,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23877,12 +23971,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23907,12 +23996,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23977,7 +24061,12 @@ 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> @@ -23987,17 +24076,7 @@ p, li { white-space: pre-wrap; } - - Warning - Ostrzeżenie - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24025,7 +24104,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Pobieranie zakończone @@ -24049,23 +24128,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Masz %1 zakończonych pobierań + + + You have %1 completed download + Masz %1 zakończone pobieranie + + + %1 completed downloads + %1 zakończonych pobierań + + + %1 completed download + %1 zakończone pobieranie + TransfersDialog - - + + Downloads Pobierania - + Uploads - + Name i.e: file name Nazwa @@ -24272,12 +24367,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> - - - - + Move in Queue... @@ -24302,7 +24392,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24323,7 +24413,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24356,17 +24446,7 @@ p, li { white-space: pre-wrap; } - - Warning - Ostrzeżenie - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24381,7 +24461,7 @@ p, li { white-space: pre-wrap; } - + Expand all Rozwiń wszystkie @@ -24508,18 +24588,23 @@ 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> + + + + Columns Kolumny - + File Transfers Transfery plików - + Path Ścieżka @@ -24529,7 +24614,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24539,7 +24624,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24554,7 +24639,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24564,7 +24649,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24978,17 +25063,12 @@ p, li { white-space: pre-wrap; } Formularz - + Enable Retroshare WEB Interface - - Status: - Status: - - - + Web parameters @@ -25028,27 +25108,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25058,12 +25128,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25200,7 +25270,11 @@ p, li { white-space: pre-wrap; } Strony Wiki - + New Group + Nowa Grupa + + + Page Name @@ -25215,7 +25289,7 @@ p, li { white-space: pre-wrap; } - + << << @@ -25303,7 +25377,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Historia Edycji Strony @@ -25338,7 +25412,7 @@ p, li { white-space: pre-wrap; } - + \/ \/ @@ -25368,18 +25442,14 @@ p, li { white-space: pre-wrap; } Tagi - - History - Historia - - - + + Show Edit History Pokaż Historię Edycji - + Status Status @@ -25400,7 +25470,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25483,7 +25553,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Odśwież + + + Settings @@ -25498,7 +25577,7 @@ p, li { white-space: pre-wrap; } Inni - + Who to Follow @@ -25518,7 +25597,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25548,17 +25627,57 @@ p, li { white-space: pre-wrap; } - + Last Month + Ostatni miesiąc + + + Last Week + Ostatni tydzień + + + Today + Dziś + + + New + Nowy + + + from + od + + + Manage Accounts + Zarządzaj Kontami + + + Yourself + + Friends + Przyjaciele + Following Następujące - + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + RetroShare RetroShare @@ -25621,42 +25740,35 @@ p, li { white-space: pre-wrap; } Formularz - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Usuń - - - Location: Miejsce: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25701,41 +25813,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - Następujące - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Nieznane @@ -25813,7 +25895,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25850,7 +25932,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_pt.ts b/retroshare-gui/src/lang/retroshare_pt.ts index 842fde2d7..4835855cf 100644 --- a/retroshare-gui/src/lang/retroshare_pt.ts +++ b/retroshare-gui/src/lang/retroshare_pt.ts @@ -121,12 +121,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +136,7 @@ - + Cancels the search. @@ -540,7 +540,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. @@ -566,23 +566,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +612,7 @@ p, li { white-space: pre-wrap; } - + Set your Avatar picture @@ -712,7 +699,7 @@ p, li { white-space: pre-wrap; } Repor - + Always on Top @@ -808,7 +795,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +825,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +838,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +858,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +896,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +916,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +946,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +956,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -977,12 +964,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +989,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand @@ -1028,12 +1015,12 @@ p, li { white-space: pre-wrap; } - + Name - + Comm value @@ -1202,17 +1189,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1209,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1217,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1240,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1265,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand @@ -1314,7 +1291,7 @@ into the image, so as to - + Name @@ -1324,7 +1301,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1332,7 +1319,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1523,7 +1510,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1543,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1557,13 @@ into the image, so as to ChatLobbyWidget - - + + Name - + Count @@ -1587,7 +1573,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1605,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1662,12 @@ 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: @@ -1669,42 +1677,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,22 +1703,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1744,47 +1738,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1793,7 @@ Double click a chat room to enter and chat. - + Show Mostrar @@ -1819,7 +1813,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item @@ -1864,7 +1858,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1873,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1893,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1918,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1948,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1958,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +1982,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2052,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2067,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2164,7 @@ Double click a chat room to enter and chat. - + Case sensitive SensĆ­vel capitalização @@ -2296,7 +2270,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2306,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2341,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2426,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2468,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2490,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2540,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2562,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2577,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2598,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2614,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2639,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2665,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2687,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2713,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2773,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2789,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2841,45 @@ Double click on it to add his name on text writer. - + RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2889,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +2971,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +2996,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3064,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3080,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: Nome: @@ -3121,17 +3095,17 @@ Double click on it to add his name on text writer. - + Options OpƧƵes - + <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: @@ -3141,7 +3115,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3140,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3165,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3236,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3266,12 @@ 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? - + @@ -3310,7 +3279,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3319,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3344,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3354,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3393,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3403,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3428,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3441,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3476,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3486,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3556,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3584,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3594,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3614,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3629,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3654,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3946,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3954,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3964,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4000,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4058,7 +4025,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4045,18 @@ p, li { white-space: pre-wrap; } - + Cancel - + Nickname - + Invited Members @@ -4104,7 +4071,7 @@ p, li { white-space: pre-wrap; } - + Name: Nome: @@ -4144,19 +4111,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4133,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Adicionar @@ -4193,7 +4148,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4201,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4226,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4261,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4271,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4416,17 @@ p, li { white-space: pre-wrap; } - + RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4451,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4466,18 @@ p, li { white-space: pre-wrap; } - + + 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? @@ -4555,7 +4511,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4521,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4536,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4560,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4590,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title @@ -4697,7 +4653,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4663,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4687,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4722,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4732,7 @@ Do you want to discard this message? - + require PGP-signed identities @@ -4791,7 +4747,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4768,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4776,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: Nome: - + Location: @@ -4840,12 +4796,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4821,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4836,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4846,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4866,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4936,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5052,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5720,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5728,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5767,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5934,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5944,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6004,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6130,7 @@ and use the import button to load it - + ID @@ -6216,7 +6172,7 @@ and use the import button to load it - + Group @@ -6252,7 +6208,7 @@ and use the import button to load it - + Search @@ -6268,7 +6224,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6461,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6499,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6510,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6602,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6646,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6656,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6687,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6738,12 @@ Also check your ports! - + <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 @@ -6923,43 +6753,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6828,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6844,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6879,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6889,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6904,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7135,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7165,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7205,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7272,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7322,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7451,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7459,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7629,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -7807,12 +7642,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7672,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7687,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name @@ -7870,13 +7705,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7724,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7860,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7871,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7906,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7946,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +7981,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8169,7 +8004,7 @@ p, li { white-space: pre-wrap; } GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8042,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8058,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -8248,7 +8073,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8087,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8096,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8117,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8179,18 @@ p, li { white-space: pre-wrap; } - + New - + 0 - - + + Comment @@ -8385,17 +8205,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8423,13 +8243,13 @@ p, li { white-space: pre-wrap; } GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8319,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8355,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8370,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8391,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8406,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8466,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8546,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8602,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8727,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8740,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8770,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8809,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8833,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8842,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; } @@ -9077,7 +8871,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8902,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +8953,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +8969,7 @@ before you can comment - + Expand @@ -9194,11 +8988,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9017,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9034,7 @@ before you can comment - + Expand @@ -9265,17 +9054,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide @@ -9288,66 +9077,59 @@ before you can comment - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + New Thread + + + Threaded View + + + + + Flat View + + - + Title - - + + Date - + Author - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9139,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9184,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9456,12 +9243,12 @@ before you can comment - + Hide - + [unknown] @@ -9491,8 +9278,8 @@ before you can comment - - + + Distribution @@ -9575,12 +9362,12 @@ before you can comment - + New thread - + Edit @@ -9641,7 +9428,7 @@ before you can comment - + Show column @@ -9661,7 +9448,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9500,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9510,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9525,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9591,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9844,12 +9631,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9647,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9660,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9720,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9743,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9759,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9781,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9813,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9838,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9853,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +9928,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +9944,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create - + + Author + + + + GxsIdLabel @@ -10191,7 +9972,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10032,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10089,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10117,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10130,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10147,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10157,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10177,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10188,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10236,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10623,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10639,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10658,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10732,7 @@ p, li { white-space: pre-wrap; } - + Add friend @@ -10974,7 +10742,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10770,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10780,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10790,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10810,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10828,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10848,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11118,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11135,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11150,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11165,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11201,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11243,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11264,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11609,17 +11346,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 @@ -11634,24 +11371,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11403,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11413,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11488,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11518,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11801,7 +11533,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11581,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. @@ -11857,7 +11589,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11632,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11712,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11728,17 @@ 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> + + + + positive @@ -12106,7 +11843,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11893,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11917,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +11932,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +11947,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +11972,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +11987,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +11995,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12025,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12039,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12049,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12060,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12100,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12110,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12125,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12140,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12150,10 @@ These identities will soon be not supported anymore. - + Choose image... - - - Remove - - @@ -12459,7 +12179,7 @@ These identities will soon be not supported anymore. Adicionar - + Create @@ -12469,13 +12189,13 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12205,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12279,7 @@ These identities will soon be not supported anymore. - + Copy Copiar @@ -12569,12 +12289,12 @@ These identities will soon be not supported anymore. - + %1 's Message History - + Mark all @@ -12597,34 +12317,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12346,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12387,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12396,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12425,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12453,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12469,7 @@ These identities will soon be not supported anymore. - - + Options OpƧƵes @@ -12802,7 +12490,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12501,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12531,11 @@ These identities will soon be not supported anymore. - Status - + Notify @@ -12859,35 +12546,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help - - + Minimize - + Maximize @@ -12902,12 +12585,7 @@ These identities will soon be not supported anymore. - - Close window - - - - + %1 new message @@ -12937,7 +12615,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12635,7 @@ These identities will soon be not supported anymore. Mostrar - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12680,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12700,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12709,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12755,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12775,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12811,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12906,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +12946,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +12966,18 @@ 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? @@ -13311,17 +12988,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13008,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13018,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13380,7 +13047,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13057,30 @@ Do you want to save message to draft box? - - - + + + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13528,13 +13195,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13221,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13242,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13272,18 @@ Do you want to save message ? - - + + Close - + From: De: - + Bullet list (disc) @@ -13656,13 +13323,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13339,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: @@ -13755,7 +13422,7 @@ Do you want to save message ? OmissĆ£o - + A new tab @@ -13765,7 +13432,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13455,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13463,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13491,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13501,37 @@ Do you want to save message ? - + Subject: - + From: De: - + To: Para: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13571,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13623,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13633,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13648,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13667,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13689,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14064,6 +13716,10 @@ Do you want to save message ? Compose + + Delete + Apagar + Print @@ -14142,7 +13798,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13808,20 @@ Do you want to save message ? - + Delete + Apagar + + + - - + + Tags - - + + Inbox @@ -14191,17 +13851,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13892,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13902,7 @@ Do you want to save message ? - + Date @@ -14252,7 +13912,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13921,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +13947,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14028,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14042,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14057,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14103,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14157,7 @@ Do you want to save message ? - + Expand @@ -14537,7 +14167,7 @@ Do you want to save message ? - + from @@ -14572,7 +14202,7 @@ Do you want to save message ? - + Hide @@ -14713,7 +14343,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14353,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14367,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14400,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14421,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14459,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14480,7 @@ Reported error: - + Groups @@ -14881,19 +14510,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14532,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14547,7 @@ Reported error: - + Group @@ -15033,7 +14662,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14672,7 @@ Reported error: - + Done! @@ -15150,7 +14779,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14794,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14804,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15418,7 +15047,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15067,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15087,7 @@ at least one peer was not added to a group - + Test @@ -15469,19 +15098,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15116,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15255,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15300,12 @@ p, li { white-space: pre-wrap; } - + + 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> @@ -15724,21 +15351,21 @@ 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) @@ -15756,7 +15383,7 @@ 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. @@ -15832,12 +15459,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15490,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15511,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Name: Nome: @@ -15924,7 +15551,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15609,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Send Message @@ -16300,17 +15927,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +15966,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16025,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16073,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16289,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16347,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16755,8 +16367,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16393,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16427,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare @@ -16835,22 +16447,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16468,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16478,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16498,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16518,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16529,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16539,7 @@ p, li { white-space: pre-wrap; } - + Link @@ -16965,12 +16547,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16586,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16624,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16640,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -17083,17 +16655,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16673,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16695,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16710,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16720,17 @@ p, li { white-space: pre-wrap; } - + Vote up - + Vote down - + Set as read and remove item @@ -17173,7 +16740,7 @@ p, li { white-space: pre-wrap; } - + New Comment: @@ -17183,7 +16750,7 @@ p, li { white-space: pre-wrap; } - + Name @@ -17224,7 +16791,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -17247,17 +16814,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16824,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17285,42 +16842,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +16897,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +16927,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +16952,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +16967,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +17002,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17076,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17165,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17282,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17298,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17333,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17382,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17412,12 @@ and use the import button to load it De: - + Head - + Head Shot @@ -17909,13 +17447,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17465,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17485,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,25 +17500,20 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures - - - Load Picture File - - PulseMessage @@ -18000,7 +17523,7 @@ and use the import button to load it - + @@ -18019,7 +17542,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17552,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17579,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17589,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17609,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17725,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17733,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17795,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17803,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18072,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18108,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18142,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18161,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18240,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18250,7 @@ Reported error is: - + enabled @@ -18762,7 +18260,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18276,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18343,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18371,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18551,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - - - - - Address - - - - - Status - + NXS @@ -19318,18 +18800,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +18939,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19106,7 @@ p, li { white-space: pre-wrap; } - + The loading of embedded images is blocked. @@ -19649,7 +19119,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19292,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19845,12 +19305,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +19998,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20659,7 +20119,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20679,7 +20139,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20195,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20209,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20227,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20789,17 +20249,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20278,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20299,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20360,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20381,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20411,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20429,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20446,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20512,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20527,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20627,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20653,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21237,7 +20690,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21248,17 +20701,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20731,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20739,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20755,22 @@ prevents the message to be forwarded to your friends. - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20787,7 @@ prevents the message to be forwarded to your friends. - + but reported: @@ -21359,8 +20812,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20821,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20852,7 @@ prevents the message to be forwarded to your friends. - + Expand @@ -21444,12 +20897,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +20922,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21484,17 +20942,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide @@ -21504,7 +20952,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +20962,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21026,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21604,22 +21052,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21080,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21104,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21130,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21155,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21200,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21838,7 +21274,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21301,12 @@ 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> @@ -21865,7 +21316,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21331,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21358,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21378,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21393,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21443,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21458,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21499,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21554,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21579,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21591,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21614,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status @@ -22218,28 +21674,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21700,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21746,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21774,22 @@ 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> @@ -22379,7 +21824,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21834,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +21919,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +21929,12 @@ 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. @@ -22508,7 +21953,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +21973,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel - + Add a Share Directory @@ -22548,7 +21993,7 @@ Select the Friends with which you want to Share your Channel. - + Apply and close @@ -22639,7 +22084,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. @@ -22647,7 +22092,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22143,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22157,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22732,7 +22172,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22188,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22213,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22356,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22385,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23284,7 +22724,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +22961,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +22997,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23575,13 +23012,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23033,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23046,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23056,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23067,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23099,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23110,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23120,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23220,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23229,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23254,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23319,12 @@ 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> @@ -23948,17 +23334,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23362,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23390,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name @@ -24233,12 +23609,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> - - - - + Move in Queue... @@ -24263,7 +23634,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23655,7 @@ p, li { white-space: pre-wrap; } - + @@ -24317,17 +23688,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23703,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23830,23 @@ 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> + + + + Columns - + File Transfers - + Path Caminho @@ -24490,7 +23856,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23866,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +23881,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +23891,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24305,12 @@ p, li { white-space: pre-wrap; } - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24350,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24370,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24512,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24527,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24615,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24650,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24680,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status @@ -25361,7 +24708,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24791,12 @@ p, li { white-space: pre-wrap; } - + + Refresh + + + + Settings @@ -25459,7 +24811,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24831,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24861,7 @@ p, li { white-space: pre-wrap; } - + Yourself @@ -25519,7 +24871,7 @@ p, li { white-space: pre-wrap; } - + RetroShare @@ -25582,42 +24934,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25007,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25774,7 +25089,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25126,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_ru.qm b/retroshare-gui/src/lang/retroshare_ru.qm index cfa22ad5c..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 20b2f9e16..cfe0de745 100644 --- a/retroshare-gui/src/lang/retroshare_ru.ts +++ b/retroshare-gui/src/lang/retroshare_ru.ts @@ -84,6 +84,13 @@ Только скрытый узел сети + + AddCommentDialog + + Add Comment + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ комментарий + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Ń€Š°ŃŃˆŠøŃ€ŠµŠ½Š½Ń‹Š¹ поиск - + Search Criteria ŠšŃ€ŠøŃ‚ŠµŃ€ŠøŠø поиска - + Add a further search criterion. Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š“Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ критерий поиска. @@ -137,7 +144,7 @@ Š”Š±Ń€Š¾ŃŠøŃ‚ŃŒ критерии поиска. - + Cancels the search. ŠžŃ‚Š¼ŠµŠ½ŃŠµŃ‚ поиск. @@ -157,6 +164,177 @@ Поиск + + AlbumCreateDialog + + 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) + Изменение размера изображений (< 1 ŠœŠ‘) + + + Resize Images (< 10Mb) + Изменение размера изображений (< 10 ŠœŠ‘) + + + 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;"> +<p style=" margin-top:0px; 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;"> ŠŸŠµŃ€ŠµŃ‚Š°Ń‰ŠøŃ‚Šµ ŠŗŠ°Ń€Ń‚ŠøŠ½ŠŗŃƒ Š“Š»Ń вставки. ŠŠ°Š¶Š¼ŠøŃ‚Šµ на ŠŗŠ°Ń€Ń‚ŠøŠ½ŠŗŃƒ Š“Š»Ń Ń€ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ поГробностей.</span></p></body></html> + + + Back + ŠŠ°Š·Š°Š“ + + + Add Photos + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ фото + + + Publish Album + ŠžŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Ń‚ŃŒ альбом + + + Untitle Album + Š£Š“Š°Š»ŠøŃ‚ŃŒ название альбома + + + Say something about this album... + Š”Š“ŠµŠ»Š°Ń‚ŃŒ отклик об альбоме... + + + Where were these taken? + Š˜ŃŃ‚Š¾Ń‡Š½ŠøŠŗ контента + + + Load Album Thumbnail + Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ Š¼ŠøŠ½ŠøŠ°Ń‚ŃŽŃ€Ńƒ альбома + + AlbumDialog @@ -165,11 +343,19 @@ Album Альбом + + Album Thumbnail + ŠœŠøŠ½ŠøŠ°Ń‚ŃŽŃ€Š° альбома + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка + + Summary + Š ŠµŠ·ŃŽŠ¼Šµ + Album Title: @@ -185,6 +371,34 @@ 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"> @@ -553,7 +767,7 @@ 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. ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ: ŃŃ‚Š¾ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Šµ сервисы. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, помогите нам ŠæŃ€Š¾Ń‚ŠµŃŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠøŃ…. @@ -569,6 +783,14 @@ p, li { white-space: pre-wrap; } Circles ŠšŃ€ŃƒŠ³Šø + + GxsForums + Š¤Š¾Ń€ŃƒŠ¼Ń‹ Gxs + + + GxsChannels + ŠšŠ°Š½Š°Š»Ń‹ Gxs + The Wire @@ -580,23 +802,10 @@ p, li { white-space: pre-wrap; } Фотографии - - AspectRatioPixmapLabel - - - Save image - Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение - - - - Copy image - - - AttachFileItem - + %p Kb %p ŠŗŠ‘ @@ -633,13 +842,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ аватар + Remove Š£Š“Š°Š»ŠøŃ‚ŃŒ эту ŠæŠ¾Š·ŠøŃ†ŠøŃŽ - + Set your Avatar picture Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ ваш аватар @@ -658,6 +871,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ аватар + AvatarWidget @@ -726,10 +943,22 @@ p, li { white-space: pre-wrap; } Дброс - + Receive Rate + Š”ŠŗŠ¾Ń€Š¾ŃŃ‚ŃŒ приёма + + + Send Rate + Š”ŠŗŠ¾Ń€Š¾ŃŃ‚ŃŒ отГачи + + + Always on Top ŠŸŠ¾Š²ŠµŃ€Ń… всех окон + + Style + Š”Ń‚ŠøŠ»ŃŒ + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ p, li { white-space: pre-wrap; } % Opaque % непрозрачности + + Save + Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ + + + Cancel + ŠžŃ‚Š¼ŠµŠ½Š° + Since: Š”: + + Hide Settings + Š”ŠŗŃ€Ń‹Ń‚ŃŒ настройки + BandwidthStatsWidget @@ -822,7 +1063,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ @@ -852,12 +1093,12 @@ p, li { white-space: pre-wrap; } Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>Автор ŃŃ‚Š¾Š³Š¾ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ (Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ %1) заблокирован.</b> - + ago @@ -865,7 +1106,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ "за" @@ -885,7 +1126,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -923,7 +1164,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ "за" @@ -943,7 +1184,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -973,7 +1214,7 @@ p, li { white-space: pre-wrap; } ŠŸŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²ŠøŃ‚ŃŒ общий Š“Š¾ŃŃ‚ŃƒŠæ - + Toggle Message Read Status Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŃŃ‚Š°Ń‚ŃƒŃ прочитанного ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ @@ -983,7 +1224,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š²Ń‹Š¹ - + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка @@ -991,12 +1232,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this Мне Š½Ń€Š°Š²ŠøŃ‚ся - + 0 0 @@ -1016,18 +1257,18 @@ p, li { white-space: pre-wrap; } Аватар - + New Comment - + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - + Expand @@ -1042,12 +1283,12 @@ p, li { white-space: pre-wrap; } Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ - + Name Š˜Š¼Ń - + Comm value @@ -1216,17 +1457,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels ŠšŠ°Š½Š°Š»Ń‹ - + Tabs ВклаГки - + General ŠžŠ±Ń‰ŠµŠµ @@ -1236,17 +1477,11 @@ p, li { white-space: pre-wrap; } - - Downloads - ŠžŠ±Š¼ŠµŠ½ файлами + Load posts in background (Thread) + Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ в фоне (потоком) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab ŠžŃ‚ŠŗŃ€Ń‹Š²Š°Ń‚ŃŒ кажГый канал в новой вклаГке @@ -1254,7 +1489,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Мне Š½Ń€Š°Š²ŠøŃ‚ся @@ -1302,18 +1537,18 @@ into the image, so as to Аватар - + New Comment - + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - + Expand @@ -1328,7 +1563,7 @@ into the image, so as to Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ - + Name Š˜Š¼Ń @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ + + + + Comments + ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø + + + Hide @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name Š˜Š¼Ń @@ -1527,18 +1772,18 @@ into the image, so as to Redock to Main window - ŠŸŠµŃ€ŠµŠ·Š°ŠŗŃ€ŠµŠæŠøŃ‚ŃŒ в главном окне + Undock to a new window - ŠžŃ‚ŠŗŃ€ŠµŠæŠøŃ‚ŃŒ в новом окне + ChatLobbyToaster - + Show Chat Lobby ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ @@ -1550,6 +1795,22 @@ into the image, so as to Chats Чаты + + You have %1 new messages + Š£ вас %1 новых сообщений + + + You have %1 new message + Š£ вас %1 новых сообщений + + + %1 new messages + %1 новых сообщений + + + %1 new message + %1 новое сообщение + You have %1 mentions @@ -1571,14 +1832,13 @@ into the image, so as to - - + Unknown Lobby ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń чат-комната - - + + Remove All Š£Š“Š°Š»ŠøŃ‚ŃŒ всё @@ -1586,13 +1846,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Š˜Š¼Ń - + Count Всего @@ -1602,7 +1862,33 @@ into the image, so as to Тема - + + 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">Чат-комнаты</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 Š”Š¾Š·Š“Š°Ń‚ŃŒ чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ @@ -1612,7 +1898,7 @@ into the image, so as to ŠŸŠ¾ŠŗŠøŠ½ŃƒŃ‚ŃŒ эту чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ - + Create a non anonymous identity and enter this room Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½ŠµŠ°Š½Š¾Š½ŠøŠ¼Š½ŃƒŃŽ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ Šø войти в чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ @@ -1671,12 +1957,12 @@ 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: Выберите Š½ŠµŠ°Š½Š¾Š½ŠøŠ¼Š½ŃƒŃŽ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ Š“Š»Ń ŃŃ‚Š¾Š¹ чат-комнаты: @@ -1686,31 +1972,31 @@ Double click a chat room to enter and chat. Выберите Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ, от имени которой вы Š±ŃƒŠ“ŠµŃ‚Šµ Š¾Š±Ń‰Š°Ń‚ŃŒŃŃ чат-комнате: - + Create chat lobby + Š”Š¾Š·Š“Š°Ń‚ŃŒ чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ + + + [No topic provided] [тема не указана] - - + Selected lobby info + Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о выбранной чат-комнате + + + Private ŠæŃ€ŠøŠ²Š°Ń‚Š½Š°Ń - - - + Public ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted Š”Š¾ŠæŃƒŃŃ‚ŠøŠ¼Ń‹ анонимные ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø @@ -1720,25 +2006,42 @@ Double click a chat room to enter and chat. Š£Š“Š°Š»ŠøŃ‚ŃŒ Š°Š²Ń‚Š¾ŠæŠ¾Š“ŠæŠøŃŠŗŃƒ - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ Š°Š²Ń‚Š¾ŠæŠ¾Š“ŠæŠøŃŠŗŃƒ - + Search Chat lobbies Поиск чатов - + Search Name Поиск по имени - + Subscribed + ПоГписка + + + Columns Дтолбцы + + Yes + Да + + + No + ŠŠµŃ‚ + Chat rooms @@ -1750,47 +2053,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: ŠŠ°Š·Š²Š°Š½ŠøŠµ чат-комнаты: - + Chat room Id: Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ чат-комнаты: - + Topic: Тема: - + Type: Тип: - + Security: Š‘ŠµŠ·Š¾ŠæŠ°ŃŠ½Š¾ŃŃ‚ŃŒ: - + Peers: Участников: - - - - - - + + + + + + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка @@ -1805,24 +2108,13 @@ Double click a chat room to enter and chat. Анонимные ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø не Š“Š¾ŠæŃƒŃŠŗŠ°ŃŽŃ‚ŃŃ - + Show ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ - - Private Subscribed - - - - - - Public Subscribed - - - - + column столбец @@ -1836,7 +2128,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ @@ -1881,22 +2173,46 @@ Double click a chat room to enter and chat. ChatPage - + General Главное + + Distant Chat + УГалённый чат + Everyone Все + + Contacts + ŠšŠ¾Š½Ń‚Š°ŠŗŃ‚Ń‹ + Nobody ŠŠøŠŗŃ‚Š¾ - + Accept encrypted distant chat from + Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Š¹ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½Š½Ń‹Š¹ чат от + + + Chat Settings + ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø чата + + + Enable Emoticons Private Chat + Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ смайлики в приватном чате + + + Enable Emoticons Group Chat + Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ смайлики в Š³Ń€ŃƒŠæŠæŠ¾Š²Š¾Š¼ чате + + + Enable custom fonts Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠµ ŃˆŃ€ŠøŃ„Ń‚Ń‹ @@ -1905,6 +2221,10 @@ Double click a chat room to enter and chat. Enable custom font size Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ нестанГартный размер ŃˆŃ€ŠøŃ„Ń‚Š° + + Minimum font size + ŠœŠøŠ½ŠøŠ¼Š°Š»ŃŒŠ½Ń‹Š¹ размер ŃˆŃ€ŠøŃ„Ń‚Š° + Enable bold @@ -1916,7 +2236,7 @@ Double click a chat room to enter and chat. ŠšŃƒŃ€ŃŠøŠ² - + General settings @@ -1941,7 +2261,11 @@ Double click a chat room to enter and chat. Š—Š°Š³Ń€ŃƒŠ¶Š°Ń‚ŃŒ внеГрённые ŠøŠ·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ - + Chat Lobby + Чат-комната + + + Blink tab icon ŠœŠµŃ€Ń†Š°Š½ŠøŠµ иконки вклаГки @@ -1950,6 +2274,10 @@ Double click a chat room to enter and chat. Do not send typing notifications ŠŠµ Š¾Ń‚ŃŃ‹Š»Š°Ń‚ŃŒ ŃƒŠ²ŠµŠ“Š¾Š¼Š»ŠµŠ½ŠøŃ о наборе текста + + Private Chat + ŠŸŃ€ŠøŠ²Š°Ń‚Š½Ń‹Š¹ чат + Open Window for new chat @@ -1971,7 +2299,11 @@ Double click a chat room to enter and chat. ŠœŠµŃ€Ń†Š°Š½ŠøŠµ иконки окна/вклаГки - + Chat Font + Шрифт чата + + + Change Chat Font Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŃˆŃ€ŠøŃ„Ń‚ чата @@ -1981,10 +2313,14 @@ Double click a chat room to enter and chat. Шрифт чата: - + History Š˜ŃŃ‚Š¾Ń€ŠøŃ + + Style + Š”Ń‚ŠøŠ»ŃŒ + @@ -1999,13 +2335,17 @@ Double click a chat room to enter and chat. Variant: Вариант: + + Group chat + Š“Ń€ŃƒŠæŠæŠ¾Š²Š¾Š¹ чат + Private chat ŠŸŃ€ŠøŠ²Š°Ń‚Š½Ń‹Š¹ чат - + Choose your default font for Chat. Выберите свой ŃˆŃ€ŠøŃ„Ń‚ по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ Š“Š»Ń чата. @@ -2069,28 +2409,22 @@ Double click a chat room to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/><body><p align="justify">Š’ ŃŃ‚Š¾Š¹ вклаГке вы можете Š·Š°Š“Š°Ń‚ŃŒ, какое количество сообщений чата RetroShare Š±ŃƒŠ“ŠµŃ‚ Ń…Ń€Š°Š½ŠøŃ‚ŃŒ на Гиске, а также Š¾Š±ŃŠŃ‘м Š¾Ń‚Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ ŃŠ¾ŃŃ‚Š¾ŃŠ²ŃˆŠøŃ…ŃŃ бесеГ Š“Š»Ń различных систем чатов. ŠœŠ°ŠŗŃŠøŠ¼Š°Š»ŃŒŠ½Ń‹Š¹ периоГ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ Š¾Ń‡ŠøŃ‰Š°Ń‚ŃŒ ŠøŃŃ‚Š¾Ń€ŠøŃŽ чатов Šø преГотвращает её заполнение временными чатами (например, обычные чаты или ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Šµ чаты).</p></body></html> + + Chatlobbies + ŠšŠ¾Š¼Š½Š°Ń‚Ń‹ чата + Enabled: Š’ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2100,17 +2434,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Чат-комнаты @@ -2207,7 +2531,11 @@ Double click a chat room to enter and chat. ŠœŠ°ŠŗŃŠøŠ¼Š°Š»ŃŒŠ½Ń‹Š¹ срок Ń…Ń€Š°Š½ŠµŠ½ŠøŃ, в Š“Š½ŃŃ… (0 - бесконечно): - + Search by default + ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ поиска по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ + + + Case sensitive Š£Ń‡ŠøŃ‚Ń‹Š²Š°Ń‚ŃŒ регистр @@ -2246,6 +2574,10 @@ Double click a chat room to enter and chat. Threshold for automatic search ŠŸŠ¾Ń€Š¾Š³ автоматического поиска + + Default identity for chat lobbies: + Š›ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ Š“Š»Ń чат-комнат: + Show Bar by default @@ -2313,7 +2645,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ чат @@ -2349,7 +2681,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ @@ -2384,12 +2716,12 @@ Double click a chat room to enter and chat. ŠšŃƒŃ€ŃŠøŠ² - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ смайлик @@ -2398,6 +2730,10 @@ Double click a chat room to enter and chat. 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> + <html><head/><body><p>QToolButton: Геактивирована {</p><p> image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> + Strike @@ -2469,6 +2805,11 @@ Double click a chat room to enter and chat. Insert horizontal rule Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ Š³Š¾Ń€ŠøŠ·Š¾Š½Ń‚Š°Š»ŃŒŠ½ŃƒŃŽ Ń‡ŠµŃ€Ń‚Ńƒ + + + Save image + Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение + Import sticker @@ -2506,7 +2847,7 @@ Double click a chat room to enter and chat. - + is typing... печатает... @@ -2530,7 +2871,7 @@ after HTML conversion. Выберите ŃˆŃ€ŠøŃ„Ń‚. - + Do you really want to physically delete the history? Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ с Гиска ŠøŃŃ‚Š¾Ń€ŠøŃŽ сообщений? @@ -2580,7 +2921,7 @@ after HTML conversion. сейчас Š·Š°Š½ŃŃ‚ Šø не может вам Š¾Ń‚Š²ŠµŃ‚ŠøŃ‚ŃŒ - + Find Case Sensitively ŠŠ°Š¹Ń‚Šø с ŃƒŃ‡Ń‘Ń‚Š¾Š¼ регистра @@ -2602,7 +2943,7 @@ after HTML conversion. ŠŸŃ€Š¾Š“Š¾Š»Š¶ŠøŃ‚ŃŒ Š²Ń‹Š“ŠµŠ»ŃŃ‚ŃŒ цветом после X найГенных вхожГений (Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ больше Ń€ŠµŃŃƒŃ€ŃŠ¾Š² процессора) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>ŠŠ°Š¹Ń‚Šø ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠµŠµ </b><br/><i>Ctrl+Shift+G</i> @@ -2617,12 +2958,16 @@ after HTML conversion. <b>ŠŠ°Š¹Ń‚Šø</b><br/><i>Ctrl+F</i> - + (Status) (Š”Š¾ŃŃ‚Š¾ŃŠ½ŠøŠµ) - + Set text font & color + Š£ŠŗŠ°Š·Š°Ń‚ŃŒ тип ŃˆŃ€ŠøŃ„Ń‚Š° Šø цвет текста + + + Attach a File ŠŸŃ€ŠøŠŗŃ€ŠµŠæŠøŃ‚ŃŒ файл @@ -2638,12 +2983,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>ŠžŃ‚Š¼ŠµŃ‚ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ выГеленный текст</b><br><i>Ctrl + M</i> - + Person id: Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ личности: @@ -2654,12 +2999,12 @@ Double click on it to add his name on text writer. Двойной щелчок, чтобы Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠøŠ¼Ń в текстовый реГактор. - + Unsigned ŠŠµ поГписано - + items found. ŃƒŠ“Š¾Š²Š»ŠµŃ‚Š²Š¾Ń€ŃŃŽŃ‚ ŃƒŃŠ»Š¾Š²ŠøŃŽ. @@ -2679,7 +3024,7 @@ Double click on it to add his name on text writer. ŠŸŠµŃ‡Š°Ń‚Š°Š¹Ń‚Šµ ваши ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ зГесь - + Don't stop to color after ŠŸŃ€Š¾Š“Š¾Š»Š¶ŠøŃ‚ŃŒ Š²Ń‹Š“ŠµŠ»ŃŃ‚ŃŒ цветом после @@ -2705,7 +3050,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: ŠŸŠ¾Š“Ń€Š¾Š±Š½Š¾ŃŃ‚Šø: @@ -2727,7 +3072,7 @@ Double click on it to add his name on text writer. - + Personal Circles Личные ŠŗŃ€ŃƒŠ³Šø @@ -2753,7 +3098,7 @@ Double click on it to add his name on text writer. - + Friends Узлы сети @@ -2813,7 +3158,7 @@ Double click on it to add his name on text writer. Ближнее Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ - + External Circles (Admin) Š’Š½ŠµŃˆŠ½ŠøŠµ ŠŗŃ€ŃƒŠ³Šø (аГминистратор) @@ -2829,7 +3174,7 @@ Double click on it to add his name on text writer. - + Circles ŠšŃ€ŃƒŠ³Šø @@ -2881,48 +3226,43 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. ŠžŃˆŠøŠ±ŠŗŠ°: не могу ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ŃŒ ŃŠ¾Š²Š¾ŠŗŃƒŠæŠ½Š¾ŃŃ‚ŃŒ Геталей. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2934,7 +3274,7 @@ Double click on it to add his name on text writer. Шифрование - + Not connected не соеГинён @@ -3016,17 +3356,25 @@ 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><b>иГентификатор узла</b> Šø <b>ŠøŠ¼Ń</b> - + an <b>onion address</b> and <b>port</b> + <b>onion-аГрес</b> Šø <b>порт</b> + + + an <b>IP address</b> and <b>port</b> + <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> @@ -3041,7 +3389,7 @@ Double click on it to add his name on text writer. <html><head/> <body><p>Это метоГ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŠ¼Ń‹Š¹ <span style="font-weight:600;"> OpenSSL</span>. ŠŸŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ Šŗ Š“Š¾Š²ŠµŃ€ŠµŠ½Š½Š¾Š¼Ńƒ узлу</p> <p>всегГа ŃˆŠøŃ„Ń€ŃƒŠµŃ‚ŃŃ стойким алгоритмом Šø если DHE ŠæŃ€ŠøŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚, Гальнейшее соеГинение ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ метоГ</p> <p>Ā«ŃŠ¾Š²ŠµŃ€ŃˆŠµŠ½Š½Š¾Š¹ секретности с ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµŠ¼Ā».</p></body></html> - + with с @@ -3058,16 +3406,118 @@ 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) + &ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ по ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почте +(ваш контакт ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ письмо с ŠøŠ½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŃŠ¼Šø, Š¾Ń‚ŠŗŃƒŠ“Š° ŃŠŗŠ°Ń‡Š°Ń‚ŃŒ 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. + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ PGP-сертификаты, сохранённые в файлах. + + + 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 Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ RetroShare + + Use RetroShare ID for adding a Friend which is available in your network. + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ иГентификатор RetroShare Š“Š»Ń обмена сертификатами с ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŃŽŃ‰ŠøŠ¼ узлом сети. + + + Add Friends RetroShare ID... + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ RetroShare ID Š“Ń€ŃƒŠ³ŠøŃ… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š²... + + + Paste Friends RetroShare ID in the box below + Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ RetroShare ID Š“Ń€ŃƒŠ³ŠøŃ… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² в поле ниже + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + ВвеГите RetroShare ID ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° сети. ŠŠ°ŠæŃ€ŠøŠ¼ŠµŃ€, Peer@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3109,7 +3559,27 @@ Double click on it to add his name on text writer. Š­Š»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š°Ń почта - + Invite Friends by Email + ŠŸŃ€ŠøŠ³Š»Š°ŃŠøŃ‚ŃŒ ŠæŠ¾Ń‚ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° сети по ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почте + + + Enter your friends' email addresses (separate each one with a semicolon) + ВвеГите аГреса ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… почт ŠæŠ¾Ń‚ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² сети (аГреса Ń€Š°Š·Š“ŠµŠ»ŃŃ‚ŃŒ Š·Š°ŠæŃŃ‚Ń‹Š¼Šø) + + + Your friends' email addresses: + АГреса ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты: + + + Enter Friends Email addresses + ВвеГите аГреса ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… почт ŠæŠ¾Ń‚ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² сети + + + Subject: + Тема: + + + @@ -3125,32 +3595,77 @@ Double click on it to add his name on text writer. ŠŸŠ¾Š“Ń€Š¾Š±Š½Š¾ŃŃ‚Šø запроса - + Peer details Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠµ - + Name: Š˜Š¼Ń: + + Email: + Š­Š». почта + + + Node: + Узел сети: + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + ŠžŠ±Ń€Š°Ń‚ŠøŃ‚Šµ внимание на тот факт, что вы можете Š“Š¾Š±Š°Š²Š»ŃŃ‚ŃŒ в ваше Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ ŃŃ‚Š¾Š»ŃŒŠŗŠ¾ контактов, сколько пожелаете. ŠŠ¾ ŠøŃ… количество более 40, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, привеГёт Šŗ заметной Š·Š°Š³Ń€ŃƒŠ·ŠŗŠµ CPU, ŠæŠ°Š¼ŃŃ‚Šø Šø ŠæŃ€Š¾ŠæŃƒŃŠŗŠ½Š¾Š¹ способности вашего интернет-канала. + Location: Расположение: - + Options ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Этот мастер поможет вам ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ с Š“Ń€ŃƒŠ³ŠøŠ¼Šø ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼Šø сети RetroShare (тёмной сети).<br>Š”Š»Ń ŃŃ‚Š¾Š³Š¾ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ способы: + + + Enter the certificate manually + Ввести сертификат Š²Ń€ŃƒŃ‡Š½ŃƒŃŽ + + + Enter RetroShare ID manually + Ввести Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ RetroShare Š²Ń€ŃƒŃ‡Š½ŃƒŃŽ + + + &Send an Invitation by Web Mail Providers + &ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ через провайГеров веб-почты. + + + Recommend many friends to each other + Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Ń‚ŃŒ Š“Ń€ŃƒŠ³ Š“Ń€ŃƒŠ³Ńƒ несколько контактов ŠøŠ· Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ + + + RetroShare certificate + Дертификат RetroShare + + + 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> <html><head/><body><p>Š”ŃŽŠ“Š° ŃŠ»ŠµŠ“ŃƒŠµŃ‚ Š²Š²Š¾Š“ŠøŃ‚ŃŒ сертификаты ŠæŠ¾Ń‚ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… контактов. Š’ŠŠ˜ŠœŠŠŠ˜Š•: сертификаты — ŃŃ‚Š¾ не просто пбличные PGP-ŠŗŠ»ŃŽŃ‡Šø, ŃŃ‚Š¾ более ŃŠ»Š¾Š¶Š½Š°Ń ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š° Ганных. ŠŠµ Š²ŃŃ‚Š°Š²Š»ŃŠ¹Ń‚Šµ ŃŃŽŠ“Š° PGP-ŠŗŠ»ŃŽŃ‡Šø своих ŠæŠ¾Ń‚ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… контактов (ни ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ, ни частично) – ŃŃ‚Š¾ не сработает. Дертификат Голжен Š²Š²Š¾Š“ŠøŃ‚ŃŒŃŃ ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ!</p></body></html> - + Add friend to group: Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ узел в Š³Ń€ŃƒŠæŠæŃƒ: @@ -3160,7 +3675,7 @@ Double click on it to add his name on text writer. ŠŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ Говеренного узла (ŠæŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒ его PGP-ŠŗŠ»ŃŽŃ‡) - + Please paste below your friend's Retroshare ID @@ -3185,22 +3700,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ сертификат ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° Š“Š»Ń ŠæŠ¾ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠµŠ³Š¾ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ с ним - + To accept the Friend Request, click the Finish button. + Чтобы ŠæŃ€ŠøŠ½ŃŃ‚ŃŒ запрос на преГложение Š¾Š±Š¼ŠµŠ½ŃŃ‚ŃŒŃŃ сертификатами, нажмите кнопку Ā«Š—Š°Š²ŠµŃ€ŃˆŠøŃ‚ŃŒĀ». + + + Sorry, some error appeared К ŃŠ¾Š¶Š°Š»ŠµŠ½ŠøŃŽ, ŠæŠ¾ŃŠ²ŠøŠ»ŠøŃŃŒ некоторые ошибки @@ -3220,27 +3729,32 @@ Double click on it to add his name on text writer. ŠŸŠ¾Š“Ń€Š¾Š±Š½Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ об узле: - + Key validity: Š£Ń€Š¾Š²ŠµŠ½ŃŒ Š“Š¾Š²ŠµŃ€ŠøŃ Šŗ ŠŗŠ»ŃŽŃ‡Ńƒ: - + Profile ID: - + + 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> <html><head/><body><p><span style=" font-size:10pt;">ПоГписание ŠæŃƒŠ±Š»ŠøŃ‡Š½Š¾Š³Š¾ ŠŗŠ»ŃŽŃ‡Š° ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° сети – ŃŃ‚Š¾ способ Š¾Š±Š¾Š·Š½Š°Ń‡ŠøŃ‚ŃŒ своё Говерие Ń‚Š¾Š¼Ńƒ или иному ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŃƒ. Š”ŠøŠ³Š½Š°Ń‚ŃƒŃ€Ń‹, которые вы виГите ниже, ŠæŠ¾Š“Ń‚Š²ŠµŃ€Š¶Š“Š°ŃŽŃ‚, что ŠŗŠ»ŃŽŃ‡Šø в списке заверены Šø ŠæŃ€ŠøŠ·Š½Š°ŃŽŃ‚ŃŃ как поГлинные.</span></p></body></html> - + This peer is already on your friend list. Adding it might just set it's ip address. Этот ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ уже Š½Š°Ń…Š¾Š“ŠøŃ‚ŃŃ в вашем Говеренном Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠø. Добавление сертификата снова лишь ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ Š°ŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Ń‹Š¹ IP-аГрес ŃŃ‚Š¾Š³Š¾ узла. - + To accept the Friend Request, click the Accept button. @@ -3286,17 +3800,49 @@ Double click on it to add his name on text writer. - + Certificate Load Failed ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø сертификата - + Cannot get peer details of PGP key %1 + ŠŠµ ŃƒŠ“Š°Ń‘Ń‚ŃŃ ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ŃŒ поГробности PGP-ŠŗŠ»ŃŽŃ‡Š° ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° %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! - + RetroShare Invitation ŠŸŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ в RetroShare @@ -3316,12 +3862,12 @@ 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? Это же ваш собственный сертификат! Š’Ń‹ не хотели бы ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ с самим собой, не так ли? - + @@ -3329,7 +3875,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list Этот ŠŗŠ»ŃŽŃ‡ уже Š½Š°Ń…Š¾Š“ŠøŃ‚ŃŃ в вашем Говеренном списке @@ -3369,7 +3915,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Š£ вас ŠøŠ¼ŠµŠµŃ‚ŃŃ запрос на соеГинение от - + Profile password needed. @@ -3394,7 +3940,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3404,7 +3950,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø сертификата: %1 не найГен + + + This Peer %1 is not available in your Network + Этот ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ %1 не Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½ в вашей сети + + + Use new certificate format (safer, more robust) + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ новый формат сертификата (безопаснее) + + + Use old (backward compatible) certificate format + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ старый формат сертификата (совместим со старыми Š²ŠµŃ€ŃŠøŃŠ¼Šø) + + + Remove signatures + УГаление поГписи + + + RetroShare Invite + ŠŸŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ в RetroShare + + + 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... + Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ как... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3443,7 +4029,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** ŠŠøŠŗŠ¾Š³Š¾ *** - + Use as direct source, when available + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ как ŠæŃ€ŃŠ¼Š¾Š¹ источник, при возможности + + + IP-Addr: IP-аГрес: @@ -3453,7 +4043,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.IP-аГрес: - + Show Advanced options ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ Š“Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Šµ настройки @@ -3462,6 +4052,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> @@ -3472,13 +4066,45 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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>Участники тёмной сети, Š“Š»Ń которых активирована ŃŃ‚Š° Š¾ŠæŃ†ŠøŃ, не ŃŠ¼Š¾Š³ŃƒŃ‚ ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ с вами соеГинение, если ŠøŃ… IP-аГрес не внесён в белый список. ŠŸŠ¾Š“Š¾Š±Š½Ń‹Š¹ поГхоГ защищает вас от атаки типа «перенаправление трафика». КогГа Š¾ŠæŃ†ŠøŃ Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½Š°, Š±Š»Š¾ŠŗŠøŃ€ŃƒŠµŠ¼Ń‹Šµ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø Š±ŃƒŠ“ŃƒŃ‚ ŠæŠ¾Š»ŃƒŃ‡Š°Ń‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ через "ŃƒŠ²ŠµŠ“Š¾Š¼Š»ŠµŠ½ŠøŃ системы безопасности". Š—Š“ŠµŃŃŒ вы имеете Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ занести опреГелённые IP-аГреса в белый/чёрный список. ŠŸŃ€ŠøŠ¼ŠµŠ½ŃŠµŃ‚ŃŃ ко всем Š¼ŠµŃŃ‚Š¾ŠæŠ¾Š»Š¾Š¶ŠµŠ½ŠøŃŠ¼, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Š¼ Šŗ ŠŗŠ¾Š½ŠŗŃ€ŠµŃ‚Š½Š¾Š¼Ńƒ ŃŠµŃ€Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Ńƒ.</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 + ŠŠøŠ¶ŠµŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠ¹ текст – ŃŃ‚Š¾ ваш сертификат RetroShare. Š”Š»Ń ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ вам ŃŠ»ŠµŠ“ŃƒŠµŃ‚ ŠæŠµŃ€ŠµŠ“Š°Ń‚ŃŒ его Š“ŠµŠ¹ŃŃ‚Š²ŃƒŃŽŃ‰ŠµŠ¼Ńƒ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŃƒ тёмной сети. + + + 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 Это ŠŗŠ»ŃŽŃ‡ уже в вашей ŃŠ²ŃŠ·ŠŗŠµ @@ -3494,7 +4120,7 @@ even if you don't make friends. Гаже если вы не ŃŠ²Š»ŃŠµŃ‚ŠµŃŃŒ Говеренными. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Дертификат имеет Š½ŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ номер версии. ŠŸŠ¾Š¼Š½ŠøŃ‚Šµ, что сети v0.6 Šø v0.5 несовместимы. @@ -3529,7 +4155,7 @@ even if you don't make friends. Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ IP в белый список - + No IP in this certificate! Š’ ŃŃ‚Š¾Š¼ сертификате Š¾Ń‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚ IP-аГрес! @@ -3539,10 +4165,27 @@ even if you don't make friends. Этот сертификат не соГержит в себе IP-аГреса. Š’ Ганном ŃŠ»ŃƒŃ‡Š°Šµ Š“Š»Ń ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ с узлом ваш клиент Š·Š°Š“ŠµŠ¹ŃŃ‚Š²ŃƒŠµŃ‚ сервис Š¾Š±Š½Š°Ń€ŃƒŠ¶ŠµŠ½ŠøŃ Šø Ń€Š°ŃŠæŃ€ŠµŠ“ŠµŠ»Ń‘Š½Š½ŃƒŃŽ Ń‚Š°Š±Š»ŠøŃ†Ńƒ Ń…ŠµŃˆŠµŠ¹ DHT. Поскольку вам Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ Ń€Š°Š·Ń€ŠµŃˆŠµŠ½ŠøŠµ белого списка, ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ Šŗ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŃƒ вызовет ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ системы безопасности во вклаГке новостей. ŠžŃ‚Ń‚ŃƒŠ“Š° вы можете Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ его IP-аГрес в белый список. - + + [Unknown] + + + + Added with certificate from %1 Добавлено с сертификатом от %1 + + Paste Cert of your friend from Clipboard + Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ сертификат ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° ŠøŠ· Š±ŃƒŃ„ŠµŃ€Š° обмена + + + Certificate Load Failed:can't read from file %1 + ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø сертификата: не ŃƒŠ“Š°Ń‘Ń‚ŃŃ ŠæŃ€Š¾Ń‡ŠøŃ‚Š°Ń‚ŃŒ файл %1 + + + Certificate Load Failed:something is wrong with %1 + ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø сертификата: что-то не так с %1 + ConnectProgressDialog @@ -3604,7 +4247,7 @@ even if you don't make friends. - + UDP Setup Установление UDP @@ -3640,7 +4283,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-family:'Lucida Grande'; font-size:13pt;">то можете Š·Š°ŠŗŃ€Ń‹Ń‚ŃŒ его.</span></p></body></html> - + Connection Assistant ŠŸŠ¾Š¼Š¾Ń‰Š½ŠøŠŗ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ @@ -3650,20 +4293,17 @@ p, li { white-space: pre-wrap; } ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ иГентификатор ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° - - + Unknown State ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾Šµ ŃŠ¾ŃŃ‚Š¾ŃŠ½ŠøŠµ - - + Offline ŠŠµ в сети - - + Behind Symmetric NAT За симметричным NAT @@ -3673,14 +4313,12 @@ p, li { white-space: pre-wrap; } ŠŸŠ»Š¾Ń…Š°Ń ŃŠµŃ‚ŃŒ: непрозрачный NAT, не работает DHT - - + NET Restart ŠŸŠµŃ€ŠµŠ·Š°ŠæŃƒŃŠŗ сети - - + Behind NAT За Š¼Š°Ń€ŃˆŃ€ŃƒŃ‚изатором @@ -3690,8 +4328,7 @@ p, li { white-space: pre-wrap; } DHT не работает - - + NET STATE GOOD! Š”ŠžŠ”Š¢ŠžŠÆŠŠ˜Š• Š”Š•Š¢Š˜ Š„ŠžŠ ŠžŠØŠ•Š•! @@ -3716,7 +4353,7 @@ p, li { white-space: pre-wrap; } Поиск ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² тёмной сети - + Lookup requires DHT Поиск узла Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ DHT @@ -4008,7 +4645,7 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, повторите ŠæŠ¾ŠæŃ‹Ń‚ŠŗŃƒ импорта полного сертификата. - + @@ -4016,8 +4653,7 @@ p, li { white-space: pre-wrap; } ŠŠµŃ‚ Ганных - - + UNVERIFIABLE FORWARD! ŠŠ•ŠŸŠ ŠžŠ’Š•Š Š•ŠŠŠŠÆ ŠŸŠ•Š Š•Š”Š«Š›ŠšŠ! @@ -4027,7 +4663,7 @@ p, li { white-space: pre-wrap; } ŠŠµŠæŠ¾Š“Š“Š°ŃŽŃ‰ŠµŠµŃŃ проверке перенаправление! DHT не работает - + Searching Поиск @@ -4063,12 +4699,12 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾Š“Ń€Š¾Š±Š½Š¾ŃŃ‚Šø о ŠŗŃ€ŃƒŠ³Šµ - + 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>Š˜Š¼Ń ŠŗŃ€ŃƒŠ³Š°, контакты автора Šø список ŠæŃ€ŠøŠ³Š»Š°ŃˆŃ‘нных Š±ŃƒŠ“ŃƒŃ‚ виГны всем ŠæŃ€ŠøŠ³Š»Š°ŃˆŃ‘нным ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼. Если ŠŗŃ€ŃƒŠ³ не ŃŠ²Š»ŃŠµŃ‚ŃŃ приватным, он также Š±ŃƒŠ“ет виГен сосеГним узлам, на которых Ń€Š°Š·Š¼ŠµŃ‰Š°ŃŽŃ‚ŃŃ ŠæŃ€ŠøŠ³Š»Š°ŃˆŃ‘Š½Š½Ń‹Šµ члены.</p></body></html> @@ -4088,7 +4724,7 @@ p, li { white-space: pre-wrap; } - + IDs Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€Ń‹ @@ -4108,18 +4744,18 @@ p, li { white-space: pre-wrap; } Š¤ŠøŠ»ŃŒŃ‚Ń€ - + Cancel - + Nickname ПсевГоним - + Invited Members ŠŸŃ€ŠøŠ³Š»Š°ŃˆŃ‘Š½Š½Ń‹Šµ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Šø @@ -4134,7 +4770,15 @@ p, li { white-space: pre-wrap; } Š˜Š·Š²ŠµŃŃ‚Š½Ń‹Šµ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Šø - + ID + Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ + + + Type + Тип + + + Name: Š˜Š¼Ń: @@ -4174,19 +4818,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о ŠŗŃ€ŃƒŠ³Šµ может Š±Ń‹Ń‚ŃŒ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š° ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼ Š“Ń€ŃƒŠ³Š¾Š³Š¾ ŠŗŃ€ŃƒŠ³Š°. Š’ Ганном ŃŠ»ŃƒŃ‡Š°Šµ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼ ŃŃ‚Š¾Š³Š¾ ŠŗŃ€ŃƒŠ³Š° Š±ŃƒŠ“ŃƒŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ все Š°Ń€ŠøŠ±ŃƒŃ‚Ń‹ первого ŠŗŃ€ŃƒŠ³Š° (список ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š², авторство Šø т. Šæ.), а также ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Š¹ Šŗ нему контент.</p></body></html> - - + Only visible to members of: + ВиГим Ń‚Š¾Š»ŃŒŠŗŠ¾ членам ŠŗŃ€ŃƒŠ³Š°: + + + + RetroShare RetroShare - + Please set a name for your Circle ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚Šµ название вашего ŠŗŃ€ŃƒŠ³Š° - + No Restriction Circle Selected ŠŠµ выбрано ограничение ŠŗŃ€ŃƒŠ³Š° @@ -4196,24 +4844,12 @@ p, li { white-space: pre-wrap; } ŠŠµ выбраны Š¾Š³Ń€Š°Š½ŠøŃ‡ŠµŠ½ŠøŃ ŠŗŃ€ŃƒŠ³Š° - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ @@ -4223,7 +4859,7 @@ p, li { white-space: pre-wrap; } Š£Š“Š°Š»ŠøŃ‚ŃŒ - + Search Поиск @@ -4238,6 +4874,10 @@ p, li { white-space: pre-wrap; } Signed ПоГписано + + Signed by known nodes + ПоГписано известными узлами + Edit Circle @@ -4254,6 +4894,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP-Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ + + Anon Id + Анонимный иГентификатор + Circle name @@ -4276,13 +4920,17 @@ p, li { white-space: pre-wrap; } Š”Š¾Š·Š“Š°Ń‚ŃŒ новый ŠŗŃ€ŃƒŠ³ - + Create Š”Š¾Š·Š“Š°Ń‚ŃŒ - + PGP Linked Id + Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Š¹ Šŗ PGP-ŠŗŠ»ŃŽŃ‡Ńƒ + + + Add Member Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ члена @@ -4301,7 +4949,7 @@ p, li { white-space: pre-wrap; } Š”Š¾Š·Š“Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ - + Group Name: Š˜Š¼Ń Š³Ń€ŃƒŠæŠæŃ‹: @@ -4336,7 +4984,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post ŠŠ¾Š²Š¾Šµ сообщение канала @@ -4346,7 +4994,7 @@ p, li { white-space: pre-wrap; } Дообщение канала - + Post @@ -4407,11 +5055,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;"><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> + + Add File to Attach + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ файл во вложение + Add Channel Thumbnail Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ изображение-Š¼ŠøŠ½ŠøŠ°Ń‚ŃŽŃ€Ńƒ Š“Š»Ń канала + + Message + Дообщение + + + Subject : + Тема: + @@ -4497,17 +5157,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4526,18 +5186,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Файл уже Гобавлен Šø Ń…ŠµŃˆŠøŃ€Š¾Š²Š°Š½ + Please add a Subject Š”Š¾Š±Š°Š²ŃŒŃ‚Šµ Ń‚ŠµŠ¼Ńƒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ - - Cannot publish post - - - - + Load thumbnail picture Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ изображение-Š¼ŠøŠ½ŠøŠ°Ń‚ŃŽŃ€Ńƒ @@ -4552,12 +5211,18 @@ p, li { white-space: pre-wrap; } - + + Generate mass data ДозГание массовой информации - + + Do you really want to generate %1 messages ? + Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃŠ¾Š·Š“Š°Ń‚ŃŒ %1 сообщений? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Š’Ń‹ хотите Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ файлы которые не ещё не Š¾Š±Ń‰ŠµŠ“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹. ŠŸŃ€Š¾Š“Š¾Š»Š¶ŠøŃ‚ŃŒ в Š»ŃŽŠ±Š¾Š¼ ŃŠ»ŃƒŃ‡Š°Šµ? @@ -4591,7 +5256,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Š”Š¾Š·Š“Š°Ń‚ŃŒ сообщение на Ń„Š¾Ń€ŃƒŠ¼Šµ @@ -4600,6 +5265,10 @@ p, li { white-space: pre-wrap; } Forum Š¤Š¾Ń€ŃƒŠ¼ + + Subject + Тема + Attach File @@ -4620,8 +5289,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4640,7 +5309,7 @@ p, li { white-space: pre-wrap; } Š’Ń‹ можете Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ файлы перетаскиванием - + Post @@ -4670,17 +5339,17 @@ p, li { white-space: pre-wrap; } - + No Forum ŠŠµŃ‚ Ń„Š¾Ń€ŃƒŠ¼Š° - + In Reply to Š’ ответ на - + Title ŠŠ°Š·Š²Š°Š½ŠøŠµ @@ -4734,7 +5403,7 @@ Do you want to discard this message? Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ файл ŠøŠ·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ - + No compatible ID for this forum ŠŠµŃ‚ совместимого иГентификатора Š“Š»Ń ŃŃ‚Š¾Š³Š¾ Ń„Š¾Ń€ŃƒŠ¼Š° @@ -4744,8 +5413,8 @@ Do you want to discard this message? ŠŠø оГин ŠøŠ· Š²Š°ŃˆŠøŃ… иГентификаторов не имеет прав Š“Š»Ń отправки сообщений в ŃŃ‚Š¾Ń‚ Ń„Š¾Ń€ŃƒŠ¼. Возможно, Š“Š¾ŃŃ‚ŃƒŠæ Šŗ Ń„Š¾Ń€ŃƒŠ¼Ńƒ ограничен ŠŗŃ€ŃƒŠ³Š¾Š¼, в котором вы не состоите, или Ń„Š¾Ń€ŃƒŠ¼ Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ наличие поГписанного иГентификатора. - - + + Generate mass data ДозГание массовой информации @@ -4754,6 +5423,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃŠ¾Š·Š“Š°Ń‚ŃŒ %1 сообщений? + + Send + ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ + Post as @@ -4768,7 +5441,23 @@ Do you want to discard this message? CreateLobbyDialog - + 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: + Тема: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4803,7 +5492,7 @@ Do you want to discard this message? - + Create Š”Š¾Š·Š“Š°Ń‚ŃŒ @@ -4813,7 +5502,11 @@ 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>Если вы отметите ŃŃ‚Š¾, Ń‚Š¾Š»ŃŒŠŗŠ¾ поГписанные ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø ŃŠ¼Š¾Š³ŃƒŃ‚ Š¾Š±Ń‰Š°Ń‚ŃŒŃŃ в ŃŃ‚Š¾Š¹ комнате. Это ограничение преГотвращает спам от имени анонимных ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² Šø Гелает возможным или, по меньшей мере, Š¾ŠæŃ€ŠµŠ“ŠµŠ»ŠøŃ‚ŃŒ узел спаммера.</p></body></html> + + + require PGP-signed identities Ń‚Ń€ŠµŠ±Š¾Š²Š°Ń‚ŃŒ PGP-поГписи личностей @@ -4828,7 +5521,11 @@ Do you want to discard this message? ŠžŃ‚Š¼ŠµŃ‚ŃŒŃ‚Šµ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š², с которыми вы желаете Š¾Ń€Š³Š°Š½ŠøŠ·Š¾Š²Š°Ń‚ŃŒ чат - + Invited friends + ŠŸŃ€ŠøŠ³Š»Š°ŃˆŃ‘Š½Š½Ń‹Šµ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø + + + Create Chat Room Š”Š¾Š·Š“Š°Ń‚ŃŒ чат-ŠŗŠ¾Š¼Š½Š°Ń‚Ńƒ @@ -4849,7 +5546,7 @@ Do you want to discard this message? ŠšŠ¾Š½Ń‚Š°ŠŗŃ‚Ń‹: - + Identity to use: Š›ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ Š“Š»Ń ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ: @@ -4857,17 +5554,17 @@ Do you want to discard this message? CryptoPage - + Public Information ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ - + Name: Š˜Š¼Ń: - + Location: ŠœŠµŃŃ‚Š¾ŠæŠ¾Š»Š¾Š¶ŠµŠ½ŠøŠµ: @@ -4877,12 +5574,12 @@ Do you want to discard this message? Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ Š¼ŠµŃŃ‚Š¾ŠæŠ¾Š»Š¾Š¶ŠµŠ½ŠøŃ: - + Software Version: Š’ŠµŃ€ŃŠøŃ программы: - + Online since: ŠŸŠ¾Š“ŠŗŠ»ŃŽŃ‡Ń‘Š½ с: @@ -4902,7 +5599,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4912,7 +5614,7 @@ Do you want to discard this message? - + Other Information ŠŸŃ€Š¾Ń‡ŠµŠµ @@ -4922,12 +5624,17 @@ Do you want to discard this message? - + Profile ŠŸŃ€Š¾Ń„ŠøŠ»ŃŒ - + + Certificate + Дертификат + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4937,7 +5644,11 @@ Do you want to discard this message? Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ поГписи - + Save Key into a file + Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ ŠŗŠ»ŃŽŃ‡ в файл + + + Export Identity Экспорт личности @@ -5011,33 +5722,33 @@ and use the import button to load it - + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + PGP fingerprint: PGP-отпечаток: - + + Node information + Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле сети + + + PGP Id : PGP-иГентификатор: - + Friend nodes: Доверенные ŃƒŠ·Š»Ń‹: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5076,6 +5787,14 @@ and use the import button to load it Node Узел сети + + Create new node... + ДозГание нового узла... + + + show statistics window + ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ окно статистики + DHTGraphSource @@ -5092,6 +5811,10 @@ and use the import button to load it DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>RetroShare ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ DHT-ŃŠµŃ‚ŃŒ BitTorrent в качестве Š²ŃŠæŠ¾Š¼Š¾Š³Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Š“Š»Ń ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ соеГинений. Š’ DHT не Ń…Ń€Š°Š½ŠøŃ‚ŃŃ ваш IP-аГрес. DHT ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ŃŃ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼Šø ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ Š“Š»Ń ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ через станГартные DHT-запросы. Š˜Š½Š“ŠøŠŗŠ°Ń‚Š¾Ń€ ŃŃ‚Š°Ń‚ŃƒŃŠ° DHT станет зелёным ŃŃ€Š°Š·Ńƒ же, как Ń‚Š¾Š»ŃŒŠŗŠ¾ RetroShare ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ DHT-ответ от оГного ŠøŠ· Š²Š°ŃˆŠøŃ… контактов.</p> + <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 trusted nodes 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 trusted nodes.</p> @@ -5127,7 +5850,7 @@ and use the import button to load it DLListDelegate - + B Š‘ @@ -5795,7 +6518,7 @@ and use the import button to load it DownloadToaster - + Start file ŠŠ°Ń‡Š°Š»ŃŒŠ½Ń‹Š¹ файл @@ -5803,38 +6526,38 @@ and use the import button to load it ExprParamElement - + - + to кому - + ignore case без ŃƒŃ‡Ń‘Ń‚Š° регистра - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB ŠšŠ‘ - - + + MB ŠœŠ‘ - - + + GB ГБ @@ -5842,12 +6565,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget Š’ŠøŠ·ŃƒŠ°Š»ŠøŠ·Š°Ń†ŠøŃ Š²Ń‹Ń€Š°Š¶ŠµŠ½ŠøŃ - + Delete this expression Š£Š“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾ выражение @@ -6009,7 +6732,7 @@ and use the import button to load it FilesDefs - + Picture Š˜Š·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŠµ @@ -6019,7 +6742,7 @@ and use the import button to load it ВиГео - + Audio АуГио @@ -6079,21 +6802,11 @@ and use the import button to load it C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Папки Говеренных ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² @@ -6215,7 +6928,7 @@ and use the import button to load it - + ID Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ @@ -6250,6 +6963,10 @@ and use the import button to load it Show State ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ ŃŠ¾ŃŃ‚Š¾ŃŠ½ŠøŠµ + + Trusted nodes + Доверенные ŃƒŠ·Š»Ń‹ + @@ -6257,7 +6974,7 @@ and use the import button to load it ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŃ‹ - + Group Š“Ń€ŃƒŠæŠæŠ° @@ -6293,7 +7010,7 @@ and use the import button to load it Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ в Š³Ń€ŃƒŠæŠæŃƒ - + Search Поиск @@ -6309,7 +7026,7 @@ and use the import button to load it Š”Š¾Ń€Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ по ŃŠ¾ŃŃ‚Š¾ŃŠ½ŠøŃŽ - + Profile details Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле @@ -6553,7 +7270,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request ŠŸŠ¾Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚ŃŒ запрос на ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŠµ контакта @@ -6570,6 +7287,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + Поиск: + Sort by state @@ -6591,7 +7312,7 @@ at least one peer was not added to a group Поиск контактов - + Mark all ŠžŃ‚Š¼ŠµŃ‚ŠøŃ‚ŃŒ все @@ -6602,134 +7323,16 @@ at least one peer was not added to a group Š”Š½ŃŃ‚ŃŒ отметки - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Š˜Š¼Ń - - - - Node ID - - - - - Address - АГрес - - - - Status - Š”Ń‚Š°Ń‚ŃƒŃ - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ узел в Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - ŠŸŃ€Š¾ŠŗŃŠø не Š²ŠŗŠ»ŃŽŃ‡Ń‘н или неисправен. -Все ли ŃŠ»ŃƒŠ¶Š±Ń‹ Š·Š°ŠæŃƒŃ‰ŠµŠ½Ń‹ Šø Ń€Š°Š±Š¾Ń‚Š°ŃŽŃ‚? -Также ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚е порты. - - FriendsDialog - + Edit status message Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ваш ŃŃ‚Š°Ń‚ŃƒŃ - - + + Broadcast ŠØŠøŃ€Š¾ŠŗŠ¾Š²ŠµŃ‰Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ чат @@ -6812,38 +7415,33 @@ Also check your ports! Š”Š±Ń€Š¾ŃŠøŃ‚ŃŒ настройки ŃˆŃ€ŠøŃ„Ń‚Š° - + 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> + <h1><img width="32" src=":/icons/help_64.png"> Š”ŠµŃ‚ŃŒ</h1> <p>ВклаГка Ā«Š”ŠµŃ‚ŃŒĀ» показывает ваше Говеренное Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ в сети RetroShare, а именно: те ŃƒŠ·Š»Ń‹ RetroShare, с которыми вы соеГинены или можете ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ, когГа ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ ŠæŠ¾ŃŠ²ŠøŃ‚ŃŃ в сети. </p> <p>Можно Š³Ń€ŃƒŠæŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃƒŠ·Š»Ń‹, чтобы позГнее Š“ŠµŃ‚Š°Š»ŃŒŠ½Š¾ Ń€Š°Š·Š³Ń€Š°Š½ŠøŃ‡ŠøŃ‚ŃŒ ŃƒŃ€Š¾Š²ŠµŠ½ŃŒ Š“Š¾ŃŃ‚ŃƒŠæŠ° Šŗ информации, например, Ń€Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ Ń‚Š¾Š»ŃŒŠŗŠ¾ опреГелённым узлам Š²ŠøŠ“ŠµŃ‚ŃŒ опреГелённые файлы или ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Ńƒ Š²Š°ŃˆŠøŃ… папок.</p> <p>Дправа, вы найГете 3 полезные вклаГки: <ul><li>ŠØŠøŃ€Š¾ŠŗŠ¾Š²ŠµŃ‰Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ чат Š¾Ń‚ŠæŃ€Š°Š²Š»ŃŠµŃ‚ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ ŃŃ€Š°Š·Ńƒ всем ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½Š½Ń‹Š¼ узлам </li> <li>Граф локальной сети отображает в уГобной форме Š¾ŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠøŠµ вас ŃƒŠ·Š»Ń‹, Š¾ŃŠ½Š¾Š²Ń‹Š²Š°ŃŃŃŒ на информации, ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½Š½Š¾Š¹ от ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ сервиса Š¾Š±Š½Š°Ń€ŃƒŠ¶ŠµŠ½ŠøŃ</li> <li>Массив ŠŗŠ»ŃŽŃ‡ŠµŠ¹ соГержит иГентификаторы ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŠµŠ¹, собранных вашим клиентом от Š“Ń€ŃƒŠ³ŠøŃ… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² сети</li></ul></p> + + + Retroshare broadcast chat: messages are sent to all connected friends. ŠØŠøŃ€Š¾ŠŗŠ¾Š²ŠµŃ‰Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ чат RetroShare: ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ Š±ŃƒŠ“ŃƒŃ‚ Ń€Š°ŃŃŃ‹Š»Š°Ń‚ŃŒŃŃ всем ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡Ń‘Š½Š½Ń‹Š¼ узлам. - - + + Network Š”ŠµŃ‚ŃŒ - - Friend Server - - - - + Network graph Š’ŠøŠ·ŃƒŠ°Š»ŠøŠ·Š°Ń†ŠøŃ сети - - <h1><img width="%1" 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> - - - - + Set your status message here. Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ сообщение о своём ŃŃ‚Š°Ń‚ŃƒŃŠµ @@ -6861,17 +7459,7 @@ Also check your ports! ŠŸŠ°Ń€Š¾Š»ŃŒ - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Все ŠæŠ¾Š»Ń Голжны Š¾Š±ŃŠ·Š°Ń‚ŠµŠ»ŃŒŠ½Š¾ Š±Ń‹Ń‚ŃŒ заполнены текстом, ŃŠ¾ŃŃ‚Š¾ŃŃ‰ŠøŠ¼ ŠøŠ· не менее 3 символов @@ -6881,12 +7469,17 @@ Also check your ports! ŠŸŠ°Ń€Š¾Š»Šø не ŃŠ¾Š²ŠæŠ°Š“Š°ŃŽŃ‚ - + Port ŠŸŠ¾Ń€Ń‚ - + + Use BOB + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ BOB + + + This password is for PGP Данный ŠæŠ°Ń€Š¾Š»ŃŒ преГназначен Š“Š»Ń PGP @@ -6907,38 +7500,50 @@ Also check your ports! ŠŠµ уГалось ŃŠ¾Š·Š“Š°Ń‚ŃŒ ваш новый сертификат. ŠœŠ¾Š¶ŠµŃ‚ Š±Ń‹Ń‚ŃŒ, ввеГён Š½ŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ PGP! - + Options + ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ + + + PGP Key Length Длина ŠŗŠ»ŃŽŃ‡Š° PGP - - + + <html><head/><body><p>Put a strong password here. This password protects your private node key!</p></body></html> <html><head/><body><p>ВвеГите зГесь наГёжный ŠæŠ°Ń€Š¾Š»ŃŒ. ŠŸŠ°Ń€Š¾Š»ŃŒ не Голжен Š±Ń‹Ń‚ŃŒ короче восьми символов Šø ŃŠ¾Š“ŠµŃ€Š¶Š°Ń‚ŃŒ Ń‚Ń€ŠøŠ²ŠøŠ°Š»ŃŒŠ½Ń‹Ń… комбинаций букв Šø цифр. Это Š¾Ń‡ŠµŠ½ŃŒ важно, так как ŃŃ‚Š¾Ń‚ ŠæŠ°Ń€Š¾Š»ŃŒ защищает ваш приватный ŠŗŠ»ŃŽŃ‡!</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%, но Š¶ŠµŠ»Š°Ń‚ŠµŠ»ŃŒŠ½Š¾ Š“Š¾ŃŃ‚ŠøŠ³Š½ŃƒŃ‚ŃŒ 100%</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><p>который Š±ŃƒŠ“ет Š·Š°ŠæŃƒŃ‰ŠµŠ½ на ŃŃ‚Š¾Š¼ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Šµ</p></body></html> - + Use existing profile + Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŃŽŃ‰ŠøŠ¹ ŠæŃ€Š¾Ń„ŠøŠ»ŃŒ + + + Node name ŠŠ°Š·Š²Š°Š½ŠøŠµ узла - + Node type: @@ -6958,12 +7563,12 @@ Also check your ports! - + <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>ŃŠ¾Š·Š“Š°Ń‚ŃŒ на различных Š¼Š°ŃˆŠøŠ½Š°Ń… множество узлов с разными Š½Š°Š·Š²Š°Š½ŠøŃŠ¼Šø.</p><p><br/></p></body></html> - + Export this profle Š­ŠŗŃŠæŠ¾Ń€Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠæŃ€Š¾Ń„ŠøŠ»ŃŒ @@ -6973,43 +7578,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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>Личности-иГентификаторы ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŃŽŃ‚ŃŃ при общении в чатах, а также когГа вы Š¾ŃŃ‚Š°Š²Š»ŃŠµŃ‚Šµ комментарии Šŗ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃŠ¼ в Ń„Š¾Ń€ŃƒŠ¼Š°Ń… или каналах. </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> @@ -7057,13 +7661,13 @@ and use the import button to load it Š’Š°Ńˆ ŠæŃ€Š¾Ń„ŠøŠ»ŃŒ не был сохранён. ŠŸŃ€Š¾ŠøŠ·Š¾ŃˆŠ»Š° ошибка. - + Import profile Š˜Š¼ŠæŠ¾Ń€Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠæŃ€Š¾Ń„ŠøŠ»ŃŒ - + Create new profile and new Retroshare node Š”Š¾Š·Š“Š°Ń‚ŃŒ новый ŠæŃ€Š¾Ń„ŠøŠ»ŃŒ Šø узел RetroShare @@ -7073,7 +7677,7 @@ and use the import button to load it Š”Š¾Š·Š“Š°Ń‚ŃŒ новый узел RetroShare - + Tor/I2P address АГрес Tor/I2P @@ -7108,7 +7712,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7118,7 +7722,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> <p>ДозГание узла Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾ Го тех пор, пока не Š±ŃƒŠ“ŃƒŃ‚ ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾ заГаны все ŠæŠ¾Š»Ń.</p> @@ -7128,7 +7737,12 @@ and use the import button to load it <p>ДозГание узла Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾, пока не Š±ŃƒŠ“ет собрано Гостаточное количество ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, перемещайте Š¼Ń‹ŃˆŃŒ по ŠŗŃ€ŃƒŠ³Ńƒ, пока не Š±ŃƒŠ“ет Š“Š¾ŃŃ‚ŠøŠ³Š½ŃƒŃ‚Š¾ по крайней мере 20%.</p> - + + I2P instance address with BOB enabled + АГрес ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š° I2P с Š²ŠŗŠ»ŃŽŃ‡Ń‘Š½Š½Ń‹Š¼ BOB + + + I2P instance address АГрес ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š° I2P @@ -7354,13 +7968,36 @@ and use the import button to load it Быстрый старт - + 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;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 – ŃŃ‚Š¾ Š°Š½Š¾Š½ŠøŠ¼Š½Š°Ń ŠæŃ€ŠøŠ²Š°Ń‚Š½Š°Ń f2f-ŃŠµŃ‚ŃŒ, ŠæŠ¾ŃŃ‚Š¾Š¼Ńƒ вам необхоГимо ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ как минимум с оГним Š“ŠµŠ¹ŃŃ‚Š²ŃƒŃŽŃ‰ŠøŠ¼ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š¼ сети. ŠŠ°Š¶Š¼ŠøŃ‚Šµ на кнопку, чтобы Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° себе в Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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;">Аналогично ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚Šµ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŃ от Š“Ń€ŃƒŠ³ŠøŃ… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² сети. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">ŠŸŠ¾Š¼Š½ŠøŃ‚Šµ: соеГинение в тёмной сети RetroShare преГполагает взаимный обмен сертификатами; Ń‚Š¾Š»ŃŒŠŗŠ¾ в ŃŃ‚Š¾Š¼ ŃŠ»ŃƒŃ‡Š°Šµ вы сможете ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ с контрагентом.</span></p></body></html> + + + Add Your Friends to RetroShare Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š²Š°ŃˆŠøŃ… Š“Ń€ŃƒŠ·ŠµŠ¹ Šø близких в RetroShare @@ -7370,103 +8007,136 @@ and use the import button to load it Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŃƒŠ·Š»Ń‹ в Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Š—Š°ŠæŃƒŃŃ‚ŠøŃ‚Šµ RetroShare в то же Š²Ń€ŠµŠ¼Ń, что Šø ваш Говеренный узел, Šø 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;">ŠžŠ±Ń‹Ń‡Š½Š¾ ŃŃ‚Š¾ занимает 2-30 Š¼ŠøŠ½ŃƒŃ‚ после первого запуска RetroShare. ŠŠµ Š·Š°Š±ŃƒŠ“ŃŒŃ‚Šµ Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ UPnP в вашем моГеме или Ń€Š¾ŃƒŃ‚ŠµŃ€Šµ!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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;">Если у вас работает UPnP или Š²Ń€ŃƒŃ‡Š½ŃƒŃŽ настроен открытый порт, инГикатор 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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń настройка: Š¾Ń‚ŠŗŃ€Ń‹Ń‚ŃŒ порт межсетевого ŃŠŗŃ€Š°Š½Š° +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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 в Š’ŠøŠŗŠø. ŠœŠ°Ń‚ŠµŃ€ŠøŠ°Š» слегка ŃƒŃŃ‚Š°Ń€ŠµŠ», но он всё же соГержит Š¾ŃŠ½Š¾Š²Š½ŃƒŃŽ ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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) Если у вас ничего не ŠæŠ¾Š»ŃƒŃ‡Š°ŠµŃ‚ŃŃ, зайГите на сайт https://adorabilis.wordpress.com или в Š³Ń€ŃƒŠæŠæŃƒ Вконтакте https://vk.com/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;">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;"> +<p style=" 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 + Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń настройка: Š¾Ń‚ŠŗŃ€Ń‹Ń‚ŃŒ порт межсетевого ŃŠŗŃ€Š°Š½Š° + + + Further Help and Support Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń ŠæŠ¾Š¼Š¾Ń‰ŃŒ Šø поГГержка - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ Š¾Ń„ŠøŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ сайт RetroShare @@ -7491,7 +8161,7 @@ p, li { white-space: pre-wrap; } ŠŠ°ŠæŠøŃŠ°Ń‚ŃŒ отзыв - + RetroShare Invitation ŠŸŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ ŠøŠ· RetroShare @@ -7541,12 +8211,12 @@ p, li { white-space: pre-wrap; } ŠžŃ‚Š·Ń‹Š²Ń‹ о RetroShare - + RetroShare Support КоманГа поГГержки RetroShare - + It has many features, including built-in chat, messaging, Š’ ней много особенностей, Š²ŠŗŠ»ŃŽŃ‡Š°Ń встроенный чат, ŃŠøŃŃ‚ŠµŠ¼Ńƒ переГачи сообщений, @@ -7670,7 +8340,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŠ¾Š²Š¾Š¹ чат @@ -7678,7 +8348,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [неизвестно] @@ -7844,11 +8514,19 @@ p, li { white-space: pre-wrap; } 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. + Š’Ń‹ можете Ń€Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ вашим контактам ŠøŠ·Š¼ŠµŠ½ŃŃ‚ŃŒ Ń‚ŠµŠ¼Ńƒ. Š”Š»Ń ŃŃ‚Š¾Š³Š¾ выберите тот или иной контакт в списке ниже. ŠŸŃ€ŠøŠ¼ŠµŃ‡Š°Š½ŠøŠµ: невозможно Š¾Ń‚Š¾Š±Ń€Š°Ń‚ŃŒ права аГминистратора в сервисе ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠ¹. + GroupTreeWidget - + Title ŠŠ°Š·Š²Š°Š½ŠøŠµ @@ -7861,12 +8539,12 @@ p, li { white-space: pre-wrap; } - + Description ŠžŠæŠøŃŠ°Š½ŠøŠµ - + Number of Unread message @@ -7891,7 +8569,35 @@ p, li { white-space: pre-wrap; } - + 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) Š’Ń‹ аГминистратор (ŠøŠ·Š¼ŠµŠ½ŃŠ¹Ń‚Šµ название Šø описание ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŃ Š¼ŠµŠ½ŃŽ "Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ") @@ -7906,14 +8612,14 @@ p, li { white-space: pre-wrap; } Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ - - + + Last Post ПослеГнее непрочтённое - + Name Š˜Š¼Ń @@ -7924,13 +8630,17 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾ŠæŃƒŠ»ŃŃ€Š½Š¾ŃŃ‚ŃŒ - + Never ŠŠøŠŗŠ¾Š³Š“Š° - + Display + ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7943,7 +8653,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and Šø @@ -8079,7 +8789,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels ŠšŠ°Š½Š°Š»Ń‹ @@ -8090,22 +8800,26 @@ p, li { white-space: pre-wrap; } Š”Š¾Š·Š“Š°Ń‚ŃŒ канал - + Enable Auto-Download Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ автоматическое скачивание - + My Channels Мои каналы - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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>ŠžŃŃ‚Š°Š²Š»ŃŃ‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ в канале может Ń‚Š¾Š»ŃŒŠŗŠ¾ его ŃŠ¾Š·Š“Š°Ń‚ŠµŠ»ŃŒ. ŠžŃŃ‚Š°Š»ŃŒŠ½Ń‹Šµ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø Š¼Š¾Š³ŃƒŃ‚ лишь Ń‡ŠøŃ‚Š°Ń‚ŃŒ его соГержимое Šø Ń‚Š¾Š»ŃŒŠŗŠ¾ в том ŃŠ»ŃƒŃ‡Š°Šµ, если канал не ŃŠ²Š»ŃŠµŃ‚ŃŃ приватным. Тем не менее, вы можете ⇄ Š“Š°Ń‚ŃŒ права на чтение или Š¼Š¾Š“ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃŽ канала ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŠ¼ ŠøŠ· Говеренного Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ.</p>⇄ <p>Канал может Š±Ń‹Ń‚ŃŒ анонимным или псевГонимным, если за ним закреплён опреГелённый иГентификатор ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń. ⇄ Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ режим Ā«Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ комментарии», если Š’Ń‹ хотите Š“Š°Ń‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŠ¼ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ ŠŗŠ¾Š¼Š¼ŠµŠ½Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ.</p> <p>Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ канала ŃƒŠ“Š°Š»ŃŃŽŃ‚ŃŃ через %1 Š¼ŠµŃŃŃ†Š°.</p> + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels ПоГписка на каналы @@ -8125,12 +8839,12 @@ p, li { white-space: pre-wrap; } Выберите папку Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø Š“Š»Ń канала - + Disable Auto-Download ŠžŃ‚Š¼ŠµŠ½ŠøŃ‚ŃŒ автоматическое скачивание - + Set download directory Выберите папку Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø @@ -8165,22 +8879,22 @@ p, li { white-space: pre-wrap; } - + Play Воспроизвести - + Open folder ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ папку - + Open file - + Error ŠžŃˆŠøŠ±ŠŗŠ° @@ -8200,17 +8914,17 @@ p, li { white-space: pre-wrap; } ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° - + Are you sure that you want to cancel and delete the file? Š’Ń‹ ŃƒŠ²ŠµŃ€ŠµŠ½Ń‹, что хотите Š¾Ń‚Š¼ŠµŠ½ŠøŃ‚ŃŒ Š¾ŠæŠµŃ€Š°Ń†ŠøŃŽ Šø ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ файл? - + Can't open folder ŠŠµ уГалось Š¾Ń‚ŠŗŃ€Ń‹Ń‚ŃŒ папку - + Play File ŠŸŃ€Š¾ŠøŠ³Ń€Š°Ń‚ŃŒ файл @@ -8220,10 +8934,37 @@ p, li { white-space: pre-wrap; } Файл %1 не ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚ в указанном месте. + + GxsChannelFilesWidget + + Form + Форма + + + Filename + Š˜Š¼Ń файла + + + Size + Размер + + + Title + ŠŠ°Š·Š²Š°Š½ŠøŠµ + + + Published + ŠžŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Š½Š¾ + + + Status + Š”Ń‚Š°Ń‚ŃƒŃ + + GxsChannelGroupDialog - + Create New Channel Š”Š¾Š·Š“Š°Ń‚ŃŒ новый канал @@ -8261,19 +9002,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - - - - Subscribe this Channel - + + Subscribe to Channel + ŠŸŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒŃŃ на канал @@ -8287,7 +9018,7 @@ p, li { white-space: pre-wrap; } - + Expand Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ @@ -8302,7 +9033,7 @@ p, li { white-space: pre-wrap; } ŠžŠæŠøŃŠ°Š½ŠøŠµ канала - + Loading Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° @@ -8317,9 +9048,8 @@ p, li { white-space: pre-wrap; } - - Never - ŠŠøŠŗŠ¾Š³Š“Š° + New Channel + ŠŠ¾Š²Ń‹Š¹ канал @@ -8330,7 +9060,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: ŠŠ¾Š²Ń‹Š¹ комментарий: @@ -8351,7 +9081,7 @@ p, li { white-space: pre-wrap; } - + Play Воспроизвести @@ -8407,24 +9137,28 @@ 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 часов Šø %2 Š¼ŠøŠ½ŃƒŃ‚, прежГе чем файл Š±ŃƒŠ“ет ŃƒŠ“Š°Š»Ń‘Š½. Рассмотрите Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ его ŃŠ¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ. + Hide Š”ŠŗŃ€Ń‹Ń‚ŃŒ - + New ŠŠ¾Š²Ń‹Š¹ - + 0 0 - - + + Comment ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ @@ -8439,17 +9173,21 @@ p, li { white-space: pre-wrap; } Мне не ŠæŠ¾Š½Ń€Š°Š²ŠøŠ»Š¾ŃŃŒ - + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + + Loading... - + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø - + Post @@ -8474,16 +9212,139 @@ p, li { white-space: pre-wrap; } ŠŸŃ€Š¾ŠøŠ³Ń€Š°Ń‚ŃŒ меГиафайл + + GxsChannelPostsWidget + + 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): + Дообщений (сосеГние ŃƒŠ·Š»Ń‹): + + GxsChannelPostsWidgetWithModel - + Post to Channel Š”Š¾Š·Š“Š°Ń‚ŃŒ сообщение в канале - + Add new post Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ новое сообщение @@ -8553,7 +9414,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8589,7 +9450,7 @@ p, li { white-space: pre-wrap; } - + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø @@ -8604,13 +9465,13 @@ p, li { white-space: pre-wrap; } ŠšŠ°Š½Š°Š»Ń‹ - - + + Click to switch to list view - + Show unread posts only @@ -8625,7 +9486,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8640,7 +9501,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8700,22 +9561,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8772,12 +9623,12 @@ p, li { white-space: pre-wrap; } Restricted to members of circle " - ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ Š“Š»Ń членов ŠŗŃ€ŃƒŠ³Š° " + Restricted to members of circle - ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ Š“Š»Ń членов ŠŗŃ€ŃƒŠ³Š° + @@ -8790,13 +9641,12 @@ p, li { white-space: pre-wrap; } Š’Ń‹ Šø ваше Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ - - + Copy Retroshare link - + Subscribed @@ -8847,17 +9697,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + Circle name: - + Accept @@ -8877,11 +9727,27 @@ p, li { white-space: pre-wrap; } Remove Item Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ + + for identity + Š“Š»Ń личности + + + You received a membership request for circle: + Š’Ń‹ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Šø запрос на членство в ŠŗŃ€ŃƒŠ³Šµ: + Grant membership request Š£Š“Š¾Š²Š»ŠµŃ‚Š²Š¾Ń€ŠøŃ‚ŃŒ запрос на членство + + Revoke membership request + ŠžŃ‚ŠŗŠ°Š·Š°Ń‚ŃŒ в запросе на членство + + + You received an invitation for circle: + Š’Ń‹ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Šø ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ в ŠŗŃ€ŃƒŠ³: + @@ -8972,7 +9838,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container ŠšŠ¾Š½Ń‚ŠµŠ¹Š½ŠµŃ€ комментариев @@ -8985,7 +9851,7 @@ p, li { white-space: pre-wrap; } Форма - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9015,7 +9881,7 @@ p, li { white-space: pre-wrap; } ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ - + Comment ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ @@ -9054,7 +9920,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment ŠžŃ‚Š²ŠµŃ‚ на комментарий @@ -9078,21 +9944,6 @@ p, li { white-space: pre-wrap; } Vote Down Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ против - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9102,7 +9953,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; } @@ -9131,10 +9982,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹</span></p></body></html> + + + Signed by + ПоГписано + Reply to Comment @@ -9163,7 +10030,7 @@ before you can comment чем вы сможете ŠŗŠ¾Š¼Š¼ŠµŠ½Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ - + It remains %1 characters after HTML conversion. @@ -9205,6 +10072,14 @@ before you can comment Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ аГминистраторов Ń„Š¾Ń€ŃƒŠ¼Š° + + + Select Forum Admins + Š’Ń‹Š±Ń€Š°Ń‚ŃŒ аГминистраторов Ń„Š¾Ń€ŃƒŠ¼Š° + Create @@ -9214,7 +10089,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum ŠŸŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒŃŃ на Ń„Š¾Ń€ŃƒŠ¼ @@ -9230,7 +10105,7 @@ before you can comment - + Expand Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ @@ -9250,9 +10125,8 @@ before you can comment - - TextLabel - Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° @@ -9283,13 +10157,13 @@ before you can comment GxsForumMsgItem - - + + Subject: Тема: - + Unsubscribe To Forum ŠžŃ‚ŠæŠøŃŠ°Ń‚ŃŒŃŃ от Ń„Š¾Ń€ŃƒŠ¼Š° @@ -9300,7 +10174,7 @@ before you can comment - + Expand Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ @@ -9320,17 +10194,21 @@ before you can comment Š’ ответ на: - + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + + Loading... - + Forum Feed ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ в Ń„Š¾Ń€ŃƒŠ¼ - + Hide Š”ŠŗŃ€Ń‹Ń‚ŃŒ @@ -9343,66 +10221,63 @@ before you can comment Форма - + Start new Thread for Selected Forum ŠŠ°Ń‡Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Ń‚ŠµŠ¼Ńƒ в выбранном Ń„Š¾Ń€ŃƒŠ¼Šµ - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Поиск по Ń„Š¾Ń€ŃƒŠ¼Š°Š¼ - + Last Post + ПослеГнее сообщение + + + New Thread ŠŠ¾Š²Š°Ń тема + + + Threaded View + ДревовиГный виГ + + + + Flat View + Плоский виГ + - + Title ŠŠ°Š·Š²Š°Š½ŠøŠµ - - + + Date Дата - + Author Автор - + + Save image + Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение + + + Loading Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9412,7 +10287,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message ŠžŃ‚Š²ŠµŃ‚ŠøŃ‚ŃŒ на сообщение @@ -9436,6 +10316,10 @@ before you can comment Download all files Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ все файлы + + Next unread + Š”Š»ŠµŠ“ŃƒŃŽŃ‰ŠµŠµ непрочитанное + Search Title @@ -9452,23 +10336,35 @@ 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> + <p>ПоГписка на Ń„Š¾Ń€ŃƒŠ¼ означает, что ваш клиент Š±ŃƒŠ“ŠµŃ‚ ŃŠ¾Š±ŠøŃ€Š°Ń‚ŃŒ среГи Говеренного Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ все ŠøŠ¼ŠµŃŽŃ‰ŠøŠµŃŃ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ, а также, в ŃŠ²Š¾ŃŽ Š¾Ń‡ŠµŃ€ŠµŠ“ŃŒ, Š“ŠµŠ»Š°Ń‚ŃŒ Ń„Š¾Ń€ŃƒŠ¼Š½Ń‹Š¹ котент виГимым Š“Š»Ń Š“Ń€ŃƒŠ³ŠøŃ… ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ.</p> <p>ВпослеГствии, при желании, вы сможете Š¾Ń‚ŠæŠøŃŠ°Ń‚ŃŒŃŃ от Ń„Š¾Ń€ŃƒŠ¼Š°, воспользовавшись контекстным Š¼ŠµŠ½ŃŽ.</p> + + + No name Без Š½Š°Š·Š²Š°Š½ŠøŃ - - + + Reply ŠžŃ‚Š²ŠµŃ‚ - + <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> - + Loading... @@ -9511,12 +10407,20 @@ before you can comment Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - + Hide Š”ŠŗŃ€Ń‹Ń‚ŃŒ - + Expand + Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ + + + [Banned] + [Заблокировано] + + + [unknown] [неизвестно] @@ -9546,8 +10450,8 @@ before you can comment Только Š“Š»Ń вас - - + + Distribution Распространение @@ -9561,6 +10465,26 @@ before you can comment 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> @@ -9630,12 +10554,16 @@ before you can comment ŠžŃ€ŠøŠ³ŠøŠ½Š°Š» ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ - + New thread ŠŠ¾Š²Š°Ń тема - + Read status + Š£ŠŗŠ°Š·Ń‹Š²Š°Ń‚ŃŒ ŃŠ¾ŃŃ‚Š¾ŃŠ½ŠøŠµ прочитано / не прочитано + + + Edit Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ @@ -9696,7 +10624,7 @@ before you can comment Š ŠµŠæŃƒŃ‚Š°Ń†ŠøŃ автора - + Show column @@ -9716,7 +10644,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ анонимных авторов, а также авторов с неизвестными ŠŗŠ»ŃŽŃ‡Š°Š¼Šø, Š±ŃƒŠ“ŃƒŃ‚ ŠæŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŃ‚ŃŒŃŃ, если ŠøŃ… Ń€ŠµŠæŃƒŃ‚Š°Ń†ŠøŃ ŠæŠ¾Š»Š¾Š¶ŠøŃ‚ŠµŠ»ŃŒŠ½Š° @@ -9768,7 +10696,7 @@ This message is missing. You should receive it later. - + No result. @@ -9778,7 +10706,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9793,7 +10721,28 @@ This message is missing. You should receive it later. - + 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) (ПослеГнее) @@ -9802,6 +10751,10 @@ This message is missing. You should receive it later. (Old) (Дтарое) + + You cant act on the author to a non-existant Message + Š’Ń‹ не можете Š²Š»ŠøŃŃ‚ŃŒ на автора Š½ŠµŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŃŽŃ‰ŠµŠ³Š¾ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ. + From @@ -9859,12 +10812,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> <р> Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ Ń„Š¾Ń€ŃƒŠ¼Š¾Š² Ń…Ń€Š°Š½ŃŃ‚ŃŃ в течение %1 Гней Šø ŃŠøŠ½Ń…Ń€Š¾Š½ŠøŠ·ŠøŃ€ŃƒŃŽŃ‚ŃŃ с Š“Ń€ŃƒŠ³ŠøŠ¼Šø узлами в течение %2 Гней. </p> <р> Š£ вас ŠµŃŃ‚ŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŃŃ‚Šø Š·Š½Š°Ń‡ŠµŠ½ŠøŃ.</p> - + Forums Š¤Š¾Ń€ŃƒŠ¼Ń‹ @@ -9895,16 +10848,35 @@ This message is missing. You should receive it later. Š”Ń€ŃƒŠ³ŠøŠµ Ń„Š¾Ń€ŃƒŠ¼Ń‹ + + GxsForumsFillThread + + Waiting + ожиГание + + + Retrieving + ŠŸŠ¾Š»ŃƒŃ‡ŠµŠ½ŠøŠµ + + + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + GxsGroupDialog - + Name Š˜Š¼Ń - + Add Icon + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ значок + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels ŠŸŠ¾Š»ŃƒŃ‡Š°Ń‚ŠµŠ»Šø ŠŗŠ»ŃŽŃ‡Š° Š¼Š¾Š³ŃƒŃ‚ ŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Ń‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ в Š³Ń€ŃƒŠæŠæŃ‹ с ограниченным Š“Š¾ŃŃ‚ŃƒŠæŠ¾Š¼, ŠæŃ€Š¾ŃŠ¼Š°Ń‚Ń€ŠøŠ²Š°Ń‚ŃŒ Šø ŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Ń‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ в приватных каналах @@ -9913,14 +10885,22 @@ This message is missing. You should receive it later. Share Publish Key ŠŸŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ ŠæŃƒŠ±Š»ŠøŃ‡Š½Ń‹Š¼ ŠŗŠ»ŃŽŃ‡Š¾Š¼ + + check peers you would like to share private publish key with + ŠæŃ€Š¾Š²ŠµŃ€ŠøŃ‚ŃŒ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š², с которыми вы хотите ŠæŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ приватным ŠŗŠ»ŃŽŃ‡Š¾Š¼ + + + Share Key With + ŠŸŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ ŠŗŠ»ŃŽŃ‡Š¾Š¼ с + - + Description ŠžŠæŠøŃŠ°Š½ŠøŠµ - + Message Distribution Распространение сообщений @@ -9928,7 +10908,7 @@ This message is missing. You should receive it later. - + Public ŠŸŃƒŠ±Š»ŠøŃ‡Š½Ń‹Šµ @@ -9947,6 +10927,14 @@ This message is missing. You should receive it later. New Thread ŠŠ¾Š²Š°Ń тема + + Required + Š¢Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ + + + Encrypted Msgs + Шифрованное сообщение + Personal Signatures @@ -9988,7 +10976,7 @@ This message is missing. You should receive it later. Защита от спама - + Comments: ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø: @@ -10011,7 +10999,7 @@ This message is missing. You should receive it later. Анти-спам: - + All People @@ -10027,12 +11015,12 @@ This message is missing. You should receive it later. - + Restricted to circle: ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ ŠŗŃ€ŃƒŠ³Š¾Š¼: - + Limited to your friends ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ вашими Говеренными узлами @@ -10049,23 +11037,23 @@ This message is missing. You should receive it later. - + Message tracking ŠžŃ‚ŃŠ»ŠµŠ¶ŠøŠ²Š°Š½ŠøŠµ сообщений - - + + PGP signature required ŠŠµŠ¾Š±Ń…Š¾Š“ŠøŠ¼Š° PGP-поГпись - + Never ŠŠøŠŗŠ¾Š³Š“Š° - + Only friends nodes in group Только Š“Š»Ń Говеренных ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² в Š³Ń€ŃƒŠæŠæŠµ @@ -10081,28 +11069,30 @@ This message is missing. You should receive it later. Š”Š¾Š±Š°Š²ŃŒŃ‚Šµ ŠøŠ¼Ń - + PGP signature from known ID required ŠŠµŠ¾Š±Ń…Š¾Š“ŠøŠ¼Š° PGP-поГпись от известного иГентификатора - - - [None] - - - - + Load Group Logo Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ логотип Š³Ń€ŃƒŠæŠæŃ‹ - + Submit Group Changes ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃ Š³Ń€ŃƒŠæŠæŃ‹ - + Failed to Prepare Group MetaData - please Review + ŠŠµ уГалось ŠæŠ¾Š“Š³Š¾Ń‚Š¾Š²ŠøŃ‚ŃŒ метаГанные Š³Ń€ŃƒŠæŠæŃ‹ - ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ + + + Will be used to send feedback + Š‘ŃƒŠ“ŠµŃ‚ использовано Š“Š»Ń обратной ŃŠ²ŃŠ·Šø + + + Owner: ВлаГелец: @@ -10112,12 +11102,12 @@ This message is missing. You should receive it later. Укажите зГесь осмысленное описание - + Info Š”Š²ŠµŠ“ŠµŠ½ŠøŃ - + ID Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ @@ -10127,7 +11117,7 @@ This message is missing. You should receive it later. ПослеГнее сообщение - + <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> @@ -10202,12 +11192,7 @@ This message is missing. You should receive it later. Š—Š°ŠæŃ€ŠµŃ‚ŠøŃ‚ŃŒ непоГписанные Šø неизвестные иГентификаторы - - Author: - - - - + Popularity ŠŸŠ¾ŠæŃƒŠ»ŃŃ€Š½Š¾ŃŃ‚ŃŒ @@ -10223,22 +11208,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create Š”Š¾Š·Š“Š°Ń‚ŃŒ - + + Author + Автор + + + GxsIdLabel Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ Gxs @@ -10246,7 +11236,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° @@ -10306,7 +11296,7 @@ This message is missing. You should receive it later. Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ поГробности - + Synchronise posts of last... Š”ŠøŠ½Ń…Ń€Š¾Š½ŠøŠ·ŠøŃ€Š¾Š²Š°Ń‚ŃŒ контент в течение... @@ -10363,12 +11353,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + ŠŸŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ правами на запись + + + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare @@ -10391,7 +11385,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Без поГписи @@ -10404,24 +11398,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + + Not found ŠŠµ найГен + + No Signature + Без поГписи + - - + + [Banned] [Заблокировано] + + Authentication + ŠŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ + unknown Key неизвестный ŠŗŠ»ŃŽŃ‡ - + anonymous + анонимный + + + Loading... @@ -10431,12 +11441,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Š˜Š¼Ń&nbsp;личности @@ -10450,20 +11455,16 @@ This message is missing. You should receive it later. Node + + Signed&nbsp;by + ПоГписано + [Unknown] [неизвестный] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10475,7 +11476,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10523,13 +11524,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + Loading... @@ -10646,6 +11651,10 @@ This message is missing. You should receive it later. Group ID / Author Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ Š³Ń€ŃƒŠæŠæŃ‹ / автор + + Number of messages / Publish TS + ŠšŠ¾Š»ŠøŃ‡ŠµŃŃ‚Š²Š¾ сообщений / Š’Ń€ŠµŠ¼Ń ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø + Local size of data @@ -10661,6 +11670,10 @@ This message is missing. You should receive it later. Popularity ŠŸŠ¾ŠæŃƒŠ»ŃŃ€Š½Š¾ŃŃ‚ŃŒ + + Details + ŠŸŠ¾Š“Ń€Š¾Š±Š½Š¾ŃŃ‚Šø + @@ -10693,6 +11706,41 @@ This message is missing. You should receive it later. ŠŠµŃ‚ + + GxsTunnelsDialog + + Authenticated tunnels: + Авторизованные Ń‚ŃƒŠ½Š½ŠµŠ»Šø: + + + Tunnel ID: %1 + Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ Ń‚ŃƒŠ½Š½ŠµŠ»Ń: %1 + + + from: %1 + от: %1 + + + to: %1 + Šŗ: %1 + + + status: %1 + ŃŃ‚Š°Ń‚ŃƒŃ: %1 + + + total sent: %1 bytes + всего отправлено: %1 байт + + + total recv: %1 bytes + всего ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½Š¾: %1 байт + + + Unknown Peer + ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Ń‹Š¹ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ + + HashBox @@ -10717,17 +11765,17 @@ This message is missing. You should receive it later. Examining shared files... - ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° файлов, открытых Šŗ Š“Š¾ŃŃ‚ŃƒŠæŃƒ... + ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° файлов, открытых Šŗ Š“Š¾ŃŃ‚ŃƒŠæŃƒ... Hashing file - Š„ŠµŃˆŠøŃ€Š¾Š²Š°Š½ŠøŠµ файла + Š„ŠµŃˆŠøŃ€Š¾Š²Š°Š½ŠøŠµ файла Saving file index... - Дохранение списка файлов... + Дохранение списка файлов... @@ -10905,12 +11953,48 @@ This message is missing. You should receive it later. 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> +<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:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">RetroShare – ŃŃ‚Š¾ кроссплатформенное приложение на основе открытого ŠŸŠž, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ŠæŠµŃ€ŃŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š·Š°Ń‰ŠøŃ‰Ń‘Š½Š½Š°Ń Š“ŠµŃ†ŠµŠ½Ń‚Ń€Š°Š»ŠøŠ·Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Š°Ń система.⇄</span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ŠžŠ½Š° ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ Š¾ŃŃƒŃ‰ŠµŃŃ‚Š²Š»ŃŃ‚ŃŒ безопасный файлообмен совместно с Говеренными ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼Šø, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ ŃŠµŃ‚ŃŒ Š“Š¾Š²ŠµŃ€ŠøŃ Š“Š»Ń ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ поГлинности ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² Šø OpenSSL Š“Š»Ń ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ всей переГаваемой информации. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">RetroShare ŠæŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŃŠµŃ‚ сервисы файлообмена, чатов, ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты Šø каналов</span></p> +<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Š”Š»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ полезные ссылки Š“Š°ŃŽŃ‚ больше свеГений:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-size:8pt;" align="justify" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net"><span style=" font-size:12pt; text-decoration: underline; color:#0000ff;">Вебсайт Retroshare</span></a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net">Š’ŠøŠŗŠø-страница Retroshare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net">Š¤Š¾Ń€ŃƒŠ¼ RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net">Дтраница проекта Retroshare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net">Блог команГы RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net">Twitter разработчиков RetroShare</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 Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10926,7 +12010,7 @@ p, li { white-space: pre-wrap; } - + Authors Авторы @@ -10945,7 +12029,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10958,6 +12042,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-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:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-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;">ШвеГский ŃŠ·Ń‹Šŗ: </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;">ŠŠµŠ¼ŠµŃ†ŠŗŠøŠ¹ ŃŠ·Ń‹Šŗ: </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;">Польский ŃŠ·Ń‹Šŗ: </span><span style=" font-family:'MS Shell Dlg 2';">Maciej Mrug</span></p></body></html> + License Agreement @@ -11023,34 +12137,50 @@ p, li { white-space: pre-wrap; } Форма - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - <html><head/><body><p>Š”ŠŗŠ¾ŠæŠøŃ€ŃƒŠ¹Ń‚Šµ свой иГентификатор RetroShare в Š±ŃƒŃ„ер обмена</p></body></html> + - + Add friend - Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ узел + Did you receive a Retroshare ID from a friend? - Š’Ń‹ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Šø иГентификатор Retroshare от Š“Ń€ŃƒŠ³Š°? + Do you need help with Retroshare? - Вам нужна ŠæŠ¾Š¼Š¾Ń‰ŃŒ с Retroshare? + - + <html><head/><body><p>Share your RetroShare ID</p></body></html> - <html><head/><body><p>ŠŸŠ¾Š“ŠµŠ»ŠøŃ‚ŠµŃŃŒ своим иГентификатором RetroShare</p></body></html> + This is your Retroshare ID. Copy and share with your friends! - Это ваш Retroshare ID. Š”ŠŗŠ¾ŠæŠøŃ€ŃƒŠ¹Ń‚Šµ Šø ŠæŠ¾Š“ŠµŠ»ŠøŃ‚ŠµŃŃŒ с Š“Ń€ŃƒŠ·ŃŒŃŠ¼Šø! + + + + Did you receive a certificate from a friend? + Š£ вас уже ŠµŃŃ‚ŃŒ сертификат Š“Ń€ŃƒŠ³Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° тёмной сети? + + + Add friends certificate + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ сертификат + + + Add certificate file + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ файл сертификата + + + Share your RetroShare Key + ŠŸŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²ŠøŃ‚ŃŒ мой сертификат @@ -11058,6 +12188,10 @@ p, li { white-space: pre-wrap; } ... ... + + The text below is your own Retroshare certificate. Send it to your friends + Текст, который вы виГите ниже, ŠµŃŃ‚ŃŒ ваш сертификат. ŠžŃ‚ŠæŃ€Š°Š²ŃŒŃ‚Šµ его Ń‚Š¾Š¼Ńƒ, с кем вы желаете ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ + Open Source cross-platform, @@ -11068,12 +12202,20 @@ private and secure decentralized communication platform. - + Launch startup wizard + ŠœŠ°ŃŃ‚ŠµŃ€ запуска + + + Do you need help with RetroShare? + Вам нужна ŠæŠ¾Š¼Š¾Ń‰ŃŒ по RetroShare? + + + Open Web Help ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ ŠæŠ¾Š¼Š¾Ń‰ŃŒ в веб - + Copy your Cert to Clipboard Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ сертификат в Š±ŃƒŃ„ер обмена @@ -11083,7 +12225,7 @@ private and secure decentralized communication platform. Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ сертификат в файл - + Send via Email ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ по ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почте @@ -11103,39 +12245,15 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŠøŃŃ‚Š¾Ń€ŠøŃŽ всех IP-аГресов - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ все ваши известные IP-аГреса + - + Use old certificate format - Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ старый формат сертификата + @@ -11145,12 +12263,17 @@ new short format - - Use new (short) certificate format - Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ (короткий) формат сертификата + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + - + + Use new (short) certificate format + + + + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11159,11 +12282,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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!</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> + RetroShare Invite ŠŸŃ€ŠøŠ³Š»Š°ŃŠøŃ‚ŃŒ в RetroShare + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + Š’Š°Ńˆ сертификат скопирован в Š±ŃƒŃ„ер обмена. ŠžŃ‚ŠæŃ€Š°Š²ŃŒŃ‚Šµ ŠŗŠ¾Š½Ń‚Ń€Š°Š³ŠµŠ½Ń‚Ńƒ письмо с ŃŃ‚ŠøŠ¼ сертификатом по ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почте или же Š²Š¾ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚ŠµŃŃŒ Š»ŃŽŠ±Ń‹Š¼ Š“Ń€ŃƒŠ³ŠøŠ¼ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Š¼ способом. + Save as... @@ -11435,14 +12566,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Все ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø - + Reputation Š ŠµŠæŃƒŃ‚Š°Ń†ŠøŃ @@ -11452,12 +12583,12 @@ p, li { white-space: pre-wrap; } Поиск - + Anonymous Id Анонимный иГентификатор - + Create new Identity Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ @@ -11467,7 +12598,7 @@ p, li { white-space: pre-wrap; } Š”Š¾Š·Š“Š°Ń‚ŃŒ новый ŠŗŃ€ŃƒŠ³ - + Persons Š”ŠµŠ¹ŃŃ‚Š²ŠøŃ наГ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼Šø @@ -11482,27 +12613,27 @@ p, li { white-space: pre-wrap; } Участник - + Close Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ - + Ban-option: Блокировка: - + Auto-Ban all identities signed by the same node Автоматически Š±Š»Š¾ŠŗŠøŃ€Š¾Š²Š°Ń‚ŃŒ все личности, созГанные ŃŃ‚ŠøŠ¼ узлом - + Friend votes: - Голоса Š“Ń€ŃƒŠ·ŠµŠ¹: + Рейтинг согласно Š¼Š½ŠµŠ½ŠøŃŽ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š² ŠøŠ· Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ: - + Positive votes ŠŸŠ¾Š»Š¾Š¶ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Šµ мнение @@ -11518,39 +12649,29 @@ p, li { white-space: pre-wrap; } ŠžŃ‚Ń€ŠøŃ†Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ мнение - + Created on : - ДозГано: + - - Auto-Ban profile - ŠŸŃ€Š¾Ń„ŠøŠ»ŃŒ автобана - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ - - - + Usage statistics Дтатистика ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ - + Circles ŠšŃ€ŃƒŠ³Šø - + Circle name Š˜Š¼Ń ŠŗŃ€ŃƒŠ³Š° @@ -11570,20 +12691,18 @@ p, li { white-space: pre-wrap; } Личные ŠŗŃ€ŃƒŠ³Šø - + - Edit identity Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ - - + Delete identity Š£Š“Š°Š»ŠøŃ‚ŃŒ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ - + Chat with this peer Чат с ŃŃ‚ŠøŠ¼ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š¼ @@ -11593,99 +12712,119 @@ p, li { white-space: pre-wrap; } Š—Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Š¹ чат с ŃŃ‚ŠøŠ¼ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š¼ - + 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> <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> +<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>каналах Šø т.Šæ.</p></body></html> - + Overall: ŠžŠ±Ń‰Š°Ń: - + Anonymous Анонимные ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø @@ -11700,24 +12839,24 @@ p, li { white-space: pre-wrap; } Поиск иГентификатора - + This identity is owned by you Эта Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ закреплена за вами - - + + My own identities Личности, созГанные Š¼Š½Š¾ŃŽ - - + + My contacts Мои контакты - + Show Items ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ... @@ -11732,12 +12871,7 @@ p, li { white-space: pre-wrap; } Личности, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Šµ Šŗ моему узлу - - <h1><img width="%1" 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> - - - - + Other circles Š”Ń€ŃƒŠ³ŠøŠµ ŠŗŃ€ŃƒŠ³Šø @@ -11747,7 +12881,7 @@ p, li { white-space: pre-wrap; } ŠšŃ€ŃƒŠ³Šø со мной - + Circle ID: Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ ŠŗŃ€ŃƒŠ³Š°: @@ -11799,7 +12933,7 @@ p, li { white-space: pre-wrap; } unsubscribed (Only receive invite list). Last seen: %1 days ago. - Š¾Ń‚ŠæŠøŃŠ°Š»ŃŃ (Только ŠæŠ¾Š»ŃƒŃ‡Š°Ń‚ŃŒ список ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠ¹). ПослеГний раз был в сети: %1 Гней назаГ. + @@ -11822,14 +12956,14 @@ p, li { white-space: pre-wrap; } ŠŠµ член (нет Š“Š¾ŃŃ‚ŃƒŠæŠ° Šŗ Ганным Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Š¼ ŠŗŃ€ŃƒŠ³Ńƒ) - + Identity ID: Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ личности: Status: - Š”Ń‚Š°Ń‚ŃƒŃ: + Š”Ń‚Š°Ń‚ŃƒŃ: @@ -11852,7 +12986,7 @@ p, li { white-space: pre-wrap; } неизвестно - + Invited ŠŸŃ€ŠøŠ³Š»Š°ŃˆŃ‘Š½ @@ -11867,7 +13001,7 @@ p, li { white-space: pre-wrap; } Член - + Edit Circle Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠŗŃ€ŃƒŠ³ @@ -11915,7 +13049,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. @@ -11926,7 +13060,7 @@ These identities will soon be not supported anymore. ŠŸŠ¾Š“Š“ŠµŃ€Š¶ŠŗŠ° таких иГентификаторов вскоре ŠæŃ€ŠµŠŗŃ€Š°Ń‚ŠøŃ‚ŃŃ. - + [Unknown node] [неизвестный узел] @@ -11969,7 +13103,7 @@ These identities will soon be not supported anymore. ŠŠ½Š¾Š½ŠøŠ¼Š½Š°Ń Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ - + Boards @@ -12011,7 +13145,7 @@ These identities will soon be not supported anymore. Message - Дообщение + @@ -12049,7 +13183,7 @@ These identities will soon be not supported anymore. - + information ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ @@ -12065,12 +13199,29 @@ These identities will soon be not supported anymore. Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ в Š±ŃƒŃ„ер обмена - + 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> <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 ŠæŠ¾Š»Š¾Š¶ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ @@ -12114,11 +13265,19 @@ These identities will soon be not supported anymore. Forums Š¤Š¾Ń€ŃƒŠ¼Ń‹ + + Posted + ŠŸŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø + Chat Чаты + + Unknown + ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾ + [Unknown] @@ -12139,6 +13298,14 @@ These identities will soon be not supported anymore. Creation of author signature in service %1 ДозГание ŃŠøŠ³Š½Š°Ń‚ŃƒŃ€Ń‹ аГминистратора в сервисе %1 + + Message/vote/comment + Дообщение / голос / комментарий + + + %1 in %2 tab + %1 во вклаГке %2 + Distant message signature validation. @@ -12159,11 +13326,19 @@ These identities will soon be not supported anymore. Signature in distant tunnel system. ПоГпись в системе ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š³Š¾ Ń‚ŃƒŠ½Š½ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ + + Update of identity data. + обновление Ганных о личности. + Generic signature validation. Š‘Š°Š·Š¾Š²Š°Ń проверка поГлинности ŃŠøŠ³Š½Š°Ń‚ŃƒŃ€Ń‹ + + Generic signature. + Š‘Š°Š·Š¾Š²Š°Ń ŃŠøŠ³Š½Š°Ń‚ŃƒŃ€Š° + Generic encryption. @@ -12175,7 +13350,11 @@ These identities will soon be not supported anymore. Базовое Š“ŠµŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŠµ. - + Membership verification in circle %1. + ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° членства в ŠŗŃ€ŃƒŠ³Šµ %1 + + + Add to Contacts Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ в контакты @@ -12225,21 +13404,21 @@ These identities will soon be not supported anymore. ŠŸŃ€ŠøŠ²ŠµŃ‚ŃŃ‚Š²ŃƒŃŽ, <br>ŠæŃ€ŠµŠ“Š»Š°Š³Š°ŃŽ Š¾Š±Š¼ŠµŠ½ŃŃ‚ŃŒŃŃ сертификатами RetroShare.<br> - - - + + + People Участники - + Your Avatar Click here to change your avatar ŠŠ°Š¶Š¼ŠøŃ‚Šµ зГесь, чтобы ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ свой аватар - + Linked to neighbor nodes Личности, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Šµ Šŗ ближнему Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃŽ @@ -12249,7 +13428,7 @@ These identities will soon be not supported anymore. Личности, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Šµ Šŗ ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š¼Ńƒ узлу - + Linked to a friend Retroshare node Личности, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Šµ Šŗ Š“Š¾Š²ŠµŃ€ŠµŠ½Š½Š¾Š¼Ńƒ Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃŽ @@ -12264,7 +13443,7 @@ These identities will soon be not supported anymore. ŠŸŃ€ŠøŠ²ŃŠ·Š°Š½ Šŗ Š½ŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾Š¼Ńƒ узлу - + Chat with this person ŠŠ°Ń‡Š°Ń‚ŃŒ чат @@ -12279,12 +13458,12 @@ These identities will soon be not supported anymore. Š’ ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š¼ чате с ŃŃ‚ŠøŠ¼ человеком отказано. - + Last used: - ПослеГний раз ŠæŠ¾ŃŠ²Š»ŃŠ»ŃŃ: + ПослеГний раз ŠæŠ¾ŃŠ²Š»ŃŠ»ŃŃ: - + +50 Known PGP +50 известных PGP @@ -12304,12 +13483,12 @@ These identities will soon be not supported anymore. Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ эту Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ? - + Owned by ŠŸŃ€ŠøŠ½Š°Š“Š»ŠµŠ¶ŠøŃ‚... - + Node name: Š˜Š¼Ń узла: @@ -12319,15 +13498,15 @@ These identities will soon be not supported anymore. Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ узла: - + Really delete? - Š”ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ? + Š”ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ? IdEditDialog - + Nickname ПсевГоним @@ -12357,7 +13536,7 @@ These identities will soon be not supported anymore. ПсевГоним - + Import image @@ -12367,19 +13546,12 @@ These identities will soon be not supported anymore. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity ŠŠ¾Š²Š°Ń Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ @@ -12393,7 +13565,7 @@ These identities will soon be not supported anymore. - + @@ -12403,12 +13575,7 @@ These identities will soon be not supported anymore. ŠŠµŠ“Š¾ŃŃ‚ŃƒŠæŠµŠ½ - - No avatar chosen - - - - + Edit identity Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ @@ -12419,27 +13586,27 @@ These identities will soon be not supported anymore. ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12459,7 +13626,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12469,7 +13636,11 @@ These identities will soon be not supported anymore. - + Error getting key! + ŠžŃˆŠøŠ±ŠŗŠ° при ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½ŠøŠø ŠŗŠ»ŃŽŃ‡Š°! + + + Error KeyID invalid ŠžŃˆŠøŠ±ŠŗŠ°: Š½ŠµŠ“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ иГентификатор ŠŗŠ»ŃŽŃ‡Š° @@ -12484,7 +13655,7 @@ These identities will soon be not supported anymore. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾Šµ ŠøŠ¼Ń - + Create New Identity Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ @@ -12494,15 +13665,10 @@ These identities will soon be not supported anymore. Тип - + Choose image... - - - Remove - - @@ -12528,7 +13694,7 @@ These identities will soon be not supported anymore. Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ - + Create Š”Š¾Š·Š“Š°Ń‚ŃŒ @@ -12538,13 +13704,17 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar ŠŠ°Š¶Š¼ŠøŃ‚Šµ зГесь, чтобы ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ аватар - + Set Avatar + Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ аватар + + + Linked to your profile ŠŸŃ€ŠøŠ²ŃŠ·Š°Š½ Šŗ моему ŠæŃ€Š¾Ń„ŠøŠ»ŃŽ @@ -12554,7 +13724,7 @@ These identities will soon be not supported anymore. Š’Ń‹ можете ŠøŠ¼ŠµŃ‚ŃŒ оГин или несколько иГентификаторов. ŠžŠ½Šø ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŃŽŃ‚ŃŃ, когГа вы ŠæŠøŃˆŠµŃ‚Šµ в чате лобби, на Ń„Š¾Ń€ŃƒŠ¼Š°Ń… Šø канале комментариев. ŠžŠ½Šø Š²Ń‹ŃŃ‚ŃƒŠæŠ°ŃŽŃ‚ в качестве ŠæŠ¾Š»ŃƒŃ‡Š°Ń‚ŠµŠ»Ń Š“Š»Ń ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š³Š¾ чата Šø ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š¹ почтовой системы Retroshare. - + The nickname is too short. Please input at least %1 characters. ПсевГоним ŃŠ²Š»ŃŠµŃ‚ŃŃ слишком коротким. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ввеГите по крайней мере %1 символов. @@ -12613,6 +13783,10 @@ These identities will soon be not supported anymore. PGP name: PGP-псевГоним: + + GXS id: + Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ GXS: + PGP id: @@ -12628,7 +13802,7 @@ These identities will soon be not supported anymore. - + Copy ŠšŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ @@ -12638,12 +13812,12 @@ These identities will soon be not supported anymore. Š£Š“Š°Š»ŠøŃ‚ŃŒ - + %1 's Message History - + Mark all ŠžŃ‚Š¼ŠµŃ‚ŠøŃ‚ŃŒ всё @@ -12662,38 +13836,26 @@ These identities will soon be not supported anymore. Quote Цитата + + Send + ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ + ImageUtil - - + + Save image Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃŠ¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение, неверное ŠøŠ¼Ń файла - - Copy image - - - - - + Not an image ŠŠµ ŃŠ²Š»ŃŠµŃ‚ŃŃ изображением @@ -12711,32 +13873,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: ŠŸŠ¾Ń€Ń‚: - + Listen Address: - - Status: - Š”Ń‚Š°Ń‚ŃƒŃ: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12757,12 +13914,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12771,31 +13923,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ файл - + Open Folder ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ папку - + Checking... ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ°... @@ -12805,7 +13952,7 @@ These identities will soon be not supported anymore. ŠŸŃ€Š¾Š²ŠµŃ€ŠøŃ‚ŃŒ файлы - + Recommend in a message to... Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Ń‚ŃŒ в сообщении Š“Š»Ń... @@ -12833,7 +13980,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ контакт @@ -12849,8 +13996,7 @@ These identities will soon be not supported anymore. - - + Options ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ @@ -12871,7 +14017,7 @@ These identities will soon be not supported anymore. - + Quit ВыхоГ @@ -12882,12 +14028,12 @@ These identities will soon be not supported anymore. ŠŸŠ¾Š¼Š¾Ń‰Š½ŠøŠŗ быстрого старта - + RetroShare %1 a secure decentralized communication platform RetroShare %1 — Š±ŠµŠ·Š¾ŠæŠ°ŃŠ½Š°Ń Š“ŠµŃ†ŠµŠ½Ń‚Ń€Š°Š»ŠøŠ·Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Š°Ń платформа - + Unfinished Ещё не готово @@ -12916,12 +14062,11 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска - Status Š”Ń‚Š°Ń‚ŃƒŃ - + Notify Š£Š²ŠµŠ“Š¾Š¼ŠøŃ‚ŃŒ @@ -12932,35 +14077,31 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска - Open Messages ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ ŠæŠ¾Ń‡Ń‚Ńƒ - - + Bandwidth Graph График ŠæŃ€Š¾ŠæŃƒŃŠŗŠ½Š¾Š¹ способности - + Applications ŠŸŃ€Š¾Š³Ń€Š°Š¼Š¼Š° - Help ŠŸŠ¾Š¼Š¾Ń‰ŃŒ - - + Minimize Š”Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ - + Maximize Š Š°Š·Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ @@ -12975,12 +14116,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска RetroShare - - Close window - - - - + %1 new message %1 новое сообщение @@ -13010,7 +14146,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска %1 узлов сети соеГинено - + Do you really want to exit RetroShare ? Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите выйти ŠøŠ· RetroShare? @@ -13030,7 +14166,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ - + Make sure this link has not been forged to drag you to a malicious website. Š£Š±ŠµŠ“ŠøŃ‚ŠµŃŃŒ, что ŃŃ‚Š° ссылка не была поГГелана, чтобы ŠæŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вас на вреГоносный веб-сайт. @@ -13075,13 +14211,12 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска Управление правами Š“Š¾ŃŃ‚ŃƒŠæŠ° - - + Statistics Дтатистика Ń„ŃƒŠ½ŠŗŃ†ŠøŠ¾Š½ŠøŃ€Š¾Š²Š°Š½ŠøŃ - + Show web interface ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ веб-интерфейс @@ -13096,7 +14231,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска не хватает места в Ганной папке (Ń‚ŠµŠŗŃƒŃ‰ŠøŠ¹ лимит - + Really quit ? Єотите выйти? @@ -13105,17 +14240,17 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска MessageComposer - + Compose Š”Š¾ŃŃ‚Š°Š²ŠøŃ‚ŃŒ - + Contacts ŠšŠ¾Š½Ń‚Š°ŠŗŃ‚Ń‹ - + Paragraph Абзац @@ -13151,12 +14286,12 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска Заголовок 6 - + Font size Размер ŃˆŃ€ŠøŃ„Ń‚Š° - + Increase font size Š£Š²ŠµŠ»ŠøŃ‡ŠøŃ‚ŃŒ размер ŃˆŃ€ŠøŃ„Ń‚Š° @@ -13171,32 +14306,32 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска ŠŸŠ¾Š»ŃƒŠ¶ŠøŃ€Š½Ń‹Š¹ - + Italic ŠšŃƒŃ€ŃŠøŠ² - + Alignment Выравнивание - + Add an Image Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ изображение - + Sets text font to code style Установка ŃˆŃ€ŠøŃ„Ń‚Š° Š“Š»Ń ŃŃ‚ŠøŠ»Ń коГа - + Underline ŠŸŠ¾Š“Ń‡Ń‘Ń€ŠŗŠ½ŃƒŃ‚Ń‹Š¹ - + Subject: Тема: @@ -13207,32 +14342,32 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска - + Tags ŠœŠµŃ‚ŠŗŠø - + Address list: Дписок аГресов - + Recommend this friend Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Ń‚ŃŒ ŃŃ‚Š¾Š³Š¾ Говеренного ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° - + Set Text color Š—Š°Š“Š°Ń‚ŃŒ цвет текста - + Set Text background color Š—Š°Š“Š°Ń‚ŃŒ цвет фона текста - + Recommended Files РекоменГованные файлы @@ -13302,7 +14437,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ Ń†ŠøŃ‚Š°Ń‚Ńƒ - + Send To: ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ: @@ -13326,6 +14461,10 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска &Justify По ŃˆŠøŃ€ŠøŠ½Šµ + + All addresses (mixed) + Все аГреса (смешано) + All people @@ -13337,7 +14476,7 @@ RetroShare безопасно приостановит Š“Š¾ŃŃ‚ŃƒŠæ Гиска Мои контакты - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Š—Š“Ń€Š°Š²ŃŃ‚Š²ŃƒŠ¹Ń‚Šµ, <br>я Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŃŽ вам оГин ŠøŠ· моих Š»ŃƒŃ‡ŃˆŠøŃ… контактов. Š’Ń‹ можете Š“Š¾Š²ŠµŃ€ŃŃ‚ŃŒ ему ровно Š½Š°ŃŃ‚Š¾Š»ŃŒŠŗŠ¾, насколько вы Š“Š¾Š²ŠµŃ€ŃŠµŃ‚Šµ мне. Это Ń…Š¾Ń€Š¾ŃˆŠøŠ¹ узел, ŠæŠ¾Š²ŠµŃ€ŃŒŃ‚Šµ.<br> @@ -13357,18 +14496,18 @@ 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 ŠŠ°ŠøŠ»ŃƒŃ‡ŃˆŠøŠµ ŠæŠ¾Š¶ŠµŠ»Š°Š½ŠøŃ %1,<br><br>%2 хочет ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ с вами соеГинение.<br><br>ŠžŃ‚ŠŗŠ»ŠøŠŗŠ½ŠøŃ‚ŠµŃŃŒ, ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°:<br>%3<br><br>Это в интересах всей сети.<br>КоманГа разработчиков RetroShare - - + + Save Message Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ сообщение - + Message has not been Sent. Do you want to save message to draft box? Дообщение не отправлено. @@ -13380,17 +14519,7 @@ Do you want to save message to draft box? Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ Šŗ "кому" @@ -13410,7 +14539,7 @@ Do you want to save message to draft box? Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ как Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š°Ń†ŠøŃŽ - + Original Message ŠžŃ€ŠøŠ³ŠøŠ½Š°Š» ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ @@ -13420,21 +14549,21 @@ Do you want to save message to draft box? ŠžŃ‚ - + - + To Кому - - + + Cc ŠšŠ¾ŠæŠøŃ - + Sent ŠžŃ‚ŠæŃ€Š°Š²Š»ŠµŠ½Š¾ @@ -13449,7 +14578,7 @@ Do you want to save message to draft box? %1 %2 написал(а): - + Re: ŠžŃ‚Š²ŠµŃ‚: @@ -13459,30 +14588,30 @@ Do you want to save message to draft box? ŠŸŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ сообщение без темы? - + Please insert at least one recipient. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ŃƒŠŗŠ°Š¶ŠøŃ‚Šµ Ń…Š¾Ń‚Ń бы оГного ŠæŠ¾Š»ŃƒŃ‡Š°Ń‚ŠµŠ»Ń - + Bcc ŠŠµŠ²ŠøŠ“ŠøŠ¼Š°Ń ŠŗŠ¾ŠæŠøŃ - + Unknown ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾ @@ -13597,13 +14726,13 @@ Do you want to save message to draft box? ŠŸŠ¾Š“Ń€Š¾Š±Š½Š¾ŃŃ‚Šø - + Open File... ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ файл... - + HTML-Files (*.htm *.html);;All Files (*) HTML-файлы (*.htm *.html);;Все файлы (*) @@ -13623,7 +14752,7 @@ Do you want to save message to draft box? Экспорт PDF - + Message has not been Sent. Do you want to save message ? Дообщение не отправлено. @@ -13645,7 +14774,7 @@ Do you want to save message ? Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ файл - + Hi,<br>I want to be friends with you on RetroShare.<br> ŠŸŃ€ŠøŠ²ŠµŃ‚, <br>Š•ŃŃ‚ŃŒ преГложение Š¾Š±Š¼ŠµŠ½ŃŃ‚ŃŒŃŃ сертификатами Š“Ń€ŃƒŠ³ с Š“Ń€ŃƒŠ³Š¾Š¼. ŠŠµ возражаете?<br> @@ -13669,24 +14798,28 @@ Do you want to save message ? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Š’Ń‹ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Šø преГложение на соеГинение с Š“ŠµŠ¹ŃŃ‚Š²ŃƒŃŽŃ‰ŠøŠ¼ узлом RetroShare + Respond now: ŠžŃ‚Š²ŠµŃ‚ŠøŃ‚ŃŒ сейчас: - - + + Close Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ - + From: Из: - + Friend Nodes Доверенные ŃƒŠ·Š»Ń‹ сети @@ -13731,13 +14864,13 @@ Do you want to save message ? ŠžŃ‚ŃŠ¾Ń€Ń‚ŠøŃ€Š¾Š²Š°Š½Š½Ń‹Š¹ список (в римской системе по ŃƒŠ±Ń‹Š²Š°Š½ŠøŃŽ) - - + + Thanks, <br> Дпасибо, <br> - + Distant identity: Š£Š“Š°Š»Ń‘Š½Š½Š°Ń Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ: @@ -13747,12 +14880,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: Š˜Š¼Ń Šø иГентификатор узла: @@ -13830,7 +14963,7 @@ Do you want to save message ? По ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ - + A new tab ŠŠ¾Š²Š°Ń вклаГка @@ -13840,7 +14973,7 @@ Do you want to save message ? ŠŠ¾Š²Š¾Šµ окно - + Edit Tag Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š¼ŠµŃ‚ŠŗŃƒ @@ -13863,7 +14996,7 @@ Do you want to save message ? MessageToaster - + Sub: Тема: @@ -13871,7 +15004,7 @@ Do you want to save message ? MessageUserNotify - + Message Дообщение @@ -13899,7 +15032,7 @@ Do you want to save message ? MessageWidget - + Recommended Files РекоменГованные файлы @@ -13909,37 +15042,37 @@ Do you want to save message ? Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ все рекоменГованные файлы - + Subject: Тема: - + From: Из: - + To: Š’: - + Cc: ŠšŠ¾ŠæŠøŃ: - + Bcc: ŠŠµŠ²ŠøŠ“ŠøŠ¼Š°Ń ŠŗŠ¾ŠæŠøŃ: - + Tags: ŠœŠµŃ‚ŠŗŠø: - + Reply ŠžŃ‚Š²ŠµŃ‚ @@ -13979,7 +15112,7 @@ Do you want to save message ? - + Send Invite ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ @@ -14031,7 +15164,7 @@ Do you want to save message ? - + Confirm %1 as friend Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ соеГинение с %1 @@ -14041,12 +15174,12 @@ Do you want to save message ? Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ %1 в моё Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµ - + View source - + No subject Без темы @@ -14056,22 +15189,17 @@ Do you want to save message ? Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14081,23 +15209,21 @@ Do you want to save message ? - - Show less - + Send invite? + ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ - - Show more - + Do you really want send a invite with your Certificate? + ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ с вашим сертификатом? - + Download all Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ всё - + Print Document Š Š°ŃŠæŠµŃ‡Š°Ń‚Š°Ń‚ŃŒ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚ @@ -14112,12 +15238,12 @@ Do you want to save message ? HTML-файлы (*.htm *.html);;Все файлы (*) - + Load images always for this message Š—Š°Š³Ń€ŃƒŠ¶Š°Ń‚ŃŒ ŠøŠ·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ всегГа Š“Š»Ń ŃŃ‚Š¾Š³Š¾ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ - + Hide the attachment pane Š”ŠŗŃ€Ń‹Ń‚ŃŒ панель вложений @@ -14139,6 +15265,42 @@ Do you want to save 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 @@ -14217,7 +15379,7 @@ Do you want to save message ? MessagesDialog - + New Message ŠŠ¾Š²Š¾Šµ сообщение @@ -14227,16 +15389,60 @@ Do you want to save message ? Š”Š¾ŃŃ‚Š°Š²ŠøŃ‚ŃŒ - + 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 + ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ + + + - - + + Tags ŠœŠµŃ‚ŠŗŠø - - + + Inbox Š’Ń…Š¾Š“ŃŃ‰ŠøŠµ @@ -14266,17 +15472,21 @@ Do you want to save message ? ŠšŠ¾Ń€Š·ŠøŠ½Š° - + Total Inbox: Все Š²Ń…Š¾Š“ŃŃ‰ŠøŠµ: - + Folders + Папки + + + Quick View Быстрый просмотр - + Print... ŠŸŠµŃ‡Š°Ń‚ŃŒ... @@ -14286,6 +15496,26 @@ Do you want to save message ? Print Preview ŠŸŃ€ŠµŠ“Š²Š°Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ просмотр + + Buttons Icon Only + Только кнопки + + + Buttons Text Beside Icon + Текст Ń€ŃŠ“Š¾Š¼ с кнопкой + + + Buttons with Text + Кнопки с текстом + + + Buttons Text Under Icon + Текст поГ кнопками + + + Set Text Under Icon + Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ текст поГ кнопкой + Save As... @@ -14307,7 +15537,7 @@ Do you want to save message ? ŠŸŠµŃ€ŠµŃŠ»Š°Ń‚ŃŒ сообщение - + Subject Тема @@ -14317,7 +15547,7 @@ Do you want to save message ? ŠžŃ‚ - + Date Дата @@ -14327,7 +15557,39 @@ Do you want to save message ? ДоГержимое - + 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 Поиск темы @@ -14336,11 +15598,6 @@ Do you want to save message ? Search From Поиск Š¾Ń‚ŠæŃ€Š°Š²ŠøŃ‚ŠµŠ»Ń - - - Search To - - Search Date @@ -14367,14 +15624,14 @@ 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 strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ</h1> <p>Š’ RetroShare ŠøŠ¼ŠµŠµŃ‚ŃŃ собственный почтовый сервис. Š’Ń‹ можете Š¾Ń‚ŠæŃ€Š°Š²Š»ŃŃ‚ŃŒ/ŠæŠ¾Š»ŃƒŃ‡Š°Ń‚ŃŒ письма в преГелах Говеренного Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ.</p> <p>Š‘Š»Š°Š³Š¾Š“Š°Ń€Ń глобальной системе Š¼Š°Ń€ŃˆŃ€ŃƒŃ‚изации Ганных, возможна рассылка писем Š“Ń€ŃƒŠ³ŠøŠ¼ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼ сети. Эти ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ всегГа ŠæŠ¾Š“Š²ŠµŃ€Š³Š°ŃŽŃ‚ŃŃ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃŽ Šø ŠæŠµŃ€ŠµŠ“Š°ŃŽŃ‚ŃŃ Š°Š“Ń€ŠµŃŠ°Ń‚Ńƒ через ŠæŃ€Š¾Š¼ŠµŠ¶ŃƒŃ‚очные ŃƒŠ·Š»Ń‹ сети. </p> <p>Š”Š»Ń наГёжной иГентификации Š¾Ń‚ŠæŃ€Š°Š²ŠøŃ‚ŠµŠ»Ń Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŃ‚ŃŃ криптографически ŠæŠ¾Š“ŠæŠøŃŃ‹Š²Š°Ń‚ŃŒ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŃ the <img width="16" src=":/images/stock_signature_ok.png"/> кнопку в реГакторе сообщений. Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Š¼ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŠ¼ Š¾ŃŃ‚Š°ŃŽŃ‚ŃŃ в папке "Š˜ŃŃ…Š¾Š“ŃŃ‰ŠøŠµ" Го тех пор, пока не Š±ŃƒŠ“ет ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½Š¾ поГтвержГение в ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½ŠøŠø.</p> <p>ŠŸŠ¾Ń‡Ń‚Š¾Š²Ń‹Š¹ сервис RetroShare может Š±Ń‹Ń‚ŃŒ использован Š“Š»Ń переГачи ссылок на файлы или рекоменГаций по Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃŽ в ŠŗŃ€ŃƒŠ³ Говеренных, что ŃƒŠŗŃ€ŠµŠæŠøŃ‚ вашу ŃŠµŃ‚ŃŒ, а также Š“Š»Ń откликов на Š¾Š±ŃŠŃŠ²Š»ŠµŠ½ŠøŃ в каналах.</p> - + Starred - + ŠžŃ‚Š¼ŠµŃ‡ŠµŠ½Š¾ звезГой @@ -14448,7 +15705,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14462,7 +15719,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14477,33 +15734,38 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Черновики - + No Box selected. - - To - Кому + 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. + Это сообщение Š±ŃƒŠ“ет отправлено ŃƒŠ“Š°Š»Ń‘Š½Š½Š¾Š¼Ńƒ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŃƒ. + + + @@ -14511,6 +15773,26 @@ 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 @@ -14538,17 +15820,7 @@ Do you want to save message ? MimeTextEdit - - Save image - Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение - - - - Copy image - - - - + Paste as plain text Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ как простой текст @@ -14602,7 +15874,7 @@ Do you want to save message ? - + Expand Š Š°Š·Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ @@ -14612,7 +15884,7 @@ Do you want to save message ? Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ - + from от @@ -14647,10 +15919,18 @@ Do you want to save message ? ŠžŠ¶ŠøŠ“Š°ŃŽŃ‰ŠµŠµ сообщение - + Hide Š”ŠæŃ€ŃŃ‚Š°Ń‚ŃŒ + + Send invite? + ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ + + + Do you really want send a invite with your Certificate? + ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ ŠæŃ€ŠøŠ³Š»Š°ŃˆŠµŠ½ŠøŠµ с вашим сертификатом? + NATStatus @@ -14788,7 +16068,7 @@ Do you want to save message ? Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° - + Remove unused keys... Š£Š“Š°Š»ŠøŃ‚ŃŒ Š½ŠµŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŠ¼Ń‹Šµ ŠŗŠ»ŃŽŃ‡Šø... @@ -14798,7 +16078,7 @@ Do you want to save message ? - + Clean keyring Чистый массив ŠŗŠ»ŃŽŃ‡ŠµŠ¹ @@ -14816,13 +16096,7 @@ Notes: Your old keyring will be backed up. ŠŸŃ€Šø уГалении может произойти сбой, если на оГном ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ере Š·Š°ŠæŃƒŃ‰ŠµŠ½Š¾ несколько ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š¾Š² RetroShare. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о массиве ŠŗŠ»ŃŽŃ‡ŠµŠ¹ @@ -14858,13 +16132,18 @@ For security, your keyring was previously backed-up to file 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 Поиск по имени @@ -14874,12 +16153,12 @@ For security, your keyring was previously backed-up to file Поиск иГентификатора ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° - + Profile details... Š”Š²ŠµŠ“ŠµŠ½ŠøŃ о профиле... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14888,6 +16167,13 @@ Reported error: Дообщение о ошибке: + + NetworkPage + + Network + Š”ŠµŃ‚ŃŒ + + NetworkView @@ -14914,107 +16200,107 @@ Reported error: NewFriendList - + Offline Friends - Š”Ń€ŃƒŠ·ŃŒŃ офлайн + Show Offline Friends - ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ Š“Ń€ŃƒŠ·ŠµŠ¹ офлайн + Status - Š”Ń‚Š°Ń‚ŃƒŃ + Š”Ń‚Š°Ń‚ŃƒŃ Show status - ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ ŃŃ‚Š°Ń‚ŃƒŃ + - + Groups - Š“Ń€ŃƒŠæŠæŃ‹ + Š“Ń€ŃƒŠæŠæŃ‹ Show groups - ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŃ‹ + export friendlist - Экспорт списка контактов + Экспорт списка контактов export your friendlist including groups - Экспорт списка контактов, Š²ŠŗŠ»ŃŽŃ‡Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ о Š³Ń€ŃƒŠæŠæŠ°Ń… + Экспорт списка контактов, Š²ŠŗŠ»ŃŽŃ‡Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ о Š³Ń€ŃƒŠæŠæŠ°Ń… import friendlist - Š˜Š¼ŠæŠ¾Ń€Ń‚ списка контактов + Š˜Š¼ŠæŠ¾Ń€Ń‚ списка контактов import your friendlist including groups - Š˜Š¼ŠæŠ¾Ń€Ń‚ списка контактов, Š²ŠŗŠ»ŃŽŃ‡Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ о Š³Ń€ŃƒŠæŠæŠ°Ń… + Š˜Š¼ŠæŠ¾Ń€Ń‚ списка контактов, Š²ŠŗŠ»ŃŽŃ‡Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ о Š³Ń€ŃƒŠæŠæŠ°Ń… - - + + Search - Поиск + - + ID - + - + Search ID - Поиск иГентификатора + Поиск иГентификатора Online friends on top - ŠžŠ½Š»Š°Š¹Š½-Š“Ń€ŃƒŠ·ŃŒŃ Š½Š°Š²ŠµŃ€Ń…Ńƒ + - + Show Items - ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ... + ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ... - + Last contact - ПослеГний контакт + IP - IP + IP - + Group - Š“Ń€ŃƒŠæŠæŠ° + Š“Ń€ŃƒŠæŠæŠ° Friend - Š”Ń€ŃƒŠ³ + Node - Узел + @@ -15024,126 +16310,126 @@ Reported error: Edit Group - Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ + Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ Remove Group - Š£Š“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ + Š£Š“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ Profile details - Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле + Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле Deny connections - Š—Š°ŠæŃ€ŠµŃ‚ŠøŃ‚ŃŒ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ + Add to group - Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ в Š³Ń€ŃƒŠæŠæŃƒ + Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ в Š³Ń€ŃƒŠæŠæŃƒ Move to group - ŠŸŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ в Š³Ń€ŃƒŠæŠæŃƒ + ŠŸŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ в Š³Ń€ŃƒŠæŠæŃƒ Create new group - Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Š³Ń€ŃƒŠæŠæŃƒ + Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Š³Ń€ŃƒŠæŠæŃƒ Remove from group - Š£Š“Š°Š»ŠøŃ‚ŃŒ ŠøŠ· Š³Ń€ŃƒŠæŠæŃ‹ + Remove from all groups - Š£Š“Š°Š»ŠøŃ‚ŃŒ ŠøŠ· всех Š³Ń€ŃƒŠæŠæ + Š£Š“Š°Š»ŠøŃ‚ŃŒ ŠøŠ· всех Š³Ń€ŃƒŠæŠæ Chat - Чат + Send message to this node - ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ сообщение ŃŃ‚Š¾Š¼Ńƒ узлу + ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ сообщение ŃŃ‚Š¾Š¼Ńƒ узлу Node details - Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле + Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об узле Recommend this node to... - Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Ń‚ŃŒ ŃŃ‚Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°... + Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Ń‚ŃŒ ŃŃ‚Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°... Attempt to connect - Š”Š¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ + Š”Š¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ Copy certificate link - Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ сертификата + Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ сертификата Remove Friend Node - Š£Š“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° + Š£Š“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° Paste certificate link - Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ на сертификат + Š’ŃŃ‚Š°Š²ŠøŃ‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ на сертификат Expand all - Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ всё + Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ всё Collapse all - Š”Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ всё + Š”Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ всё - + Do you want to remove this node? - Š’Ń‹ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ узел? + Š’Ń‹ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ узел? Do you want to remove this Friend? - Š’Ń‹ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ контакт? + - + Done! - Готово! + Готово! Your friendlist is stored at: - Š’Š°Ńˆ список список контактов сохранён в: + Š’Š°Ńˆ список список контактов сохранён в: (keep in mind that the file is unencrypted!) - + (помните, что файл не Š·Š°ŃˆŠøŃ„рован!) @@ -15151,32 +16437,32 @@ Reported error: 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 - Выберите файл, в котором Ń…Ń€Š°Š½ŠøŃ‚ŃŃ список Š²Š°ŃˆŠøŃ… контактов + Выберите файл, в котором Ń…Ń€Š°Š½ŠøŃ‚ŃŃ список Š²Š°ŃˆŠøŃ… контактов @@ -15193,7 +16479,7 @@ at least one peer was not added to a group Error - ŠžŃˆŠøŠ±ŠŗŠ° + ŠžŃˆŠøŠ±ŠŗŠ° @@ -15241,7 +16527,11 @@ at least one peer was not added to a group NewsFeed - + Log entries + Š–ŃƒŃ€Š½Š°Š» + + + Activity Stream @@ -15256,7 +16546,11 @@ at least one peer was not added to a group ŠžŃ‡ŠøŃŃ‚ŠøŃ‚ŃŒ всё - + This is a test. + Это проверка. + + + Newest on top ŠŠ¾Š²Ń‹Šµ Š½Š°Š²ŠµŃ€Ń…Ńƒ @@ -15266,12 +16560,20 @@ at least one peer was not added to a group Дтарые Š½Š°Š²ŠµŃ€Ń…Ńƒ - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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 + Š–ŃƒŃ€Š½Š°Š» + + + Activity @@ -15326,6 +16628,10 @@ at least one peer was not added to a group Blogs Блоги + + Security + Š‘ŠµŠ·Š¾ŠæŠ°ŃŠ½Š¾ŃŃ‚ŃŒ + @@ -15347,6 +16653,10 @@ at least one peer was not added to a group Message Дообщение + + Connect attempt + ŠŸŠ¾ŠæŃ‹Ń‚ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ + @@ -15363,6 +16673,10 @@ at least one peer was not added to a group Ip security IP-Š±ŠµŠ·Š¾ŠæŠ°ŃŠ½Š¾ŃŃ‚ŃŒ + + Log + Š–ŃƒŃ€Š½Š°Š» + Friend Connected @@ -15373,6 +16687,10 @@ at least one peer was not added to a group Circles ŠšŃ€ŃƒŠ³Šø + + Links + ŠŸŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø + Activity @@ -15425,6 +16743,26 @@ at least one peer was not added to a group 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 @@ -15500,16 +16838,24 @@ at least one peer was not added to a group Disable All Toaster temporarily Временно Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ все Š²ŃŠæŠ»Ń‹Š²Š°ŃŽŃ‰ŠøŠµ ŃƒŠ²ŠµŠ“Š¾Š¼Š»ŠµŠ½ŠøŃ + + Feed + Канал + Systray Панель увеГомлений + + Count all unread messages + ŠŸŠ¾Š“ŃŃ‡Ń‘Ń‚ всех непрочитанных сообщений + NotifyQt - + Passphrase required Š¢Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ ŠŗŠ»ŃŽŃ‡ŠµŠ²Š°Ń фраза @@ -15529,12 +16875,12 @@ at least one peer was not added to a group ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ! - + Please enter your Retroshare passphrase ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ввеГите ваш ŠæŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń PGP-ŠŗŠ»ŃŽŃ‡Š° - + Unregistered plugin/executable ŠŠµŠ·Š°Ń€ŠµŠ³ŠøŃŃ‚Ń€ŠøŃ€Š¾Š²Š°Š½Š½Ń‹Š¹ плагин/ŠøŃŠæŠ¾Š»Š½ŃŠµŠ¼Ń‹Š¹ файл. @@ -15549,7 +16895,19 @@ at least one peer was not added to a group ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ ваши системные часы. - + Examining shared files... + ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° файлов, открытых Šŗ Š“Š¾ŃŃ‚ŃƒŠæŃƒ... + + + Hashing file + Š„ŠµŃˆŠøŃ€Š¾Š²Š°Š½ŠøŠµ файла + + + Saving file index... + Дохранение списка файлов... + + + Test Тест @@ -15560,19 +16918,17 @@ at least one peer was not added to a group - 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). Š”Š»Ń наГлежащей работы чата Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ, чтобы системное Š²Ń€ŠµŠ¼Ń ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š° было точным. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ его. (Дмещение системного времени в несколько Š¼ŠøŠ½ŃƒŃ‚ может Š½Š°Ń€ŃƒŃˆŠøŃ‚ŃŒ общение с Š“Ń€ŃƒŠ³ŠøŠ¼Šø ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼Šø сети.) @@ -15580,7 +16936,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online Успешное соеГинение с узлом сети! @@ -15633,6 +16989,10 @@ at least one peer was not added to a group PGPKeyDialog + + Dialog + Диалоговое окно + Profile info @@ -15698,6 +17058,10 @@ at least one peer was not added to a group 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> @@ -15727,20 +17091,23 @@ p, li { white-space: pre-wrap; } PGP-ŠŗŠ»ŃŽŃ‡ - - Friend options - - - - + 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> + Keysigning: + + Sign PGP key + ŠŸŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒ PGP-ŠŗŠ»ŃŽŃ‡ + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15777,7 +17144,12 @@ 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> @@ -15791,6 +17163,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15823,21 +17199,21 @@ p, li { white-space: pre-wrap; } ŠŗŠ‘/с - - + + RetroShare RetroShare - - + + Error : cannot get peer details. ŠžŃˆŠøŠ±ŠŗŠ°: не могу ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ŃŒ ŃŠ¾Š²Š¾ŠŗŃƒŠæŠ½Š¾ŃŃ‚ŃŒ Геталей. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) ŠŸŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŠµŠ½Š½Ń‹Š¹ алгоритм ŠŗŠ»ŃŽŃ‡Š° не ŠæŠ¾Š“Š“ŠµŃ€Š¶ŠøŠ²Š°ŠµŃ‚ŃŃ RetroShare @@ -15856,7 +17232,7 @@ 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. Š£Ń€Š¾Š²ŠµŠ½ŃŒ Š“Š¾Š²ŠµŃ€ŠøŃ ŃŠ²Š»ŃŠµŃ‚ŃŃ способом Š²Ń‹Ń€Š°Š·ŠøŃ‚ŃŒ Говерие в ŃŃ‚Š¾Š¼ ŠŗŠ»ŃŽŃ‡Šµ. ŠžŠ½ не ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ся сторонним программным обеспечением, но может Š±Ń‹Ń‚ŃŒ полезным Š“Š»Ń вас, чтобы Š·Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ Ń…Š¾Ń€Š¾ŃˆŠøŠµ/плохие ŠŗŠ»ŃŽŃ‡Šø. @@ -15925,6 +17301,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + ŠœŠ¾Š¶ŠµŃ‚ Š±Ń‹Ń‚ŃŒ, Š½ŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ + You haven't set a trust level for this key. @@ -15932,12 +17312,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile ŠŸŃ€Š¾Ń„ŠøŠ»ŃŒ RetroShare - + This is your own PGP key, and it is signed by : Это ваш собственный ŠŗŠ»ŃŽŃ‡ PGP Šø он поГписан: @@ -15963,7 +17343,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Чат @@ -15984,7 +17364,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ - + Name: Š˜Š¼Ń: @@ -16024,7 +17404,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Дмещение времени: - + Write Message ŠŠ°ŠæŠøŃŠ°Ń‚ŃŒ сообщение @@ -16038,6 +17418,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected ДоеГинение ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š¾ + + Connect Attempt + ŠŸŠ¾ŠæŃ‹Ń‚ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ + Connection refused by peer @@ -16076,13 +17460,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown + + Unknown Peer + ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Ń‹Š¹ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ + Hide Š”ŠæŃ€ŃŃ‚Š°Ń‚ŃŒ - + Send Message ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ сообщение @@ -16134,6 +17522,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Chat with this person as... Š˜Š½ŠøŃ†ŠøŠøŃ€Š¾Š²Š°Ń‚ŃŒ чат с ŃŃ‚ŠøŠ¼ человеком от имени... + + Send message to this person + ŠŸŠ¾ŃŠ»Š°Ń‚ŃŒ сообщение + Invite to Circle @@ -16192,6 +17584,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + Š“Š°Š²Š°Ń‚ŃŒ ŠæŠ¾Š»Š¾Š¶ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ голос кажГому ŠøŠ· моего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ + use "positive" as the default opinion for contacts (instead of neutral) @@ -16249,6 +17645,13 @@ Warning: In your File-Transfer option, you select allow direct download to No.<html><head/><body><p>Š”Š»Ń того, чтобы ŠæŃ€ŠµŠ“Š¾Ń‚Š²Ń€Š°Ń‚ŠøŃ‚ŃŒ Š°ŠŗŃ‚ŠøŠ²Š½Š¾ŃŃ‚ŃŒ заблокированных личностей в Ń„Š¾Ń€ŃƒŠ¼Š°Ń… или каналах, ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о них некоторое Š²Ń€ŠµŠ¼Ń Голжна Ń…Ń€Š°Š½ŠøŃ‚ŃŒŃŃ. После ŃŃ‚Š¾Š³Š¾ они &quot;ŃƒŠ“Š°Š»ŃŃŽŃ‚ŃŃ&quot; ŠøŠ· списка блокировки, ŃŠŗŠ°Ń‡ŠøŠ²Š°ŃŽŃ‚ŃŃ снова как незаблокированные Šø Š¼Š¾Š³ŃƒŃ‚ ŃƒŃ‡Š°ŃŃ‚Š²Š¾Š²Š°Ń‚ŃŒ Ń„Š¾Ń€ŃƒŠ¼Š°Ń…, чатах Šø т.Šæ.</p></body></html> + + PhotoCommentItem + + Form + Форма + + PhotoDialog @@ -16256,11 +17659,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare PhotoShare + + Photo + Фото + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка + + Comment + ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ + + + Summary + Š ŠµŠ·ŃŽŠ¼Šµ + Album / Photo Name @@ -16321,6 +17736,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ комментарий + + + Write a comment... + ŠŠ°ŠæŠøŃˆŠøŃ‚Šµ комментарий... + Album @@ -16391,6 +17814,10 @@ p, li { white-space: pre-wrap; } Create Album Š”Š¾Š·Š“Š°Ń‚ŃŒ альбом + + View Album + ŠŸŃ€Š¾ŃŠ¼Š¾Ń‚Ń€ŠµŃ‚ŃŒ альбом + Edit Album Details @@ -16412,17 +17839,17 @@ p, li { white-space: pre-wrap; } ДлайГ-шоу - + My Albums Мои Š°Š»ŃŒŠ±Š¾Š¼Ń‹ - + Subscribed Albums ŠŸŠ¾Š“ŠæŠøŃŠ°Š½Š½Ń‹Šµ Š°Š»ŃŒŠ±Š¾Š¼Ń‹ - + Shared Albums ŠžŠ±Ń‰ŠøŠµ Š°Š»ŃŒŠ±Š¾Š¼Ń‹ @@ -16452,7 +17879,7 @@ requesting to edit it! PhotoSlideShow - + Album Name ŠŠ°Š·Š²Š°Š½ŠøŠµ альбома @@ -16511,19 +17938,19 @@ requesting to edit it! - - + + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + Posted by - + ago @@ -16559,12 +17986,12 @@ requesting to edit it! PluginItem - + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + Show more details about this plugin ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ поГробности об ŃŃ‚Š¾Š¼ плагине @@ -16710,6 +18137,60 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Папки поиска плагинов + + Plugin disabled. Click the enable button and restart Retroshare + Плагин Š¾Ń‚ŠŗŠ»ŃŽŃ‡Ń‘Š½. ŠŠ°Š¶Š¼ŠøŃ‚Šµ кнопку "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ" Šø ŠæŠµŃ€ŠµŠ·Š°ŠæŃƒŃŃ‚ŠøŃ‚Šµ RetroShare + + + [disabled] + [Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾] + + + No API number supplied. Please read plugin development manual. + ŠŠµŃ‚ номера API. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, прочитайте Ń€ŃƒŠŗŠ¾Š²Š¾Š“ŃŃ‚Š²Š¾ по разработке плагинов. + + + [loading problem] + [проблема Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø] + + + No SVN number supplied. Please read plugin development manual. + ŠŠµŃ‚ номера SVN. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, прочитайте Ń€ŃƒŠŗŠ¾Š²Š¾Š“ŃŃ‚Š²Š¾ по разработке плагинов. + + + Loading error. + ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø. + + + Missing symbol. Wrong version? + ŠŸŃ€Š¾ŠæŃƒŃ‰ŠµŠ½ символ. ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š°Ń Š²ŠµŃ€ŃŠøŃ? + + + No plugin object + Плагин Š¾Ń‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚ + + + Plugins is loaded. + ŠŸŠ»Š°Š³ŠøŠ½Ń‹ Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½Ń‹. + + + Unknown status. + ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾Šµ ŃŠ¾ŃŃ‚Š¾ŃŠ½ŠøŠµ. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + ŠŸŠ»Š°Š³ŠøŠ½Ń‹, Š½Š°Ń…Š¾Š“ŃŃ‰ŠøŠµŃŃ в стаГии разработки, Ń‚Ń€ŠµŠ±ŃƒŃŽŃ‚ проверки. +ŠžŠ½Šø не Š¼Š¾Š³ŃƒŃ‚ Š±Ń‹Ń‚ŃŒ проверены по хэш-сумме, оГнако в обычной +ŃŠøŃ‚ŃƒŠ°Ń†ŠøŠø проверка хэш-ŃŃƒŠ¼Š¼Ń‹ защищает вас от злонамеренных +Гействий, Š¾ŃŃƒŃ‰ŠµŃŃ‚Š²Š»ŃŠµŠ¼Ń‹Ń… поГменёнными плагинами. + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1><p>ŠŸŠ»Š°Š³ŠøŠ½Ń‹ Š·Š°Š³Ń€ŃƒŠ¶Š°ŃŽŃ‚ŃŃ ŠøŠ· каталогов, перечисленных в нижней части списка.</p><p>По ŃŠ¾Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃŠ¼ безопасности, Ń€Š°Š·Ń€ŠµŃˆŃ‘Š½Š½Ń‹Šµ плагины Š·Š°Š³Ń€ŃƒŠ¶Š°ŃŽŃ‚ŃŃ автоматически Го главного ŠøŃŠæŠ¾Š»Š½ŃŠµŠ¼Š¾Š³Š¾ файла RetroShare или ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃ библиотеки плагинов. Š’ таком ŃŠ»ŃƒŃ‡Š°Šµ, ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ Голжен ŠæŠ¾Š“Ń‚Š²ŠµŃ€Š“ŠøŃ‚ŃŒ ŠøŃ… снова. После запуска программы, вы можете Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ плагин Š²Ń€ŃƒŃ‡Š½ŃƒŃŽ, нажав на кнопку "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ" Šø ŠæŠµŃ€ŠµŠ·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ RetroShare.</p> <p>Если вы хотите Ń€Š°Š·Ń€Š°Š±Š°Ń‚Ń‹Š²Š°Ń‚ŃŒ свои собственные плагины, ŃŠ²ŃŠ¶ŠøŃ‚ŠµŃŃŒ с команГой Разработчиков, они Š±ŃƒŠ“ŃƒŃ‚ раГы ŠæŠ¾Š¼Š¾Ń‡ŃŒ вам!</p> + Plugins @@ -16779,27 +18260,12 @@ p, li { white-space: pre-wrap; } Š Š°Š·Š¼ŠµŃŃ‚ŠøŃ‚ŃŒ окно ŃŠ²ŠµŃ€Ń…Ńƒ - - Ban this person (Sets negative opinion) - Š—Š°Š±Š»Š¾ŠŗŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃ‚Š¾Š³Š¾ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° (ŃƒŃŃ‚Š°Š½Š°Š²Š»ŠøŠ²Š°ŠµŃ‚ Š¾Ń‚Ń€ŠøŃ†Š°Ń‚ŠµŠ»ŃŒŠ½ŃƒŃŽ Ń€ŠµŠæŃƒŃ‚Š°Ń†ŠøŃŽ) - - - - Give neutral opinion - Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ Š½ŠµŠ¹Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ мнение - - - - Give positive opinion - Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ ŠæŠ¾Š»Š¾Š¶ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Šµ мнение - - - + Choose window color... - + Dock window @@ -16833,6 +18299,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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? + Š£Š“Š°Š»ŠøŃ‚ŃŒ Ń‚Š¾Š½Š½ŠµŠ»ŃŒ? + PostedCardView @@ -16852,7 +18334,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š²Ń‹Š¹ - + Vote up Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ "за" @@ -16872,8 +18354,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø @@ -16898,13 +18380,13 @@ p, li { white-space: pre-wrap; } - - + + Comment ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ - + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø @@ -16932,12 +18414,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + ПоГписан: + + + Notes + ŠŸŃ€ŠøŠ¼ŠµŃ‡Š°Š½ŠøŃ + + + Create a new Post - + RetroShare RetroShare @@ -16952,22 +18442,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ файл ŠøŠ·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ - + Post image @@ -16983,17 +18463,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -17003,7 +18473,23 @@ p, li { white-space: pre-wrap; } - + 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 ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š“Š¾Š±Š°Š²ŃŒŃ‚Šµ заголовок @@ -17023,22 +18509,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17053,7 +18529,7 @@ p, li { white-space: pre-wrap; } ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ как - + Post @@ -17064,7 +18540,7 @@ p, li { white-space: pre-wrap; } Š˜Š·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŠµ - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17074,7 +18550,7 @@ p, li { white-space: pre-wrap; } ŠŠ°Š·Š²Š°Š½ŠøŠµ - + Link Дсылка @@ -17082,12 +18558,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + 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> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Дсылки</h1> <p>Дервис «Дсылки» Гаёт Вам Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ ŠæŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ с Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµŠ¼ полезными ссылками, ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о которых Š±ŃƒŠ“ŠµŃ‚ Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŃŃ‚ŃŒŃŃ по сети как Ń„Š¾Ń€ŃƒŠ¼Ń‹ ⇄ каналы</p> ⇄ <p>Дсылки Š¼Š¾Š³ŃƒŃ‚ ŠŗŠ¾Š¼Š¼ŠµŠ½Ń‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒŃŃ поГписчиками. Дистема ŠæŃ€Š¾Š“Š²ŠøŠ¶ŠµŠ½ŠøŃ сообщений Гаёт Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ ⇄ ŠøŠ½Ń„Š¾Ń€Š¼ŠøŃ€Š¾Š²Š°Ń‚ŃŒ о важных ссылках.</p> ⇄ <p>ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½ŠøŃ на тип Šø характер ŠæŃƒŠ±Š»ŠøŠŗŃƒŠµŠ¼Ń‹Ń… ссылок Š¾Ń‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚; Š±ŃƒŠ“ŃŒŃ‚Šµ осторожны при перехоГах по ним.</p> <р> Размещенные ссылки ŃƒŠ“Š°Š»ŃŃŽŃ‚ŃŃ через %1 Š¼ŠµŃŃŃ†Š°. </p> + + + Create Topic + Š”Š¾Š·Š“Š°Ń‚ŃŒ Ń‚ŠµŠ¼Ńƒ + + + My Topics + Мои темы + + + Subscribed Topics + ПоГписка на темы + + + Popular Topics + ŠŸŠ¾ŠæŃƒŠ»ŃŃ€Š½Ń‹Šµ темы + + + Other Topics + Š”Ń€ŃƒŠ³ŠøŠµ темы + + + Links + ŠŸŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17121,7 +18629,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + ŠžŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Š½Š½Š°Ń тема + + + Add Topic Admins + Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ аГминистраторов темы + + + Select Topic Admins + Š’Ń‹Š±Ń€Š°Ń‚ŃŒ аГминистраторов темы + + + Create New Topic + Š”Š¾Š·Š“Š°Ń‚ŃŒ Š½Š¾Š²ŃƒŃŽ Ń‚ŠµŠ¼Ńƒ + + + Edit Topic + Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ Ń‚ŠµŠ¼Ńƒ + + + Update Topic + ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ Ń‚ŠµŠ¼Ńƒ + + + Create New Board @@ -17159,17 +18691,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - - - + Subscribe to Posted ŠŸŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒŃŃ на ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ @@ -17185,7 +18707,7 @@ p, li { white-space: pre-wrap; } - + Expand Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ @@ -17200,17 +18722,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + ŠžŠæŠøŃŠ°Š½ŠøŠµ канала ссылок + + + Loading + Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + + New Posted + ŠŠ¾Š²Ń‹Šµ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ + + + Loading... - - Never - ŠŠøŠŗŠ¾Š³Š“Š° - - - + New Board @@ -17223,18 +18752,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Дайт + + + + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø - + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare @@ -17245,12 +18778,12 @@ p, li { white-space: pre-wrap; } - + Comment ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠ¹ - + Comments ŠšŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŠø @@ -17260,7 +18793,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>Автор ŃŃ‚Š¾Š³Š¾ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ (Š»ŠøŃ‡Š½Š¾ŃŃ‚ŃŒ %1) заблокирован.</b> - + Click to view Picture @@ -17270,17 +18803,21 @@ p, li { white-space: pre-wrap; } - + Vote up Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ "за" - + Vote down Š“Š¾Š»Š¾ŃŠ¾Š²Š°Ń‚ŃŒ "против" - + \/ + \/ + + + Set as read and remove item Š£ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ как чтение Šø уГаление ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š° @@ -17290,7 +18827,7 @@ p, li { white-space: pre-wrap; } ŠŠ¾Š²Ń‹Š¹ - + New Comment: ŠŠ¾Š²Ń‹Š¹ комментарий: @@ -17300,7 +18837,7 @@ p, li { white-space: pre-wrap; } Значение ŠŗŠ¾Š¼Š¼ŠµŠ½Ń‚Š°Ń€ŠøŃ - + Name Š˜Š¼Ń @@ -17341,10 +18878,77 @@ p, li { white-space: pre-wrap; } Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + Loading Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + By + По + + + + PostedListWidget + + Form + Форма + + + Hot + Š“Š¾Ń€ŃŃ‡ŠøŠ¹ + + + New + ŠŠ¾Š²Ń‹Š¹ + + + Top + Š’ начало списка + + + Today + Š”ŠµŠ³Š¾Š“Š½Ń + + + Yesterday + Вчера + + + This Week + ŠŠ° ŃŃ‚Š¾Š¹ неГеле + + + This Month + Š’ ŃŃ‚Š¾Š¼ Š¼ŠµŃŃŃ†Šµ + + + This Year + Š’ ŃŃ‚Š¾Š¼ гоГу + + + Submit a new Post + ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ новое сообщение + + + Next + Š”Š»ŠµŠ“ŃƒŃŽŃ‰ŠøŠ¹ + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, созГайте или выберите иГентификатор поГписавшего Го Š³Š¾Š»Š¾ŃŠ¾Š²Š°Š½ŠøŃ + + + Previous + ŠŸŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠ¹ + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17364,17 +18968,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17384,15 +18978,15 @@ p, li { white-space: pre-wrap; } АГминистратор: - + - + unknown - + Distribution: Распространение: @@ -17402,42 +18996,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel Š¢ŠµŠŗŃŃ‚Š¾Š²Š°Ń метка - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17457,7 +19051,7 @@ p, li { white-space: pre-wrap; } Š“Š¾Ń€ŃŃ‡ŠøŠ¹ - + Search @@ -17487,17 +19081,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17512,17 +19106,12 @@ p, li { white-space: pre-wrap; } ŠŸŃƒŃŃ‚Š¾ - + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - - Copy http Link - - - - + Show author in People tab @@ -17532,31 +19121,27 @@ p, li { white-space: pre-wrap; } - - + information ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17571,7 +19156,7 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾Š“ŠæŠøŃŠ°Ń‚ŃŒŃŃ - + Never ŠŠøŠŗŠ¾Š³Š“Š° @@ -17623,12 +19208,12 @@ p, li { white-space: pre-wrap; } Restricted to members of circle " - ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ Š“Š»Ń членов ŠŗŃ€ŃƒŠ³Š° " + Restricted to members of circle - ŠžŠ³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š¾ Š“Š»Ń членов ŠŗŃ€ŃƒŠ³Š° + @@ -17645,16 +19230,6 @@ p, li { white-space: pre-wrap; } No Channel Selected ŠŠµ выбраны каналы - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17663,6 +19238,14 @@ p, li { white-space: pre-wrap; } Tabs ВклаГки + + Open each topic in a new tab + ŠžŃ‚ŠŗŃ€Ń‹Š²Š°Ń‚ŃŒ кажГое сообщение в новой вклаГке + + + Links + ŠŸŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø + Open each board in a new tab @@ -17676,6 +19259,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ + Board Post @@ -17744,17 +19331,25 @@ 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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> - +</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> @@ -17865,7 +19460,7 @@ and use the import button to load it ProfileWidget - + Edit status message Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ваш ŃŃ‚Š°Ń‚ŃƒŃ @@ -17881,7 +19476,7 @@ and use the import button to load it Управление ŠæŃ€Š¾Ń„ŠøŠ»ŃŠ¼Šø - + Public Information ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ @@ -17916,12 +19511,12 @@ and use the import button to load it ŠŸŠ¾Š“ŠŗŠ»ŃŽŃ‡Ń‘Š½ с: - + Other Information ŠŸŃ€Š¾Ń‡ŠµŠµ - + My Address Мой аГрес @@ -17965,27 +19560,51 @@ and use the import button to load it PulseAddDialog - + Post From: + Дообщение от: + + + Account 1 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 1 + + + Account 2 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 2 + + + Account 3 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 3 + + + Add to Pulse Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ в Pulse - + filter + Ń„ŠøŠ»ŃŒŃ‚Ń€ + + + URL Adder + Дсылка Гобавлена + + + Display As ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ как - + URL URL - + GroupLabel - + IDLabel @@ -17995,12 +19614,12 @@ and use the import button to load it Из: - + Head - + Head Shot @@ -18030,13 +19649,13 @@ and use the import button to load it ŠžŃ‚Ń€ŠøŃ†Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ мнение - - + + Whats happening? - + @@ -18048,22 +19667,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18072,13 +19681,17 @@ and use the import button to load it Cancel ŠžŃ‚Š¼ŠµŠ½Š° + + Post Pulse to Wire + Дообщение-импульс Š“Š»Ń Телеграфа + Post - + Reply to Pulse @@ -18093,24 +19706,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ файл ŠøŠ·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ + From + ŠžŃ‚ + + + Date + Дата + + + ... + ... @@ -18121,7 +19744,7 @@ and use the import button to load it Форма - + @@ -18140,7 +19763,7 @@ and use the import button to load it PulseReply - + icn @@ -18150,7 +19773,7 @@ and use the import button to load it - + REPLY @@ -18177,7 +19800,7 @@ and use the import button to load it - + FOLLOW @@ -18187,7 +19810,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18207,7 +19830,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18323,7 +19946,7 @@ and use the import button to load it - + FOLLOW @@ -18331,42 +19954,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18398,7 +20016,7 @@ and use the import button to load it - + FOLLOW @@ -18406,8 +20024,8 @@ and use the import button to load it QObject - - + + Confirmation ŠŸŠ¾Š“Ń‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ @@ -18678,12 +20296,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠµ - + 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. Эта Š²ŠµŃ€ŃŠøŃ RetroShare ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ OpenPGP-SDK. Š’ качестве побочного ŃŃ„Ń„ŠµŠŗŃ‚Š°, она не ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ системное ŠæŃƒŠ±Š»ŠøŃ‡Š½Š¾Šµ PGP хранилище, но имеет своё собственное хранилище, которое ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ся всеми ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š°Š¼Šø RetroShare. <br><br>ŠŸŠ¾Ń…Š¾Š¶Šµ, что вы не имеете такое хранилище, Ń…Š¾Ń‚Ń ŠŗŠ»ŃŽŃ‡Šø PGP ŃƒŠæŠ¾Š¼ŠøŠ½Š°ŃŽŃ‚ŃŃ ŃƒŃ‡Ń‘Ń‚Š½Ń‹Š¼Šø Š·Š°ŠæŠøŃŃŠ¼Šø RetroShare, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, ŠæŠ¾Ń‚Š¾Š¼Ńƒ, что вы Ń‚Š¾Š»ŃŒŠŗŠ¾ что обновились Го ŃŃ‚Š¾Š¹ новой версии программного Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ. @@ -18714,7 +20332,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace ŠŸŃ€Š¾ŠøŠ·Š¾ŃˆŠ»Š° Š½ŠµŠæŃ€ŠµŠ“Š²ŠøŠ“ŠµŠ½Š½Š°Ń ошибка. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, сообщите 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! ŠŠµ ŃƒŠ“Š°Ń‘Ń‚ŃŃ Š·Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ менеГжер Tor! @@ -18750,7 +20368,7 @@ The error reported is:" ŠŠµ уГалось Š·Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ ŃŠŗŃ€Ń‹Ń‚ŃƒŃŽ службу. - + Multiple instances ŠœŠ½Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Ń‹Šµ копии @@ -18772,26 +20390,6 @@ The error reported is:" Файл блокировки: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18812,6 +20410,14 @@ The error reported is:" End-to-end encrypted conversation established + + Tunnel is pending... Messages will be delivered as soon as possible + Туннель Š½Š°Ń…Š¾Š“ŠøŃ‚ŃŃ в ожиГании... Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ Š±ŃƒŠ“ŃƒŃ‚ Гоставлены как можно скорее + + + Secured tunnel is working. Messages are delivered immediately! + Защищённый Ń‚ŃƒŠ½Š½ŠµŠ»ŃŒ Ń„ŃƒŠ½ŠŗŃ†ŠøŠ¾Š½ŠøŃ€ŃƒŠµŃ‚. Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ Š“Š¾ŃŃ‚Š°Š²Š»ŃŃŽŃ‚ŃŃ немеГленно! + The collection file %1 could not be opened. @@ -18874,7 +20480,7 @@ Reported error is: Транзитный трафик - + You appear to have nodes associated to DSA keys: ŠŸŠ¾Ń…Š¾Š¶Šµ, у вас ŠøŠ¼ŠµŃŽŃ‚ŃŃ ŃƒŠ·Š»Ń‹, ŠæŃ€ŠøŠ²ŃŠ·Š°Š½Š½Ń‹Šµ Šŗ DSA-ŠŗŠ»ŃŽŃ‡Š°Š¼: @@ -18884,7 +20490,7 @@ Reported error is: К ŃŠ¾Š¶Š°Š»ŠµŠ½ŠøŃŽ, на Ганный момент DSA-ŠŗŠ»ŃŽŃ‡Šø не ŠæŠ¾Š“Š“ŠµŃ€Š¶ŠøŠ²Š°ŃŽŃ‚ŃŃ криптоплатформой RetroShare. Все ŃŃ‚Šø ŃƒŠ·Š»Ń‹ не Š±ŃƒŠ“ŃƒŃ‚ заГействованы. - + enabled Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾ @@ -18894,7 +20500,7 @@ Reported error is: Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾ - + Move IP %1 to whitelist ŠŸŠµŃ€ŠµŠ½ŠµŃŃ‚Šø IP %1 в белый список @@ -18910,7 +20516,7 @@ Reported error is: - + %1 seconds ago %1 секунГ назаГ @@ -18978,7 +20584,7 @@ Security: no anonymous IDs Š‘ŠµŠ·Š¾ŠæŠ°ŃŠ½Š¾ŃŃ‚ŃŒ: анонимные ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠø запрещены - + Join chat room ŠŸŃ€ŠøŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ Šŗ чат-комнате @@ -19006,7 +20612,7 @@ Security: no anonymous IDs не ŠæŠ¾Š»ŃƒŃ‡Š°ŠµŃ‚ŃŃ Š¾Š±Ń€Š°Š±Š¾Ń‚Š°Ń‚ŃŒ файл XML! - + Indefinitely ŠŠµŠ¾Š³Ń€Š°Š½ŠøŃ‡ŠµŠ½Š½Š¾ @@ -19186,29 +20792,13 @@ Security: no anonymous IDs Ban list - - - Name - Š˜Š¼Ń - - Node - - - - - Address - АГрес - - - - Status Š”Ń‚Š°Ń‚ŃƒŃ - + NXS @@ -19401,6 +20991,10 @@ Security: no anonymous IDs Click to resume the hashing process ŠŠ°Š¶Š¼ŠøŃ‚Šµ, чтобы Š²Š¾Š·Š¾Š±Š½Š¾Š²ŠøŃ‚ŃŒ процесс Ń…ŠµŃˆŠøŃ€Š¾Š²Š°Š½ŠøŃ + + <p>This certificate contains: + <p>Этот сертификат соГержит: + Idle @@ -19451,18 +21045,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19602,7 +21184,7 @@ p, li { white-space: pre-wrap; } - + Network Wide ŠžŠ±ŃˆŠøŃ€Š½Š°Ń ŃŠµŃ‚ŃŒ @@ -19772,7 +21354,7 @@ p, li { white-space: pre-wrap; } Форма - + The loading of embedded images is blocked. Š‘Š»Š¾ŠŗŠøŃ€ŃƒŠµŃ‚ŃŃ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠ° внеГрённых изображений. @@ -19785,7 +21367,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Š Š°Š·Ń€ŠµŃˆŠµŠ½Š¾ по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ @@ -19958,22 +21540,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ изображение - - - - Copy image - - - - + Document source @@ -19981,12 +21553,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° ГревовиГного ŠæŃ€ŠµŠ“ŃŃ‚Š°Š²Š»ŠµŠ½ŠøŃ - + Show Header @@ -20016,6 +21588,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ столбец... + + + [no title] + [без заголовка] + RatesStatus @@ -20678,7 +22258,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name Š˜Š¼Ń @@ -20799,7 +22379,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name Š˜Š¼Ń @@ -20819,7 +22399,7 @@ If you believe it is correct, remove the corresponding line from the file and re IP - + Profile ID @@ -20877,7 +22457,7 @@ prevents the message to be forwarded to your friends. Š”Š¾Š¾Š±Ń‰ŠµŠ½ŠøŃ не Š±ŃƒŠ“ŃƒŃ‚ ŠæŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŃ‚ŃŒŃŃ вашему Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃŽ. - + [ ... Redacted message ... ] [ ... ŠžŃ‚Ń€ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½Š½Š¾Šµ сообщение ... ] @@ -20891,6 +22471,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... ŠŸŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Š½Š¾Šµ сообщение ... ] + RsMessageModel @@ -20904,11 +22489,6 @@ prevents the message to be forwarded to your friends. From ŠžŃ‚ - - - To - - Subject @@ -20931,18 +22511,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Дортировка по прочитанным ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃŠ¼ - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Дортировка по Š¾Ń‚ŠæŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŽ @@ -20965,9 +22540,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20988,7 +22561,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. Дбрасывает ВДЕ сохранённые настройки RetroShare. @@ -21049,7 +22622,7 @@ prevents the message to be forwarded to your friends. ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø локализации RetroShare. - + Unable to open log file '%1': %2 ŠŠµ ŠæŠ¾Š»ŃƒŃ‡Š°ŠµŃ‚ŃŃ Š¾Ń‚ŠŗŃ€Ń‹Ń‚ŃŒ файл Š¶ŃƒŃ€Š½Š°Š»Š° '%1': %2 @@ -21070,7 +22643,11 @@ prevents the message to be forwarded to your friends. ŠŠµ уГалось ŃŠ¾Š·Š“Š°Ń‚ŃŒ каталог Ганных: %1 - + Revision + Š ŠµŠ“Š°ŠŗŃ†ŠøŃ + + + opmode Š Š°ŃŃˆŠøŃ€ŠµŠ½Š½Ń‹Š¹ режим @@ -21100,7 +22677,7 @@ prevents the message to be forwarded to your friends. Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ об использовании графического интерфейса RetroShare - + Invalid language code specified: Указан Š½ŠµŠ“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ коГ ŃŠ·Ń‹ŠŗŠ°: @@ -21118,7 +22695,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. ŠžŃˆŠøŠ±ŠŗŠ° Š“Š¾ŃŃ‚ŃƒŠæŠ° Šŗ Ń€ŠµŠµŃŃ‚Ń€Ńƒ, возможно необхоГимы права аГминистратора. @@ -21135,12 +22712,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) ВвеГите ŠŗŠ»ŃŽŃ‡ŠµŠ²Š¾Šµ слово (не менее 3 символов) - + Start Search ŠŠ°Ń‡Š°Ń‚ŃŒ поиск @@ -21201,7 +22778,7 @@ prevents the message to be forwarded to your friends. ŠžŃ‡ŠøŃŃ‚ŠøŃ‚ŃŒ - + KeyWords ŠšŠ»ŃŽŃ‡ŠµŠ²Ń‹Šµ слова @@ -21216,7 +22793,7 @@ prevents the message to be forwarded to your friends. Поиск иГентификатора - + Filename Š˜Š¼Ń файла @@ -21316,23 +22893,23 @@ prevents the message to be forwarded to your friends. Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ выГеленное - + File Name Š˜Š¼Ń файла - + Download Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ - + Copy RetroShare Link Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŃŃ‹Š»ŠŗŃƒ RetroShare - + Send RetroShare Link ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ RetroShare-ŃŃŃ‹Š»ŠŗŃƒ @@ -21342,7 +22919,7 @@ prevents the message to be forwarded to your friends. - + Download Notice Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ @@ -21379,7 +22956,7 @@ prevents the message to be forwarded to your friends. Š£Š“Š°Š»ŠøŃ‚ŃŒ всё - + Folder Папка @@ -21390,17 +22967,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) ŠŠ¾Š²Š°Ń RetroShare-ссылка - + Open Folder ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ папку - + Create Collection... ДозГание коллекции... @@ -21420,7 +22997,7 @@ prevents the message to be forwarded to your friends. Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ ŠøŠ· файла коллекции... - + Collection ŠšŠ¾Š»Š»ŠµŠŗŃ†ŠøŃ @@ -21428,7 +23005,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details Š”Š²ŠµŠ“ŠµŠ½ŠøŃ об ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠµ @@ -21444,22 +23021,22 @@ prevents the message to be forwarded to your friends. Š£Š“Š°Š»ŠøŃ‚ŃŒ Š¾Š±ŃŠŠµŠŗŃ‚ - + IP address: IP-аГрес: - + Peer ID: Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°: - + Location: Расположение: - + Peer Name: Š˜Š¼Ń ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°: @@ -21476,7 +23053,7 @@ prevents the message to be forwarded to your friends. Š”ŠŗŃ€Ń‹Ń‚ŃŒ - + but reported: но сообщил: @@ -21501,8 +23078,8 @@ prevents the message to be forwarded to your friends. <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>ŠžŠ“Š½Š°ŠŗŠ¾, если вы Ń‚Š¾Š»ŃŒŠŗŠ¾ что изменили IP-аГрес по какой-либо причине (некоторые провайГеры Ń€ŠµŠ³ŃƒŠ»ŃŃ€Š½Š¾ Š¼ŠµŠ½ŃŃŽŃ‚ IP-аГреса) ŃŃ‚Š¾ ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ просто говорит вам, что Š“Ń€ŃƒŠ³ ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠøŠ»ŃŃ на новый IP-аГрес, прежГе чем RetroShare ŠæŠ¾Š½ŃŠ»Š°, что IP-аГрес ŠøŠ·Š¼ŠµŠ½ŠøŠ»ŃŃ. ŠŠøŃ‡ŠµŠ³Š¾ ŃŃ‚Ń€Š°ŃˆŠ½Š¾Š³Š¾ в ŃŃ‚Š¾Š¼ ŃŠ»ŃƒŃ‡Š°Šµ нет.</p><p><br/></p><p>Ложные ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŃ можно легко Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ, составив белый список Š²Š°ŃˆŠøŃ… собственных IP-аГресов (например, Гиапазон вашего провайГера) или ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŃŃ‚Šø ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŃ в опции -&gt; Š£Š²ŠµŠ“Š¾Š¼Š»ŠµŠ½ŠøŃ -&gt; Š–ŃƒŃ€Š½Š°Š».</p></body></html> @@ -21510,7 +23087,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare преГлагает ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ с вами соеГинение @@ -21541,7 +23118,7 @@ prevents the message to be forwarded to your friends. - + Expand Š Š°Š·Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ @@ -21586,12 +23163,12 @@ prevents the message to be forwarded to your friends. Š”Ń‚Š°Ń‚ŃƒŃ: - + Write Message ŠŠ°ŠæŠøŃŠ°Ń‚ŃŒ сообщение - + Connect Attempt ŠŸŠ¾ŠæŃ‹Ń‚ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ @@ -21611,22 +23188,17 @@ prevents the message to be forwarded to your friends. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń попытка ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ (ŠøŃŃ…Š¾Š“ŃŃ‰Š°Ń) - + Unknown Security Issue ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń проблема безопасности - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21636,7 +23208,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Ń‹Š¹ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ + + + Hide Š”ŠæŃ€ŃŃ‚Š°Ń‚ŃŒ @@ -21646,7 +23222,7 @@ prevents the message to be forwarded to your friends. Š’Ń‹ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃ‚Š¾Ń‚ узел ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ? - + Certificate has wrong signature!! This peer is not who he claims to be. Дертификат имеет Š½ŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½ŃƒŃŽ поГпись!!! Этот ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗ — не тот, за кого он ŃŠµŠ±Ń выГаёт. @@ -21656,12 +23232,12 @@ prevents the message to be forwarded to your friends. Š£Ń‚ŠµŃ€ŃŠ½/поврежГён сертификат. ŠŠµ Š½Š°ŃŃ‚Š¾ŃŃ‰ŠøŠ¹ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ Retroshare. - + Certificate caused an internal error. Дертификат вызвал Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŃŽŃŽ ошибку. - + Peer/node not in friendlist (PGP id= Участник / узел не Š½Š°Ń…Š¾Š“ŠøŃ‚ŃŃ в Говеренном Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠø (PGP iD = @@ -21720,12 +23296,12 @@ prevents the message to be forwarded to your friends. - + Local Address Š›Š¾ŠŗŠ°Š»ŃŒŠ½Ń‹Š¹ аГрес - + NAT NAT @@ -21746,22 +23322,22 @@ prevents the message to be forwarded to your friends. ŠŸŠ¾Ń€Ń‚: - + Local network Š›Š¾ŠŗŠ°Š»ŃŒŠ½Š°Ń ŃŠµŃ‚ŃŒ - + External ip address finder Поисковик внешнего IP-аГреса - + UPnP UPnP - + Known / Previous IPs: Š˜Š·Š²ŠµŃŃ‚Š½Ń‹Šµ/ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠµ IP-аГреса: @@ -21774,16 +23350,21 @@ behind a firewall or a VPN. Если вы снимете ŃŃ‚Š¾Ń‚ флажок, RetroShare может Š¾ŠæŃ€ŠµŠ“ŠµŠ»ŠøŃ‚ŃŒ ваш IP-аГрес Ń‚Š¾Š»ŃŒŠŗŠ¾ при ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠø Šŗ кому-нибуГь. Этот флажок помогает в ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŠø соеГинений на Š½Š°Ń‡Š°Š»ŃŒŠ½Š¾Š¼ ŃŃ‚Š°ŠæŠµ, когГа у вас мало контактов. ŠžŠ½ также помогает, если вы Š½Š°Ń…Š¾Š“ŠøŃ‚ŠµŃŃŒ за межсетевым ŃŠŗŃ€Š°Š½Š¾Š¼ или ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚е VPN. - - - + + Allow RetroShare to ask my ip to these websites: + Š Š°Š·Ń€ŠµŃˆŠøŃ‚ŃŒ RetroShare ŃŠæŃ€Š°ŃˆŠøŠ²Š°Ń‚ŃŒ мой IP-аГрес у ŃŃ‚ŠøŃ… сайтов: + + + + + kB/s ŠŗŠ‘/с - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Диапазон Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… портов: от 1024 Го 65535. ŠžŠ±Ń‹Ń‡Š½Š¾ порты ниже 1024 зарезервированы операционной системой. @@ -21793,46 +23374,23 @@ behind a firewall or a VPN. Диапазон Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… портов: от 1024 Го 65535. ŠžŠ±Ń‹Ń‡Š½Š¾ порты ниже 1024 зарезервированы операционной системой. - + Onion Address Onion-аГрес - + Discovery On (recommended) ŠžŠ±Š½Š°Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾ (Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŃ‚ŃŃ) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. Tor был автоматически настроен Retroshare. Š—Š“ŠµŃŃŒ не нужно ничего Š¼ŠµŠ½ŃŃ‚ŃŒ. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off ŠžŠ±Š½Š°Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ Š²Ń‹ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾ @@ -21842,7 +23400,7 @@ List of found external IP: Дкрытые - см. ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ - + I2P Address АГрес I2P @@ -21867,95 +23425,41 @@ List of found external IP: Š’Ń…Š¾Š“ŃŃ‰ŠøŠµ ŠžŠš - - - + + Proxy seems to work. ŠŸŃ€Š¾ŠŗŃŠø Ń„ŃƒŠ½ŠŗŃ†ŠøŠ¾Š½ŠøŃ€ŃƒŠµŃ‚. - - + I2P proxy is not enabled I2P-прокси не Š²ŠŗŠ»ŃŽŃ‡Ń‘н - - SAMv3 is running and accessible - + + BOB is running and accessible + BOB работает Šø Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½ - SAMv3 is not accessible! Is i2p running and SAM enabled? - + BOB is not accessible! Is it running? + BOB Š½ŠµŠ“Š¾ŃŃ‚ŃƒŠæŠµŠ½! ŠžŠ½ работает? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - + RetroShare ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ BOB Š“Š»Ń ŃŠ¾Š·Š“Š°Š½ŠøŃ %1 Ń‚ŃƒŠ½Š½ŠµŠ»Ń на %2:%3 (с именем %4) + +ŠŸŃ€Šø изменении параметров (например, порта) ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ кнопки внизу, чтобы ŠæŠµŃ€ŠµŠ·Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ BOB. + + - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client клиентского @@ -21970,7 +23474,71 @@ When changing options use the buttons at the bottom to restart SAMv3. неизвестно - + + + + 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 Запрос нового ŠŗŠ»ŃŽŃ‡Š° сервера @@ -21980,7 +23548,22 @@ When changing options use the buttons at the bottom to restart SAMv3. Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ ŠŗŠ»ŃŽŃ‡ сервера ŠøŠ· 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. Š’Ń‹ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ через скрытые ŃŠ»ŃƒŠ¶Š±Ń‹. @@ -21994,12 +23577,12 @@ 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>Это очищает список известных IP-аГресов, что может Š¾ŠŗŠ°Š·Š°Ń‚ŃŒŃŃ полезным, если по какой-либо причине ваш список аГресов соГержит Š½ŠµŠ“Š¾ŠæŃƒŃŃ‚ŠøŠ¼Ń‹Šµ/Š¾ŃˆŠøŠ±Š¾Ń‡Š½Ń‹Šµ/Š½ŠµŠ“ŠµŠ¹ŃŃ‚Š²ŃƒŃŽŃ‰ŠøŠµ аГреса, которые Š½ŠµŠ¶ŠµŠ»Š°Ń‚ŠµŠ»ŃŒŠ½Š¾ ŠæŠµŃ€ŠµŠ“Š°Š²Š°Ń‚ŃŒ контактам ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ.</p></body></html> @@ -22009,7 +23592,7 @@ Also check your ports! ŠžŃ‡ŠøŃŃ‚ŠøŃ‚ŃŒ - + Download limit (KB/s) Лимит Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø (ŠšŠ‘/с) @@ -22024,24 +23607,24 @@ Also check your ports! Лимит отГачи (ŠšŠ‘/с) - + <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>Лимит Š²Ń‹Š³Ń€ŃƒŠ·ŠŗŠø охватывает всё программное обеспечение. Длишком маленький лимит Š²Ń‹Š³Ń€ŃƒŠ·ŠŗŠø в конечном итоге может Š·Š°Š±Š»Š¾ŠŗŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŃŠ»ŃƒŠ¶Š±Ń‹ с низким приоритетом (Ń„Š¾Ń€ŃƒŠ¼Ń‹, каналы). Минимально Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŠ¼Š¾Šµ значение - 50 ŠšŠ‘/с.</p></body></html> - + WARNING: These values don't take into account the Relays. ŠŸŠ Š•Š”Š£ŠŸŠ Š•Š–Š”Š•ŠŠ˜Š•: Эти Š·Š½Š°Ń‡ŠµŠ½ŠøŃ не ŃƒŃ‡ŠøŃ‚Ń‹Š²Š°ŃŽŃ‚ Ń‚Ń€Š°Š½ŃŠ»ŃŃ‚Š¾Ń€Ń‹. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22058,7 +23641,17 @@ Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr Š“Š»Ń наст Š’Ń‹ можете ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒŃŃ Šŗ скрытым службам, Гаже если ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚е станГартный узел, так ŠæŠ¾Ń‡ŠµŠ¼Ńƒ бы не Š½Š°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ Tor Šø/или I2P? - + + Automatic I2P/BOB + ŠŠ²Ń‚Š¾ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŠµ I2P/BOB + + + + Enable I2P BOB - changing this requires a restart to fully take effect + Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ I2P BOB (изменение ŃŃ‚Š¾Š³Š¾ параметра Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ ŠæŠµŃ€ŠµŠ·Š°Š³Ń€ŃƒŠ·ŠŗŠø Š“Š»Ń Š²ŃŃ‚ŃƒŠæŠ»ŠµŠ½ŠøŃ в силу) + + + enableds advanced settings ŠŸŠ¾ŃŠ²Š»ŃŃŽŃ‚ŃŃ Š“Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Šµ настройки @@ -22068,7 +23661,12 @@ Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr Š“Š»Ń наст Š Š°ŃŃˆŠøŃ€ŠµŠ½Š½Ń‹Š¹ режим - + + I2P Basic Open Bridge + ŠžŃŠ½Š¾Š²Š½Š¾Š¹ открытый мост I2P + + + I2P Instance address АГрес ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š° I2P @@ -22078,7 +23676,17 @@ Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr Š“Š»Ń наст 127.0.0.1 - + + I2P proxy port + ŠŸŠ¾Ń€Ń‚ I2P-прокси + + + + BOB accessible + BOB Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½ + + + Address АГрес @@ -22118,7 +23726,7 @@ Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr Š“Š»Ń наст Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ ŠŗŠ»ŃŽŃ‡ - + Start Š—Š°ŠæŃƒŃŠŗ @@ -22133,7 +23741,12 @@ Socks-прокси I2P: см. http://127.0.0.1:7657/i2ptunnelmgr Š“Š»Ń наст Дтоп - + + BOB status + Š”Ń‚Š°Ń‚ŃƒŃ BOB + + + Incoming Š’Ń…Š¾Š“ŃŃ‰ŠøŠµ @@ -22180,32 +23793,7 @@ If you have issues connecting over Tor check the Tor logs too. Если у вас ŠµŃŃ‚ŃŒ проблемы с ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµŠ¼ через Tor, не Š·Š°Š±ŃƒŠ“ŃŒŃ‚Šµ ŠæŃ€Š¾Š²ŠµŃ€ŠøŃ‚ŃŒ также Š¶ŃƒŃ€Š½Š°Š»Ń‹ Tor. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Š¢Ń€Š°Š½ŃŠ»ŃŃ‚Š¾Ń€ @@ -22260,7 +23848,7 @@ If you have issues connecting over Tor check the Tor logs too. Всего: - + Warning: This bandwidth adds up to the max bandwidth. ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ: ŃŃ‚Š° ŠæŃ€Š¾ŠæŃƒŃŠŗŠ½Š°Ń ŃŠæŠ¾ŃŠ¾Š±Š½Š¾ŃŃ‚ŃŒ ŃƒŠ²ŠµŠ»ŠøŃ‡ŠøŠ²Š°ŠµŃ‚ Š¼Š°ŠŗŃŠøŠ¼Š°Š»ŃŒŠ½ŃƒŃŽ ŃˆŠøŃ€ŠøŠ½Ńƒ канала. @@ -22285,7 +23873,7 @@ If you have issues connecting over Tor check the Tor logs too. Š£Š“Š°Š»ŠøŃ‚ŃŒ сервер - + <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> @@ -22299,7 +23887,7 @@ If you have issues connecting over Tor check the Tor logs too. Š”ŠµŃ‚ŃŒ - + IP Filters IP-Ń„ŠøŠ»ŃŒŃ‚Ń€Ń‹ @@ -22322,7 +23910,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Š”Ń‚Š°Ń‚ŃƒŃ @@ -22382,28 +23970,17 @@ If you have issues connecting over Tor check the Tor logs too. Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ в белый список - + Hidden Service Configuration ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° скрытых служб - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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>Š—Š“ŠµŃŃŒ указан socks-порт ŃŠ»ŃƒŠ¶Š±Ń‹ Tor-прокси. Š’Š°Ńˆ узел RetroShare Š±ŃƒŠ“ŠµŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ ŃŃ‚Š¾Ń‚ порт Š“Š»Ń ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ со</p><p>скрытыми узлами Š“Ń€ŃƒŠ³ŠøŃ… ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŠµŠ¹. Если служба Tor ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š° Šø ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾ настроена, то инГикатор слева Голжен Š±Ń‹Ń‚ŃŒ зелёного цвета. </p><p>ŠžŃ‚Š¼ŠµŃ‚ŠøŠ¼: ŃŃ‚Š¾ не означает, что весь ваш трафик Ń‚Ń€Š°Š½ŃŠ»ŠøŃ€ŃƒŠµŃ‚ŃŃ через ŃŠµŃ‚ŃŒ 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>Если служба Tor ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š° Šø ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾ настроена, то инГикатор слева Голжен Š±Ń‹Ń‚ŃŒ зелёного цвета. </p><p>ŠžŃ‚Š¼ŠµŃ‚ŠøŠ¼: ŃŃ‚Š¾ не означает, что весь ваш трафик Ń‚Ń€Š°Š½ŃŠ»ŠøŃ€ŃƒŠµŃ‚ŃŃ через ŃŠµŃ‚ŃŒ Tor. Такое ŃƒŃ‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ справеГливо </p><p>Ń‚Š¾Š»ŃŒŠŗŠ¾ Š“Š»Ń скрытых узлов, с которыми вы соеГинены, или в ŃŠ»ŃƒŃ‡Š°Šµ, когГа у вас самого скрытый узел.</p></body></html> @@ -22419,18 +23996,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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>Если служба i2p ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š° Šø ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾ настроена, то инГикатор слева Голжен Š±Ń‹Ń‚ŃŒ зелёного цвета. </p><p>Это не означает, что весь ваш трафик Ń‚Ń€Š°Š½ŃŠ»ŠøŃ€ŃƒŠµŃ‚ŃŃ через ŃŠµŃ‚ŃŒ i2p. Такое ŃƒŃ‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ справеГливо </p><p>Ń‚Š¾Š»ŃŒŠŗŠ¾ Š“Š»Ń скрытых узлов, с которыми вы соеГинены, или в ŃŠ»ŃƒŃ‡Š°Šµ, когГа у вас самого скрытый узел.</p></body></html> - + I2P outgoing Okay Š˜ŃŃ…Š¾Š“ŃŃ‰ŠøŠµ I2P ŠžŠš - + Service Address АГрес ŃŠ»ŃƒŠ¶Š±Ń‹ @@ -22465,12 +24042,12 @@ If you have issues connecting over Tor check the Tor logs too. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, заполните аГрес ŃŠ»ŃƒŠ¶Š±Ń‹ - + IP Range Диапазон IP-аГресов - + Reported by DHT for IP masquerading ŠŸŠ¾Š»ŃƒŃ‡ŠµŠ½Š¾ ŠøŠ· DHT; попытка поГмены IP-аГреса @@ -22493,22 +24070,22 @@ 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>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>DHT ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ быстро ŃŠ¾ŠµŠ“ŠøŠ½ŃŃ‚ŃŒŃŃ с Говеренными узлами, Š¾Š±Ń€Š°Š±Š°Ń‚Ń‹Š²Š°Ń ŠøŃ… поисковые запросы, что Š·Š½Š°Ń‡ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ ŃƒŠæŃ€Š¾Ń‰Š°ŠµŃ‚ ŠæŃ€Š¾Ń†ŠµŠ“ŃƒŃ€Ńƒ ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ. ŠŠøŠŗŠ°ŠŗŠ°Ń ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ на самом Геле в DHT не Ń…Ń€Š°Š½ŠøŃ‚ŃŃ. ŠžŠ½Š° ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ŃŃ Ń‚Š¾Š»ŃŒŠŗŠ¾ в качестве ŠæŃ€Š¾Š¼ŠµŠ¶ŃƒŃ‚очной системы, ŠæŠ¾Š·Š²Š¾Š»ŃŃŽŃ‰ŠµŠ¹ бстрее ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ соеГинение с Š“Ń€ŃƒŠ³ŠøŠ¼Šø узлами сети RetroShare.</p><p>Дервис Š¾Š±Š½Š°Ń€ŃƒŠ¶ŠµŠ½ŠøŃ посылает ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃŽ о местоположении Šø иГентификаторы Говеренных узлов всем ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½Š½Ń‹Š¼ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ°Š¼, чтобы ŠæŠ¾Š¼Š¾Ń‡ŃŒ им в ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŠø ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ. ŠŠ°Š¹Š“ŠµŠ½Ń‹Šµ контакты не ŃŠ¾ŠµŠ“ŠøŠ½ŃŃŽŃ‚ŃŃ автоматически; чтобы ŠøŠ¼ŠµŃ‚ŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ ŃŠ¾ŠµŠ“ŠøŠ½ŠøŃ‚ŃŒŃŃ, обе стороны Голжны Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ сертификаты Š“Ń€ŃƒŠ³ Š“Ń€ŃƒŠ³Š° Š²Ń€ŃƒŃ‡Š½ŃƒŃŽ. </p></body></html> - + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/> <body><p>Š˜Š½Š“ŠøŠŗŠ°Ń‚Š¾Ń€ ŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŃ зелёным, как Ń‚Š¾Š»ŃŒŠŗŠ¾ Retroshare ŃƒŠ“Š°Ń‘Ń‚ŃŃ ŠæŠ¾Š»ŃƒŃ‡ŠøŃ‚ŃŒ свой собственный IP от веб-сайтов перечисленных ниже, если вы Š²ŠŗŠ»ŃŽŃ‡ŠøŠ»Šø ŃŃ‚Š¾ Гействие. Retroshare также Š±ŃƒŠ“ет ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ Š“Ń€ŃƒŠ³ŠøŠµ среГства, чтобы ŃƒŠ·Š½Š°Ń‚ŃŒ свой IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/> <body><p>Этот список автоматически Š·Š°ŠæŠ¾Š»Š½ŃŠµŃ‚ся информацией, собранной ŠøŠ· Š½ŠµŃŠŗŠ¾Š»ŃŒŠŗŠøŃ… источников: Ń€ŠµŃ‚Ń€Š°Š½ŃŠ»ŃŃ†ŠøŃ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š², ŠøŠ½Ń„Š¾Ń€Š¼Š°Ń†ŠøŃ о которых ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½Š° ŠøŠ· DHT, Гиапазоны IP-аГресов, ввеГённые вами, а также Гиапазоны IP-аГресов сообщённые вашими Š“Ń€ŃƒŠ·ŃŒŃŠ¼Šø. ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ Голжны Š·Š°Ń‰ŠøŃ‚ŠøŃ‚ŃŒ вас от ŠŗŃ€ŃƒŠæŠ½Š¾Š¼Š°ŃŃˆŃ‚Š°Š±Š½Š¾Š¹ Ń€ŠµŃ‚Ń€Š°Š½ŃŠ»ŃŃ†ŠøŠø трафика.</p> <p>Автоматический поГбор Ń€ŠµŃ‚Ń€Š°Š½ŃŠ»ŠøŃ€ŃƒŃŽŃ‰ŠøŃ… IP-аГресов может привести Šŗ Ń‚Š¾Š¼Ńƒ, что IP-аГреса контактов ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ Š±ŃƒŠ“ŃƒŃ‚ Гобавлены в чёрный список. Š’ ŃŃ‚Š¾Š¼ ŃŠ»ŃƒŃ‡Š°Šµ, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ контекстное Š¼ŠµŠ½ŃŽ, чтобы Š²ŠµŃ€Š½ŃƒŃ‚ŃŒ ŠøŃ… в белый список.</p></body></html> @@ -22543,22 +24120,26 @@ If you have issues connecting over Tor check the Tor logs too. Автоматически Š·Š°ŠæŃ€ŠµŃ‚ŠøŃ‚ŃŒ Гиапазон 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 Socks-прокси Tor - + Tor outgoing Okay Š˜ŃŃ…Š¾Š“ŃŃ‰ŠøŠµ Tor OK - + Tor proxy is not enabled Tor-прокси не Š²ŠŗŠ»ŃŽŃ‡Ń‘н @@ -22638,7 +24219,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with ŠæŃ€Š¾Š²ŠµŃ€ŠøŃ‚ŃŒ ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ¾Š², с которыми вы хотите ŠæŠ¾Š“ŠµŠ»ŠøŃ‚ŃŒŃŃ приватным ŠŗŠ»ŃŽŃ‡Š¾Š¼ @@ -22648,12 +24229,12 @@ 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. Š’Ń‹ имеете Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ Š¾ŠæŠ¾Š²ŠµŃŃ‚ŠøŃ‚ŃŒ Š“Ń€ŃƒŠ·ŠµŠ¹ о канале, преГоставив им право ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŠø. @@ -22673,7 +24254,7 @@ Select the Friends with which you want to Share your Channel. ŠœŠµŠ½ŠµŠ“Š¶ŠµŃ€ Š“Š¾ŃŃ‚ŃƒŠæŠ° Šŗ папкам - + Shared directory Š”Š¾ŃŃ‚ŃƒŠæŠ½Š°Ń папка @@ -22693,17 +24274,17 @@ Select the Friends with which you want to Share your Channel. Š”Š¾ŃŃ‚ŃƒŠæŠ½Š¾ - + Add new Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š½Š¾Š²ŃƒŃŽ - + Cancel ŠžŃ‚Š¼ŠµŠ½Š° - + Add a Share Directory Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ папку Š“Š»Ń Š“Š¾ŃŃ‚ŃƒŠæŠ° @@ -22713,7 +24294,7 @@ Select the Friends with which you want to Share your Channel. Š£Š“Š°Š»ŠøŃ‚ŃŒ - + Apply and close ŠŸŃ€ŠøŠ¼ŠµŠ½ŠøŃ‚ŃŒ @@ -22804,7 +24385,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. Это список Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Ń… папок. Š’Ń‹ можете Š“Š¾Š±Š°Š²Š»ŃŃ‚ŃŒ или ŃƒŠ“Š°Š»ŃŃ‚ŃŒ папки, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŃ кнопки внизу. КогГа вы открываете Š“Š¾ŃŃ‚ŃƒŠæ Šŗ папке, всё её соГержимое Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ Šŗ ŃŠŗŠ°Ń‡ŠøŠ²Š°Š½ŠøŃŽ. Š’Ń‹ можете Š¾Ń‚Š“ŠµŠ»ŃŒŠ½Š¾ ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ флаги Š“Š¾ŃŃ‚ŃƒŠæŠ° Šŗ кажГой ŠøŠ· Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Ń… папок. @@ -22812,7 +24393,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files Файлообмен @@ -22863,16 +24444,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files ŠæŃ€Š¾Š²ŠµŃ€ŠøŃ‚ŃŒ файлы - + Download selected Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ выГеленное @@ -22882,7 +24458,7 @@ Select the Friends with which you want to Share your Channel. Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ - + Copy retroshare Links to Clipboard Š”ŠŗŠ¾ŠæŠøŃ€Š¾Š²Š°Ń‚ŃŒ RetroShare-ссылки в Š±ŃƒŃ„ер обмена @@ -22897,7 +24473,7 @@ Select the Friends with which you want to Share your Channel. ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ RetroShare-ссылки - + Some files have been omitted ŠŠµŠŗŠ¾Ń‚Š¾Ń€Ń‹Šµ файлы были ŠæŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Ń‹ @@ -22913,7 +24489,7 @@ Select the Friends with which you want to Share your Channel. РекоменГации - + Create Collection... ДозГание коллекции... @@ -22938,7 +24514,7 @@ Select the Friends with which you want to Share your Channel. Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ ŠøŠ· файла коллекции... - + Some files have been omitted because they have not been indexed yet. ŠŠµŠŗŠ¾Ń‚Š¾Ń€Ń‹Šµ файлы были ŠæŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Ń‹, поскольку они ещё не были проинГексированы. @@ -23081,12 +24657,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° параметров - + Create interface ДозГание интерфейса @@ -23110,7 +24686,7 @@ Select the Friends with which you want to Share your Channel. Š—Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ - + Log In Войти @@ -23465,7 +25041,7 @@ This choice can be reverted in settings. Š”Ń‚Š°Ń‚ŃƒŃ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ - + Message: Дообщение: @@ -23710,7 +25286,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Š£Š“Š°Š»ŠøŃ‚ŃŒ все метки @@ -23746,15 +25322,12 @@ p, li { white-space: pre-wrap; } ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° Tor... - - + Tor status: Š”Ń‚Š°Ń‚ŃƒŃ Tor: - - - + Unknown ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾ @@ -23764,13 +25337,18 @@ p, li { white-space: pre-wrap; } ŠŠµ Š·Š°ŠæŃƒŃ‰ŠµŠ½ - - Hidden address: - + + Hidden service address: + АГрес скрытой ŃŠ»ŃƒŠ¶Š±Ń‹: - - + + Tor bootstrap status: + Š”Ń‚Š°Ń‚ŃƒŃ Š½Š°Ń‡Š°Š»ŃŒŠ½Š¾Š¹ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø Tor: + + + + Not set ŠŠµ заГан @@ -23780,57 +25358,12 @@ p, li { white-space: pre-wrap; } Onion-аГрес: - - Error - ŠžŃˆŠøŠ±ŠŗŠ° - - - - Not connected - не соеГинён - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path Š£Š±ŠµŠ“ŠøŃ‚ŠµŃŃŒ, что Tor Š½Š°Ń…Š¾Š“ŠøŃ‚ŃŃ в оГной ŠøŠ· папок, Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… Š“Š»Ń запуска ŠøŃŠæŠ¾Š»Š½ŃŠµŠ¼Ń‹Ń… файлов - + [Waiting for Tor...] [ŠžŠ¶ŠøŠ“Š°Š½ŠøŠµ Tor...] @@ -23838,17 +25371,21 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor Tor + + <p>This version of Retroshare uses Tor to connect to your friends.</p> + <p>Эта Š²ŠµŃ€ŃŠøŃ Retroshare ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ Tor Š“Š»Ń ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ Šŗ вашим Говеренным узлам.</p> + <p>This version of Retroshare uses Tor to connect to your trusted nodes.</p> - + Tor is currently offline Tor сейчас Š½ŠµŠ“Š¾ŃŃ‚ŃƒŠæŠµŠ½ @@ -23859,12 +25396,11 @@ p, li { white-space: pre-wrap; } - No tor configuration ŠŠµŃ‚ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŠø Tor - + Tor proxy is OK @@ -23892,7 +25428,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ переГачи @@ -23903,7 +25439,7 @@ p, li { white-space: pre-wrap; } Максимальное количество оГновременных закачек: - + Shared Directories Š Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Šµ папки @@ -23913,27 +25449,22 @@ p, li { white-space: pre-wrap; } Автоматически Š¾Ń‚ŠŗŃ€Ń‹Š²Š°Ń‚ŃŒ Š“Š¾ŃŃ‚ŃƒŠæ Šŗ Š²Ń…Š¾Š“ŃŃ‰ŠµŠ¹ папке (Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŃ‚ŃŃ) - + + Edit Share + Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Šµ Ń€ŠµŃŃƒŃ€ŃŃ‹ + + + Directories - - Configure shared directories - ŠŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Šµ папки - - - + Auto-check shared directories every Автоматические ŠæŃ€Š¾Š²ŠµŃ€ŃŃ‚ŃŒ Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Šµ папки кажГые - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) Š¼ŠøŠ½ŃƒŃ‚(-ы) @@ -24018,7 +25549,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24027,12 +25558,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) Максимальное количество закачек Š“Š»Ń ŃƒŃ‡Š°ŃŃ‚Š½ŠøŠŗŠ° (0 - неограниченно): @@ -24057,12 +25583,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming ŠŸŠ¾ŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ @@ -24121,13 +25642,30 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:9pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; 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-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">Š’ Гиалоговом окне разГач Š“Š»Ń кажГой папки по Š¾Ń‚Š“ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø вы можете ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ свои флаги с Ń†ŠµŠ»ŃŒŃŽ Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ:</span></p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">обзора папок контактами ŠøŠ· вашего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ</span>: файлы в папках виГимы Ń‚Š¾Š»ŃŒŠŗŠ¾ вашим Говеренным Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŠµŠ¼.</li> <li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">анонимного Š“Š¾ŃŃ‚ŃƒŠæŠ°</span>: файлы Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ анонимно через F2F-Ń‚ŃƒŠ½Š½ŠµŠ»Šø.</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><span style="font-weight:600;"> ŠŸŠ¾Ń‚Š¾ŠŗŠ¾Š²Š°Ń</span> переГача файла Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ преГачи частей в 1 MB в Š²Š¾Š·Ń€Š°ŃŃ‚Š°ŃŽŃ‰ŠµŠ¼ ŠæŠ¾Ń€ŃŠ“ŠŗŠµ, Š¾Š±Š»ŠµŠ³Ń‡Š°Ń просмотр во Š²Ń€ŠµŠ¼Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø. <span style="font-weight:600;">Š”Š»ŃƒŃ‡Š°Š¹Š½Š°Ń</span> переГача ŃŠ²Š»ŃŠµŃ‚ŃŃ чисто ŃŠ»ŃƒŃ‡Š°Š¹Š½Š¾Š¹ Šø напоминает заполнение мозаики. <span style="font-weight:600;">ŠŸŃ€Š¾Š³Ń€ŠµŃŃŠøŠ²Š½Š°Ń</span> переГача ŃŠ²Š»ŃŠµŃ‚ŃŃ компромиссом, Š²Ń‹Š±ŠøŃ€Š°Ń ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠ¹ фрагмент в ŃŠ»ŃƒŃ‡Š°Š¹Š½Š¾Š¼ ŠæŠ¾Ń€ŃŠ“ŠŗŠµ в преГелах менее чем 50 ŠœŠ‘ после Š¾ŠŗŠ¾Š½Ń‡Š°Š½ŠøŃ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠµŠ³Š¾ фрагмента. Это ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ некоторые ŃŠ»ŃƒŃ‡Š°Š¹Š½Š¾ŃŃ‚Šø, оГновременно ŃŠ¾ŠŗŃ€Š°Ń‰Š°Ń Š²Ń€ŠµŠ¼Ń инициализации большого ŠæŃƒŃŃ‚ого файла.</p></body></html> + + + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> <html><head/> <body><p>Retroshare Š±ŃƒŠ“ŠµŃ‚ ŠæŃ€ŠøŠ¾ŃŃ‚Š°Š½Š°Š²Š»ŠøŠ²Š°Ń‚ŃŒ все переГачи Šø сохранение ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŠ¾Š½Š½Š¾Š³Š¾ файла, если свобоГное место на Гиске ниже ŃŃ‚Š¾Š³Š¾ преГела. Это преГотвращает ŠæŠ¾Ń‚ŠµŃ€ŃŽ информации на некоторых системах. Š’ŃŠæŠ»Ń‹Š²Š°ŃŽŃ‰ŠµŠµ окно ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ“ŠøŃ‚ вас, когГа ŃŃ‚Š¾ произойГёт.</p></body></html> @@ -24137,17 +25675,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Это значение Š¾ŠæŃ€ŠµŠ“ŠµŠ»ŃŠµŃ‚ как много Ń‚ŃƒŠ½Š½ŠµŠ»ŠµŠ¹ в секунГу можно ŃŠ¾Š·Š“Š°Š²Š°Ń‚ŃŒ. </p><p>Если у вас быстрое ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ Šŗ сети, вы можете ŠæŠ¾Š²Ń‹ŃŠøŃ‚ŃŒ ŃŃ‚Š¾ значение Го 30-40, Учтите, что ŃŃ‚Š¾ созГаёт много мелких пакетов Šø может сильно Š·Š°Š¼ŠµŠ“Š»ŠøŃ‚ŃŒ ŠæŠµŃ€ŠµŠ“Š°Ń‡Ńƒ файлов.</p><p>Значение по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ - 20. Если вы не ŃƒŠ²ŠµŃ€ŠµŠ½Ń‹, Š¾ŃŃ‚Š°Š²ŃŒŃ‚Šµ значение по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ.</p></body></html> - - Warning - ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Š£ŠŗŠ°Š·Š°Ń‚ŃŒ Š²Ń…Š¾Š“ŃŃ‰ŃƒŃŽ папку @@ -24175,7 +25703,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š° @@ -24199,23 +25727,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Š£ вас %1 Š·Š°Š²ŠµŃ€ŃˆŃ‘Š½Š½Ń‹Ń… закачек + + + You have %1 completed download + Š£ вас ŠµŃŃ‚ŃŒ %1 Š·Š°Š²ŠµŃ€ŃˆŃ‘Š½Š½Š°Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠ° + + + %1 completed downloads + %1 Š·Š°Š²ŠµŃ€ŃˆŃ‘Š½Š½Ń‹Ń… закачек + + + %1 completed download + %1 Š·Š°Š²ŠµŃ€ŃˆŃ‘Š½Š½Ń‹Ń… Š·Š°Š³Ń€ŃƒŠ·Š¾Šŗ + TransfersDialog - - + + Downloads ŠžŠ±Š¼ŠµŠ½ файлами - + Uploads ŠŸŠµŃ€ŠµŠ“Š°Ń‡Š° - + Name i.e: file name Š˜Š¼Ń @@ -24422,7 +25966,11 @@ p, li { white-space: pre-wrap; } Š’Ń‹Š±Ń€Š°Ń‚ŃŒ... - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>RetroShare поГГерживает Гва метоГа переГачи файлов: ŠæŃ€ŃŠ¼Ń‹Šµ переГачи межГу Š“Ń€ŃƒŠ·ŃŒŃŠ¼Šø Šø анонимные Ń‚ŃƒŠ½Š½ŠµŠ»ŃŒŠ½Ń‹Šµ переГачи. ŠšŃ€Š¾Š¼Šµ ŃŃ‚Š¾Š³Š¾ ŠæŠ¾Š“Š“ŠµŃ€Š¶ŠøŠ²Š°ŠµŃ‚ŃŃ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠ° от Š½ŠµŃŠŗŠ¾Š»ŃŒŠŗŠøŃ… источников (вы также можете Š±Ń‹Ń‚ŃŒ источником, пока скачиваете файл)</p> <p>Š•ŃŃ‚ŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ Ń€Š°Š·Š“Š°Š²Š°Ń‚ŃŒ свои файлы, Š²Š¾ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚ŠµŃŃŒ значком <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> на панели. Эти файлы Š±ŃƒŠ“ŃƒŃ‚ Гобавлены в список Ń€Š°Š·Š“ŠµŠ»ŃŠµŠ¼Ń‹Ń… вами Ń€ŠµŃŃƒŃ€ŃŠ¾Š². Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ вы можете ŃƒŠŗŠ°Š·Š°Ń‚ŃŒ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾ŃŃ‚ŃŒ ŃŃ‚ŠøŃ… файлов Š“Š»Ń ближнего Š¾ŠŗŃ€ŃƒŠ¶ŠµŠ½ŠøŃ</p> <p>ВклаГка "Поиск" ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ ŠøŃŠŗŠ°Ń‚ŃŒ файлы среГи Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Š²Š°ŃˆŠøŃ… контактов, а также у ŃƒŠ“Š°Š»Ń‘Š½Š½Ń‹Ń… ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŠµŠ¹, через сервис анонимных Ń‚ŃƒŠ½Š½ŠµŠ»ŠµŠ¹.</p> + + + Move in Queue... ŠŸŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ в очереГи... @@ -24447,7 +25995,7 @@ p, li { white-space: pre-wrap; } Выберите каталог - + Anonymous end-to-end encrypted tunnel 0x Анонимный Ń‚ŃƒŠ½Š½ŠµŠ»ŃŒ со сквозным ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŠµŠ¼ 0x @@ -24468,7 +26016,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24501,17 +26049,7 @@ p, li { white-space: pre-wrap; } Файл %1 не Š·Š°Š²ŠµŃ€ŃˆŃ‘н. Если ŃŃ‚Š¾ меГиафайл, ŠæŠ¾ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ преГпросмотр - - Warning - ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Š˜Š·Š¼ŠµŠ½ŠøŃ‚Šµ ŠøŠ¼Ń файла @@ -24526,7 +26064,7 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ввеГите новое--Šø Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Šµ--ŠøŠ¼Ń файла - + Expand all Š Š°ŃŠŗŃ€Ń‹Ń‚ŃŒ всё @@ -24653,18 +26191,23 @@ 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> + + + + Columns Дтолбцы - + File Transfers Файлообмен - + Path ŠŸŃƒŃ‚ŃŒ @@ -24674,7 +26217,7 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ столбец "ŠŸŃƒŃ‚ŃŒ" - + Could not delete preview file ŠŠµ уГалось ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ файл ŠæŃ€ŠµŠ“Š²Š°Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ просмотра @@ -24684,7 +26227,7 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ ещё раз? - + Create Collection... ДозГание коллекции... @@ -24699,12 +26242,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> - - - - + Collection ŠšŠ¾Š»Š»ŠµŠŗŃ†ŠøŃ @@ -24714,7 +26252,7 @@ p, li { white-space: pre-wrap; } %1 Ń‚ŃƒŠ½Š½ŠµŠ»ŠµŠ¹ - + Anonymous tunnel 0x Анонимный Ń‚ŃƒŠ½Š½ŠµŠ»ŃŒ 0x @@ -24935,6 +26473,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + Анонимные Ń‚ŃƒŠ½Š½ŠµŠ»Šø + Authenticated tunnels @@ -25128,17 +26670,12 @@ p, li { white-space: pre-wrap; } Форма - + Enable Retroshare WEB Interface Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ веб-интерфейс Retroshare - - Status: - Š”Ń‚Š°Ń‚ŃƒŃ: - - - + Web parameters ŠŸŠ°Ń€Š°Š¼ŠµŃ‚Ń€Ń‹ сети @@ -25172,33 +26709,35 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + 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. + ŠŸŃ€ŠøŠ¼ŠµŃ‡Š°Š½ŠøŠµ: ŃŃ‚Šø настройки не Š²Š»ŠøŃŃŽŃ‚ на retroshare-nogui. Š£ Retroshare-nogui ŠµŃŃ‚ŃŒ ŠŗŠ»ŃŽŃ‡ команГной строки Š“Š»Ń активации веб-интерфейса. + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <h1><img width="24" src=":/icons/help_64.png">Веб-интерфейс</h1> <p>Веб-интерфейс ŠæŠ¾Š·Š²Š¾Š»ŃŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŃŃ‚ŃŒ Retroshare ŠøŠ· Š±Ń€Š°ŃƒŠ·ŠµŃ€Š°. ŠŠµŃŠŗŠ¾Š»ŃŒŠŗŠ¾ ŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š² Š¼Š¾Š³ŃƒŃ‚ ŠøŠ¼ŠµŃ‚ŃŒ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒ наГ оГним ŃŠŗŠ·ŠµŠ¼ŠæŠ»ŃŃ€Š¾Š¼ Retroshare. Так вы можете Š½Š°Ń‡Š°Ń‚ŃŒ разговор на ŠæŠ»Š°Š½ŃˆŠµŃ‚Šµ Šø позГнее ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ Š½Š°ŃŃ‚Š¾Š»ŃŒŠ½Ń‹Š¹ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€ Š“Š»Ń его ŠæŃ€Š¾Š“Š¾Š»Š¶ŠµŠ½ŠøŃ.</p> <p>ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ: не Š¾ŃŃ‚Š°Š²Š»ŃŠ¹Ń‚Šµ веб-интерфейс ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡Ń‘Š½Š½Ń‹Š¼ Šŗ ŠøŠ½Ń‚ŠµŃ€Š½ŠµŃ‚Ńƒ, ŠæŠ¾Ń‚Š¾Š¼Ńƒ что нет никакого ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń Š“Š¾ŃŃ‚ŃƒŠæŠ° Šø нет ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ. Если вы хотите ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ веб-интерфейс через интернет, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ SSH-Ń‚ŃƒŠ½Š½ŠµŠ»ŃŒ или прокси-сервер Š“Š»Ń безопасного ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ.</p> - + Webinterface not enabled Веб-интерфейс не Š²ŠŗŠ»ŃŽŃ‡Ń‘н @@ -25208,12 +26747,12 @@ p, li { white-space: pre-wrap; } Веб-интерфейс не Š²ŠŗŠ»ŃŽŃ‡Ń‘н. Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ его в настройках -> Веб-интерфейс. - + failed to start Webinterface не уГалось Š·Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ веб-интерфейс - + Webinterface Веб-интерфейс @@ -25350,7 +26889,11 @@ p, li { white-space: pre-wrap; } Wiki-страницы - + New Group + ŠŠ¾Š²Š°Ń Š³Ń€ŃƒŠæŠæŠ° + + + Page Name ŠŠ°Š·Š²Š°Š½ŠøŠµ страницы @@ -25365,7 +26908,7 @@ p, li { white-space: pre-wrap; } Š£Š½ŠøŠŗŠ°Š»ŃŒŠ½Ń‹Š¹ иГентификатор - + << << @@ -25453,7 +26996,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Š˜ŃŃ‚Š¾Ń€ŠøŃ Ń€ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ страницы @@ -25488,7 +27031,7 @@ p, li { white-space: pre-wrap; } Š˜Š“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń‚Š¾Ń€ страницы - + \/ \/ @@ -25518,18 +27061,14 @@ p, li { white-space: pre-wrap; } ŠœŠµŃ‚ŠŗŠø - - History - Š˜ŃŃ‚Š¾Ń€ŠøŃ - - - + + Show Edit History ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ ŠøŃŃ‚Š¾Ń€ŠøŃŽ Ń€ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ - + Status Š”Ń‚Š°Ń‚ŃƒŃ @@ -25550,7 +27089,7 @@ p, li { white-space: pre-wrap; } Š’ŠµŃ€Š½ŃƒŃ‚ŃŒŃŃ - + Submit ŠžŃ‚ŠæŃ€Š°Š²ŠøŃ‚ŃŒ @@ -25622,6 +27161,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + Диапазон времени + Create Account @@ -25633,7 +27176,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ + + + Settings @@ -25648,7 +27200,7 @@ p, li { white-space: pre-wrap; } Š”Ń€ŃƒŠ³ŠøŠµ - + Who to Follow @@ -25668,7 +27220,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25698,17 +27250,85 @@ p, li { white-space: pre-wrap; } - + Last Month + ПослеГний Š¼ŠµŃŃŃ† + + + Last Week + ŠŸŠ¾ŃŠ»ŠµŠ“Š½ŃŃ Š½ŠµŠ“ŠµŠ»Ń + + + Today + Š”ŠµŠ³Š¾Š“Š½Ń + + + New + ŠŠ¾Š²Ń‹Š¹ + + + from + от + + + until + Го + + + Search/Filter + Поиск/Š¤ŠøŠ»ŃŒŃ‚Ń€ + + + Network Wide + ŠžŠ±ŃˆŠøŃ€Š½Š°Ń ŃŠµŃ‚ŃŒ + + + Manage Accounts + Управление ŃƒŃ‡Ń‘Ń‚Š½Ń‹Š¼Šø Š·Š°ŠæŠøŃŃŠ¼Šø + + + Showing: + ŠŸŠ¾ŠŗŠ°Š·Š°Š½Ń‹: + + + Yourself Š”ŠµŠ±Ń + + Friends + Детевые ŃƒŠ·Š»Ń‹ + Following ДлеГовавший - + Custom + ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠµ + + + Account 1 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 1 + + + Account 2 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 2 + + + Account 3 + Š£Ń‡Ń‘Ń‚Š½Š°Ń запись 3 + + + CheckBox + Флажок + + + Post Pulse to Wire + Дообщение-импульс Š“Š»Ń Телеграфа + + + RetroShare RetroShare @@ -25771,42 +27391,35 @@ p, li { white-space: pre-wrap; } Форма - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25851,41 +27464,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - ДлеГовавший - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š¾ @@ -25963,7 +27546,7 @@ p, li { white-space: pre-wrap; } %1 г. %2 Гн. - + k e.g: 3.1 k Šŗ @@ -25996,11 +27579,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Š˜Š·Š¾Š±Ń€Š°Š¶ŠµŠ½ŠøŃ (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? Š Š°Š·Ń€ŠµŃˆŠ°ŠµŃ‚Šµ ли вы ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ, поГписанные ŃŃ‚ŠøŠ¼ ŠŗŠ»ŃŽŃ‡Š¾Š¼? @@ -26009,6 +27596,10 @@ p, li { white-space: pre-wrap; } Name of the profile Š˜Š¼Ń ŠæŃ€Š¾Ń„ŠøŠ»Ń + + This column indicates trust level and whether you signed the profile PGP key + Этот столбец ŃƒŠŗŠ°Š·Ń‹Š²Š°ŠµŃ‚ ŃƒŃ€Š¾Š²ŠµŠ½ŃŒ Š“Š¾Š²ŠµŃ€ŠøŃ Šø поГписан ли PGP-ŠŗŠ»ŃŽŃ‡ ŠæŃ€Š¾Ń„ŠøŠ»Ń + This column indicates the trust level you indicated and whether you signed the profile PGP key @@ -26119,6 +27710,10 @@ p, li { white-space: pre-wrap; } Denied + + - + - + PGP key signed by you diff --git a/retroshare-gui/src/lang/retroshare_sl.ts b/retroshare-gui/src/lang/retroshare_sl.ts index 581ac731c..a8c42dad2 100644 --- a/retroshare-gui/src/lang/retroshare_sl.ts +++ b/retroshare-gui/src/lang/retroshare_sl.ts @@ -121,12 +121,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +136,7 @@ - + Cancels the search. @@ -156,6 +156,13 @@ + + AlbumCreateDialog + + Quality: + Kakovost: + + AlbumDialog @@ -540,7 +547,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. @@ -566,23 +573,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +619,7 @@ p, li { white-space: pre-wrap; } - + Set your Avatar picture @@ -712,7 +706,7 @@ p, li { white-space: pre-wrap; } Ponastavi - + Always on Top @@ -731,6 +725,14 @@ p, li { white-space: pre-wrap; } % Opaque + + Save + Shrani + + + Cancel + Prekliči + Since: @@ -808,7 +810,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +840,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +853,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +873,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +911,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +931,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +961,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +971,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -977,12 +979,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +1004,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand @@ -1028,12 +1030,12 @@ p, li { white-space: pre-wrap; } - + Name Ime - + Comm value @@ -1202,17 +1204,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1224,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1232,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1255,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1280,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand @@ -1314,7 +1306,7 @@ into the image, so as to - + Name Ime @@ -1324,7 +1316,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide @@ -1332,7 +1334,7 @@ into the image, so as to ChatLobbyDialog - + Name Ime @@ -1523,7 +1525,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1558,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1572,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Ime - + Count @@ -1587,7 +1588,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1620,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1677,12 @@ 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: @@ -1669,42 +1692,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,25 +1718,38 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns + + Yes + Da + + + No + Ne + Chat rooms @@ -1744,47 +1761,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: Vrsta: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1816,7 @@ Double click a chat room to enter and chat. - + Show Pokaži @@ -1819,7 +1836,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item @@ -1864,7 +1881,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1896,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1916,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1941,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1971,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1981,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +2005,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2075,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2090,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2187,7 @@ Double click a chat room to enter and chat. - + Case sensitive Razlikuj velike in male črke @@ -2296,7 +2293,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2329,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2364,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2449,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2491,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2513,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2563,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2585,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2600,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2621,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2637,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2662,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2688,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2710,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2736,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2796,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2812,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2864,45 @@ Double click on it to add his name on text writer. - + RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2912,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +2994,12 @@ Double click on it to add his name on text writer. brez - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +3019,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3087,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3103,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: Ime: @@ -3121,17 +3118,17 @@ Double click on it to add his name on text writer. - + Options Možnosti - + <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: @@ -3141,7 +3138,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3163,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3188,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3259,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3289,12 @@ 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? - + @@ -3310,7 +3302,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3342,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3367,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3377,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3416,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3426,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3451,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3464,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3499,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3509,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3579,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3607,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3617,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3637,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3652,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3677,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3969,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3977,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3987,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4023,12 @@ p, li { white-space: pre-wrap; } - + Name Ime - + <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> @@ -4058,7 +4048,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4068,18 @@ p, li { white-space: pre-wrap; } - + Cancel Prekliči - + Nickname - + Invited Members @@ -4104,7 +4094,7 @@ p, li { white-space: pre-wrap; } - + Name: Ime: @@ -4144,19 +4134,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4156,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Dodaj @@ -4193,7 +4171,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4224,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4249,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4284,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4294,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4439,17 @@ p, li { white-space: pre-wrap; } - + RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4474,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4489,18 @@ p, li { white-space: pre-wrap; } - + + 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? @@ -4555,7 +4534,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4544,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4559,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4583,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4613,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title @@ -4697,7 +4676,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4686,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4710,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4745,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4755,7 @@ Do you want to discard this message? Prekliči - + require PGP-signed identities @@ -4791,7 +4770,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4791,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4799,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: Ime: - + Location: @@ -4840,12 +4819,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4844,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4859,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4869,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4889,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4959,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5075,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5743,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5751,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5790,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5957,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5967,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6027,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6153,7 @@ and use the import button to load it - + ID @@ -6216,7 +6195,7 @@ and use the import button to load it - + Group @@ -6252,7 +6231,7 @@ and use the import button to load it - + Search @@ -6268,7 +6247,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6484,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6522,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6533,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Ime - - - - Node ID - - - - - Address - - - - - Status - Stanje - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6625,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6669,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6679,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6710,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6761,12 @@ Also check your ports! - + <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 @@ -6923,43 +6776,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6851,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6867,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6902,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6912,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6927,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7158,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7188,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7228,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7295,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7345,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7474,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7482,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7652,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -7807,12 +7665,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7695,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7710,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name Ime @@ -7870,13 +7728,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7747,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7883,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7894,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7929,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7969,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +8004,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8166,10 +8024,17 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Status + Stanje + + GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8072,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8088,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -8248,7 +8103,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8117,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8126,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8147,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8209,18 @@ p, li { white-space: pre-wrap; } - + New - + 0 - - + + Comment @@ -8385,17 +8235,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8423,13 +8273,13 @@ p, li { white-space: pre-wrap; } GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8349,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8385,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8400,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8421,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8436,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8496,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8576,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8632,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8757,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8770,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8800,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8839,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8863,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8872,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; } @@ -9077,7 +8901,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8932,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +8983,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +8999,7 @@ before you can comment - + Expand @@ -9194,11 +9018,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9047,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9064,7 @@ before you can comment - + Expand @@ -9265,17 +9084,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide @@ -9288,66 +9107,59 @@ before you can comment - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + New Thread + + + Threaded View + + + + + Flat View + + - + Title - - + + Date - + Author - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9169,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9214,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9456,12 +9273,12 @@ before you can comment - + Hide - + [unknown] @@ -9491,8 +9308,8 @@ before you can comment - - + + Distribution @@ -9506,6 +9323,10 @@ before you can comment Anti-spam + + none + brez + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9575,12 +9396,12 @@ before you can comment - + New thread - + Edit @@ -9641,7 +9462,7 @@ before you can comment - + Show column @@ -9661,7 +9482,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9534,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9544,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9559,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9625,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9844,12 +9665,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name Ime - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9681,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9694,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9754,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9777,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9793,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9815,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9847,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9872,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9887,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +9962,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +9978,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Prekliči - + Create - + + Author + + + + GxsIdLabel @@ -10191,7 +10006,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10066,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10123,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10151,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10164,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10181,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10191,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10211,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10222,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10270,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10657,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10673,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10692,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10766,7 @@ p, li { white-space: pre-wrap; } - + Add friend @@ -10974,7 +10776,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10804,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10814,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10824,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10844,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10862,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10882,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11152,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11169,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11184,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11199,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11235,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11277,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11298,78 @@ p, li { white-space: pre-wrap; } - + Owner node ID : - + Identity name : - + () - + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : - + Create new... - + Type: Vrsta: - + Send Invite - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: - + Negative - + Neutral @@ -11609,17 +11380,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 @@ -11634,24 +11405,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11437,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11447,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11522,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11552,7 @@ p, li { white-space: pre-wrap; } neznano - + Invited @@ -11801,7 +11567,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11615,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. @@ -11857,7 +11623,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11666,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11746,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11762,17 @@ 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> + + + + positive @@ -12106,7 +11877,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11927,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11951,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +11966,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +11981,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +12006,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +12021,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +12029,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12059,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12073,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12083,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12094,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12134,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12144,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12159,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12174,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12184,10 @@ These identities will soon be not supported anymore. - + Choose image... - - - Remove - - @@ -12459,7 +12213,7 @@ These identities will soon be not supported anymore. Dodaj - + Create @@ -12469,13 +12223,13 @@ These identities will soon be not supported anymore. Prekliči - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12239,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12313,7 @@ These identities will soon be not supported anymore. - + Copy Kopiraj @@ -12569,12 +12323,12 @@ These identities will soon be not supported anymore. - + %1 's Message History - + Mark all @@ -12597,34 +12351,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12380,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12421,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12430,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12459,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12487,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12503,7 @@ These identities will soon be not supported anymore. - - + Options Možnosti @@ -12802,7 +12524,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12535,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12565,11 @@ These identities will soon be not supported anymore. - Status Stanje - + Notify @@ -12859,35 +12580,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help Pomoč - - + Minimize - + Maximize @@ -12902,12 +12619,7 @@ These identities will soon be not supported anymore. - - Close window - - - - + %1 new message @@ -12937,7 +12649,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12669,7 @@ These identities will soon be not supported anymore. Pokaži - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12714,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12734,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12743,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12789,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12809,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12845,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12940,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +12980,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +13000,18 @@ 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? @@ -13311,17 +13022,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13042,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13052,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13380,7 +13081,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13091,30 @@ Do you want to save message to draft box? - - - + + + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13528,13 +13229,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13255,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13276,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13306,18 @@ Do you want to save message ? - - + + Close - + From: Od: - + Bullet list (disc) @@ -13656,13 +13357,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13373,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: @@ -13755,7 +13456,7 @@ Do you want to save message ? Privzeto - + A new tab @@ -13765,7 +13466,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13489,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13497,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13525,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13535,37 @@ Do you want to save message ? - + Subject: - + From: Od: - + To: Do: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13605,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13657,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13667,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13682,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13701,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13723,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14064,6 +13750,10 @@ Do you want to save message ? Compose + + Delete + IzbriÅ”i + Print @@ -14142,7 +13832,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13842,20 @@ Do you want to save message ? - + Delete + IzbriÅ”i + + + - - + + Tags - - + + Inbox @@ -14191,17 +13885,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13926,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13936,7 @@ Do you want to save message ? - + Date @@ -14252,7 +13946,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13955,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +13981,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14062,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14076,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14091,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14137,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14191,7 @@ Do you want to save message ? - + Expand @@ -14537,7 +14201,7 @@ Do you want to save message ? - + from @@ -14572,7 +14236,7 @@ Do you want to save message ? - + Hide @@ -14713,7 +14377,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14387,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14401,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14434,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14455,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14493,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14514,7 @@ Reported error: - + Groups @@ -14881,19 +14544,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14566,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14581,7 @@ Reported error: - + Group @@ -15033,7 +14696,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14706,7 @@ Reported error: - + Done! @@ -15150,7 +14813,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14828,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14838,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15418,7 +15081,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15101,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15121,7 @@ at least one peer was not added to a group - + Test @@ -15469,19 +15132,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15150,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15289,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15334,12 @@ p, li { white-space: pre-wrap; } - + + 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> @@ -15724,21 +15385,21 @@ 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) @@ -15756,7 +15417,7 @@ 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. @@ -15832,12 +15493,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15524,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15545,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Name: Ime: @@ -15924,7 +15585,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15643,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Send Message @@ -16300,17 +15961,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +16000,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16059,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16107,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16323,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16381,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16755,8 +16401,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16427,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16461,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare @@ -16835,22 +16481,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16502,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16512,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16532,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16552,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16563,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16573,7 @@ p, li { white-space: pre-wrap; } - + Link @@ -16965,12 +16581,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16620,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16658,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16674,7 @@ p, li { white-space: pre-wrap; } - + Expand @@ -17083,17 +16689,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16707,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16729,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16744,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16754,17 @@ p, li { white-space: pre-wrap; } - + Vote up - + Vote down - + Set as read and remove item @@ -17173,7 +16774,7 @@ p, li { white-space: pre-wrap; } - + New Comment: @@ -17183,7 +16784,7 @@ p, li { white-space: pre-wrap; } - + Name Ime @@ -17224,7 +16825,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -17247,17 +16848,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16858,15 @@ p, li { white-space: pre-wrap; } - + - + unknown neznano - + Distribution: @@ -17285,42 +16876,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +16931,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +16961,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +16986,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +17001,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +17036,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17110,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17199,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17316,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17332,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17367,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17416,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17446,12 @@ and use the import button to load it Od: - + Head - + Head Shot @@ -17909,13 +17481,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17499,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17519,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,24 +17534,26 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - + ... + ... @@ -18000,7 +17564,7 @@ and use the import button to load it - + @@ -18019,7 +17583,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17593,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17620,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17630,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17650,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17766,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17774,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17836,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17844,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18113,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18149,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18183,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18202,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18281,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18291,7 @@ Reported error is: - + enabled @@ -18762,7 +18301,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18317,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18384,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18412,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18592,13 @@ Security: no anonymous IDs Ban list - - - Name - Ime - - Node - - - - - Address - - - - - Status Stanje - + NXS @@ -19318,18 +18841,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +18980,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19147,7 @@ p, li { white-space: pre-wrap; } - + The loading of embedded images is blocked. @@ -19649,7 +19160,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19333,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19845,12 +19346,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +20039,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name Ime @@ -20659,7 +20160,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name Ime @@ -20679,7 +20180,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20236,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20250,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20268,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20789,17 +20290,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20319,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20340,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20401,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20422,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20452,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20470,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20487,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20553,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20568,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20668,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20694,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21237,7 +20731,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21248,17 +20742,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20772,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20780,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20796,22 @@ prevents the message to be forwarded to your friends. - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20828,7 @@ prevents the message to be forwarded to your friends. - + but reported: @@ -21359,8 +20853,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20862,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20893,7 @@ prevents the message to be forwarded to your friends. - + Expand @@ -21444,12 +20938,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +20963,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21484,17 +20983,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide @@ -21504,7 +20993,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +21003,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21067,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21604,22 +21093,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21121,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21145,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21171,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21196,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21241,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21838,7 +21315,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21342,12 @@ 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> @@ -21865,7 +21357,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21372,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21399,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21419,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21434,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21484,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21499,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21540,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21595,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21620,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21632,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21655,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Stanje @@ -22218,28 +21715,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21741,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21787,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21815,22 @@ 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> @@ -22379,7 +21865,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21875,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +21960,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +21970,12 @@ 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. @@ -22508,7 +21994,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +22014,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel Prekliči - + Add a Share Directory @@ -22548,7 +22034,7 @@ Select the Friends with which you want to Share your Channel. - + Apply and close @@ -22639,7 +22125,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. @@ -22647,7 +22133,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22184,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22198,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22732,7 +22213,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22229,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22254,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22397,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22426,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23284,7 +22765,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +23002,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +23038,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23575,13 +23053,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23074,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23087,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23097,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23108,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23140,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23151,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23161,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23261,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23270,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23295,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23360,12 @@ 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> @@ -23948,17 +23375,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23403,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23431,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name Ime @@ -24233,12 +23650,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> - - - - + Move in Queue... @@ -24263,7 +23675,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23696,7 @@ p, li { white-space: pre-wrap; } - + @@ -24317,17 +23729,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23744,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23871,23 @@ 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> + + + + Columns - + File Transfers - + Path Pot @@ -24490,7 +23897,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23907,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +23922,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +23932,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24346,12 @@ p, li { white-space: pre-wrap; } - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24391,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24411,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24553,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24568,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24656,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24691,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24721,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status Stanje @@ -25361,7 +24749,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24832,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25459,7 +24856,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24876,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24906,7 @@ p, li { white-space: pre-wrap; } - + Yourself @@ -25519,7 +24916,7 @@ p, li { white-space: pre-wrap; } - + RetroShare @@ -25582,42 +24979,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25052,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25774,7 +25134,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25171,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_sr.ts b/retroshare-gui/src/lang/retroshare_sr.ts index 01e51db3d..6d5a3f97d 100644 --- a/retroshare-gui/src/lang/retroshare_sr.ts +++ b/retroshare-gui/src/lang/retroshare_sr.ts @@ -122,12 +122,12 @@ ŠŠ°ŠæŃ€ŠµŠ“Š½Š° претрага - + Search Criteria ŠšŃ€ŠøŃ‚ŠµŃ€ŠøŃ˜ŃƒŠ¼ претраге - + Add a further search criterion. Š”Š¾Š“Š°Ń˜Ń‚Šµ ГоГатни ŠŗŃ€ŠøŃ‚ŠµŃ€ŠøŃ˜ŃƒŠ¼ претраге. @@ -137,7 +137,7 @@ ŠŸŠ¾Š½ŠøŃˆŃ‚ŠøŃ‚Šµ ŠŗŃ€ŠøŃ‚ŠµŃ€ŠøŃ˜ŃƒŠ¼ претраге. - + Cancels the search. ŠžŃ‚ŠŗŠ°Š·ŃƒŃ˜Šµ ŠæŃ€ŠµŃ‚Ń€Š°Š³Ńƒ. @@ -157,6 +157,13 @@ ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø + + AlbumCreateDialog + + Public + Јавно + + AlbumDialog @@ -541,7 +548,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. @@ -567,23 +574,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p kB @@ -626,7 +620,7 @@ p, li { white-space: pre-wrap; } Уклони - + Set your Avatar picture @@ -713,10 +707,22 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾Š½ŠøŃˆŃ‚Šø - + Receive Rate + Брзина ŠæŃ€ŠøŃ˜ŠµŠ¼Š° + + + Send Rate + Брзина слања + + + Always on Top Увек на Š²Ń€Ń…Ńƒ + + Style + Дтил + Changes the transparency of the Bandwidth Graph @@ -732,11 +738,23 @@ p, li { white-space: pre-wrap; } % Opaque % непровиГно + + Save + Š”Š°Ń‡ŃƒŠ²Š°Ń˜ + + + Cancel + ŠžŃ‚ŠŗŠ°Š¶Šø + Since: ŠžŠ“: + + Hide Settings + Š”Š°ŠŗŃ€ŠøŃ˜ поГешавања + BandwidthStatsWidget @@ -809,7 +827,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ @@ -839,12 +857,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -852,7 +870,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -872,7 +890,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -910,7 +928,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -930,7 +948,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -960,7 +978,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status ŠŸŃ€Š¾Š¼ŠµŠ½Šø ŃŃ‚Š°Ń‚ŃƒŃ ŠæŠ¾Ń€ŃƒŠŗŠ° @@ -970,7 +988,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -978,12 +996,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 0 @@ -1003,18 +1021,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -1029,12 +1047,12 @@ p, li { white-space: pre-wrap; } Уклони ŃŃ‚Š°Š²ŠŗŃƒ - + Name ŠŠ°Š·ŠøŠ² - + Comm value @@ -1203,17 +1221,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1223,17 +1241,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1241,7 +1249,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1264,7 +1272,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1289,18 +1297,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -1315,7 +1323,7 @@ into the image, so as to Уклони ŃŃ‚Š°Š²ŠŗŃƒ - + Name ŠŠ°Š·ŠøŠ² @@ -1325,7 +1333,17 @@ into the image, so as to - + + Comment + ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ + + + + Comments + + + + Hide Š”Š°ŠŗŃ€ŠøŃ˜ @@ -1333,7 +1351,7 @@ into the image, so as to ChatLobbyDialog - + Name ŠŠ°Š·ŠøŠ² @@ -1524,7 +1542,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1557,14 +1575,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1572,13 +1589,13 @@ into the image, so as to ChatLobbyWidget - - + + Name ŠŠ°Š·ŠøŠ² - + Count @@ -1588,7 +1605,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1598,7 +1637,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1655,12 +1694,12 @@ 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: @@ -1670,42 +1709,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private ŠŸŃ€ŠøŠ²Š°Ń‚Š½Š¾ - - - + Public Јавно - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1715,25 +1735,38 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns + + Yes + Да + + + No + ŠŠµ + Chat rooms @@ -1745,47 +1778,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1800,7 +1833,7 @@ Double click a chat room to enter and chat. - + Show ŠŸŃ€ŠøŠŗŠ°Š¶Šø @@ -1820,7 +1853,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Уклони ŃŃ‚Š°Š²ŠŗŃƒ @@ -1865,7 +1898,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1880,7 +1913,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1900,7 +1933,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1925,7 +1958,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1955,7 +1988,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1965,10 +1998,14 @@ Double click a chat room to enter and chat. - + History + + Style + Дтил + @@ -1989,7 +2026,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2059,22 +2096,12 @@ Double click a chat room to enter and chat. - + Search ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2084,17 +2111,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2191,7 +2208,7 @@ Double click a chat room to enter and chat. - + Case sensitive Разликује велика Šø мала слова @@ -2297,7 +2314,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2333,7 +2350,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close Затвори @@ -2368,12 +2385,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2453,6 +2470,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2490,7 +2512,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2512,7 +2534,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2562,7 +2584,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2584,7 +2606,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2599,12 +2621,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2620,12 +2642,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2636,12 +2658,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2661,7 +2683,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2687,7 +2709,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2709,7 +2731,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2735,7 +2757,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2795,7 +2817,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2811,7 +2833,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2863,45 +2885,45 @@ Double click on it to add his name on text writer. - + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2911,7 +2933,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2993,17 +3015,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3023,7 +3040,7 @@ Double click on it to add his name on text writer. - + with @@ -3091,7 +3108,7 @@ Double click on it to add his name on text writer. - + @@ -3107,12 +3124,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: ŠŠ°Š·ŠøŠ²: @@ -3122,17 +3139,17 @@ Double click on it to add his name on text writer. ŠœŠµŃŃ‚Š¾: - + Options ŠžŠæŃ†ŠøŃ˜Šµ - + <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: @@ -3142,7 +3159,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3167,22 +3184,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3202,27 +3209,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3268,17 +3280,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3298,12 +3310,12 @@ 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? - + @@ -3311,7 +3323,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3351,7 +3363,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3376,7 +3388,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3386,7 +3398,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3425,7 +3437,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3435,7 +3447,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3460,7 +3472,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3473,7 +3485,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3508,7 +3520,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3518,7 +3530,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3583,7 +3600,7 @@ even if you don't make friends. - + UDP Setup @@ -3611,7 +3628,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3621,20 +3638,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3644,14 +3658,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3661,8 +3673,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3687,7 +3698,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3979,7 +3990,7 @@ p, li { white-space: pre-wrap; } - + @@ -3987,8 +3998,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3998,7 +4008,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4034,12 +4044,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4059,7 +4069,7 @@ p, li { white-space: pre-wrap; } - + IDs Š˜Š” @@ -4079,18 +4089,18 @@ p, li { white-space: pre-wrap; } - + Cancel - + Nickname - + Invited Members @@ -4105,7 +4115,11 @@ p, li { white-space: pre-wrap; } - + ID + Š˜Š” + + + Name: ŠŠ°Š·ŠøŠ²: @@ -4145,19 +4159,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4167,24 +4181,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add Š”Š¾Š“Š°Ń˜ @@ -4194,7 +4196,7 @@ p, li { white-space: pre-wrap; } - + Search ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø @@ -4247,13 +4249,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4272,7 +4274,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4307,7 +4309,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4317,7 +4319,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4462,17 +4464,17 @@ p, li { white-space: pre-wrap; } - + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - + This file already in this post: - + Post refers to non shared files @@ -4497,12 +4499,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4517,12 +4514,18 @@ p, li { white-space: pre-wrap; } Š”Š°ŠŗŃ€ŠøŃ˜ - + + 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? @@ -4556,7 +4559,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,6 +4568,10 @@ p, li { white-space: pre-wrap; } Forum + + Subject + ŠŠ°ŃŠ»Š¾Š² + Attach File @@ -4585,8 +4592,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4605,7 +4612,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4635,17 +4642,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title @@ -4698,7 +4705,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4708,8 +4715,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4732,7 +4739,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4767,7 +4774,7 @@ Do you want to discard this message? - + Create @@ -4777,7 +4784,7 @@ Do you want to discard this message? - + require PGP-signed identities @@ -4792,7 +4799,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4813,7 +4820,7 @@ Do you want to discard this message? - + Identity to use: @@ -4821,17 +4828,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: ŠŠ°Š·ŠøŠ²: - + Location: ŠœŠµŃŃ‚Š¾: @@ -4841,12 +4848,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4866,7 +4873,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4876,7 +4888,7 @@ Do you want to discard this message? - + Other Information @@ -4886,12 +4898,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4901,7 +4918,7 @@ Do you want to discard this message? - + Export Identity @@ -4971,33 +4988,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5087,7 +5104,7 @@ and use the import button to load it DLListDelegate - + B @@ -5755,7 +5772,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5763,38 +5780,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5802,12 +5819,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5969,7 +5986,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5979,7 +5996,7 @@ and use the import button to load it - + Audio @@ -6039,21 +6056,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6175,7 +6182,7 @@ and use the import button to load it - + ID Š˜Š” @@ -6217,7 +6224,7 @@ and use the import button to load it - + Group @@ -6253,7 +6260,7 @@ and use the import button to load it - + Search ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø @@ -6269,7 +6276,7 @@ and use the import button to load it - + Profile details @@ -6506,7 +6513,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6544,7 +6551,7 @@ at least one peer was not added to a group - + Mark all @@ -6555,132 +6562,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - ŠŠ°Š·ŠøŠ² - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6763,38 +6654,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6812,17 +6698,7 @@ Also check your ports! - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6832,12 +6708,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6858,38 +6739,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6909,12 +6790,12 @@ Also check your ports! - + <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 @@ -6924,43 +6805,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7004,13 +6880,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7020,7 +6896,7 @@ and use the import button to load it - + Tor/I2P address @@ -7055,7 +6931,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7065,7 +6941,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7075,7 +6956,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7301,13 +7187,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7317,57 +7217,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7375,45 +7257,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7438,7 +7324,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7488,12 +7374,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7617,7 +7503,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7625,7 +7511,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7795,7 +7681,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -7808,12 +7694,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7838,7 +7724,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7853,14 +7739,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post ПослеГња ŠæŠ¾Ń€ŃƒŠŗŠ° - + Name ŠŠ°Š·ŠøŠ² @@ -7871,13 +7757,13 @@ p, li { white-space: pre-wrap; } ŠŸŠ¾ŠæŃƒŠ»Š°Ń€Š½Š¾ŃŃ‚ - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7890,7 +7776,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8026,7 +7912,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8037,22 +7923,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8072,12 +7958,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8112,22 +7998,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8147,17 +8033,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8167,10 +8053,17 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + ŠžŠ±Ń€Š°Š·Š°Ń† + + GxsChannelGroupDialog - + Create New Channel @@ -8208,18 +8101,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8234,7 +8117,7 @@ p, li { white-space: pre-wrap; } - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -8249,7 +8132,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8263,11 +8146,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8277,7 +8155,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8298,7 +8176,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8360,18 +8238,18 @@ p, li { white-space: pre-wrap; } Š”Š°ŠŗŃ€ŠøŃ˜ - + New - + 0 0 - - + + Comment ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ @@ -8386,17 +8264,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8424,13 +8302,13 @@ p, li { white-space: pre-wrap; } GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8500,7 +8378,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8536,7 +8414,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8551,13 +8429,13 @@ p, li { white-space: pre-wrap; } - - + + Click to switch to list view - + Show unread posts only @@ -8572,7 +8450,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8587,7 +8465,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8647,22 +8525,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8737,13 +8605,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8794,17 +8661,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8919,7 +8786,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8932,7 +8799,7 @@ p, li { white-space: pre-wrap; } ŠžŠ±Ń€Š°Š·Š°Ń† - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8962,7 +8829,7 @@ p, li { white-space: pre-wrap; } - + Comment ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ @@ -9001,7 +8868,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9025,21 +8892,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9049,7 +8901,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; } @@ -9078,7 +8930,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9109,7 +8961,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9160,7 +9012,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9176,7 +9028,7 @@ before you can comment - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -9195,11 +9047,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9229,13 +9076,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9246,7 +9093,7 @@ before you can comment - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -9266,17 +9113,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide Š”Š°ŠŗŃ€ŠøŃ˜ @@ -9289,66 +9136,63 @@ before you can comment ŠžŠ±Ń€Š°Š·Š°Ń† - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - … - - - - Flat - - - - - Latest post in thread - - - - + Search forums - + Last Post + ПослеГња ŠæŠ¾Ń€ŃƒŠŗŠ° + + + New Thread + + + Threaded View + + + + + Flat View + + - + Title - - + + Date - + Author - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9358,7 +9202,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9398,23 +9247,23 @@ before you can comment - + No name - - + + Reply - + <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> - + Loading... @@ -9457,12 +9306,16 @@ before you can comment - + Hide Š”Š°ŠŗŃ€ŠøŃ˜ - + Expand + ŠŸŃ€Š¾ŃˆŠøŃ€Šø + + + [unknown] @@ -9492,8 +9345,8 @@ before you can comment - - + + Distribution @@ -9576,12 +9429,12 @@ before you can comment - + New thread - + Edit @@ -9642,7 +9495,7 @@ before you can comment - + Show column @@ -9662,7 +9515,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9714,7 +9567,7 @@ This message is missing. You should receive it later. - + No result. @@ -9724,7 +9577,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9739,7 +9592,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9805,12 +9658,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums @@ -9845,12 +9698,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name ŠŠ°Š·ŠøŠ² - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9861,12 +9714,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9874,7 +9727,7 @@ This message is missing. You should receive it later. - + Public Јавно @@ -9934,7 +9787,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9957,7 +9810,7 @@ This message is missing. You should receive it later. - + All People @@ -9973,12 +9826,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9995,23 +9848,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10027,28 +9880,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10058,12 +9905,12 @@ This message is missing. You should receive it later. - + Info - + ID Š˜Š” @@ -10073,7 +9920,7 @@ This message is missing. You should receive it later. ПослеГња ŠæŠ¾Ń€ŃƒŠŗŠ° - + <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> @@ -10148,12 +9995,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity ŠŸŠ¾ŠæŃƒŠ»Š°Ń€Š½Š¾ŃŃ‚ @@ -10169,22 +10011,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create - + + Author + + + + GxsIdLabel @@ -10192,7 +10039,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10252,7 +10099,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10309,12 +10156,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10337,7 +10184,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10350,14 +10197,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10367,7 +10214,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10377,12 +10224,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10402,14 +10244,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10421,7 +10255,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10469,7 +10303,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10856,7 +10690,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10872,7 +10706,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10891,7 +10725,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10965,7 +10799,7 @@ p, li { white-space: pre-wrap; } ŠžŠ±Ń€Š°Š·Š°Ń† - + Add friend @@ -10975,7 +10809,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11003,7 +10837,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11013,7 +10847,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11023,7 +10857,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11043,37 +10877,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11085,12 +10895,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11105,7 +10915,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11370,14 +11185,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11387,12 +11202,12 @@ p, li { white-space: pre-wrap; } ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø - + Anonymous Id - + Create new Identity @@ -11402,7 +11217,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11417,27 +11232,27 @@ p, li { white-space: pre-wrap; } - + Close Затвори - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11453,39 +11268,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11505,20 +11310,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11528,78 +11331,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11610,17 +11413,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 @@ -11635,24 +11438,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11667,12 +11470,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11682,7 +11480,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11757,7 +11555,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11787,7 +11585,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11802,7 +11600,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11850,7 +11648,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. @@ -11858,7 +11656,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11901,7 +11699,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11981,7 +11779,7 @@ These identities will soon be not supported anymore. - + information @@ -11997,12 +11795,17 @@ 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> + + + + positive @@ -12107,7 +11910,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12157,21 +11960,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12181,7 +11984,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12196,7 +11999,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12211,12 +12014,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12236,12 +12039,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12251,7 +12054,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12259,7 +12062,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12289,13 +12092,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12309,7 +12106,7 @@ These identities will soon be not supported anymore. - + @@ -12319,12 +12116,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12335,27 +12127,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12375,7 +12167,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12385,18 +12177,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12406,7 +12192,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12416,7 +12207,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12426,15 +12217,10 @@ These identities will soon be not supported anymore. - + Choose image... - - - Remove - Уклони - @@ -12460,7 +12246,7 @@ These identities will soon be not supported anymore. Š”Š¾Š“Š°Ń˜ - + Create @@ -12470,13 +12256,13 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12486,7 +12272,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12560,7 +12346,7 @@ These identities will soon be not supported anymore. - + Copy Умножи @@ -12570,12 +12356,12 @@ These identities will soon be not supported anymore. Уклони - + %1 's Message History - + Mark all @@ -12598,34 +12384,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12643,32 +12413,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - Š”Ń‚Š°Ń‚ŃƒŃ: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12689,12 +12454,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12703,31 +12463,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12737,7 +12492,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12765,7 +12520,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12781,8 +12536,7 @@ These identities will soon be not supported anymore. - - + Options ŠžŠæŃ†ŠøŃ˜Šµ @@ -12803,7 +12557,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12814,12 +12568,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12844,12 +12598,11 @@ These identities will soon be not supported anymore. - Status - + Notify @@ -12860,35 +12613,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help ŠŸŠ¾Š¼Š¾Ń› - - + Minimize - + Maximize @@ -12903,12 +12652,7 @@ These identities will soon be not supported anymore. Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - - Close window - - - - + %1 new message @@ -12938,7 +12682,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12958,7 +12702,7 @@ These identities will soon be not supported anymore. ŠŸŃ€ŠøŠŗŠ°Š¶Šø - + Make sure this link has not been forged to drag you to a malicious website. @@ -13003,13 +12747,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13024,7 +12767,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13033,17 +12776,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13079,12 +12822,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13099,32 +12842,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13135,32 +12878,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13230,7 +12973,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13270,7 +13013,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13290,18 +13033,18 @@ 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? @@ -13312,17 +13055,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13342,7 +13075,7 @@ Do you want to save message to draft box? - + Original Message @@ -13352,21 +13085,21 @@ Do you want to save message to draft box? - + - + To - - + + Cc - + Sent @@ -13381,7 +13114,7 @@ Do you want to save message to draft box? - + Re: @@ -13391,30 +13124,30 @@ Do you want to save message to draft box? - - - + + + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown @@ -13529,13 +13262,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13555,7 +13288,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13576,7 +13309,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13606,18 +13339,18 @@ Do you want to save message ? - - + + Close Затвори - + From: - + Bullet list (disc) @@ -13657,13 +13390,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13673,12 +13406,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: @@ -13756,7 +13489,7 @@ Do you want to save message ? ŠŸŠ¾Š“Ń€Š°Š·ŃƒŠ¼ŠµŠ²Š°Š½Š¾ - + A new tab @@ -13766,7 +13499,7 @@ Do you want to save message ? - + Edit Tag @@ -13789,7 +13522,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13797,7 +13530,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13825,7 +13558,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13835,37 +13568,37 @@ Do you want to save message ? - + Subject: - + From: - + To: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13905,7 +13638,7 @@ Do you want to save message ? - + Send Invite @@ -13957,7 +13690,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13967,12 +13700,12 @@ Do you want to save message ? - + View source - + No subject @@ -13982,22 +13715,17 @@ Do you want to save message ? - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14006,24 +13734,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14038,12 +13756,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14065,6 +13783,10 @@ Do you want to save message ? Compose + + Delete + ŠžŠ±Ń€ŠøŃˆŠø + Print @@ -14143,7 +13865,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14153,16 +13875,20 @@ Do you want to save message ? - + Delete + ŠžŠ±Ń€ŠøŃˆŠø + + + - - + + Tags - - + + Inbox @@ -14192,17 +13918,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14233,7 +13959,7 @@ Do you want to save message ? - + Subject ŠŠ°ŃŠ»Š¾Š² @@ -14243,7 +13969,7 @@ Do you want to save message ? - + Date @@ -14253,7 +13979,7 @@ Do you want to save message ? - + Search Subject @@ -14262,16 +13988,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14298,12 +14014,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14379,7 +14095,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14393,7 +14109,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14408,28 +14124,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14464,17 +14170,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14528,7 +14224,7 @@ Do you want to save message ? - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -14538,7 +14234,7 @@ Do you want to save message ? Уклони ŃŃ‚Š°Š²ŠŗŃƒ - + from @@ -14573,7 +14269,7 @@ Do you want to save message ? - + Hide Š”Š°ŠŗŃ€ŠøŃ˜ @@ -14714,7 +14410,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14724,7 +14420,7 @@ Do you want to save message ? - + Clean keyring @@ -14738,13 +14434,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14777,13 +14467,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14793,12 +14488,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14831,7 +14526,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14852,7 +14547,7 @@ Reported error: - + Groups @@ -14882,19 +14577,19 @@ Reported error: - - + + Search ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø - + ID Š˜Š” - + Search ID @@ -14904,12 +14599,12 @@ Reported error: - + Show Items - + Last contact @@ -14919,7 +14614,7 @@ Reported error: - + Group @@ -15034,7 +14729,7 @@ Reported error: - + Do you want to remove this node? @@ -15044,7 +14739,7 @@ Reported error: - + Done! @@ -15151,7 +14846,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15166,7 +14861,7 @@ at least one peer was not added to a group - + Newest on top @@ -15176,12 +14871,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15419,7 +15114,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15439,12 +15134,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15459,7 +15154,7 @@ at least one peer was not added to a group - + Test @@ -15470,19 +15165,17 @@ at least one peer was not added to a group - 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). @@ -15490,7 +15183,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15629,12 +15322,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15679,7 +15367,12 @@ 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> @@ -15725,21 +15418,21 @@ 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) @@ -15757,7 +15450,7 @@ 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. @@ -15833,12 +15526,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15864,7 +15557,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15885,7 +15578,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Уклони ŃŃ‚Š°Š²ŠŗŃƒ - + Name: ŠŠ°Š·ŠøŠ²: @@ -15925,7 +15618,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15983,7 +15676,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Š”Š°ŠŗŃ€ŠøŃ˜ - + Send Message @@ -16150,6 +15843,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + ŠžŠ±Ń€Š°Š·Š°Ń† + + PhotoDialog @@ -16162,6 +15862,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.TextLabel + + Comment + ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ + Album / Photo Name @@ -16301,17 +16005,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16340,7 +16044,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16399,19 +16103,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16447,12 +16151,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16663,27 +16367,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16736,7 +16425,7 @@ p, li { white-space: pre-wrap; } - + Vote up @@ -16756,8 +16445,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16782,13 +16471,13 @@ p, li { white-space: pre-wrap; } - - + + Comment ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ - + Comments @@ -16816,12 +16505,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ @@ -16836,22 +16525,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16867,17 +16546,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16887,7 +16556,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16907,22 +16576,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16937,7 +16596,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16948,7 +16607,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16958,7 +16617,7 @@ p, li { white-space: pre-wrap; } - + Link @@ -16966,12 +16625,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17005,7 +16664,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17043,17 +16702,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17069,7 +16718,7 @@ p, li { white-space: pre-wrap; } - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -17084,17 +16733,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17107,18 +16751,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + + Comments - + Copy RetroShare Link @@ -17129,12 +16773,12 @@ p, li { white-space: pre-wrap; } - + Comment ŠšŠ¾Š¼ŠµŠ½Ń‚Š°Ń€ - + Comments @@ -17144,7 +16788,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17154,17 +16798,17 @@ p, li { white-space: pre-wrap; } Š”Š°ŠŗŃ€ŠøŃ˜ - + Vote up - + Vote down - + Set as read and remove item @@ -17174,7 +16818,7 @@ p, li { white-space: pre-wrap; } - + New Comment: @@ -17184,7 +16828,7 @@ p, li { white-space: pre-wrap; } - + Name ŠŠ°Š·ŠøŠ² @@ -17225,11 +16869,22 @@ p, li { white-space: pre-wrap; } - + Loading + + PostedListWidget + + Form + ŠžŠ±Ń€Š°Š·Š°Ń† + + + RetroShare + Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ + + PostedListWidgetWithModel @@ -17248,17 +16903,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17268,15 +16913,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17286,42 +16931,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17341,7 +16986,7 @@ p, li { white-space: pre-wrap; } - + Search ŠŸŃ€ŠµŃ‚Ń€Š°Š¶Šø @@ -17371,17 +17016,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17396,17 +17041,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17416,31 +17056,27 @@ p, li { white-space: pre-wrap; } - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17455,7 +17091,7 @@ p, li { white-space: pre-wrap; } ŠŸŃ€ŠøŃ˜Š°Š²Šø ме - + Never @@ -17529,16 +17165,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17628,16 +17254,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17745,7 +17371,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17761,7 +17387,7 @@ and use the import button to load it - + Public Information @@ -17796,12 +17422,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17845,27 +17471,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17875,12 +17501,12 @@ and use the import button to load it - + Head - + Head Shot @@ -17910,13 +17536,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17928,22 +17554,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17958,7 +17574,7 @@ and use the import button to load it - + Reply to Pulse @@ -17973,24 +17589,26 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - + ... + … @@ -18001,7 +17619,7 @@ and use the import button to load it ŠžŠ±Ń€Š°Š·Š°Ń† - + @@ -18020,7 +17638,7 @@ and use the import button to load it PulseReply - + icn @@ -18030,7 +17648,7 @@ and use the import button to load it - + REPLY @@ -18057,7 +17675,7 @@ and use the import button to load it - + FOLLOW @@ -18067,7 +17685,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18087,7 +17705,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18203,7 +17821,7 @@ and use the import button to load it - + FOLLOW @@ -18211,42 +17829,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18278,7 +17891,7 @@ and use the import button to load it - + FOLLOW @@ -18286,8 +17899,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18555,12 +18168,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18591,7 +18204,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18625,7 +18238,7 @@ The error reported is:" - + Multiple instances @@ -18644,26 +18257,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18743,7 +18336,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18753,7 +18346,7 @@ Reported error is: - + enabled @@ -18763,7 +18356,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18779,7 +18372,7 @@ Reported error is: - + %1 seconds ago @@ -18846,7 +18439,7 @@ Security: no anonymous IDs - + Join chat room @@ -18874,7 +18467,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19054,29 +18647,13 @@ Security: no anonymous IDs Ban list - - - Name - ŠŠ°Š·ŠøŠ² - - Node - - - - - Address - - - - - Status - + NXS @@ -19319,18 +18896,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19470,7 +19035,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19637,7 +19202,7 @@ p, li { white-space: pre-wrap; } ŠžŠ±Ń€Š°Š·Š°Ń† - + The loading of embedded images is blocked. @@ -19650,7 +19215,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19823,22 +19388,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19846,12 +19401,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20539,7 +20094,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name ŠŠ°Š·ŠøŠ² @@ -20660,7 +20215,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name ŠŠ°Š·ŠøŠ² @@ -20680,7 +20235,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20736,7 +20291,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20750,6 +20305,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20763,11 +20323,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20790,17 +20345,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20824,9 +20374,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20847,7 +20395,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20908,7 +20456,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20929,7 +20477,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20959,7 +20507,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20977,7 +20525,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20994,12 +20542,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21060,7 +20608,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21075,7 +20623,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21175,23 +20723,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download - + Copy RetroShare Link - + Send RetroShare Link @@ -21201,7 +20749,7 @@ prevents the message to be forwarded to your friends. - + Download Notice @@ -21238,7 +20786,7 @@ prevents the message to be forwarded to your friends. - + Folder @@ -21249,17 +20797,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21279,7 +20827,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21287,7 +20835,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21303,22 +20851,22 @@ prevents the message to be forwarded to your friends. Уклони ŃŃ‚Š°Š²ŠŗŃƒ - + IP address: - + Peer ID: - + Location: ŠœŠµŃŃ‚Š¾: - + Peer Name: @@ -21335,7 +20883,7 @@ prevents the message to be forwarded to your friends. Š”Š°ŠŗŃ€ŠøŃ˜ - + but reported: @@ -21360,8 +20908,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21369,7 +20917,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21400,7 +20948,7 @@ prevents the message to be forwarded to your friends. - + Expand ŠŸŃ€Š¾ŃˆŠøŃ€Šø @@ -21445,12 +20993,12 @@ prevents the message to be forwarded to your friends. Š”Ń‚Š°Ń‚ŃƒŃ: - + Write Message - + Connect Attempt @@ -21470,12 +21018,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown @@ -21485,17 +21038,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide Š”Š°ŠŗŃ€ŠøŃ˜ @@ -21505,7 +21048,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21515,12 +21058,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21579,12 +21122,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21605,22 +21148,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21633,16 +21176,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21652,46 +21200,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21701,7 +21226,7 @@ List of found external IP: - + I2P Address @@ -21726,95 +21251,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21829,7 +21296,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21839,7 +21370,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21851,12 +21397,12 @@ 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> @@ -21866,7 +21412,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21881,23 +21427,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21908,7 +21454,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21918,7 +21474,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21928,7 +21489,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21968,7 +21539,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21983,7 +21554,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22019,32 +21595,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22099,7 +21650,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22124,7 +21675,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22136,7 +21687,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22159,7 +21710,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status @@ -22219,28 +21770,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22256,18 +21796,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22302,12 +21842,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22330,22 +21870,22 @@ 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> @@ -22380,7 +21920,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22390,12 +21930,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22475,7 +22015,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22485,12 +22025,12 @@ 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. @@ -22509,7 +22049,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22529,17 +22069,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel - + Add a Share Directory @@ -22549,7 +22089,7 @@ Select the Friends with which you want to Share your Channel. Уклони - + Apply and close @@ -22640,7 +22180,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. @@ -22648,7 +22188,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22699,16 +22239,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22718,7 +22253,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -22733,7 +22268,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22749,7 +22284,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22774,7 +22309,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22917,12 +22452,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22946,7 +22481,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23285,7 +22820,7 @@ This choice can be reverted in settings. - + Message: @@ -23522,7 +23057,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23558,15 +23093,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23576,13 +23108,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23592,57 +23129,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23650,7 +23142,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23660,7 +23152,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23671,12 +23163,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23704,7 +23195,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23715,7 +23206,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23725,27 +23216,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23830,7 +23316,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23839,12 +23325,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23869,12 +23350,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23939,7 +23415,12 @@ 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> @@ -23949,17 +23430,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23987,7 +23458,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24015,19 +23486,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name ŠŠ°Š·ŠøŠ² @@ -24234,12 +23705,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> - - - - + Move in Queue... @@ -24264,7 +23730,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24285,7 +23751,7 @@ p, li { white-space: pre-wrap; } Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ - + @@ -24318,17 +23784,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24343,7 +23799,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24470,18 +23926,23 @@ 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> + + + + Columns - + File Transfers - + Path ŠŸŃƒŃ‚Š°ŃšŠ° @@ -24491,7 +23952,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24501,7 +23962,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24516,7 +23977,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24526,7 +23987,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24940,17 +24401,12 @@ p, li { white-space: pre-wrap; } ŠžŠ±Ń€Š°Š·Š°Ń† - + Enable Retroshare WEB Interface - - Status: - Š”Ń‚Š°Ń‚ŃƒŃ: - - - + Web parameters @@ -24990,27 +24446,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25020,12 +24466,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25162,7 +24608,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25177,7 +24623,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25265,7 +24711,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25300,7 +24746,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25330,18 +24776,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status @@ -25362,7 +24804,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25445,7 +24887,16 @@ p, li { white-space: pre-wrap; } - + ... + … + + + + Refresh + + + + Settings @@ -25460,7 +24911,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25480,7 +24931,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25510,7 +24961,7 @@ p, li { white-space: pre-wrap; } - + Yourself @@ -25520,7 +24971,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Š ŠµŃ‚Ń€Š¾ŃˆŠµŃ€ @@ -25583,42 +25034,35 @@ p, li { white-space: pre-wrap; } ŠžŠ±Ń€Š°Š·Š°Ń† - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Уклони - - - Location: ŠœŠµŃŃ‚Š¾: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25663,41 +25107,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) @@ -25775,7 +25189,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25812,7 +25226,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_sv.ts b/retroshare-gui/src/lang/retroshare_sv.ts index 754e79479..3bdd3ebc7 100644 --- a/retroshare-gui/src/lang/retroshare_sv.ts +++ b/retroshare-gui/src/lang/retroshare_sv.ts @@ -84,6 +84,13 @@ + + AddCommentDialog + + Add Comment + LƤgg till kommentar + + AddFileAssociationDialog @@ -121,12 +128,12 @@ RetroShare: Avancerad sƶkning - + Search Criteria Sƶkkriterium - + Add a further search criterion. LƤgg till ytterligare sƶkkriterium. @@ -136,7 +143,7 @@ ƅterstƤll sƶkkriterium. - + Cancels the search. Avbryter sƶkningen. @@ -156,6 +163,177 @@ Sƶk + + AlbumCreateDialog + + Create Album + Skapa album + + + Album Name: + Albumnamn: + + + Category: + Kategori: + + + Animals + Djur + + + Family + Familj + + + Friends + Kontakter + + + Flowers + Blommor + + + Holiday + Semester + + + Landscapes + Landskap + + + Pets + Husdjur + + + Portraits + PortrƤtt + + + Travel + Resor + + + Work + Arbete + + + Random + Blandat + + + Caption: + Taget: + + + Where: + Plats: + + + Photographer: + Fotograf: + + + Description: + Beskrivning: + + + Share Options + Fildelningsalternativ + + + Policy: + Policy: + + + Quality: + Kvallitet: + + + Comments: + Kommentarer: + + + Identity: + Identitet: + + + Public + Publik + + + Restricted + BegrƤnsad + + + Resize Images (< 1Mb) + StorleksƤndra bilder (< 1Mb) + + + Resize Images (< 10Mb) + StorleksƤndra bilder (< 10Mb) + + + Send Original Images + Skicka originalbilder + + + No Comments Allowed + Inga kommentarer tillĆ„tna + + + Authenticated Comments + Autentiserade kommentarer + + + Any Comments Allowed + Alla kommentarer tillĆ„tna + + + Publish with Identity + Publicera med identitet + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; 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;"> Dra &amp; slƤpp fƶr att infoga bilder. Klicka pĆ„ en bild fƶr att redigera.</span></p></body></html> + + + Back + Tillbaka + + + Add Photos + LƤgg till bilder + + + Publish Album + Publicera album + + + Untitle Album + Namnlƶst album + + + Say something about this album... + SƤg nĆ„got om detta album... + + + Where were these taken? + Var togs dessa bilder? + + + Load Album Thumbnail + LƤs in albumminiatyr + + AlbumDialog @@ -164,11 +342,19 @@ Album Album + + Album Thumbnail + Albumminiatyr + TextLabel Textetikett + + Summary + Sammanfattning + Album Title: @@ -184,6 +370,34 @@ Caption Taget + + Where: + Plats: + + + When + Tidpunkt + + + Description: + Beskrivning: + + + Share Options + Fildelningsalternativ + + + Comments + Kommentarer + + + Publish Identity + Publicera identitet + + + Visibility + Synlighet + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -552,7 +766,7 @@ 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. Varning! De hƤr tjƤnsterna Ƥr experimentella. HjƤlp oss gƤrna att testa dem. @@ -568,6 +782,14 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Circles Cirklar + + GxsForums + GxsForum + + + GxsChannels + Gxs-kanaler + The Wire @@ -579,23 +801,10 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Bilder - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -632,13 +841,17 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Browse... + + Add Avatar + LƤgg till profilbild + Remove Ta bort - + Set your Avatar picture LƤgg till din probild @@ -657,6 +870,10 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + LƤs in profilbild + AvatarWidget @@ -725,10 +942,22 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot ƅterstƤll - + Receive Rate + Mottagningshastighet + + + Send Rate + SƤndningshastighet + + + Always on Top Alltid ƶverst + + Style + Stil + Changes the transparency of the Bandwidth Graph @@ -744,11 +973,23 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot % Opaque % Opak + + Save + Spara + + + Cancel + Avbryt + Since: Sedan: + + Hide Settings + Dƶlj instƤllningar + BandwidthStatsWidget @@ -821,7 +1062,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot BoardPostDisplayWidgetBase - + Comment Kommentar @@ -851,12 +1092,12 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Kopiera RetroShare-lƤnk - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -864,7 +1105,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot BoardPostDisplayWidget_card - + Vote up @@ -884,7 +1125,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot \/ - + Posted by @@ -922,7 +1163,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot BoardPostDisplayWidget_compact - + Vote up @@ -942,7 +1183,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot \/ - + Click to view picture @@ -972,7 +1213,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Dela - + Toggle Message Read Status VƤxla meddelandestatus @@ -982,7 +1223,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Nytt - + TextLabel @@ -990,12 +1231,12 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot BoardsCommentsItem - + I like this Jag gillar detta - + 0 0 @@ -1015,18 +1256,18 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Profilbild - + New Comment - + Copy RetroShare Link Kopiera RetroShare-lƤnk - + Expand @@ -1041,12 +1282,12 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot Ta bort objektet - + Name Namn - + Comm value @@ -1215,17 +1456,17 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot ChannelPage - + Channels Kanaler - + Tabs Flikar - + General AllmƤnt @@ -1235,17 +1476,11 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot - - Downloads - Nerladdningar + Load posts in background (Thread) + Ladda inlƤgg i bakgrunden (TrĆ„d) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Ɩppna varje kanal i en ny flik @@ -1253,7 +1488,7 @@ Kom bara ihĆ„g... all data hƤr, *KOMMER* att fƶrloras nƤr vi uppgraderar prot ChannelPostDelegate - + files @@ -1276,7 +1511,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Jag gillar detta @@ -1301,18 +1536,18 @@ into the image, so as to Profilbild - + New Comment - + Copy RetroShare Link Kopiera RetroShare-lƤnk - + Expand @@ -1327,7 +1562,7 @@ into the image, so as to Ta bort objektet - + Name Namn @@ -1337,7 +1572,17 @@ into the image, so as to - + + Comment + Kommentar + + + + Comments + + + + Hide Dƶlj @@ -1345,7 +1590,7 @@ into the image, so as to ChatLobbyDialog - + Name Namn @@ -1536,7 +1781,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Visa chattlobby @@ -1548,6 +1793,22 @@ into the image, so as to Chats + + You have %1 new messages + Du har %1 nya meddelanden + + + You have %1 new message + Du har %1 nytt meddelande + + + %1 new messages + %1 nya meddelanden + + + %1 new message + %1 nytt meddelande + You have %1 mentions @@ -1569,14 +1830,13 @@ into the image, so as to - - + Unknown Lobby OkƤnd lobby - - + + Remove All Ta bort alla @@ -1584,13 +1844,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Namn - + Count Antal @@ -1600,7 +1860,29 @@ into the image, so as to Ƅmne - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1610,7 +1892,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1667,12 +1949,12 @@ 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: @@ -1682,31 +1964,31 @@ Double click a chat room to enter and chat. - + Create chat lobby + Skapa ny chattlobby + + + [No topic provided] [Ƅmne saknas] - - + Selected lobby info + Vald lobbyinformation + + + Private Privat - - - + Public Publik - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1716,25 +1998,42 @@ Double click a chat room to enter and chat. Avsluta Prenumeration - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Prenumerera - + Search Chat lobbies Sƶk Chat Lobbyn - + Search Name Sƶk namn - + Subscribed + Prenumererat + + + Columns Kolumner + + Yes + Ja + + + No + Nej + Chat rooms @@ -1746,47 +2045,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: Ƅmne: - + Type: Typ: - + Security: SƤkerhet: - + Peers: AnvƤndare: - - - - - - + + + + + + TextLabel Textetikett @@ -1801,24 +2100,13 @@ Double click a chat room to enter and chat. Inga anonyma ID - + Show Visa - - Private Subscribed - - - - - - Public Subscribed - - - - + column kolumn @@ -1832,7 +2120,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item Ta bort objektet @@ -1877,7 +2165,7 @@ Double click a chat room to enter and chat. ChatPage - + General AllmƤnt @@ -1892,7 +2180,19 @@ Double click a chat room to enter and chat. - + Chat Settings + ChattinstƤllningar + + + Enable Emoticons Private Chat + Aktivera uttryckssymboler i privat chatt + + + Enable Emoticons Group Chat + Aktivera uttryckssymboler i gruppchatt + + + Enable custom fonts Aktivera anpassat teckensnitt @@ -1912,7 +2212,7 @@ Double click a chat room to enter and chat. Aktivera kursiv stil - + General settings @@ -1937,7 +2237,11 @@ Double click a chat room to enter and chat. Ladda inbƤddade bilder - + Chat Lobby + Chattlobby + + + Blink tab icon Blinka med flikikon @@ -1946,6 +2250,10 @@ Double click a chat room to enter and chat. Do not send typing notifications + + Private Chat + Privatchatt + Open Window for new chat @@ -1967,7 +2275,11 @@ Double click a chat room to enter and chat. Blinka med fƶnster-/flikikon - + Chat Font + Chatteckensnitt + + + Change Chat Font Ƅndra teckensnitt @@ -1977,10 +2289,14 @@ Double click a chat room to enter and chat. Teckensnitt: - + History Historik + + Style + Stil + @@ -1995,13 +2311,17 @@ Double click a chat room to enter and chat. Variant: + + Group chat + Gruppchatt + Private chat Privatchatt - + Choose your default font for Chat. @@ -2065,28 +2385,22 @@ Double click a chat room to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> + + Chatlobbies + Chatlobbyn + Enabled: Aktiverad: - + Search Sƶk - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2096,17 +2410,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2203,7 +2507,11 @@ Double click a chat room to enter and chat. Maximalt antal dagar att spara (0 = behĆ„ll allt): - + Search by default + Sƶk som standard + + + Case sensitive SkiftlƤgeskƤnslig @@ -2309,7 +2617,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat Visa chatt @@ -2345,7 +2653,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close StƤng @@ -2380,12 +2688,12 @@ Double click a chat room to enter and chat. Kursiv - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2465,6 +2773,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2502,7 +2815,7 @@ Double click a chat room to enter and chat. - + is typing... skriver... @@ -2524,7 +2837,7 @@ after HTML conversion. - + Do you really want to physically delete the history? Vill du verkligen ta bort historiken? @@ -2574,7 +2887,7 @@ after HTML conversion. Ƥr upptagen och kanske inte svarar. - + Find Case Sensitively @@ -2596,7 +2909,7 @@ after HTML conversion. Sluta inte att fƤrga efter X hittade (anvƤnder mer CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2611,12 +2924,16 @@ after HTML conversion. - + (Status) (Status) - + Set text font & color + Ange teckensnitt & fƤrg + + + Attach a File Bifoga en fil @@ -2632,12 +2949,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2648,12 +2965,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2673,7 +2990,7 @@ Double click on it to add his name on text writer. Skriv ett meddelande hƤr - + Don't stop to color after @@ -2699,7 +3016,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: Visningsdetaljer: @@ -2721,7 +3038,7 @@ Double click on it to add his name on text writer. - + Personal Circles Privata cirklar @@ -2747,7 +3064,7 @@ Double click on it to add his name on text writer. - + Friends Kontakter @@ -2807,7 +3124,7 @@ Double click on it to add his name on text writer. VƤnners vƤnner - + External Circles (Admin) Externa Cirklar (Administratƶr) @@ -2823,7 +3140,7 @@ Double click on it to add his name on text writer. - + Circles Cirklar @@ -2875,45 +3192,45 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. Fel: Kan inte hƤmta anvƤndaruppgifter. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2923,7 +3240,7 @@ Double click on it to add his name on text writer. Kryptering - + Not connected Inte ansluten @@ -3005,17 +3322,12 @@ Double click on it to add his name on text writer. ingen - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3035,7 +3347,7 @@ Double click on it to add his name on text writer. - + with med @@ -3052,16 +3364,104 @@ Double click on it to add his name on text writer. Connect Friend Wizard Anslut kontakt ((Steg fƶr steg-guide)) + + Add a new Friend + LƤgg till en ny kontakt + + + &You get a certificate file from your friend + &Du fĆ„r en certifikatfil frĆ„n en kontakt + + + &Make friend with selected friends of my friends + &Skapa kontakt med en utvald kontakt till en befintlig kontakt + + + Include signatures + Inkludera signaturer + + + Copy your Cert to Clipboard + Kopiera certifikatet till Urklipp + + + Save your Cert into a File + Spara certifikatet till fil + + + Run Email program + Starta e-postprogrammet + Open Cert of your friend from File + + Certificate files + Certifikatfiler + + + Use PGP certificates saved in files. + AnvƤnd PGP-certifikat som sparats i filer. + + + Import friend's certificate... + Importera en kontakts certifikat... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Du behƶver generera en certifikatfil och ge den till din kontakt. Du kan ocksĆ„ anvƤnda en befintlig certifikatfil. + + + Export my certificate... + Exportera mitt certifikat... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Dra och slƤpp din kontakts certifikat i det hƤr fƶnstret, eller ange sƶkvƤg i nedanstĆ„ende textfƤlt + + + Browse + BlƤddra + + + Friends of friends + Kontakter till kontakter + + + Select now who you want to make friends with. + VƤlj vem du vill skapa kontakt med + + + Show me: + Visa mig: + + + Make friend with these peers + Skapa kontakt med dessa anvƤndare + RetroShare ID RetroShare-ID + + Use RetroShare ID for adding a Friend which is available in your network. + AnvƤnd RetroShare-ID fƶr att lƤgga till en kontakt som Ƥr tillgƤnglig i ditt nƤtverk. + + + Add Friends RetroShare ID... + LƤgg till kontaktens RetroShare-ID... + + + Paste Friends RetroShare ID in the box below + Klistra in kontaktens RetroShare-ID i nedanstĆ„ende indataruta + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + Ange kontaktens RetroShare-ID. Ex. AnvƤndare@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3103,7 +3503,27 @@ Double click on it to add his name on text writer. E-post - + Invite Friends by Email + Bjud in kontakter via e-post + + + Enter your friends' email addresses (separate each one with a semicolon) + Ange kontaktens e-postadresser (separera med semikolon) + + + Your friends' email addresses: + Kontaktens e-postadresser: + + + Enter Friends Email addresses + Ange kontaktens e-postadresser + + + Subject: + Ƅmne: + + + @@ -3119,32 +3539,40 @@ Double click on it to add his name on text writer. Fakta om begƤran - + Peer details AnvƤndarinformation - + Name: Namn: + + Email: + E-post: + + + Node: + Nod: + Location: Plats: - + Options Alternativ - + <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: LƤgg till kontakt till grupp: @@ -3154,7 +3582,7 @@ Double click on it to add his name on text writer. Autentisera kontakt (Signera PGP-nyckel) - + Please paste below your friend's Retroshare ID @@ -3179,22 +3607,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with LƤgg till en kontakt att ansluta till - + To accept the Friend Request, click the Finish button. + Klicka pĆ„ 'Slutfƶr' fƶr att acceptera denna kontaktfƶrfrĆ„gan + + + Sorry, some error appeared NĆ„got fel uppstod @@ -3214,27 +3636,32 @@ Double click on it to add his name on text writer. Fakta om din kontakt: - + Key validity: Nyckelvaliditet: - + Profile ID: - + + Signers + Signerad av: + + + <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. Denna anvƤndare finns redan pĆ„ din kontaktlista. Att lƤgga till den kanske bara anger IP-adress. - + To accept the Friend Request, click the Accept button. @@ -3280,17 +3707,45 @@ Double click on it to add his name on text writer. - + Certificate Load Failed CertifikatinlƤsning misslyckades - + Cannot get peer details of PGP key %1 + Kan inte hƤmta anvƤndarinformation fƶr PGP-nyckel %1 + + + Any peer I've not signed + Vilken anvƤndare som helst, som jag inte signerat + + + Friends of my friends who already trust me + Kontakter till mina kontakter som redan litar pĆ„ mig + + + Signed peers showing as denied + Signerade anvƤndare som visas som avvisade + + + Peer name + AnvƤndarnamn + + + Also signed by + OcksĆ„ signerad av + + + Peer id + AnvƤndar-ID + + + Not a valid Retroshare certificate! - + RetroShare Invitation RetroShare-inbjudan @@ -3310,12 +3765,12 @@ 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? - + @@ -3323,7 +3778,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3363,7 +3818,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Du har en kontaktfƶrfrĆ„gan frĆ„n - + Profile password needed. @@ -3388,7 +3843,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3398,7 +3853,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + CertifikatinlƤsning misslyckades! %1 kan inte hittas + + + This Peer %1 is not available in your Network + %1 finns inte tillgƤnglig i ditt nƤtverk + + + Use new certificate format (safer, more robust) + AnvƤnd nytt certifikatformat (sƤkrare, mer robust) + + + Use old (backward compatible) certificate format + AnvƤnd gammalt (bakĆ„tkompatibelt) certifikatformat + + + Remove signatures + Ta bort signaturer + + + RetroShare Invite + RetroShare-inbjudan + + + Connect Friend Help + Anslut kontakt HjƤlp + + + You can copy this text and send it to your friend via email or some other way + Du kan kopiera denna text och skicka den till din kontakt via e-post eller pĆ„ nĆ„got annat sƤtt. + + + 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 (*) @@ -3437,7 +3932,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** Ingen *** - + Use as direct source, when available + AnvƤnd som direkt kƤlla, om tillgƤnglig + + + IP-Addr: @@ -3447,7 +3946,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.IP-adress - + Show Advanced options @@ -3466,13 +3965,41 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + Rekommendera mĆ„nga anvƤndare Ć„t varandra + + + Friend Recommendations + Kontaktrekommendationer + + + 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. + Add key to keyring LƤgg till nyckel till nyckelring - + This key is already in your keyring Den hƤr nyckeln finns redan i din nyckelring @@ -3485,7 +4012,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Certifikatet har fel versionsnummer. Kom ihĆ„g att v0.6 och v0.5-nƤtverk inte Ƥr kompatibla med varandra. @@ -3520,7 +4047,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3530,7 +4057,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3595,7 +4127,7 @@ even if you don't make friends. - + UDP Setup UDP InstƤllning @@ -3623,7 +4155,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant Anslutningsassistent @@ -3633,20 +4165,17 @@ p, li { white-space: pre-wrap; } Ogiltigt AnvƤndar-ID - - + Unknown State OkƤnt tillstĆ„nd - - + Offline FrĆ„nkopplad - - + Behind Symmetric NAT Bakom symmetrisk NAT @@ -3656,14 +4185,12 @@ p, li { white-space: pre-wrap; } Bakom NAT & Ingen DHT - - + NET Restart NET ƅterstart - - + Behind NAT Bakom NAT @@ -3673,8 +4200,7 @@ p, li { white-space: pre-wrap; } Ingen DHT - - + NET STATE GOOD! NET TILLSTƅND BRA! @@ -3699,7 +4225,7 @@ p, li { white-space: pre-wrap; } Sƶker RS-anvƤndare - + Lookup requires DHT Sƶkning krƤver DHT @@ -3991,7 +4517,7 @@ p, li { white-space: pre-wrap; } Fƶrsƶk igen genom att importera en fullstƤndig Nyckel - + @@ -3999,8 +4525,7 @@ p, li { white-space: pre-wrap; } N/A - - + UNVERIFIABLE FORWARD! OVERIFIERBAR VIDAREBEFORDRING! @@ -4010,7 +4535,7 @@ p, li { white-space: pre-wrap; } OVERIFIERBAR VIDAREBEFORDRING & INGEN DHT - + Searching Sƶker @@ -4046,12 +4571,12 @@ p, li { white-space: pre-wrap; } Cirkeldetaljer - + Name Namn - + <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> @@ -4071,7 +4596,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4091,18 +4616,18 @@ p, li { white-space: pre-wrap; } Filter - + Cancel Avbryt - + Nickname AnvƤndarnamn - + Invited Members @@ -4117,7 +4642,15 @@ p, li { white-space: pre-wrap; } - + ID + ID + + + Type + Typ + + + Name: Namn: @@ -4157,19 +4690,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - + Please set a name for your Circle Ange ett namn fƶr din cirkel - + No Restriction Circle Selected Ingen begrƤnsad cirkel vald @@ -4179,24 +4712,12 @@ p, li { white-space: pre-wrap; } Inga cirkel begrƤnsningar valda - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add LƤgg till @@ -4206,7 +4727,7 @@ p, li { white-space: pre-wrap; } Ta bort - + Search Sƶk @@ -4221,6 +4742,10 @@ p, li { white-space: pre-wrap; } Signed Signerad + + Signed by known nodes + Signerad av kƤnda noder + Edit Circle @@ -4237,6 +4762,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP-identitet + + Anon Id + Anonymt Id + Circle name @@ -4259,13 +4788,17 @@ p, li { white-space: pre-wrap; } - + Create Skapa - + PGP Linked Id + PGP-lƤnkat ID + + + Add Member @@ -4284,7 +4817,7 @@ p, li { white-space: pre-wrap; } Skapa en ny grupp - + Group Name: Gruppnamn: @@ -4319,7 +4852,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Nytt kanalinlƤgg @@ -4329,7 +4862,7 @@ p, li { white-space: pre-wrap; } KanalinlƤgg - + Post @@ -4390,11 +4923,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> AnvƤnd Dra och slƤpp / LƤgg till fil, fƶr att hash-berƤkna nya filer.</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;"> Kopiera/Klistra in RetroShare-lƤnkar frĆ„n dina utdelade mappar</span></p></body></html> + + Add File to Attach + Bifofoga fil + Add Channel Thumbnail LƤgg till kanalminiatyr + + Message + Meddelande + + + Subject : + Ƅmne: + @@ -4480,17 +5025,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4509,18 +5054,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Filen Ƥr redan tillagd och hash-berƤknad + Please add a Subject Ange ett Ƥmne - - Cannot publish post - - - - + Load thumbnail picture LƤs in miniatyrbild @@ -4535,12 +5079,18 @@ p, li { white-space: pre-wrap; } Dƶlj - + + Generate mass data Generera massdata - + + Do you really want to generate %1 messages ? + Vill du verkligen generera %1 meddelanden? + + + You are about to add files you're not actually sharing. Do you still want this to happen? Du Ƥr pĆ„ vƤg att lƤgga till filer som du inte delar. Vill du verkligen fortsƤtta? @@ -4574,7 +5124,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Posta foruminlƤgg @@ -4583,6 +5133,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Ƅmne + Attach File @@ -4603,8 +5157,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4623,7 +5177,7 @@ p, li { white-space: pre-wrap; } Du kan bifoga filer via Dra & slƤpp i det hƤr fƶnstret - + Post @@ -4653,17 +5207,17 @@ p, li { white-space: pre-wrap; } - + No Forum Inga forum - + In Reply to Som svar pĆ„ - + Title @@ -4716,7 +5270,7 @@ Do you want to discard this message? LƤs in en bildfil - + No compatible ID for this forum @@ -4726,8 +5280,8 @@ Do you want to discard this message? - - + + Generate mass data Generera massdata @@ -4736,6 +5290,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? Vill du verkligen generera %1 meddelanden? + + Send + Skicka + Post as @@ -4750,7 +5308,23 @@ Do you want to discard this message? CreateLobbyDialog - + Create Chat Lobby + Skapa ny chattlobby + + + 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. + En chattlobby Ƥr en decentraliserad och anonym chattgrupp. Samtliga deltagare tar emot alla meddelanden. NƤr lobbyn Ƥr skapad kan du bjuda in andra kontakter via kontakt-fliken + + + Lobby name: + Lobbynamn: + + + Lobby topic: + LobbyƤmne: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4785,7 +5359,7 @@ Do you want to discard this message? - + Create Skapa @@ -4795,7 +5369,7 @@ Do you want to discard this message? Avbryt - + require PGP-signed identities @@ -4810,7 +5384,11 @@ Do you want to discard this message? VƤlj de kontakter du vill gruppchatta med. - + Invited friends + Inbjudna kontakter + + + Create Chat Room @@ -4831,7 +5409,7 @@ Do you want to discard this message? Kontakter: - + Identity to use: Identitet att anvƤnda: @@ -4839,17 +5417,17 @@ Do you want to discard this message? CryptoPage - + Public Information Ɩppen information - + Name: Namn: - + Location: Plats: @@ -4859,12 +5437,12 @@ Do you want to discard this message? Plats-ID: - + Software Version: Programversion: - + Online since: Uppkopplad sedan: @@ -4884,7 +5462,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4894,7 +5477,7 @@ Do you want to discard this message? - + Other Information Annan information @@ -4904,12 +5487,17 @@ Do you want to discard this message? - + Profile - + + Certificate + Certifikat + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4919,7 +5507,11 @@ Do you want to discard this message? Inkludera signaturer - + Save Key into a file + Spara nyckel som fil + + + Export Identity Exportera identitet @@ -4993,33 +5585,33 @@ och dƤr lƤsa in den med importfunktionen. - + TextLabel Textetikett - + PGP fingerprint: PGP fingeravtryck: - + + Node information + Nodinformation + + + PGP Id : PGP Id : - + Friend nodes: VƤnnoder: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5058,6 +5650,14 @@ och dƤr lƤsa in den med importfunktionen. Node Nod + + Create new node... + Skapa ny node... + + + show statistics window + visa statistikfƶnster + DHTGraphSource @@ -5109,7 +5709,7 @@ och dƤr lƤsa in den med importfunktionen. DLListDelegate - + B B @@ -5777,7 +6377,7 @@ och dƤr lƤsa in den med importfunktionen. DownloadToaster - + Start file Starta @@ -5785,38 +6385,38 @@ och dƤr lƤsa in den med importfunktionen. ExprParamElement - + - + to till - + ignore case Ignorera skiftlƤge - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5824,12 +6424,12 @@ och dƤr lƤsa in den med importfunktionen. ExpressionWidget - + Expression Widget Uttrycks-widget - + Delete this expression Ta bort det hƤr uttrycket @@ -5991,7 +6591,7 @@ och dƤr lƤsa in den med importfunktionen. FilesDefs - + Picture Bild @@ -6001,7 +6601,7 @@ och dƤr lƤsa in den med importfunktionen. Video - + Audio Audio @@ -6061,21 +6661,11 @@ och dƤr lƤsa in den med importfunktionen. C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Kontakters mappar @@ -6197,7 +6787,7 @@ och dƤr lƤsa in den med importfunktionen. - + ID ID @@ -6239,7 +6829,7 @@ och dƤr lƤsa in den med importfunktionen. Visa grupper - + Group Grupp @@ -6275,7 +6865,7 @@ och dƤr lƤsa in den med importfunktionen. LƤgg till i grupp - + Search Sƶk @@ -6291,7 +6881,7 @@ och dƤr lƤsa in den med importfunktionen. Sortera efter stadie - + Profile details @@ -6528,7 +7118,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request BekrƤfta kontaktfƶrfrĆ„gan @@ -6545,6 +7135,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + Sƶk: + Sort by state @@ -6566,7 +7160,7 @@ at least one peer was not added to a group Sƶk kontakter - + Mark all Markera alla @@ -6577,132 +7171,16 @@ at least one peer was not added to a group Markera ingen - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Namn - - - - Node ID - - - - - Address - - - - - Status - Status - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Skapa kontakt - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message Redigera statusmeddelande - - + + Broadcast SƤndning @@ -6785,38 +7263,33 @@ Also check your ports! ƅterstƤll standardteckensnitt - + Keyring Nyckelring - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare utsƤndningschat: meddelanden skickas till alla anslutna vƤnner. - - + + Network NƤtverk - - Friend Server - - - - + Network graph NƤtverksgraf - - <h1><img width="%1" 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> - - - - + Set your status message here. Ange ditt statusmeddelande hƤr. @@ -6834,17 +7307,7 @@ Also check your ports! Lƶsenord - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Samtliga indatafƤlt krƤver minst 3 tecken @@ -6854,12 +7317,17 @@ Also check your ports! Lƶsenorden stƤmmer inte ƶverens - + Port Port - + + Use BOB + + + + This password is for PGP Detta lƶsenord Ƥr fƶr PGP @@ -6880,38 +7348,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6931,12 +7399,12 @@ Also check your ports! - + <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 @@ -6946,43 +7414,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 + Avancerade alternativ + + + hidden address gƶmd adress - + 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> @@ -7026,13 +7493,13 @@ and use the import button to load it - + Import profile Importera profil - + Create new profile and new Retroshare node @@ -7042,7 +7509,7 @@ and use the import button to load it - + Tor/I2P address @@ -7077,7 +7544,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7087,7 +7554,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7097,7 +7569,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7323,13 +7800,36 @@ and use the import button to load it Kom igĆ„ng - + Invite Friends Bjud in kontakter - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">RetroShare Ƥr ingentig utan dina kontakter. Klicka pĆ„ knappen fƶr att starta processen.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Skicka en inbjudan med ditt certifikat, via e-post, till dina vƤnner.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Tillse att du fĆ„r en inbjudan i retur... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Du kan endast ansluta till kontakter om ni bĆ„da har lagt till varandra.</span></p></body></html> + + + Add Your Friends to RetroShare LƤgg till dina kontakter i RetroShare @@ -7339,103 +7839,89 @@ and use the import button to load it LƤgg till kontakter - - Connect To Friends - Anslut till kontakter - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Paste your Friends' &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Avancerat: Ɩppna brandvƤggsport - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + Anslut till kontakter + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 + Avancerat: Ɩppna brandvƤggsport + + + Further Help and Support Mer hjƤlp och support - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website RetroShare Hemsida @@ -7460,7 +7946,7 @@ p, li { white-space: pre-wrap; } ƅterkoppling (e-post) - + RetroShare Invitation RetroShare Inbjudan @@ -7510,12 +7996,12 @@ p, li { white-space: pre-wrap; } RetroShare Ć„terkoppling - + RetroShare Support RetroShare support - + It has many features, including built-in chat, messaging, @@ -7639,7 +8125,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Visa gruppchatt @@ -7647,7 +8133,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7817,7 +8303,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Titel @@ -7830,12 +8316,12 @@ p, li { white-space: pre-wrap; } - + Description Beskrivning - + Number of Unread message @@ -7860,7 +8346,19 @@ p, li { white-space: pre-wrap; } - + Sort by Name + Sortera efter namn + + + Sort by Popularity + Sortera efter popularitet + + + Sort by Last Post + Sortera efter senaste inlƤgg + + + You are admin (modify names and description using Edit menu) @@ -7875,14 +8373,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post Senaste inlƤgget - + Name Namn @@ -7893,13 +8391,17 @@ p, li { white-space: pre-wrap; } Popularitet - + Never - + Display + Visa + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7912,7 +8414,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and och @@ -8048,7 +8550,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanaler @@ -8059,22 +8561,22 @@ p, li { white-space: pre-wrap; } Skapa kanal - + Enable Auto-Download Aktivera automatisk nedladdning - + My Channels Mina kanaler - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Kanalabonnemang @@ -8094,12 +8596,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download Inaktivera automatisk nedladdning - + Set download directory @@ -8134,22 +8636,22 @@ p, li { white-space: pre-wrap; } - + Play Spela upp - + Open folder Ɩppna mapp - + Open file - + Error Fel @@ -8169,17 +8671,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? Vill du verkligen avbryta och radera filen? - + Can't open folder Kan inte ƶppna mapp - + Play File Spela upp fil @@ -8189,10 +8691,33 @@ p, li { white-space: pre-wrap; } %1 finns inte i den mappen. + + GxsChannelFilesWidget + + Form + FormulƤr + + + Filename + Filname + + + Size + Storlek + + + Title + Rubrik + + + Status + Status + + GxsChannelGroupDialog - + Create New Channel Skapa ny kanal @@ -8230,19 +8755,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + Abonnera pĆ„ kanal @@ -8256,7 +8771,7 @@ p, li { white-space: pre-wrap; } - + Expand Visa @@ -8271,7 +8786,7 @@ p, li { white-space: pre-wrap; } Kanalbeskrivning - + Loading LƤser in @@ -8286,9 +8801,8 @@ p, li { white-space: pre-wrap; } - - Never - + New Channel + Ny kanal @@ -8299,7 +8813,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8320,7 +8834,7 @@ p, li { white-space: pre-wrap; } - + Play Spela upp @@ -8376,24 +8890,28 @@ p, li { white-space: pre-wrap; } Files Filer + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Varning! Det Ƥr mindre Ƥn %1 timmar och %2 minuter kvar tills den hƤr filen raderas. ƖvervƤg att spara den. + Hide Dƶlj - + New Nytt - + 0 0 - - + + Comment Kommentar @@ -8408,17 +8926,21 @@ p, li { white-space: pre-wrap; } Jag gillar inte detta - + Loading + LƤser in + + + Loading... - + Comments - + Post @@ -8443,16 +8965,83 @@ p, li { white-space: pre-wrap; } Spela upp media + + GxsChannelPostsWidget + + Post to Channel + Posta i kanal + + + Loading + LƤser in + + + Search channels + Sƶk kanaler + + + Title + Rubrik + + + Search Title + Sƶk titel + + + Message + Meddelande + + + Search Message + Sƶk meddelanden + + + Filename + Filname + + + Search Filename + Sƶk filnamn + + + No Channel Selected + Inga kanaler markerade + + + Disable Auto-Download + Inaktivera automatisk nedladdning + + + Enable Auto-Download + Aktivera automatisk nedladdning + + + Show files + Visa filer + + + Feeds + Flƶden + + + Files + Filer + + + Description: + Beskrivning: + + GxsChannelPostsWidgetWithModel - + Post to Channel Posta i kanal - + Add new post @@ -8522,7 +9111,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8558,7 +9147,7 @@ p, li { white-space: pre-wrap; } - + Comments Kommentarer @@ -8573,13 +9162,13 @@ p, li { white-space: pre-wrap; } Flƶden - - + + Click to switch to list view - + Show unread posts only @@ -8594,7 +9183,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8609,7 +9198,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8669,22 +9258,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8759,13 +9338,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed Prenumererat @@ -8816,17 +9394,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8941,7 +9519,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container KommentarsbehĆ„llare @@ -8954,7 +9532,7 @@ p, li { white-space: pre-wrap; } FormulƤr - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8984,7 +9562,7 @@ p, li { white-space: pre-wrap; } Uppdatera - + Comment Kommentar @@ -9023,7 +9601,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Besvara kommentar @@ -9047,21 +9625,6 @@ p, li { white-space: pre-wrap; } Vote Down Rƶsta ned - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9071,7 +9634,7 @@ p, li { white-space: pre-wrap; } Kommentera - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -9100,10 +9663,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Kommentera</span></p></body></html> + + + Signed by + Signerad av + Reply to Comment @@ -9132,7 +9711,7 @@ before you can comment innan du kan kommentera - + It remains %1 characters after HTML conversion. @@ -9174,6 +9753,14 @@ innan du kan kommentera Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + LƤgg till forumadministratƶrer + + + Select Forum Admins + VƤlj forumadministratƶrer + Create @@ -9183,7 +9770,7 @@ innan du kan kommentera GxsForumGroupItem - + Subscribe to Forum Prenumerera pĆ„ forum @@ -9199,7 +9786,7 @@ innan du kan kommentera - + Expand Visa @@ -9219,9 +9806,8 @@ innan du kan kommentera - - TextLabel - + Loading + LƤser in @@ -9252,13 +9838,13 @@ innan du kan kommentera GxsForumMsgItem - - + + Subject: Ƅmne: - + Unsubscribe To Forum Avsluta prenumeration pĆ„ forum @@ -9269,7 +9855,7 @@ innan du kan kommentera - + Expand Visa @@ -9289,17 +9875,21 @@ innan du kan kommentera Svar svar pĆ„: - + Loading + LƤser in + + + Loading... - + Forum Feed - + Hide Dƶlj @@ -9312,66 +9902,63 @@ innan du kan kommentera FormulƤr - + Start new Thread for Selected Forum Starta ny trĆ„d i aktuellt forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Sƶk i forum - + Last Post + Senaste inlƤgget + + + New Thread Ny trĆ„d + + + Threaded View + TrĆ„dvy + + + + Flat View + Platt vy + - + Title Rubrik - - + + Date Datum - + Author Fƶrfattare - + + Save image + + + + Loading LƤser in - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9381,7 +9968,12 @@ innan du kan kommentera - + + Lastest post in thread + + + + Reply Message Svarsmeddelande @@ -9405,6 +9997,10 @@ innan du kan kommentera Download all files Ladda ner alla filer + + Next unread + NƤsta olƤsta + Search Title @@ -9421,23 +10017,31 @@ innan du kan kommentera Sƶk fƶrfattare - + Content + InnehĆ„ll + + + Search Content + SƶkinnehĆ„ll + + + No name Inget namn - - + + Reply Svara - + <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> - + Loading... @@ -9480,12 +10084,16 @@ innan du kan kommentera Kopiera RetroShare-lƤnk - + Hide Dƶlj - + Expand + Expandera + + + [unknown] @@ -9515,8 +10123,8 @@ innan du kan kommentera - - + + Distribution @@ -9530,6 +10138,22 @@ innan du kan kommentera Anti-spam + + Anonymous + Anonym + + + signed + signerad + + + none + ingen + + + [ ... Missing Message ... ] + [ ... Meddelande saknas ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9599,12 +10223,12 @@ innan du kan kommentera Originalmeddelande - + New thread - + Edit Redigera @@ -9665,7 +10289,7 @@ innan du kan kommentera - + Show column @@ -9685,7 +10309,7 @@ innan du kan kommentera - + Anonymous/unknown posts forwarded if reputation is positive @@ -9737,7 +10361,7 @@ This message is missing. You should receive it later. - + No result. @@ -9747,7 +10371,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9762,7 +10386,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9828,12 +10452,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums Forum @@ -9864,16 +10488,35 @@ This message is missing. You should receive it later. Andra forum + + GxsForumsFillThread + + Waiting + VƤntar + + + Retrieving + Tar emot + + + Loading + LƤser in + + GxsGroupDialog - + Name Namn - + Add Icon + LƤgg till ikon + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels Nyckelmottagare kan publicera pĆ„ begrƤnsad Wiki-grupp, och kan visa och publicera pĆ„ privata kanaler @@ -9882,14 +10525,22 @@ This message is missing. You should receive it later. Share Publish Key Dela publiceringsnyckel + + check peers you would like to share private publish key with + Markera de anvƤndare du vill dela privat publiceringsnyckel med. + + + Share Key With + Dela nyckel med + - + Description Beskrivning - + Message Distribution Meddelandedistribution @@ -9897,7 +10548,7 @@ This message is missing. You should receive it later. - + Public Publik @@ -9916,6 +10567,14 @@ This message is missing. You should receive it later. New Thread Ny trĆ„d + + Required + Obligatorisk + + + Encrypted Msgs + Krypterade meddelanden + Personal Signatures @@ -9957,7 +10616,7 @@ This message is missing. You should receive it later. - + Comments: Kommentarer: @@ -9980,7 +10639,7 @@ This message is missing. You should receive it later. - + All People @@ -9996,12 +10655,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -10018,23 +10677,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10050,28 +10709,26 @@ This message is missing. You should receive it later. LƤgg till ett namn - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo LƤs in grupplogotyp - + Submit Group Changes - + Will be used to send feedback + Kommer att anvƤndas fƶr att skicka feedback + + + Owner: Ƅgare: @@ -10081,12 +10738,12 @@ This message is missing. You should receive it later. - + Info Information - + ID ID @@ -10096,7 +10753,7 @@ This message is missing. You should receive it later. Senaste inlƤgget - + <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> @@ -10171,12 +10828,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity Popularitet @@ -10192,22 +10844,27 @@ This message is missing. You should receive it later. - + Created - + Cancel Avbryt - + Create Skapa - + + Author + Upphovsman + + + GxsIdLabel @@ -10215,7 +10872,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading LƤser in @@ -10275,7 +10932,7 @@ This message is missing. You should receive it later. Redigera detaljer - + Synchronise posts of last... @@ -10332,12 +10989,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link Kopiera RetroShare-lƤnk @@ -10360,7 +11017,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature Ingen signatur @@ -10373,14 +11030,22 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + LƤser in + + + Not found Hittades inte + + No Signature + Ingen signatur + - - + + [Banned] @@ -10390,7 +11055,7 @@ This message is missing. You should receive it later. okƤnd nyckel - + Loading... @@ -10400,12 +11065,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10425,14 +11085,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10444,7 +11096,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10492,13 +11144,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] GxsMessageFramePostWidget + + Loading + LƤser in + Loading... @@ -10879,7 +11535,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10895,7 +11551,7 @@ p, li { white-space: pre-wrap; } - + Authors UpphovsmƤn @@ -10914,7 +11570,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10992,7 +11648,7 @@ p, li { white-space: pre-wrap; } FormulƤr - + Add friend @@ -11002,7 +11658,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11030,7 +11686,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11040,7 +11696,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard Kopiera certifikatet till Urklipp @@ -11050,7 +11706,7 @@ private and secure decentralized communication platform. Spara certifikatet till fil - + Send via Email @@ -11070,37 +11726,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11112,12 +11744,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11132,7 +11764,12 @@ new short format RetroShare-inbjudan - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... Spara som... @@ -11397,14 +12034,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Alla - + Reputation Rykte @@ -11414,12 +12051,12 @@ p, li { white-space: pre-wrap; } Sƶk - + Anonymous Id Anonymt Id - + Create new Identity Skapa ny identitet @@ -11429,7 +12066,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11444,27 +12081,27 @@ p, li { white-space: pre-wrap; } - + Close StƤng - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11480,39 +12117,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles Cirklar - + Circle name @@ -11532,20 +12159,18 @@ p, li { white-space: pre-wrap; } Privata cirklar - + - Edit identity Redigera identitet - - + Delete identity Ta bort identitet - + Chat with this peer @@ -11555,78 +12180,78 @@ p, li { white-space: pre-wrap; } - + Owner node ID : - + Identity name : - + () - + Identity ID Identitets-ID - + Send message Skicka meddelande - + Identity info Identitetsinfo - + Identity ID : Identitets-ID : - + Owner node name : - + Create new... - + Type: Typ: - + Send Invite - + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + Your opinion: - + Negative Negativ - + Neutral Neutral @@ -11637,17 +12262,17 @@ p, li { white-space: pre-wrap; } Positiv - + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> - + Overall: - + Anonymous Anonym @@ -11662,24 +12287,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11694,12 +12319,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11709,7 +12329,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11784,7 +12404,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11814,7 +12434,7 @@ p, li { white-space: pre-wrap; } okƤnd - + Invited @@ -11829,7 +12449,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle Editera cirkeln @@ -11877,7 +12497,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. @@ -11885,7 +12505,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11928,7 +12548,7 @@ These identities will soon be not supported anymore. - + Boards @@ -12008,7 +12628,7 @@ These identities will soon be not supported anymore. - + information @@ -12024,12 +12644,17 @@ 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> + + + + positive @@ -12134,7 +12759,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12184,21 +12809,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar Din avatar - + Linked to neighbor nodes @@ -12208,7 +12833,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12223,7 +12848,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12238,12 +12863,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12263,12 +12888,12 @@ These identities will soon be not supported anymore. - + Owned by Ƅgd av - + Node name: Nodnamn: @@ -12278,7 +12903,7 @@ These identities will soon be not supported anymore. Nod-ID : - + Really delete? @@ -12286,7 +12911,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname AnvƤndarnamn @@ -12316,7 +12941,7 @@ These identities will soon be not supported anymore. Pseudonym - + Import image @@ -12326,19 +12951,12 @@ These identities will soon be not supported anymore. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Ny identitet @@ -12352,7 +12970,7 @@ These identities will soon be not supported anymore. - + @@ -12362,12 +12980,7 @@ These identities will soon be not supported anymore. N/A - - No avatar chosen - - - - + Edit identity Editera identitet @@ -12378,27 +12991,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12418,7 +13031,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12428,7 +13041,11 @@ These identities will soon be not supported anymore. - + Error getting key! + Ett fel uppstod vid hƤmtning av nyckeln! + + + Error KeyID invalid Fel NyckelID felaktigt @@ -12443,7 +13060,7 @@ These identities will soon be not supported anymore. OkƤnt riktigt namn - + Create New Identity Skapa ny Identitet @@ -12453,15 +13070,10 @@ These identities will soon be not supported anymore. Typ - + Choose image... - - - Remove - Ta bort - @@ -12487,7 +13099,7 @@ These identities will soon be not supported anymore. LƤgg till - + Create Skapa @@ -12497,13 +13109,13 @@ These identities will soon be not supported anymore. Avbryt - + Your Avatar Click here to change your avatar Din avatar - + Linked to your profile @@ -12513,7 +13125,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12572,6 +13184,10 @@ These identities will soon be not supported anymore. PGP name: PGP-namn: + + GXS id: + GXS-id: + PGP id: @@ -12587,7 +13203,7 @@ These identities will soon be not supported anymore. - + Copy Kopiera @@ -12597,12 +13213,12 @@ These identities will soon be not supported anymore. Ta bort - + %1 's Message History - + Mark all Markera alla @@ -12621,38 +13237,26 @@ These identities will soon be not supported anymore. Quote Citera + + Send + Skicka + ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12670,32 +13274,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: Port: - + Listen Address: - - Status: - Status: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12716,12 +13315,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12730,31 +13324,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Ɩppna fil - + Open Folder Ɩppna mapp - + Checking... Kontrollerar... @@ -12764,7 +13353,7 @@ These identities will soon be not supported anymore. Kontrollera filer - + Recommend in a message to... @@ -12792,7 +13381,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend LƤgg till kontakt @@ -12808,8 +13397,7 @@ These identities will soon be not supported anymore. - - + Options Alternativ @@ -12830,7 +13418,7 @@ These identities will soon be not supported anymore. - + Quit Avsluta @@ -12841,12 +13429,12 @@ These identities will soon be not supported anymore. Snabbstartsguide - + RetroShare %1 a secure decentralized communication platform RetroShare %1 en sƤker, decentraliserad kommunikationsplattform - + Unfinished PĆ„gĆ„ende @@ -12875,12 +13463,11 @@ Frigƶr mer diskutrymme och klicka OK. - Status Status - + Notify Meddela @@ -12891,35 +13478,31 @@ Frigƶr mer diskutrymme och klicka OK. - Open Messages Ɩppna meddelanden - - + Bandwidth Graph Bandbreddsgraf - + Applications Program - Help HjƤlp - - + Minimize Minimera - + Maximize Maximera @@ -12934,12 +13517,7 @@ Frigƶr mer diskutrymme och klicka OK. RetroShare - - Close window - - - - + %1 new message %1 nytt meddelande @@ -12969,7 +13547,7 @@ Frigƶr mer diskutrymme och klicka OK. %1 kontakter anslutna - + Do you really want to exit RetroShare ? Vill du verkligen avsluta RetroShare? @@ -12989,7 +13567,7 @@ Frigƶr mer diskutrymme och klicka OK. Visa - + Make sure this link has not been forged to drag you to a malicious website. Tillse att den hƤr lƤnken inte leder till en webbsida med skadlig kod. @@ -13034,13 +13612,12 @@ Frigƶr mer diskutrymme och klicka OK. TjƤnstĆ„tkomstmatrix - - + Statistics Statistik - + Show web interface @@ -13055,7 +13632,7 @@ Frigƶr mer diskutrymme och klicka OK. - + Really quit ? @@ -13064,17 +13641,17 @@ Frigƶr mer diskutrymme och klicka OK. MessageComposer - + Compose Skriv - + Contacts Kontakter - + Paragraph Rubrik @@ -13110,12 +13687,12 @@ Frigƶr mer diskutrymme och klicka OK. Rubrik 6 - + Font size Teckenstorlek - + Increase font size Ɩka teckenstorlek @@ -13130,32 +13707,32 @@ Frigƶr mer diskutrymme och klicka OK. Fet - + Italic Kursiv - + Alignment Justering - + Add an Image LƤgg till en bild - + Sets text font to code style Anger teckensnitt - + Underline Understruken - + Subject: Ƅmne: @@ -13166,32 +13743,32 @@ Frigƶr mer diskutrymme och klicka OK. - + Tags Taggar - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files Rekommenderade filer @@ -13261,7 +13838,7 @@ Frigƶr mer diskutrymme och klicka OK. LƤgg till blockcitat - + Send To: Skicka till: @@ -13301,7 +13878,7 @@ Frigƶr mer diskutrymme och klicka OK. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hej! Jag rekommenderar mina kontakter. Du kan autentisera dem ocksĆ„, nƤr du autentiserar mig. @@ -13321,18 +13898,18 @@ Frigƶr mer diskutrymme och klicka OK. vill bli en av dina kontakter pĆ„ 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 Hej %1!<br><br>%2 vill bli en av dina kontakter pĆ„ RetroShare.<br><br>Svara nu:<br>%3<br><br>Tack!<br>RetroShare Team - - + + Save Message Spara meddelande - + Message has not been Sent. Do you want to save message to draft box? Meddelandet har inte skickats. @@ -13344,17 +13921,7 @@ Vill du spara meddelandet i Utkast? Klistra in RetroShare-lƤnk - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" LƤgg till i "Till" @@ -13374,7 +13941,7 @@ Vill du spara meddelandet i Utkast? LƤgg till som rekommendation - + Original Message Ursprungligt meddelande @@ -13384,21 +13951,21 @@ Vill du spara meddelandet i Utkast? FrĆ„n - + - + To Till - - + + Cc Kopia - + Sent Skickat @@ -13413,7 +13980,7 @@ Vill du spara meddelandet i Utkast? PĆ„ %1, skrev %2: - + Re: Svar: @@ -13423,30 +13990,30 @@ Vill du spara meddelandet i Utkast? Vidarebefordran: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Vill du skicka meddelandet utan angivet Ƥmne? - + Please insert at least one recipient. Ange minst en mottagare. - + Bcc Dold kopia - + Unknown OkƤnd @@ -13561,13 +14128,13 @@ Vill du spara meddelandet i Utkast? Detaljer - + Open File... Ɩppna fil... - + HTML-Files (*.htm *.html);;All Files (*) HTML-filer (*.htm *.html);;Alla Filer (*) @@ -13587,7 +14154,7 @@ Vill du spara meddelandet i Utkast? Exportera PDF - + Message has not been Sent. Do you want to save message ? Meddelandet har inte skickats. @@ -13609,7 +14176,7 @@ Vill du spara meddelandet? LƤgg till fil - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13639,18 +14206,18 @@ Vill du spara meddelandet? - - + + Close StƤng - + From: FrĆ„n: - + Bullet list (disc) @@ -13690,13 +14257,13 @@ Vill du spara meddelandet? - - + + Thanks, <br> - + Distant identity: @@ -13706,12 +14273,12 @@ Vill du spara meddelandet? - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Node name & id: @@ -13789,7 +14356,7 @@ Vill du spara meddelandet? Standard - + A new tab Ny flik @@ -13799,7 +14366,7 @@ Vill du spara meddelandet? Nytt fƶnster - + Edit Tag Redigera tagg @@ -13822,7 +14389,7 @@ Vill du spara meddelandet? MessageToaster - + Sub: Ƅmne: @@ -13830,7 +14397,7 @@ Vill du spara meddelandet? MessageUserNotify - + Message Meddelande @@ -13858,7 +14425,7 @@ Vill du spara meddelandet? MessageWidget - + Recommended Files Rekommenderade filer @@ -13868,37 +14435,37 @@ Vill du spara meddelandet? Ladda ner alla rekommenderade filer - + Subject: Ƅmne: - + From: FrĆ„n: - + To: Till: - + Cc: Kopia: - + Bcc: Dold kopia: - + Tags: Taggar: - + Reply Svara @@ -13920,7 +14487,7 @@ Vill du spara meddelandet? Forward - FramĆ„t + @@ -13938,7 +14505,7 @@ Vill du spara meddelandet? - + Send Invite @@ -13990,7 +14557,7 @@ Vill du spara meddelandet? - + Confirm %1 as friend BekrƤfta %1 som kontakt @@ -14000,12 +14567,12 @@ Vill du spara meddelandet? LƤgg till %1 som kontakt - + View source - + No subject Inget Ƥmne @@ -14015,22 +14582,17 @@ Vill du spara meddelandet? Ladda ner - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14039,24 +14601,14 @@ Vill du spara meddelandet? %1 (%2) - - - Show less - - - - - Show more - - - + Download all Ladda ner alla - + Print Document Skriv ut dokument @@ -14071,12 +14623,12 @@ Vill du spara meddelandet? HTML-filer (*.htm *.html);;Alla Filer (*) - + Load images always for this message Ladda alltid bilder fƶr detta meddelande - + Hide the attachment pane @@ -14098,6 +14650,42 @@ Vill du spara meddelandet? Compose Skriv + + Reply to selected message + Svara pĆ„ markerat meddelande + + + Reply + Svara + + + Reply all to selected message + Svara alla pĆ„ markerat meddelande + + + Reply all + Svara alla + + + Forward selected message + Vidarebefordra markerat meddelande + + + Forward + Vidarebefordra + + + Remove selected message + Ta bort markerat meddelande + + + Delete + Ta bort + + + Print selected message + Skriv ut markerat meddelande + Print @@ -14176,7 +14764,7 @@ Vill du spara meddelandet? MessagesDialog - + New Message Nytt meddelande @@ -14186,16 +14774,60 @@ Vill du spara meddelandet? Skriv - + Reply to selected message + Svara pĆ„ markerat meddelande + + + Reply + Svara + + + Reply all to selected message + Svara alla pĆ„ markerat meddelande + + + Reply all + Svara alla + + + Forward selected message + Vidarebefordra markerat meddelande + + + Foward + Vidarebefordra + + + Remove selected message + Ta bort markerat meddelande + + + Delete + Ta bort + + + Print selected message + Skriv ut markerat meddelande + + + Print + Skriv ut + + + Display + Visa + + + - - + + Tags Taggar - - + + Inbox Inkorg @@ -14225,17 +14857,21 @@ Vill du spara meddelandet? Papperskorg - + Total Inbox: Totalt inkorg: - + Folders + Mappar + + + Quick View Snabbvy - + Print... Skriv ut... @@ -14245,6 +14881,26 @@ Vill du spara meddelandet? Print Preview Fƶrhandsgranskning + + Buttons Icon Only + Endast ikoner + + + Buttons Text Beside Icon + Text intill ikon + + + Buttons with Text + Endast text + + + Buttons Text Under Icon + Text under ikon + + + Set Text Under Icon + Ange text under ikon + Save As... @@ -14266,7 +14922,7 @@ Vill du spara meddelandet? Vidarebefordra meddelande - + Subject Ƅmne @@ -14276,7 +14932,7 @@ Vill du spara meddelandet? FrĆ„n - + Date Datum @@ -14286,7 +14942,39 @@ Vill du spara meddelandet? InnehĆ„ll - + Click to sort by attachments + Klicka fƶr att sortera efter bilagor + + + Click to sort by subject + Klicka fƶr att sortera efter Ƥmne + + + Click to sort by read + Klicka fƶr att sortera efter 'LƤsta' + + + Click to sort by from + Klicka fƶr att sortera efter 'FrĆ„n' + + + Click to sort by date + Klicka fƶr att sortera efter datum + + + Click to sort by tags + Klicka fƶr att sortera efter taggar + + + Click to sort by star + Klicka fƶr att sortera efter 'StjƤrnmƤrkt' + + + Forward selected Message + Vidarebefordra markerat meddelande + + + Search Subject Sƶk pĆ„ Ƥmne @@ -14295,11 +14983,6 @@ Vill du spara meddelandet? Search From Sƶk pĆ„ avsƤndare - - - Search To - - Search Date @@ -14326,14 +15009,14 @@ Vill du spara meddelandet? Sƶk pĆ„ bilagor - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred - + StjƤrnmƤrkt @@ -14407,7 +15090,7 @@ Vill du spara meddelandet? - Show in People + Show author in People @@ -14421,7 +15104,7 @@ Vill du spara meddelandet? - + No message using %1 tag available. @@ -14436,33 +15119,34 @@ Vill du spara meddelandet? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Utkast - + No Box selected. - - To - Till + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light gray star beside any message. + Det finns inga stjƤrnmƤrkta meddelanden. StjƤrnorna ger meddelanden en sƤrskild status, fƶr att dom skall bli lƤttare att hitta. Fƶr att stjƤrnmƤrka ett meddelande, klickar du pĆ„ den grĆ„ stjƤrnan vid sidan av ƶnskat meddelande. - + No system messages available. + Det finns inga systemmeddelanden. + + + To + Till + + + Click to sort by to + Klicka fƶr att sortera efter + + + @@ -14470,6 +15154,22 @@ Vill du spara meddelandet? Total: Totalt: + + Messages + Meddelanden + + + Click to sort by signature + Klicka fƶr att sortera enligt signatur + + + This message was signed and the signature checks + Det hƤr meddelandet har blivit signerat och signaturen kollar + + + This message was signed but the signature doesn't check + Det hƤr meddelandet har blivit signerat men signaturen stƤmmer inte + Mail @@ -14497,17 +15197,7 @@ Vill du spara meddelandet? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14561,7 +15251,7 @@ Vill du spara meddelandet? - + Expand Expandera @@ -14571,7 +15261,7 @@ Vill du spara meddelandet? Ta bort objektet - + from FrĆ„n @@ -14606,7 +15296,7 @@ Vill du spara meddelandet? VƤntande - + Hide Dƶlj @@ -14747,7 +15437,7 @@ Vill du spara meddelandet? AnvƤndar-ID - + Remove unused keys... Ta bort oanvƤnda nycklar... @@ -14757,7 +15447,7 @@ Vill du spara meddelandet? - + Clean keyring Rensa nyckelringen @@ -14775,13 +15465,7 @@ Notera: Din gamla nyckelring kommer att sƤkerhetskopieras. Borttagningen kan misslyckas om du kƶr flera Retroshare-instanser pĆ„ samma maskin. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Nyckelringsinformation @@ -14817,13 +15501,18 @@ Fƶr din sƤkerhet har din nyckelring sƤkerhetskopierats till filen Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inkonsistent data i nyckelringen. Detta Ƥr troligtvis en bug. Var god och kontakta utvecklarna. + + + Export/create a new node + + Trusted keys only - + Search name @@ -14833,18 +15522,25 @@ Fƶr din sƤkerhet har din nyckelring sƤkerhetskopierats till filen - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: + + NetworkPage + + Network + NƤtverk + + NetworkView @@ -14871,7 +15567,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14892,7 +15588,7 @@ Reported error: - + Groups Grupper @@ -14922,19 +15618,19 @@ Reported error: importera din vƤnlista inklusive grupper - - + + Search Sƶk - + ID ID - + Search ID @@ -14944,12 +15640,12 @@ Reported error: - + Show Items - + Last contact @@ -14959,7 +15655,7 @@ Reported error: IP - + Group Grupp @@ -15074,7 +15770,7 @@ Reported error: FƤll ihop alla - + Do you want to remove this node? Vill du ta bort denna nod? @@ -15084,7 +15780,7 @@ Reported error: - + Done! FƤrdig! @@ -15191,7 +15887,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15206,7 +15902,11 @@ at least one peer was not added to a group Ta bort alla - + This is a test. + Detta Ƥr ett test. + + + Newest on top @@ -15216,12 +15916,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15276,6 +15976,10 @@ at least one peer was not added to a group Blogs Bloggar + + Security + SƤkerhet + @@ -15297,6 +16001,10 @@ at least one peer was not added to a group Message Meddelande + + Connect attempt + Anslutningsfƶrsƶk + @@ -15450,6 +16158,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + Flƶde + Systray @@ -15459,7 +16171,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15479,12 +16191,12 @@ at least one peer was not added to a group Fel lƶsenord! - + Please enter your Retroshare passphrase - + Unregistered plugin/executable Oregisterad insticks-/programfil @@ -15499,7 +16211,19 @@ at least one peer was not added to a group Kontrollera din systemklocka. - + Examining shared files... + Undersƶker delade filer... + + + Hashing file + Hash-berƤknar fil + + + Saving file index... + Sparar filindex... + + + Test Testa @@ -15510,19 +16234,17 @@ at least one peer was not added to a group - Unknown title OkƤnd titel - + - Encrypted message Krypterat meddelande - + 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). @@ -15530,7 +16252,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online Kontakten ansluten @@ -15672,12 +16394,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15686,6 +16403,10 @@ p, li { white-space: pre-wrap; } Keysigning: + + Sign PGP key + Signera GPG-nyckel + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15722,7 +16443,12 @@ p, li { white-space: pre-wrap; } Inkludera signaturer - + + 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> @@ -15768,21 +16494,21 @@ p, li { white-space: pre-wrap; } - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Fel: Kan inte hƤmta anvƤndaruppgifter. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Angiven nyckelalgoritm stƶds inte av RetroShare. (Fƶr tillfƤllet stƶds endast RSA-nycklar) @@ -15800,7 +16526,7 @@ 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. @@ -15869,6 +16595,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + Lƶsenordet kanske Ƥr fel + You haven't set a trust level for this key. @@ -15876,12 +16606,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15907,7 +16637,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat Chatta @@ -15928,7 +16658,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.Ta bort objektet - + Name: Namn: @@ -15968,7 +16698,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message Skriv meddelande @@ -15982,6 +16712,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected Kontakten anslƶt + + Connect Attempt + Anslutningsfƶrsƶk + Connection refused by peer @@ -16020,13 +16754,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown + + Unknown Peer + OkƤnd anvƤndare + Hide Dƶlj - + Send Message SƤnd Meddelande @@ -16193,6 +16931,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + FormulƤr + + PhotoDialog @@ -16200,11 +16945,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare Fotodelning + + Photo + Bild + TextLabel Bildtext + + Comment + Kommentar + + + Summary + Sammanfattning + Album / Photo Name @@ -16265,6 +17022,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + LƤgg till kommentar + + + Write a comment... + Skriv en kommentar... + Album @@ -16335,6 +17100,10 @@ p, li { white-space: pre-wrap; } Create Album Skapa album + + View Album + Visa album + Edit Album Details @@ -16356,17 +17125,17 @@ p, li { white-space: pre-wrap; } Bildspel - + My Albums Mina album - + Subscribed Albums Albumprenumerationer - + Shared Albums Delade album @@ -16396,7 +17165,7 @@ fƶre redigering! PhotoSlideShow - + Album Name Albumnamn @@ -16455,19 +17224,19 @@ fƶre redigering! - - + + TextLabel - + Posted by - + ago @@ -16503,12 +17272,12 @@ fƶre redigering! PluginItem - + TextLabel Textetikett - + Show more details about this plugin Visa mer information om det hƤr insticksprogrammet @@ -16654,6 +17423,44 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Mappar med insticksprogram + + No API number supplied. Please read plugin development manual. + Inget API-nummer. LƤs manualen fƶr insticksutveckling. + + + No SVN number supplied. Please read plugin development manual. + Inget SVN-nummer. LƤs manualen fƶr insticksutveckling. + + + Loading error. + InlƤsningsfel. + + + Missing symbol. Wrong version? + Saknat tecken, fel version? + + + No plugin object + Det finns inga insticksprogram + + + Plugins is loaded. + Insticksprogram inlƤst. + + + Unknown status. + OkƤnd status. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Markera detta fƶr instick under utveckling. +De kommer inte att hash-berƤknas, vilket i normala +fall gƶrs som skydd mot skadligt beteende frĆ„n +felaktigt utformade insticksprogram. + Plugins @@ -16723,27 +17530,12 @@ p, li { white-space: pre-wrap; } Alltid ƶverst - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16777,6 +17569,14 @@ p, li { white-space: pre-wrap; } Close conversation? + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Om du stƤnger fƶnstret kommer konversationen att avslutas, den andra parten meddelas och den krypterade tunneln tas bort. + + + Kill the tunnel? + Ta bort tunneln? + PostedCardView @@ -16796,7 +17596,7 @@ p, li { white-space: pre-wrap; } Nytt - + Vote up @@ -16816,8 +17616,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Kommentarer @@ -16842,13 +17642,13 @@ p, li { white-space: pre-wrap; } - - + + Comment Kommentar - + Comments @@ -16876,12 +17676,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + Signerad av: + + + Notes + Anteckningar + + + Create a new Post - + RetroShare RetroShare @@ -16896,22 +17704,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File LƤs in en bildfil - + Post image @@ -16927,17 +17725,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16947,7 +17735,15 @@ p, li { white-space: pre-wrap; } - + Submit Post + Skicka + + + Submit + Skicka + + + Please add a Title @@ -16967,22 +17763,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16997,7 +17783,7 @@ p, li { white-space: pre-wrap; } Posta som - + Post @@ -17008,7 +17794,7 @@ p, li { white-space: pre-wrap; } Bild - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17018,7 +17804,7 @@ p, li { white-space: pre-wrap; } Rubrik - + Link LƤnk @@ -17026,12 +17812,32 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Postade lƤnkar + + + My Topics + Mina rubriker + + + Subscribed Topics + Rubrikprenumerationer + + + Popular Topics + PopulƤra rubriker + + + Other Topics + Andra rubriker + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17065,7 +17871,27 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Postad rubrik + + + Add Topic Admins + LƤgg till rubrikadministratƶrer + + + Select Topic Admins + VƤlj rubrikadministratƶrer + + + Create New Topic + Skapa nytt Ƥmne + + + Edit Topic + Redigera Ƅmne + + + Create New Board @@ -17103,17 +17929,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17129,7 +17945,7 @@ p, li { white-space: pre-wrap; } - + Expand Visa @@ -17144,17 +17960,16 @@ p, li { white-space: pre-wrap; } - + Loading + LƤser in + + + Loading... - - Never - - - - + New Board @@ -17167,18 +17982,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Webbplats + + + + Comments Kommentarer - + Copy RetroShare Link Kopiera RetroShare-lƤnk @@ -17189,12 +18008,12 @@ p, li { white-space: pre-wrap; } - + Comment Kommentar - + Comments @@ -17204,7 +18023,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17214,17 +18033,21 @@ p, li { white-space: pre-wrap; } Dƶlj - + Vote up - + Vote down - + \/ + \/ + + + Set as read and remove item Markera som lƤst och ta bort objektet @@ -17234,7 +18057,7 @@ p, li { white-space: pre-wrap; } Nytt - + New Comment: @@ -17244,7 +18067,7 @@ p, li { white-space: pre-wrap; } - + Name Namn @@ -17285,10 +18108,69 @@ p, li { white-space: pre-wrap; } - + Loading LƤser in + + By + Av + + + + PostedListWidget + + Form + FormulƤr + + + Hot + Het + + + New + Nytt + + + Top + Topp + + + Today + I dag + + + Yesterday + I gĆ„r + + + This Week + Den hƤr veckan + + + This Month + Den hƤr mĆ„naden + + + This Year + Detta Ć„r + + + Next + NƤsta + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Skapa nytt eller vƤlj ett befintligt signatur-ID fƶrst + + + Previous + FƶregĆ„ende + PostedListWidgetWithModel @@ -17308,17 +18190,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17328,15 +18200,15 @@ p, li { white-space: pre-wrap; } - + - + unknown okƤnd - + Distribution: @@ -17346,42 +18218,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17401,7 +18273,7 @@ p, li { white-space: pre-wrap; } Het - + Search Sƶk @@ -17431,17 +18303,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17456,17 +18328,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link Kopiera RetroShare-lƤnk - - Copy http Link - - - - + Show author in People tab @@ -17476,31 +18343,27 @@ p, li { white-space: pre-wrap; } Redigera - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17515,7 +18378,7 @@ p, li { white-space: pre-wrap; } Prenumerera - + Never @@ -17589,16 +18452,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Inga kanaler markerade - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17607,6 +18460,10 @@ p, li { white-space: pre-wrap; } Tabs Flikar + + Open each topic in a new tab + Ɩppna varje Ƥmne i en ny flik + Open each board in a new tab @@ -17620,6 +18477,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Postat + Board Post @@ -17688,16 +18549,16 @@ p, li { white-space: pre-wrap; } Profilhanterare - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17809,7 +18670,7 @@ och dƤr lƤsa in den med importfunktionen. ProfileWidget - + Edit status message Redigera statusmeddelande @@ -17825,7 +18686,7 @@ och dƤr lƤsa in den med importfunktionen. Profilhanterare - + Public Information Publik information @@ -17860,12 +18721,12 @@ och dƤr lƤsa in den med importfunktionen. Ansluten sedan: - + Other Information Annan information - + My Address Min adress @@ -17909,27 +18770,51 @@ och dƤr lƤsa in den med importfunktionen. PulseAddDialog - + Post From: + InlƤgg frĆ„n: + + + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + Add to Pulse LƤgg till i Pulse - + filter + filter + + + URL Adder + URL-Adder + + + Display As Visa som - + URL URL - + GroupLabel - + IDLabel @@ -17939,12 +18824,12 @@ och dƤr lƤsa in den med importfunktionen. FrĆ„n: - + Head - + Head Shot @@ -17974,13 +18859,13 @@ och dƤr lƤsa in den med importfunktionen. Negativ - - + + Whats happening? - + @@ -17992,22 +18877,12 @@ och dƤr lƤsa in den med importfunktionen. - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18016,13 +18891,17 @@ och dƤr lƤsa in den med importfunktionen. Cancel Avbryt + + Post Pulse to Wire + Posta Pulse till Wire + Post - + Reply to Pulse @@ -18037,24 +18916,34 @@ och dƤr lƤsa in den med importfunktionen. - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - LƤs in en bildfil + From + FrĆ„n + + + Date + Datum + + + ... + ... @@ -18065,7 +18954,7 @@ och dƤr lƤsa in den med importfunktionen. FormulƤr - + @@ -18084,7 +18973,7 @@ och dƤr lƤsa in den med importfunktionen. PulseReply - + icn @@ -18094,7 +18983,7 @@ och dƤr lƤsa in den med importfunktionen. - + REPLY @@ -18121,7 +19010,7 @@ och dƤr lƤsa in den med importfunktionen. - + FOLLOW @@ -18131,7 +19020,7 @@ och dƤr lƤsa in den med importfunktionen. - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18151,7 +19040,7 @@ och dƤr lƤsa in den med importfunktionen. - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18267,7 +19156,7 @@ och dƤr lƤsa in den med importfunktionen. - + FOLLOW @@ -18275,42 +19164,37 @@ och dƤr lƤsa in den med importfunktionen. PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18342,7 +19226,7 @@ och dƤr lƤsa in den med importfunktionen. - + FOLLOW @@ -18350,8 +19234,8 @@ och dƤr lƤsa in den med importfunktionen. QObject - - + + Confirmation BekrƤftelse @@ -18622,12 +19506,12 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersƤtt AnvƤndarinformation - + File Request canceled FilbegƤran avbruten - + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Denna version av RetroShare anvƤnder OpenPGP-SDK. Som sidoeffekt anvƤnder den inte systemets delade PGP-nyckelring, utan har sin egen nyckelring som delas av alla RetroShare-instanser. <br><br>Du verkar inte ha nĆ„gon sĆ„dan nyckelring, Ƥven om GPG-nycklar associeras med befintliga RetroShare-konton, troligen fƶr att du just uppgraderat till denna nya version av programmet. @@ -18658,7 +19542,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersƤtt Ett ovƤntat fel uppstod. Rapportera 'RsInit::InitRetroShare unexpected return code %1'. - + Cannot start Tor Manager! @@ -18692,7 +19576,7 @@ The error reported is:" - + Multiple instances Flera instanser @@ -18713,26 +19597,6 @@ The error reported is:" LĆ„sfil: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18813,7 +19677,7 @@ Rapporterat fel Ƥr: %2 - + You appear to have nodes associated to DSA keys: @@ -18823,7 +19687,7 @@ Rapporterat fel Ƥr: %2 - + enabled @@ -18833,7 +19697,7 @@ Rapporterat fel Ƥr: %2 - + Move IP %1 to whitelist @@ -18849,7 +19713,7 @@ Rapporterat fel Ƥr: %2 - + %1 seconds ago @@ -18916,7 +19780,7 @@ Security: no anonymous IDs - + Join chat room @@ -18944,7 +19808,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19124,29 +19988,13 @@ Security: no anonymous IDs Ban list - - - Name - Namn - - Node - Nod - - - - Address - - - - - Status Status - + NXS @@ -19389,18 +20237,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19563,7 +20399,7 @@ p, li { white-space: pre-wrap; } - + Network Wide NƤtverksƶvergripande @@ -19743,7 +20579,7 @@ p, li { white-space: pre-wrap; } FormulƤr - + The loading of embedded images is blocked. Laddning av inbƤddade bilder Ƥr blockerad. @@ -19756,7 +20592,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19929,22 +20765,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19952,12 +20778,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20649,7 +21475,7 @@ Om du tror att den Ƥr giltig, ta bort strƤngen frĆ„n filen och ƶppna den pĆ„ RsDownloadListModel - + Name i.e: file name Namn @@ -20770,7 +21596,7 @@ Om du tror att den Ƥr giltig, ta bort strƤngen frĆ„n filen och ƶppna den pĆ„ RsFriendListModel - + Name Namn @@ -20790,7 +21616,7 @@ Om du tror att den Ƥr giltig, ta bort strƤngen frĆ„n filen och ƶppna den pĆ„ IP - + Profile ID @@ -20846,7 +21672,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20860,6 +21686,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + [ ... Meddelande saknas ... ] + RsMessageModel @@ -20873,11 +21704,6 @@ prevents the message to be forwarded to your friends. From FrĆ„n - - - To - Till - Subject @@ -20900,18 +21726,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + Klicka fƶr att sortera efter 'LƤsta' - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Klicka fƶr att sortera efter 'FrĆ„n' @@ -20934,9 +21755,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20957,7 +21776,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. ƅterstƤller ALLA sparade RetroShare-instƤllningar. @@ -21018,7 +21837,7 @@ prevents the message to be forwarded to your friends. Anger RetroShares sprĆ„k. - + Unable to open log file '%1': %2 Kan inte ƶppna loggfil '%1': %2 @@ -21039,7 +21858,11 @@ prevents the message to be forwarded to your friends. Kunde inte skapa datamapp: %1 - + Revision + Revision + + + opmode @@ -21069,7 +21892,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -21087,7 +21910,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -21104,12 +21927,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) Ange nyckelord hƤr (minst 3 tecken) - + Start Search Starta sƶkning @@ -21171,7 +21994,7 @@ prevents the message to be forwarded to your friends. Rensa - + KeyWords Nyckelord @@ -21186,7 +22009,7 @@ prevents the message to be forwarded to your friends. Sƶk ID - + Filename Filnamn @@ -21286,23 +22109,23 @@ prevents the message to be forwarded to your friends. Nedladdning vald - + File Name Filnamn - + Download Ladda ner - + Copy RetroShare Link Kopiera RetroShare-lƤnk - + Send RetroShare Link Skicka RetroShare-lƤnk @@ -21312,7 +22135,7 @@ prevents the message to be forwarded to your friends. - + Download Notice NedladdningsunderrƤttelse @@ -21349,7 +22172,7 @@ prevents the message to be forwarded to your friends. Ta bort alla - + Folder Mapp @@ -21360,17 +22183,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) Ny RetroShare-lƤnk - + Open Folder Ɩppna mapp - + Create Collection... Skapa samling... @@ -21390,7 +22213,7 @@ prevents the message to be forwarded to your friends. Ladda ner frĆ„n samlingsfil... - + Collection Samling @@ -21398,7 +22221,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details AnvƤndarinformation @@ -21414,22 +22237,22 @@ prevents the message to be forwarded to your friends. Ta bort objektet - + IP address: IP-adress: - + Peer ID: AnvƤndar-ID - + Location: Plats: - + Peer Name: @@ -21446,7 +22269,7 @@ prevents the message to be forwarded to your friends. Dƶlj - + but reported: @@ -21471,8 +22294,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21480,7 +22303,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare vill bli en av dina kontakter pĆ„ RetroShare @@ -21511,7 +22334,7 @@ prevents the message to be forwarded to your friends. - + Expand Expandera @@ -21556,12 +22379,12 @@ prevents the message to be forwarded to your friends. Status: - + Write Message Skriv meddelande - + Connect Attempt Anslutningsfƶrsƶk @@ -21581,22 +22404,17 @@ prevents the message to be forwarded to your friends. OkƤnt (utgĆ„ende) anslutningsfƶrsƶk - + Unknown Security Issue OkƤnt sƤkerhetsproblem - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21606,7 +22424,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + OkƤnd anvƤndare + + + Hide Dƶlj @@ -21616,7 +22438,7 @@ prevents the message to be forwarded to your friends. Vill du verkligen ta bort den hƤr kontakten? - + Certificate has wrong signature!! This peer is not who he claims to be. Certifikatet har fel signatur!! Den hƤr klienten Ƥr inte vem den utger sig fƶr att vara. @@ -21626,12 +22448,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. Certifikatet orsakade ett internt fel. - + Peer/node not in friendlist (PGP id= @@ -21690,12 +22512,12 @@ prevents the message to be forwarded to your friends. - + Local Address Lokal adress - + NAT @@ -21716,22 +22538,22 @@ prevents the message to be forwarded to your friends. Port: - + Local network Lokalt nƤtverk - + External ip address finder Sƶkverktyg fƶr externt IP - + UPnP UPnP - + Known / Previous IPs: KƤnda / Tidigare IP: @@ -21747,16 +22569,21 @@ nƤr du ansluter till nĆ„gon. Att lĆ„ta det hƤr vara markerat bra om du sitter bakom en brandvƤgg eller en VPN-tunnel. - - - + + Allow RetroShare to ask my ip to these websites: + LĆ„t RetroShare frĆ„ga om min externa IP-adress pĆ„ dessa sidor: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21766,46 +22593,23 @@ bra om du sitter bakom en brandvƤgg eller en VPN-tunnel. - + Onion Address - + Discovery On (recommended) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21815,7 +22619,7 @@ List of found external IP: - + I2P Address I2P-adress @@ -21840,95 +22644,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21943,7 +22689,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 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 @@ -21953,7 +22763,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21965,12 +22790,12 @@ 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> @@ -21980,7 +22805,7 @@ Also check your ports! Rensa - + Download limit (KB/s) @@ -21995,23 +22820,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22022,7 +22847,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22032,7 +22867,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22042,7 +22882,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22082,7 +22932,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Starta @@ -22097,7 +22947,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Stopp - + + BOB status + + + + Incoming Inkommande @@ -22133,32 +22988,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22213,7 +23043,7 @@ If you have issues connecting over Tor check the Tor logs too. Totalt: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22238,7 +23068,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22250,7 +23080,7 @@ If you have issues connecting over Tor check the Tor logs too. NƤtverk - + IP Filters IP-filter @@ -22273,7 +23103,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Status @@ -22333,28 +23163,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22370,18 +23189,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22416,12 +23235,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22444,22 +23263,22 @@ 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> @@ -22494,7 +23313,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22504,12 +23323,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22589,7 +23408,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with Markera de anvƤndare du vill dela privat publiceringsnyckel med. @@ -22599,12 +23418,12 @@ If you have issues connecting over Tor check the Tor logs too. Dela med kontakt - + Share Dela - + 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. Du kan meddela dina vƤnner om din kanal genom att dela den med dem. @@ -22624,7 +23443,7 @@ VƤlj de kontakter du vill dela kanalen med. Delade mappar - + Shared directory @@ -22644,17 +23463,17 @@ VƤlj de kontakter du vill dela kanalen med. Synlighet - + Add new - + Cancel Avbryt - + Add a Share Directory LƤgg till en delad katalog @@ -22664,7 +23483,7 @@ VƤlj de kontakter du vill dela kanalen med. Ta bort - + Apply and close VerkstƤll och stƤng @@ -22755,7 +23574,7 @@ VƤlj de kontakter du vill dela kanalen med. Mappen kan inte hittas, eller ogiltigt mappnamn. - + 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. Det hƤr Ƥr en lista pĆ„ delade mappar. Du kan lƤgga till eller ta bort mappar med knapparna nedantill. NƤr du lƤgger till en ny katalog sĆ„ delas alla filer i denna katalog ut. Du kan ange olika rƤttigheter fƶr varje enskild katalog. @@ -22763,7 +23582,7 @@ VƤlj de kontakter du vill dela kanalen med. SharedFilesDialog - + Files Filer @@ -22814,16 +23633,11 @@ VƤlj de kontakter du vill dela kanalen med. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files Kontrollera filer - + Download selected Ladda ner markerat @@ -22833,7 +23647,7 @@ VƤlj de kontakter du vill dela kanalen med. Ladda ner - + Copy retroshare Links to Clipboard Kopiera RetroShare-lƤnk till Urklipp @@ -22848,7 +23662,7 @@ VƤlj de kontakter du vill dela kanalen med. Skicka RetroShare-lƤnk - + Some files have been omitted @@ -22864,7 +23678,7 @@ VƤlj de kontakter du vill dela kanalen med. Rekommendation(er) - + Create Collection... Skapa samling... @@ -22889,7 +23703,7 @@ VƤlj de kontakter du vill dela kanalen med. Ladda ner frĆ„n samlingsfil... - + Some files have been omitted because they have not been indexed yet. @@ -23032,12 +23846,12 @@ VƤlj de kontakter du vill dela kanalen med. SplashScreen - + Load configuration LƤser in konfiguration - + Create interface Skapar grƤnssnitt @@ -23061,7 +23875,7 @@ VƤlj de kontakter du vill dela kanalen med. Kom ihĆ„g lƶsenordet - + Log In Logga in @@ -23402,7 +24216,7 @@ This choice can be reverted in settings. Statusmeddelande - + Message: Meddelande: @@ -23647,7 +24461,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Ta bort alla taggar @@ -23683,15 +24497,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown @@ -23701,13 +24512,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23717,57 +24533,12 @@ p, li { white-space: pre-wrap; } - - Error - Fel - - - - Not connected - Inte ansluten - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23775,7 +24546,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23785,7 +24556,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23796,12 +24567,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23829,7 +24599,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Ɩverfƶringsalternativ @@ -23840,7 +24610,7 @@ p, li { white-space: pre-wrap; } Max antal samtidiga nedladdningar: - + Shared Directories @@ -23850,27 +24620,22 @@ p, li { white-space: pre-wrap; } Dela inkommande automatiskt (Rekommenderas) - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23955,7 +24720,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23964,12 +24729,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23994,12 +24754,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Strƶmmande @@ -24064,7 +24819,12 @@ p, li { white-space: pre-wrap; } Max antal tunnelfƶrfrĆ„gningar per sekund: - + + <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> @@ -24074,17 +24834,7 @@ p, li { white-space: pre-wrap; } - - Warning - Varning - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -24112,7 +24862,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed Nedladdning slutfƶrd @@ -24136,23 +24886,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + Du har %1 slutfƶrda nedladdningar + + + You have %1 completed download + Du har %1 slutfƶrd nedladdning + + + %1 completed downloads + %1 slutfƶrda nedladdningar + + + %1 completed download + %1 slutfƶrd nedladdning + TransfersDialog - - + + Downloads Nerladdningar - + Uploads Uppladdningar - + Name i.e: file name Namn @@ -24359,12 +25125,7 @@ p, li { white-space: pre-wrap; } Specificera - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp; File Transfer</h1><p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p><p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p><p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Move in Queue... Flytta i kƶn... @@ -24389,7 +25150,7 @@ p, li { white-space: pre-wrap; } VƤlj mapp - + Anonymous end-to-end encrypted tunnel 0x @@ -24410,7 +25171,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24443,17 +25204,7 @@ p, li { white-space: pre-wrap; } %1 Ƥr inte slutfƶrd. Ƅr det en mediafil kan du fƶrsƶka fƶrhandsgranska den. - - Warning - Varning - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Byt filnamn @@ -24468,7 +25219,7 @@ p, li { white-space: pre-wrap; } Ange nytt giltigt filnamn - + Expand all Expandera alla @@ -24595,18 +25346,23 @@ 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> + + + + Columns Kolumner - + File Transfers Filƶverfƶringar - + Path SƶkvƤg @@ -24616,7 +25372,7 @@ p, li { white-space: pre-wrap; } Visa VƤg-kolumn - + Could not delete preview file @@ -24626,7 +25382,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... Skapa samling... @@ -24641,7 +25397,7 @@ p, li { white-space: pre-wrap; } Visa samling... - + Collection Samling @@ -24651,7 +25407,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -25065,17 +25821,12 @@ p, li { white-space: pre-wrap; } FormulƤr - + Enable Retroshare WEB Interface - - Status: - Status: - - - + Web parameters @@ -25115,27 +25866,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25145,12 +25886,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface WebbgrƤnssnitt @@ -25287,7 +26028,11 @@ p, li { white-space: pre-wrap; } Wiki-sidor - + New Group + Ny grupp + + + Page Name Sidnamn @@ -25302,7 +26047,7 @@ p, li { white-space: pre-wrap; } Original-ID - + << << @@ -25390,7 +26135,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Sidredigeringshistorik @@ -25425,7 +26170,7 @@ p, li { white-space: pre-wrap; } Sid-ID - + \/ \/ @@ -25455,18 +26200,14 @@ p, li { white-space: pre-wrap; } Taggar - - History - Historik - - - + + Show Edit History Visa redigeringshistorik - + Status Status @@ -25487,7 +26228,7 @@ p, li { white-space: pre-wrap; } ƅterstƤll - + Submit Skicka @@ -25559,6 +26300,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + Tidsintervall + Create Account @@ -25570,7 +26315,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Uppdatera + + + Settings @@ -25585,7 +26339,7 @@ p, li { white-space: pre-wrap; } Andra - + Who to Follow @@ -25605,7 +26359,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25635,17 +26389,85 @@ p, li { white-space: pre-wrap; } - + Last Month + Fƶrra mĆ„naden + + + Last Week + Fƶrra veckan + + + Today + I dag + + + New + Nytt + + + from + FrĆ„n + + + until + tills + + + Search/Filter + Sƶk/Filter + + + Network Wide + NƤtverksƶvergripande + + + Manage Accounts + Hantera konton + + + Showing: + Visar: + + + Yourself Du sjƤlv + + Friends + Kontakter + Following Fƶljande - + Custom + Anpassad + + + Account 1 + Konto 1 + + + Account 2 + Konto 2 + + + Account 3 + Konto 3 + + + CheckBox + Kryssruta + + + Post Pulse to Wire + Posta Pulse till Wire + + + RetroShare RetroShare @@ -25708,42 +26530,35 @@ p, li { white-space: pre-wrap; } FormulƤr - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - Ta bort - - - Location: Plats: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25788,41 +26603,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - N/A - - - - Following - Fƶljande - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) OkƤnd @@ -25900,7 +26685,7 @@ p, li { white-space: pre-wrap; } %1Ć„ %2d - + k e.g: 3.1 k k @@ -25937,7 +26722,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_tr.ts b/retroshare-gui/src/lang/retroshare_tr.ts index 1163f7149..b0d731573 100644 --- a/retroshare-gui/src/lang/retroshare_tr.ts +++ b/retroshare-gui/src/lang/retroshare_tr.ts @@ -84,6 +84,13 @@ Yalnızca Gizli Düğüm + + AddCommentDialog + + Add Comment + Yorum Ekle + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: Gelişmiş Arama - + Search Criteria Arama Ɩlçütü - + Add a further search criterion. Başka bir arama ƶlçütü ekler. @@ -137,7 +144,7 @@ Arama ƶlçütlerini sıfırlar. - + Cancels the search. Aramayı iptal eder. @@ -157,6 +164,177 @@ Arama + + AlbumCreateDialog + + Create Album + Albüm Oluştur + + + Album Name: + Albüm Adı: + + + Category: + Kategori: + + + Animals + Hayvanlar + + + Family + Aile + + + Friends + Arkadaşlar + + + Flowers + ƇiƧekler + + + Holiday + Tatil + + + Landscapes + Manzaralar + + + Pets + Evcil hayvanlar + + + Portraits + Portreler + + + Travel + Seyahat + + + Work + İş + + + Random + Rastgele + + + Caption: + Başlık: + + + Where: + Nerede: + + + Photographer: + FotoğrafƧı: + + + Description: + AƧıklama: + + + Share Options + Paylaşım Ayarları + + + Policy: + İlke: + + + Quality: + Kalite: + + + Comments: + Yorum: + + + Identity: + Kimlik: + + + Public + Genel + + + Restricted + Kısıtlanmış + + + Resize Images (< 1Mb) + Gƶrselleri Yeniden Boyutlandır (< 1Mb) + + + Resize Images (< 10Mb) + Gƶrselleri Yeniden Boyutlandır (< 10Mb) + + + Send Original Images + Orijinal Gƶrselleri Gƶnder + + + No Comments Allowed + Yorum İzni Yok + + + Authenticated Comments + Kimliği Doğrulanmış Yorumlar + + + Any Comments Allowed + Herkes Yorum Yapabilir + + + Publish with Identity + 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;"> +<p style=" margin-top:0px; 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;"> 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> + + + Back + Geri + + + Add Photos + Fotoğraf Ekle + + + Publish Album + Albümü Yayınla + + + Untitle Album + Başlıksız Albüm + + + Say something about this album... + Bu albüm hakkında birşeyler yazın... + + + Where were these taken? + Bu fotoğraflar nerede Ƨekildi ? + + + Load Album Thumbnail + Albüm Küçük Gƶrseli Yükle + + AlbumDialog @@ -165,11 +343,19 @@ Album Albüm + + Album Thumbnail + Albüm Küçük Gƶrseli + TextLabel Metin Etiketi + + Summary + Ɩzet + Album Title: @@ -185,6 +371,34 @@ Caption Başlık + + Where: + Nerede: + + + When + Ne Zaman + + + Description: + AƧıklama: + + + Share Options + Paylaşım Ayarları + + + Comments + Yorumlar + + + Publish Identity + Kimliği Yayınla + + + Visibility + Gƶrünürlük + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -553,7 +767,7 @@ 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. Uyarı: Buradaki hizmetler henüz deneme aşamasındadır. Bu hizmetleri geliştirmemize yardımcı olun. @@ -569,6 +783,14 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Circles Ƈevreler + + GxsForums + GxsForumları + + + GxsChannels + GxsKanalları + The Wire @@ -580,23 +802,10 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Fotoğraflar - - AspectRatioPixmapLabel - - - Save image - Gƶrseli kaydet - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Browse... + + Add Avatar + Avatar Ekle + Remove Sil - + Set your Avatar picture Avatar gƶrselinizi ayarlayın @@ -658,6 +871,10 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + Avatar Yükle + AvatarWidget @@ -726,10 +943,22 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Sıfırlayın - + Receive Rate + Alma Hızı + + + Send Rate + Gƶnderme Hızı + + + Always on Top Her zaman üstte + + Style + BiƧem + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim % Opaque % Mat + + Save + Kaydedin + + + Cancel + İptal + Since: BaşlangıƧ: + + Hide Settings + Ayarlar Gizlensin + BandwidthStatsWidget @@ -822,7 +1063,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim BoardPostDisplayWidgetBase - + Comment @@ -852,12 +1093,12 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim - + <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 kodlu) engellendi.</b> - + ago @@ -865,7 +1106,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim BoardPostDisplayWidget_card - + Vote up Beğendim @@ -885,7 +1126,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim \/ - + Posted by @@ -923,7 +1164,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim BoardPostDisplayWidget_compact - + Vote up Beğendim @@ -943,7 +1184,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim \/ - + Click to view picture @@ -973,7 +1214,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Paylaş - + Toggle Message Read Status İleti Okundu Durumunu Değiştir @@ -983,7 +1224,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Yeni - + TextLabel Metin Etiketi @@ -991,12 +1232,12 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim BoardsCommentsItem - + I like this Beğendim - + 0 0 @@ -1016,18 +1257,18 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim Avatar - + New Comment - + Copy RetroShare Link - + Expand Genişlet @@ -1042,12 +1283,12 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim - + Name Ad - + Comm value @@ -1216,17 +1457,17 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim ChannelPage - + Channels Kanallar - + Tabs Sekmeler - + General Genel @@ -1236,17 +1477,11 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim - - Downloads - İndirmeler + Load posts in background (Thread) + İletiler artalanda yüklensin (İş ParƧacığı) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab Her kanal yeni bir sekmede aƧılsın @@ -1254,7 +1489,7 @@ Unutmayın: Buradaki herhangi bir bilgi, iletişim kurallarını güncellediğim ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this Beğendim @@ -1302,18 +1537,18 @@ into the image, so as to Avatar - + New Comment - + Copy RetroShare Link - + Expand Genişlet @@ -1328,7 +1563,7 @@ into the image, so as to - + Name Ad @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + + + + + Comments + Yorumlar + + + Hide Gizle @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name Ad @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby Sohbet Odasını Gƶrüntüle @@ -1549,6 +1794,22 @@ into the image, so as to Chats Sohbetler + + You have %1 new messages + %1 yeni iletiniz var + + + You have %1 new message + %1 yeni iletiniz var + + + %1 new messages + %1 yeni ileti + + + %1 new message + %1 yeni ileti + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby Bilinmeyen Oda - - + + Remove All Tümünü Kaldır @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name Ad - + Count Kullanıcı Sayısı @@ -1601,7 +1861,33 @@ into the image, so as to Konu - + + 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 @@ -1611,7 +1897,7 @@ into the image, so as to 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 @@ -1670,12 +1956,12 @@ 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: @@ -1685,31 +1971,31 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Bu sohbet odası iƧin bir kimlik seƧin: - + Create chat lobby + Sohbet odası oluşturun + + + [No topic provided] [Konu belirtilmemiş] - - + Selected lobby info + SeƧilmiş oda bilgileri + + + Private Ɩzel - - - + Public Herkese AƧı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=":/icons/png/add.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> - - - - + Anonymous IDs accepted İsimsiz kodlar kullanılabilir @@ -1719,25 +2005,42 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Otomatik Aboneliği Kaldır - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe Otomatik Aboneliği Ekle - + Search Chat lobbies Sohbet Odası Arama - + Search Name Ad Arama - + Subscribed + Abone Olundu + + + Columns Sütunlar + + Yes + Evet + + + No + Hayır + Chat rooms @@ -1749,47 +2052,47 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. - + Chat Room info - + Chat room Name: Sohbet Odası Adı: - + Chat room Id: Sohbet Odası Kodu: - + Topic: Konu: - + Type: Tür: - + Security: Güvenlik: - + Peers: Eşler: - - - - - - + + + + + + TextLabel Metin Etiketi @@ -1804,24 +2107,13 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. İsimsiz kodlar kullanılamaz - + Show Gƶrüntüle - - Private Subscribed - - - - - - Public Subscribed - - - - + column sütun @@ -1835,7 +2127,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. ChatMsgItem - + Remove Item Ɩgeyi Kaldır @@ -1880,22 +2172,46 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. ChatPage - + General Genel + + Distant Chat + Uzak Sohbet + Everyone Herkes + + Contacts + Kişiler + Nobody HiƧkimse - + Accept encrypted distant chat from + Şuradan şifreli uzak sohbeti kabul et + + + Chat Settings + Sohbet Ayarları + + + Enable Emoticons Private Chat + Ɩzel Sohbette İfadeler Kullanılabilsin + + + Enable Emoticons Group Chat + Grup Sohbetinde İfadeler Kullanılabilsin + + + Enable custom fonts Ɩzel yazı türleri kullanılsın @@ -1904,6 +2220,10 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Enable custom font size Ɩzel yazı boyutu kullanılsın + + Minimum font size + En küçük yazı boyutu + Enable bold @@ -1915,7 +2235,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Eğik yazım kullanılsın - + General settings @@ -1940,7 +2260,11 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Gƶmülü gƶrselleri yükle - + Chat Lobby + Sohbet Odası + + + Blink tab icon Yanıp sƶnen sekme simgesi @@ -1949,6 +2273,10 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Do not send typing notifications Yazıyor bildirimleri gƶnderilmesin + + Private Chat + Ɩzel Sohbet + Open Window for new chat @@ -1970,7 +2298,11 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Yanıp sƶnen pencere/sekme simgesi - + Chat Font + Sohbet Yazı Türü + + + Change Chat Font Sohbet Yazı Türünü Değiştir @@ -1980,10 +2312,14 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Sohbet Yazı Türü: - + History GeƧmiş + + Style + BiƧem + @@ -1998,13 +2334,17 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Variant: Ƈeşit: + + Group chat + Grup Sohbeti + Private chat Ɩzel sohbet - + Choose your default font for Chat. Sohbet iƧin varsayılan yazı türünü seƧin. @@ -2068,28 +2408,22 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. <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">Farklı sohbet sistemleri iƧin RetroShare tarafından diskinizde saklanacak sohbet iletisi sayısı ve gƶrüşme geƧmişinin ne kadarını gƶrüntüleneceği buradan ayarlanabilir. En fazla saklama süresi, eski iletilerin silinmesini ve sohbet geƧmişinin geƧici sohbetlerle dolmasını engeller (sohbet odaları ve uzak sohbet gibi).</p></body></html> + + Chatlobbies + Sohbet Odaları + Enabled: Etkin: - + Search Arama - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2433,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms Sohbet odaları @@ -2156,7 +2480,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Description: - AƧiklama: + @@ -2206,7 +2530,11 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. En fazla saklama süresi, gün olarak (0=sınırsız): - + Search by default + Varsayılan arama + + + Case sensitive Büyük küçük harfe duyarlı @@ -2245,6 +2573,10 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Threshold for automatic search Otomatik arama eşiği + + Default identity for chat lobbies: + Sohbet odaları iƧin varsayılan kimlik: + Show Bar by default @@ -2312,7 +2644,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. ChatToaster - + Show Chat Sohbeti Gƶrüntüle @@ -2348,7 +2680,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. ChatWidget - + Close Kapat @@ -2383,12 +2715,12 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Yatık - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon Emoticon ekle @@ -2397,6 +2729,10 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Attach a Picture 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> + Strike @@ -2468,6 +2804,11 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. Insert horizontal rule Yatay Ƨizgi ekle + + + Save image + Gƶrseli kaydet + Import sticker @@ -2505,7 +2846,7 @@ Odaya katılıp sohbet etmek iƧin Ƨift tıklayın. - + is typing... yazıyor... @@ -2529,7 +2870,7 @@ karakter fazla olacak. Yazı türünüzü seƧin. - + Do you really want to physically delete the history? GeƧmişi tamamen silmek istediğinize emin misiniz? @@ -2579,7 +2920,7 @@ karakter fazla olacak. Meşgul ve yanıtlamayabilir - + Find Case Sensitively B/K Harfe Duyarlı Arama @@ -2601,7 +2942,7 @@ karakter fazla olacak. X nesne bulunduktan sonra renklendirmeye devam edilsin (daha fazla işlemci gücü gerekir) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Ɩnceki </b><br/><i>Ctrl+Shift+G</i> @@ -2616,12 +2957,16 @@ karakter fazla olacak. <b>Bul </b><br/><i>Ctrl+F</i> - + (Status) (Durum) - + Set text font & color + Metin yazı türü ve rengini ayarlayın + + + Attach a File Dosya Ekle @@ -2637,12 +2982,12 @@ karakter fazla olacak. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>SeƧili metni işaretleyin</b><br><i>Ctrl+M</i> - + Person id: Kişi kodu: @@ -2654,12 +2999,12 @@ 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ış - + items found. ƶge bulundu. @@ -2679,7 +3024,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Buraya iletinizi yazın - + Don't stop to color after Şuradan sonra renklendirme durdurulmasın @@ -2705,7 +3050,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. CirclesDialog - + Showing details: Ayrıntılar gƶrüntüleniyor: @@ -2727,7 +3072,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - + Personal Circles Kişisel Ƈevreler @@ -2753,7 +3098,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - + Friends Arkadaşlar @@ -2813,7 +3158,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Arkadaşların Arkadaşları - + External Circles (Admin) Dış Ƈevreler (Yƶnetici) @@ -2829,7 +3174,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - + Circles Ƈevreler @@ -2881,48 +3226,43 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - + RetroShare RetroShare - + - + Error : cannot get peer details. Hata: eş ayrıntıları alınamıyor. - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2934,7 +3274,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Şifreleme - + Not connected Bağlı değil @@ -3016,17 +3356,25 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. yok - + <p>This certificate contains: <p>Bu sertifikanın iƧeriği: - + <li>a <b>node ID</b> and <b>name</b> <li>bir <b>düğüm kodu</b> ve <b>ad</b> - + an <b>onion address</b> and <b>port</b> + bir <b>onion adresi</b> ve <b>kapı</b> + + + an <b>IP address</b> and <b>port</b> + bir <b>IP adresi</b> ve <b>kapı</b> + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> <p>Yeni arkadaşlar eklemek iƧin bu sertifikayı kullanabilirsiniz. Sertifikayı e-posta ile gƶnderebilir ya da elden ele verebilirsiniz.</p> @@ -3041,7 +3389,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. <html><head/><body><p><span style=" font-weight:600;">OpenSSL</span> tarafından kullanılan şifreleme yƶntemi. Arkadaş düğümlerle kurulan bağlantı</p><p> her zaman yoğun bir şekilde şifrelenir ve DHE varsa bağlantı </p><p>&quot;mükemmel bir yƶnlendirme gizliliğine&quot;.</p> sahiptir</body></html> - + with ile @@ -3058,16 +3406,118 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Connect Friend Wizard Arkadaş Bağlantı Yardımcısı + + Add a new Friend + Yeni Arkadaş Ekle + + + &You get a certificate file from your friend + &Arkadaşınızdan bir sertifika dosyası aldıysanız + + + &Make friend with selected friends of my friends + &Arkadaşlarınızın seƧtiği kişilerle arkadaş olun + + + &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) + + + Include signatures + İmzalar katılsın + + + Copy your Cert to Clipboard + Sertifikanızı panoya kopyalayın + + + Save your Cert into a File + Sertifikanızı bir dosyaya kaydedin + + + Run Email program + E-posta programını Ƨalıştırın + Open Cert of your friend from File Dosyadan arkadaşınızın Sertifikasını yükleyin + + Open certificate + Sertifika yükleyin + + + Please, paste your friend's Retroshare certificate into the box below + Lütfen, arkadaşınızın RetroShare sertifikasını alttaki kutuya yapıştırın + + + Certificate files + Sertifika dosyaları + + + Use PGP certificates saved in files. + Dosyalarda kayıtlı PGP sertifikaları kullanılır. + + + Import friend's certificate... + Arkadaşınız sertifikasını iƧe aktarın... + + + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. + Sertifikanızın olduğu bir dosya üretip bunu arkadaşınıza ulaştırmalısınız. İsterseniz ƶnceden oluşturulmuş bir dosyayı da kullanabilirsiniz. + + + Export my certificate... + Sertifikamı dışa aktar... + + + Drag and Drop your friends's certificate in this Window or specify path in the box below + Arkadaşınızın sertifikasını sürükleyip bu pencereye bırakın ya da alttaki kutudan dosya yolunu seƧin + + + Browse + Gƶzat + + + Friends of friends + Arkadaşların arkadaşları + + + Select now who you want to make friends with. + Şimdi kiminle arkadaş olmak istediğinizi seƧin. + + + Show me: + Gƶster: + + + Make friend with these peers + Bu eşlerle arkadaş olun + RetroShare ID 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 Kodunu kullanın. + + + Add Friends RetroShare ID... + Arkadaşınızın RetroShare Kodunu Ekleyin... + + + Paste Friends RetroShare ID in the box below + 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 Kodunu yazın, Eş@BDE8D16A46D938CF gibi + RetroShare is better with Friends @@ -3109,7 +3559,27 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. E-posta - + Invite Friends by Email + Arkadaşlarınızı e-posta ile Ƨağırın + + + Enter your friends' email addresses (separate each one with a semicolon) + Arkadaşlarınızın e-posta adreslerini yazın (adresleri noktalı virgül ile ayırın) + + + Your friends' email addresses: + Arkadaşlarınızın e-posta adresleri: + + + Enter Friends Email addresses + Arkadaşlarınızın E-posta adreslerini yazın + + + Subject: + Konu: + + + @@ -3125,32 +3595,77 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. İstek hakkında ayrıntılar - + Peer details Eş bilgileri - + Name: Ad: + + Email: + E-posta: + + + Node: + Düğüm: + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Lütfen unutmayın, Ƨok fazla arkadaş eklerseniz, RetroShare aşırı miktarda bant genişliğine, belleğe ve işlemci gücüne gerek duyar. İstediğiniz kadar ekleyebilirsiniz, ama 40 arkadaştan fazlası Ƨok fazla kaynağa gerek duyabilir. + Location: Konum: - + Options Ayarlar - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Bu yardımcı RetroShare ağındaki arkadaşlarınızla bağlantı kurmanızı sağlar. <br>Arkadaşlarınızı nasıl eklemek istediğinizi seƧin: + + + Enter the certificate manually + Sertifikayı el ile yazın + + + Enter RetroShare ID manually + RetroShare kodunu el ile yazın + + + &Send an Invitation by Web Mail Providers + Web Posta Hizmeti &Sunucuları Üzerinden bir Ƈağrı Gƶnderin + + + Recommend many friends to each other + Arkadaşlarınızı diğerlerine ƶnerin + + + 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> - + Add friend to group: Gruba arkadaş ekleyin: @@ -3160,7 +3675,7 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Arkadaşı doğrulayın (PGP anahtarını imzalayın) - + Please paste below your friend's Retroshare ID @@ -3185,22 +3700,16 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with Bağlantı kurulacak arkadaş olarak ekleyin - + To accept the Friend Request, click the Finish button. + Arkadaşlık isteğini kabul etmek iƧin Tamam üzerine tıklayın. + + + Sorry, some error appeared Maalesef, bir sorun Ƨıktı @@ -3220,27 +3729,32 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. Arkadaşınızın bilgileri: - + Key validity: Anahtar geƧerliliği: - + Profile ID: - + + Signers + İmzalayanlar + + + <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> - + This peer is already on your friend list. Adding it might just set it's ip address. Bu eş zaten arkadaş listenizde. Eklerseniz yalnız IP adresi değişebilir. - + To accept the Friend Request, click the Accept button. @@ -3286,17 +3800,49 @@ Adını yazı alanına eklemek iƧin üstüne Ƨift tıklayın. - + Certificate Load Failed Sertifika Yüklenemedi - + Cannot get peer details of PGP key %1 + PGP anahtarı %1 olan eş bilgileri alınamıyor + + + Any peer I've not signed + İmzalamadığım eşler + + + Friends of my friends who already trust me + Bana güvenmiş olan arkadaşlarımın arkadaşları + + + Signed peers showing as denied + Reddedilmiş gƶrünen imzalanmış eşler + + + Peer name + Eş adı + + + Also signed by + Ayrıca imzalayan + + + Peer id + 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! - + RetroShare Invitation RetroShare Ƈağrısı @@ -3318,12 +3864,12 @@ 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? - + @@ -3331,7 +3877,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. - + This key is already on your trusted list Bu anahtar zaten güvenilir listenizde @@ -3371,7 +3917,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Şu kişi arkadaşlık isteğinde bulundu - + Profile password needed. @@ -3396,7 +3942,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. - + Valid Retroshare ID @@ -3406,7 +3952,47 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. - + Certificate Load Failed:file %1 not found + Sertifika yüklenemedi: %1 dosyası bulunamadı + + + This Peer %1 is not available in your Network + %1 eşi ağınızda bulunamadı + + + Use new certificate format (safer, more robust) + Yeni sertifika biƧimi kullanılsın (güvenli, daha sağlam) + + + Use old (backward compatible) certificate format + Eski sertifika biƧimi kullanılsın (geriye dƶnük uyumlu) + + + Remove signatures + İmzaları kaldır + + + RetroShare Invite + RetroShare Ƈağrı + + + Connect Friend Help + Arkadaş Bağlantısı Yardımı + + + You can copy this text and send it to your friend via email or some other way + Bu metni kopyalayarak e-posta ya da başka bir şekilde arkadaşınıza yollayabilirsiniz + + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + 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 (*) @@ -3445,7 +4031,11 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. *** Yok *** - + Use as direct source, when available + Olabildiğinde doğrudan kaynak olarak kullanılsın + + + IP-Addr: IP Adresi: @@ -3455,7 +4045,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. IP Adresi - + Show Advanced options Gelişmiş ayarları gƶrüntüle @@ -3464,6 +4054,10 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. <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 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>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> @@ -3474,13 +4068,45 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. <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> + + Recommend many friends to each others + Arkadaşlarınızı birbirine ƶnerin + + + Friend Recommendations + Arkadaş Ɩnerileri + + + The text below is your Retroshare certificate. You have to provide it to your friend + Aşağıda RetroShare sertifikanızı gƶrebilirsiniz. Bu metni arkadaşınıza iletmelisiniz + + + Message: + İleti: + + + Recommend friends + Arkadaş ƶnerin + + + To + Kime + + + Please select at least one friend for recommendation. + Ɩnerilecek 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. + Add key to keyring Anahtarı, anahtarlığa ekle - + This key is already in your keyring Bu anahtar zaten anahtarlığınızda bulunuyor @@ -3496,7 +4122,7 @@ uzak iletiler gƶndermek iƧin kullanılabilir. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Sertifikanın sürüm numarası hatalı. v0.6 ve v0.5 ağlarının birbiriyle uyumlu olmadığını unutmayın. @@ -3531,7 +4157,7 @@ kullanılabilir. IP adresini beyaz listeye ekle - + No IP in this certificate! Bu sertifikada bir IP adresi yok! @@ -3541,10 +4167,27 @@ kullanılabilir. <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> - + + [Unknown] + [Bilinmiyor] + + + Added with certificate from %1 Sertifikasıyla birlikte %1 üzerinden eklendi + + Paste Cert of your friend from Clipboard + Panodan arkadaşınızın Sertifikasını yapıştırın + + + Certificate Load Failed:can't read from file %1 + Sertifika Yüklenemedi: %1 dosyası okunamıyor + + + Certificate Load Failed:something is wrong with %1 + Sertifika Yüklenemedi: %1 dosyasında bir şeyler yanlış + ConnectProgressDialog @@ -3606,7 +4249,7 @@ kullanılabilir. - + UDP Setup UDP Kurulumu @@ -3642,7 +4285,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-family:'Lucida Grande'; font-size:13pt;">kapatabilirsiniz.</span></p></body></html> - + Connection Assistant Bağlantı Yardımcısı @@ -3652,20 +4295,17 @@ p, li { white-space: pre-wrap; } Eş Kodu GeƧersiz - - + Unknown State Durum Bilinmiyor - - + Offline Ƈevrimdisi - - + Behind Symmetric NAT Simetrik NAT Arkasında @@ -3675,14 +4315,12 @@ p, li { white-space: pre-wrap; } NAT Arkasında ve DHT Yok - - + NET Restart Ağı Yeniden Başlat - - + Behind NAT NAT Arkasında @@ -3692,8 +4330,7 @@ p, li { white-space: pre-wrap; } DHT Yok - - + NET STATE GOOD! AĞ DURUMU İYİ! @@ -3718,7 +4355,7 @@ p, li { white-space: pre-wrap; } RetroShare Eşleri Bulunuyor - + Lookup requires DHT Arama iƧin DHT gerekli @@ -4010,7 +4647,7 @@ p, li { white-space: pre-wrap; } Lütfen yeniden tam Sertifikayı iƧe aktarmayı deneyin - + @@ -4018,8 +4655,7 @@ p, li { white-space: pre-wrap; } Kullanılamıyor - - + UNVERIFIABLE FORWARD! YƖNLENDİRME DOĞRULANAMIYOR! @@ -4029,7 +4665,7 @@ p, li { white-space: pre-wrap; } YƖNLENDİRME DOĞRULANAMIYOR ve DHT YOK - + Searching Aranıyor @@ -4065,12 +4701,12 @@ p, li { white-space: pre-wrap; } Ƈevre Ayrıntıları - + Name Ad - + <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> @@ -4090,7 +4726,7 @@ p, li { white-space: pre-wrap; } - + IDs Kodlar @@ -4110,18 +4746,18 @@ p, li { white-space: pre-wrap; } SüzgeƧ - + Cancel - + Nickname Takma Ad - + Invited Members Ƈağrılmış Üyeler @@ -4136,7 +4772,15 @@ p, li { white-space: pre-wrap; } Bilinen Kişiler - + ID + Kod + + + Type + Tür + + + Name: Ad: @@ -4176,19 +4820,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Ƈevreler başka bir Ƨevrenin üyeleriyle kısıtlanabilir. Yalnız bu ikinci Ƨevredeki kişiler yeni Ƨevreyi ve iƧeriğini (üye listesi, vb) gƶrebilir.</p></body></html> - - + Only visible to members of: + Yalnız şu Ƨevrenin üyelerine gƶrüntülensin: + + + + RetroShare RetroShare - + Please set a name for your Circle Lütfen Ƈevrenize bir ad verin - + No Restriction Circle Selected Herhangi Bir Sınırlama Ƈevresi SeƧilmemiş @@ -4198,24 +4846,12 @@ p, li { white-space: pre-wrap; } Herhangi Bir Ƈevre Sınırlaması SeƧilmemiş - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [Bilinmiyor] - + Add Ekle @@ -4225,7 +4861,7 @@ p, li { white-space: pre-wrap; } Sil - + Search Arama @@ -4240,6 +4876,10 @@ p, li { white-space: pre-wrap; } Signed İmzalanmış + + Signed by known nodes + Bilinen düğümler tarafından imzalanmış + Edit Circle @@ -4256,6 +4896,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP Kodu + + Anon Id + İsimsiz Kod + Circle name @@ -4278,13 +4922,17 @@ p, li { white-space: pre-wrap; } Yeni Ƈevre Ekle - + Create Ekle - + PGP Linked Id + PGP Bağlantılı Kod + + + Add Member Üye Ekle @@ -4303,7 +4951,7 @@ p, li { white-space: pre-wrap; } Grup Ekle - + Group Name: Grup Adı: @@ -4338,7 +4986,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post Yeni Kanal İletisi @@ -4348,7 +4996,7 @@ p, li { white-space: pre-wrap; } Kanal İletisi - + Post @@ -4409,11 +5057,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;"><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 Ekle + Add Channel Thumbnail Kanal Küçük Gƶrseli Ekle + + Message + İleti + + + Subject : + Konu: + @@ -4499,17 +5159,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4528,18 +5188,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + Dosya Zaten Eklenmiş ve Karılmış + Please add a Subject Lütfen bir konu ekleyin - - Cannot publish post - - - - + Load thumbnail picture Küçük Gƶrsel Yükle @@ -4554,12 +5213,18 @@ p, li { white-space: pre-wrap; } Gizle - + + Generate mass data Toplu veri üret - + + Do you really want to generate %1 messages ? + GerƧekten %1 ileti oluşturmak istiyor musunuz? + + + You are about to add files you're not actually sharing. Do you still want this to happen? GerƧekte paylaşmadığınız dosyaları eklemek istediğinize emin misiniz? @@ -4593,7 +5258,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message Forum İletisi Gƶnder @@ -4602,6 +5267,10 @@ p, li { white-space: pre-wrap; } Forum Forum + + Subject + Konu + Attach File @@ -4622,8 +5291,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4642,7 +5311,7 @@ p, li { white-space: pre-wrap; } Eklemek istediğiniz dosyaları sürükleyip bu pencereye bırakabilirsiniz - + Post @@ -4672,17 +5341,17 @@ p, li { white-space: pre-wrap; } - + No Forum Forum Yok - + In Reply to Şuna Yanıt - + Title Başlık @@ -4736,7 +5405,7 @@ Bu iletiyi silmek istiyor musunuz? Gƶrsel Dosyası Yükle - + No compatible ID for this forum Bu forum iƧin uyumlu bir kod bulunamadı @@ -4746,8 +5415,8 @@ Bu iletiyi silmek istiyor musunuz? 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 üret @@ -4756,6 +5425,10 @@ Bu iletiyi silmek istiyor musunuz? Do you really want to generate %1 messages ? GerƧekten %1 ileti üretmek istiyor musunuz? + + Send + Gƶnder + Post as @@ -4770,7 +5443,23 @@ Bu iletiyi silmek istiyor musunuz? CreateLobbyDialog - + Create Chat Lobby + Sohbet Odası Oluştur + + + 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. + Sohbet odası merkezi olmayan, isimsiz bir sohbet grubudur. Tüm katılımcılar tüm iletileri alabilir. Odayı oluşturduktan sonra Arkadaşlar sekmesinden diğer arkadaşlarınızı Ƨağırabilirsiniz. + + + Lobby name: + Oda Adı: + + + Lobby topic: + Oda Konusu: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4805,7 +5494,7 @@ Bu iletiyi silmek istiyor musunuz? - + Create Ekle @@ -4815,7 +5504,11 @@ Bu iletiyi silmek istiyor musunuz? - + <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ı 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> + + + require PGP-signed identities PGP imzalı kimlikler zorunlu olsun @@ -4830,7 +5523,11 @@ Bu iletiyi silmek istiyor musunuz? Grup sohbeti yapmak istediğiniz Arkadaşlarınızı seƧin. - + Invited friends + Ƈağrılan Arkadaşlar + + + Create Chat Room Sohbet Odası Ekle @@ -4851,7 +5548,7 @@ Bu iletiyi silmek istiyor musunuz? İlgililer: - + Identity to use: Kullanılacak kimlik: @@ -4859,17 +5556,17 @@ Bu iletiyi silmek istiyor musunuz? CryptoPage - + Public Information Herkese AƧık Bilgiler - + Name: Ad: - + Location: Konum: @@ -4879,12 +5576,12 @@ Bu iletiyi silmek istiyor musunuz? Konum Kodu: - + Software Version: Yazılım Sürümü: - + Online since: ƇevrimiƧi süresi: @@ -4904,7 +5601,12 @@ Bu iletiyi silmek istiyor musunuz? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4914,7 +5616,7 @@ Bu iletiyi silmek istiyor musunuz? - + Other Information Diğer Bilgiler @@ -4924,12 +5626,17 @@ Bu iletiyi silmek istiyor musunuz? - + Profile - + + Certificate + Sertifika + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4939,7 +5646,11 @@ Bu iletiyi silmek istiyor musunuz? İmzalar katılsın - + Save Key into a file + Anahtarı dosyaya kaydet + + + Export Identity Kimliği Dışa Aktar @@ -5013,33 +5724,33 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + TextLabel Metin Etiketi - + PGP fingerprint: PGP Parmak İzi: - + + Node information + Düğüm Bilgileri + + + PGP Id : PGP Kodu : - + Friend nodes: Arkadaş Düğümleriniz: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5078,6 +5789,14 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Node Düğüm + + Create new node... + Yeni düğüm ekle... + + + show statistics window + istatistik penceresini gƶrüntüle + DHTGraphSource @@ -5094,6 +5813,10 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>RetroShare 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> + <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 trusted nodes 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 trusted nodes.</p> @@ -5129,7 +5852,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz DLListDelegate - + B B @@ -5797,7 +6520,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz DownloadToaster - + Start file Dosyayı başlat @@ -5805,38 +6528,38 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz ExprParamElement - + - + to hedef - + ignore case büyük küçük harf ƶnemsiz - - - yyyy-MM-dd - + + + dd.MM.yyyy + gg.AA.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5844,12 +6567,12 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz ExpressionWidget - + Expression Widget İfade Gereci - + Delete this expression Bu ifadeyi sil @@ -6011,7 +6734,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz FilesDefs - + Picture Gƶrsel @@ -6021,7 +6744,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Gƶrüntü - + Audio Ses @@ -6081,21 +6804,11 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories Arkadaş Klasƶrleri @@ -6217,7 +6930,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + ID Kod @@ -6252,6 +6965,10 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Show State Durum Gƶrüntülensin + + Trusted nodes + Güvenilen düğümler + @@ -6259,7 +6976,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Gruplar Gƶrüntülensin - + Group Grup @@ -6295,7 +7012,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Gruba ekle - + Search Arama @@ -6311,7 +7028,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Duruma gƶre sırala - + Profile details Profil bilgileri @@ -6555,7 +7272,7 @@ en az bir eş bir gruba eklenemedi FriendRequestToaster - + Confirm Friend Request Arkadaşlık İsteğini Onayla @@ -6572,6 +7289,10 @@ en az bir eş bir gruba eklenemedi FriendSelectionWidget + + Search : + Arama : + Sort by state @@ -6593,7 +7314,7 @@ en az bir eş bir gruba eklenemedi Arkadaş Arama - + Mark all Tümünü işaretle @@ -6604,134 +7325,16 @@ en az bir eş bir gruba eklenemedi Tümünün işaretini kaldır - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - Ad - - - - Node ID - - - - - Address - - - - - Status - Durum - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - Arkadaş ol - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - Vekil sunucu etkinleştirilmemiş ya da bozuk. -Tüm hizmetler düzgün Ƨalışıyor mu?? -Ayrıca kapı ayarlarınızı da denetleyin! - - FriendsDialog - + Edit status message Durum iletisini düzenle - - + + Broadcast Yayınla @@ -6814,38 +7417,33 @@ Ayrıca kapı ayarlarınızı da denetleyin! Yazı türünü varsayılana Ƨevir - + Keyring Anahtarlık - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Ağ</h1> <p>Ağ sekmesi arkadaşınız olan RetroShare düğümlerini: yani size bağlı 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> + + + Retroshare broadcast chat: messages are sent to all connected friends. RetroShare sohbeti yayını: iletiler bağlı olan tüm arkadaşlara gƶnderilir. - - + + Network Ağ - - Friend Server - - - - + Network graph Ağ Ƨizelgesi - - <h1><img width="%1" 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> - - - - + Set your status message here. Durum iletinizi buraya yazın. @@ -6863,17 +7461,7 @@ Ayrıca kapı ayarlarınızı da denetleyin! Parola - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters Tüm alanlara en az 3 karakter yazılmalıdır @@ -6883,12 +7471,17 @@ Ayrıca kapı ayarlarınızı da denetleyin! Parola ve onayı aynı değil - + Port Kapı - + + Use BOB + BOB kullan + + + This password is for PGP Bu parola PGP iƧin @@ -6909,38 +7502,50 @@ Ayrıca kapı ayarlarınızı da denetleyin! Yeni sertifikanız üretilemedi. PGP parolası yanlış olabilir! - + 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ı - + Node type: @@ -6960,12 +7565,12 @@ Ayrıca kapı ayarlarınızı da denetleyin! - + <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 @@ -6975,43 +7580,42 @@ Ayrıca kapı ayarlarınızı da denetleyin! - + <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> - - Use I2P - - - - + <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 - + Advanced options + Gelişmiş Ayarlar + + + hidden address gizli adres - + 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ı 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 ile 65535 arasındaki herhangi bir değer</p><p>kullanılabilir. Bu değer daha sonra değiştirilebilir.</p></body></html> @@ -7059,13 +7663,13 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz Profiliniz kaydedilemedi. Bir sorun Ƨıktı. - + Import profile Profili iƧe aktar - + Create new profile and new Retroshare node Yeni profil ve yeni bir RetroShare düğümü oluştur @@ -7075,7 +7679,7 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz Yeni bir RetroShare düğümü oluştur - + Tor/I2P address Tor/I2P adresi @@ -7110,7 +7714,7 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7120,7 +7724,12 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz - + + BOB support is not available + + + + <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> @@ -7130,7 +7739,12 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz <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 @@ -7356,13 +7970,36 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz Buradan Başlayın - + Invite Friends Arkadaşlarınızı Ƈağırın - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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ın Ƨağrınızı aldıklarından emin olun... </span></p> +<p style=" 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ı ekleyebilmeniz iƧin hem siz hem de arkadaşınız birbirinizi eklemelisiniz.</span></p></body></html> + + + Add Your Friends to RetroShare Arkadaşlarınızı RetroShare Üzerine Ekleyin @@ -7372,103 +8009,124 @@ ve İƧe Aktar düğmesini kullanarak yükleyebilirsiniz Arkadaşlarınızı Ekleyin - - Connect To Friends - Arkadaşlarınıza Bağlanın - - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Arkadaşlarınızla aynı anda ƧevrimiƧi olduğunuzda RetroShare sizi otomatik olarak bağlar!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">İstemcinizin bağlantılar kurabilmesi iƧin ƶnce RetroShare ağını bulması gerekir.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bu işlem RetroShare ilk kez başlatıldığında 5-30 dakika arasında sürer.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bağlantılar kurulduğunda DHT gƶstergesi (Durum Ƈubuğunda) yeşile dƶner.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Bir kaƧ dakika sonra NAT gƶstergesi (gene Durum Ƈubuğunda) sarı ya da yeşile dƶner.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Gƶsterge kırmızı kalırsa RetroShare bağlantısının kurulmasında zorluk Ƨıkaran bir Güvenlik Duvarı var demektir.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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 durumda bağlantı kurmakla ilgili ayrıntılı bilgi almak iƧin ilgili yardım bƶlümüne bakın.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - Gelişmiş: Güvenlik Duvarında Kapı AƧın +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> +<p style=" 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) ƇevrimiƧi Forumlara bakın. Soru sorun ve ƶzellikleri tartışı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;">3) RetroShare İƧi Forumları deneyin </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Bunlar arkadaşlarınıza bağlandığınızda ƧevrimiƧi 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:12pt;"></p> +<p style=" 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) Hala sorun yaşıyorsanız bize e-posta gƶnderin.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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 kullanmanın tadını Ƨıkarın.</span></p></body></html> - + + Connect To Friends + Arkadaşlarınıza Bağlanın + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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ında Kapı AƧın + + + Further Help and Support Ayrıntılı Yardım ve Destek Alın - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website RetroShare Web Sitesini AƧın @@ -7493,7 +8151,7 @@ p, li { white-space: pre-wrap; } E-posta Geri Bildirimi - + RetroShare Invitation RetroShare Ƈağrısı @@ -7543,12 +8201,12 @@ p, li { white-space: pre-wrap; } RestroShare Geri Bildirimi - + RetroShare Support RetroShare Desteği - + It has many features, including built-in chat, messaging, Canlı sohbet, ileti gƶnderme gibi pek Ƨok ƶzellik vardır, @@ -7672,7 +8330,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat Grup Sohbetini Gƶrüntüle @@ -7680,7 +8338,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [Bilinmiyor] @@ -7846,11 +8504,19 @@ p, li { white-space: pre-wrap; } 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. Paylaşarak arkadaşlarınıza forumunuzu duyurabilirsiniz. Forumunuzu paylaşmak istediğiniz arkadaşlarınızı seƧin. + + Share topic admin permissions + Konu yƶnetici izinlerini paylaş + + + 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. + Arkadaşlarınıza konuyu düzenleme izni verebilirsiniz. Aşağıdaki listeden arkadaşlarınızı seƧin. Not: verilen yƶnetici izinlerinin geri alınamayacağını unutmayın. + GroupTreeWidget - + Title Başlık @@ -7863,12 +8529,12 @@ p, li { white-space: pre-wrap; } - + Description AƧıklama - + Number of Unread message @@ -7893,7 +8559,35 @@ 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ırala + + + Sort by Popularity + Beğeniye Gƶre Sırala + + + Sort by Last Post + Son İletiye Gƶre Sırala + + + Sort by Number of Posts + İ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 (Düzenle menüsünden ad ve aƧıklamaları değiştirebilirsiniz) @@ -7908,14 +8602,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post Son İleti - + Name Ad @@ -7926,13 +8620,17 @@ p, li { white-space: pre-wrap; } - + Never HiƧ - + Display + Gƶrünüm + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7945,7 +8643,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and ve @@ -8081,7 +8779,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanallar @@ -8092,22 +8790,26 @@ p, li { white-space: pre-wrap; } Kanal Ekle - + Enable Auto-Download Otomatik İndirme Kullanılsın - + My Channels Kanallarım - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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> + + + + <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> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels Abone Olunan Kanallar @@ -8127,12 +8829,12 @@ p, li { white-space: pre-wrap; } Kanal indirme klasƶrünü seƧin - + Disable Auto-Download Otomatik İndirmeyi Devre Dışı Bırak - + Set download directory İndirme klasƶrünü ayarla @@ -8167,22 +8869,22 @@ p, li { white-space: pre-wrap; } - + Play Oynat - + Open folder Klasƶrü aƧ - + Open file - + Error Hata @@ -8202,17 +8904,17 @@ p, li { white-space: pre-wrap; } Denetleniyor - + Are you sure that you want to cancel and delete the file? İşlemi iptal edip dosyayı silmek istediğinize emin misiniz? - + Can't open folder Klasƶr aƧılamadı - + Play File Dosyayı Oynat @@ -8222,10 +8924,37 @@ p, li { white-space: pre-wrap; } %1 dosyası konumda bulunamadı. + + GxsChannelFilesWidget + + Form + Form + + + Filename + Dosya Adı + + + Size + Boyut + + + Title + Başlık + + + Published + Yayınlanmış + + + Status + Durum + + GxsChannelGroupDialog - + Create New Channel Yeni Kanal Ekle @@ -8263,19 +8992,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - Metin Etiketi - - - - Subscribe this Channel - + + Subscribe to Channel + Kanala Abone Ol @@ -8289,7 +9008,7 @@ p, li { white-space: pre-wrap; } - + Expand Genişlet @@ -8304,7 +9023,7 @@ p, li { white-space: pre-wrap; } Kanal AƧıklaması - + Loading Yükleniyor @@ -8319,9 +9038,8 @@ p, li { white-space: pre-wrap; } - - Never - HiƧ + New Channel + Kanal Ekle @@ -8332,7 +9050,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: Yeni Yorum: @@ -8353,7 +9071,7 @@ p, li { white-space: pre-wrap; } - + Play Oynat @@ -8409,24 +9127,28 @@ p, li { white-space: pre-wrap; } Files Dosya + + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. + Uyarı! Bu dosyanın silinmesine %1 saat %2 dakikadan az kaldı. Dosyayı kaydetmeyi düşünün. + Hide Gizle - + New Yeni - + 0 0 - - + + Comment Yorum @@ -8441,17 +9163,21 @@ p, li { white-space: pre-wrap; } Beğenmedim - + Loading + Yükleniyor + + + Loading... - + Comments Yorumlar - + Post @@ -8476,16 +9202,139 @@ p, li { white-space: pre-wrap; } Ortamı Oynat + + GxsChannelPostsWidget + + Post to Channel + Kanala Gƶnder + + + Add new post + Yeni ileti oluştur + + + Loading + Yükleniyor + + + Search channels + Kanal Arama + + + Title + Başlık + + + Search Title + Başlık Arama + + + Message + İleti + + + Search Message + İleti Arama + + + Filename + Dosya Adı + + + Search Filename + Dosya Adı Arama + + + No Channel Selected + Bir Kanal SeƧilmemiş + + + Never + HiƧ + + + Public + Herkese AƧık + + + Restricted to members of circle " + Ƈevre üyeleri ile kısıtlı " + + + Restricted to members of circle + Ƈevre üyeleri ile kısıtlı + + + Your eyes only + Yalnız sizin gƶzlerinize + + + You and your friend nodes + Siz ve arkadaş düğümlerinize + + + Disable Auto-Download + Otomatik İndirmeyi Devre Dışı Bırak + + + Enable Auto-Download + Otomatik İndirmeyi Etkinleştir + + + Show feeds + Akışları gƶrüntüle + + + Show files + Dosyaları gƶrüntüle + + + Administrator: + Yƶnetici: + + + Last Post: + Son İleti: + + + unknown + bilinmiyorr + + + Distribution: + Dağıtım: + + + Feeds + Akış + + + Files + Dosya + + + Subscribers + Abone + + + Description: + AƧıklama: + + + Posts (at neighbor nodes): + Gƶnderiler (komşu düğümlerden): + + GxsChannelPostsWidgetWithModel - + Post to Channel Kanala Gƶnder - + Add new post Yeni ileti oluştur @@ -8555,7 +9404,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8591,7 +9440,7 @@ p, li { white-space: pre-wrap; } - + Comments Yorumlar @@ -8606,13 +9455,13 @@ p, li { white-space: pre-wrap; } Akış - - + + Click to switch to list view - + Show unread posts only @@ -8627,7 +9476,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8642,7 +9491,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8702,22 +9551,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8769,7 +9608,7 @@ p, li { white-space: pre-wrap; } Public - Herkese AƧık + @@ -8792,15 +9631,14 @@ p, li { white-space: pre-wrap; } Siz ve arkadaş düğümlerinize - - + Copy Retroshare link - + Subscribed - Abone + @@ -8835,7 +9673,7 @@ p, li { white-space: pre-wrap; } Enable Auto-Download - Otomatik İndirme Kullanılsın + @@ -8849,17 +9687,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel Metin Etiketi - + Circle name: - + Accept @@ -8879,11 +9717,27 @@ p, li { white-space: pre-wrap; } Remove Item Ɩgeyi Sil + + for identity + ş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: + @@ -8974,7 +9828,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container Yorum Taşıyıcı @@ -8987,7 +9841,7 @@ p, li { white-space: pre-wrap; } Form - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9017,7 +9871,7 @@ p, li { white-space: pre-wrap; } Yenile - + Comment Yorum @@ -9056,7 +9910,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment Yorumu Yanıtla @@ -9080,21 +9934,6 @@ p, li { white-space: pre-wrap; } Vote Down Beğenmedim - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9104,7 +9943,7 @@ p, li { white-space: pre-wrap; } 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; } @@ -9133,10 +9972,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">Yorum</span></p></body></html> + + + Signed by + İmzalayan + Reply to Comment @@ -9165,7 +10020,7 @@ before you can comment bir kimlik oluşturmalısınız - + It remains %1 characters after HTML conversion. @@ -9207,6 +10062,14 @@ bir kimlik oluşturmalısınız Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + Forum Yƶneticileri Ekle + + + Select Forum Admins + Forum Yƶneticilerini SeƧin + Create @@ -9216,7 +10079,7 @@ bir kimlik oluşturmalısınız GxsForumGroupItem - + Subscribe to Forum Foruma Abone Ol @@ -9232,7 +10095,7 @@ bir kimlik oluşturmalısınız - + Expand Genişlet @@ -9252,9 +10115,8 @@ bir kimlik oluşturmalısınız - - TextLabel - Metin Etiketi + Loading + Yükleniyor @@ -9285,13 +10147,13 @@ bir kimlik oluşturmalısınız GxsForumMsgItem - - + + Subject: Konu: - + Unsubscribe To Forum Forum Aboneliğinden Ayrıl @@ -9302,7 +10164,7 @@ bir kimlik oluşturmalısınız - + Expand Genişlet @@ -9322,17 +10184,21 @@ bir kimlik oluşturmalısınız Şuna Yanıt Olarak: - + Loading + Yükleniyor + + + Loading... - + Forum Feed Forum Akışı - + Hide Gizle @@ -9345,66 +10211,63 @@ bir kimlik oluşturmalısınız Form - + Start new Thread for Selected Forum SeƧilmiş Foruma Yeni Konu Ekle - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums Forum Arama - + Last Post + Son İleti + + + New Thread Yeni Konu + + + Threaded View + İƧ İƧe Gƶrünüm + + + + Flat View + Düz Gƶrünüm + - + Title Başlık - - + + Date Tarih - + Author Yazar - + + Save image + Gƶrseli Kaydet + + + Loading Yükleniyor - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9414,7 +10277,12 @@ bir kimlik oluşturmalısınız - + + Lastest post in thread + + + + Reply Message İletiyi Yanıtla @@ -9438,6 +10306,10 @@ bir kimlik oluşturmalısınız Download all files Tüm dosyaları indir + + Next unread + Sonraki Okunmamış + Search Title @@ -9454,23 +10326,35 @@ bir kimlik oluşturmalısınız Yazar Arama - + Content + İƧerik + + + Search Content + İƧerik Arama + + + <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> + + + No name Adsız - - + + Reply Yanıtla - + <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> - + Loading... @@ -9513,12 +10397,20 @@ bir kimlik oluşturmalısınız RetroShare Bağlantısını Kopyala - + Hide Gizle - + Expand + Genişlet + + + [Banned] + [Engellenmiş] + + + [unknown] [bilinmiyor] @@ -9548,8 +10440,8 @@ bir kimlik oluşturmalısınız Yalnız sizin gƶzlerinize - - + + Distribution Dağıtım @@ -9563,6 +10455,26 @@ bir kimlik oluşturmalısınız Anti-spam Ɩnemsiz İleti Ayıklama + + [ ... Redacted message ... ] + [ ... Düzeltilmiş İleti ... ] + + + Anonymous + İsimsiz + + + signed + imzalanmış + + + none + yok + + + [ ... Missing Message ... ] + [... İleti Eksik ... ] + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> @@ -9632,12 +10544,16 @@ bir kimlik oluşturmalısınız Ɩzgün İleti - + New thread Yeni konu - + Read status + Okunma durumu + + + Edit Düzenle @@ -9698,7 +10614,7 @@ bir kimlik oluşturmalısınız Yazarın değerlendirmesi - + Show column @@ -9718,7 +10634,7 @@ bir kimlik oluşturmalısınız - + Anonymous/unknown posts forwarded if reputation is positive Değerlendirme olumlu ise İsimsiz/bilinmeyen iletiler iletilir @@ -9770,7 +10686,7 @@ This message is missing. You should receive it later. - + No result. @@ -9780,7 +10696,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9795,7 +10711,29 @@ This message is missing. You should receive it later. - + 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) @@ -9804,6 +10742,10 @@ This message is missing. You should receive it later. (Old) (Eski) + + You cant act on the author to a non-existant Message + Var olmayan bir iletinin yazarına işlem yapamazsınız + From @@ -9861,12 +10803,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> - + Forums Forumlar @@ -9897,16 +10839,35 @@ This message is missing. You should receive it later. Diğer Forumlar + + GxsForumsFillThread + + Waiting + Bekliyor + + + Retrieving + Alınıyor + + + Loading + Yükleniyor + + GxsGroupDialog - + Name Ad - + Add Icon + 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ıtlanmış türde gruplar üzerinde yayınlama işlemi yapabilir ve ƶzel türde kanallar üzerinde okuma yayınlama işlemi yapabilir. @@ -9915,14 +10876,22 @@ This message is missing. You should receive it later. Share Publish Key Yayınlama Anahtarını Paylaş + + check peers you would like to share private publish key with + ƶzel yayın anahtarınızı paylaşacağınız eşleri seƧin + + + Share Key With + Anahtarı Şunlarla Paylaş + - + Description AƧıklama - + Message Distribution İleti Dağıtımı @@ -9930,7 +10899,7 @@ This message is missing. You should receive it later. - + Public Herkese AƧık @@ -9949,6 +10918,14 @@ This message is missing. You should receive it later. New Thread Konu Ekle + + Required + Zorunlu + + + Encrypted Msgs + Şifreli İletiler + Personal Signatures @@ -9990,7 +10967,7 @@ This message is missing. You should receive it later. Ɩnemsiz ileti koruması - + Comments: Yorumlar: @@ -10013,7 +10990,7 @@ This message is missing. You should receive it later. Ɩnemsiz İleti Ayıklama: - + All People @@ -10029,12 +11006,12 @@ This message is missing. You should receive it later. - + Restricted to circle: Ƈevre ile sınırlı: - + Limited to your friends Arkadaşlarınız ile sınırlı @@ -10051,23 +11028,23 @@ This message is missing. You should receive it later. - + Message tracking İleti izleme - - + + PGP signature required PGP imzası zorunlu - + Never HiƧ - + Only friends nodes in group Yalnız gruptaki arkadaş düğümleri @@ -10083,28 +11060,30 @@ This message is missing. You should receive it later. Lütfen bir ad ekleyin - + PGP signature from known ID required Bilinen bir kodun PGP imzası zorunludur - - - [None] - - - - + Load Group Logo Grup Logosunu Yükle - + Submit Group Changes Grup Değişikliklerini Gƶnder - + Failed to Prepare Group MetaData - please Review + Grup Üst Verisi Hazırlanamadı - Lütfen Gƶzden GeƧirin + + + Will be used to send feedback + Geri bildirim gƶndermek iƧin kullanılır + + + Owner: Sahip: @@ -10114,12 +11093,12 @@ This message is missing. You should receive it later. Buraya aƧıklayıcı bilgiler yazın - + Info Bilgiler - + ID Kod @@ -10129,7 +11108,7 @@ This message is missing. You should receive it later. Son İleti - + <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> @@ -10204,12 +11183,7 @@ This message is missing. You should receive it later. İmzasız ve bilinmeyen düğüm kodlarını gƶzden düşür - - Author: - - - - + Popularity Beğenilme @@ -10225,22 +11199,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create Ekle - + + Author + Yazar + + + GxsIdLabel GxsKodEtiketi @@ -10248,7 +11227,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading Yükleniyor @@ -10308,7 +11287,7 @@ This message is missing. You should receive it later. Ayrıntıları Düzenle - + Synchronise posts of last... İletilerin eşitleneceği süre... @@ -10365,12 +11344,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + Yayınlama izinlerini paylaş + + + Copy RetroShare Link RetroShare Bağlantısını Kopyala @@ -10393,7 +11376,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature İmza Yok @@ -10406,24 +11389,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + Yükleniyor + + + Not found Bulunamadı + + No Signature + İmza Yok + - - + + [Banned] [Engellenmiş] + + Authentication + Doğrulama + unknown Key Anahtar Bilinmiyor - + anonymous + isimsiz + + + Loading... @@ -10433,12 +11432,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name Kimlik&nbsp;Adı @@ -10452,20 +11446,16 @@ This message is missing. You should receive it later. Node Düğüm + + Signed&nbsp;by + İmzalayan + [Unknown] [Bilinmiyor] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10477,7 +11467,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10525,13 +11515,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [Bilinmiyor] GxsMessageFramePostWidget + + Loading + Yükleniyor + Loading... @@ -10648,6 +11642,10 @@ This message is missing. You should receive it later. Group ID / Author Grup Kodu / Yazar + + Number of messages / Publish TS + İleti sayısı / Yayım Zamanı + Local size of data @@ -10663,6 +11661,10 @@ This message is missing. You should receive it later. Popularity Beğenilme + + Details + Ayrıntılar + @@ -10695,6 +11697,41 @@ This message is missing. You should receive it later. Hayır + + GxsTunnelsDialog + + Authenticated tunnels: + Doğrulanmış tüneller: + + + Tunnel ID: %1 + Tünel Kodu: %1 + + + from: %1 + şuradan: %1 + + + to: %1 + şuraya: %1 + + + status: %1 + durum: %1 + + + total sent: %1 bytes + toplam gƶnderilen: %1 bayt + + + total recv: %1 bytes + toplam alınan: %1 bayt + + + Unknown Peer + Eş Bilinmiyor + + HashBox @@ -10907,12 +11944,48 @@ This message is missing. You should receive it later. About Hakkında + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> +<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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10928,7 +12001,7 @@ p, li { white-space: pre-wrap; } - + Authors Geliştiriciler @@ -10947,7 +12020,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10960,6 +12033,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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 Ƈ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 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;">İ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> + License Agreement @@ -11025,12 +12128,12 @@ p, li { white-space: pre-wrap; } Form - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11045,7 +12148,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11054,12 +12157,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + 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, @@ -11069,12 +12192,20 @@ private and secure decentralized communication platform. 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 @@ -11084,7 +12215,7 @@ merkezi olmayan kişisel ve güvenli bir iletişim platformu. Sertifikanızı Bir Dosyaya Kaydedin - + Send via Email E-posta ile Gƶnder @@ -11104,37 +12235,13 @@ merkezi olmayan kişisel ve güvenli bir iletişim platformu. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11146,12 +12253,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11160,11 +12272,19 @@ new short format Your Retroshare ID is copied to Clipboard, paste and send it to your friend via email or some other way + + <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ı + + 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... @@ -11436,14 +12556,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All Tümü - + Reputation Değerlendirme @@ -11453,12 +12573,12 @@ p, li { white-space: pre-wrap; } Arama - + Anonymous Id İsimsiz Kod - + Create new Identity Yeni kimlik ekle @@ -11468,7 +12588,7 @@ p, li { white-space: pre-wrap; } Yeni Ƨevre ekle - + Persons Kişiler @@ -11483,27 +12603,27 @@ p, li { white-space: pre-wrap; } Kişi - + Close Kapat - + 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 - + Friend votes: Arkadaş değerlendirmeleri: - + Positive votes Olumlu değerlendirme @@ -11519,39 +12639,29 @@ p, li { white-space: pre-wrap; } Olumsuz değerlendirme - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics Kullanım istatistikleri - + Circles Ƈevreler - + Circle name Ƈevre adı @@ -11571,20 +12681,18 @@ p, li { white-space: pre-wrap; } Kişisel Ƈevreler - + - Edit identity Kimliği Düzenle - - + Delete identity Kimliği Sil - + Chat with this peer Bu eş ile sohbet et @@ -11594,78 +12702,97 @@ p, li { white-space: pre-wrap; } Bu eş ile bir sohbet başlatır - + Owner node ID : Sahip düğüm kodu : - + Identity name : Kimlik adı : - + () () - + Identity ID Kimlik Kodu - + Send message İleti Gƶnder - + Identity info Kimlik Bilgileri - + Identity ID : Kimlik Kodu : - + Owner node name : Sahip düğüm adı : - + Create new... Yeni ekle... - + Type: Tür: - + Send Invite Ƈ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. Olumsuz kƶtü,</p><p>olumlu iyi, sıfır kararsızdır</p></body></html> - + Your opinion: Değerlendirmeniz: - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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 Olumsuz - + Neutral Kararsız @@ -11676,17 +12803,17 @@ p, li { white-space: pre-wrap; } 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>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 Değerlendirme: - + Anonymous İsimsiz @@ -11701,24 +12828,24 @@ p, li { white-space: pre-wrap; } Kod Arama - + This identity is owned by you Bu kimlik size ait - - + + My own identities Kendi kimliklerim - - + + My contacts Kişilerim - + Show Items Ɩgeleri Gƶrüntüle @@ -11733,12 +12860,7 @@ p, li { white-space: pre-wrap; } Düğümümle bağlantılı - - <h1><img width="%1" 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> - - - - + Other circles Diğer Ƨevreler @@ -11748,7 +12870,7 @@ p, li { white-space: pre-wrap; } Üyesi olduğum Ƨevreler - + Circle ID: Ƈevre Kodu: @@ -11823,7 +12945,7 @@ p, li { white-space: pre-wrap; } Üye değil (bu Ƨevrenin verilerine erişemezsiniz) - + Identity ID: Kimlik Kodu: @@ -11853,7 +12975,7 @@ p, li { white-space: pre-wrap; } bilinmiyor - + Invited Ƈağrılmış @@ -11868,7 +12990,7 @@ p, li { white-space: pre-wrap; } Üye - + Edit Circle Ƈevreyi Düzenle @@ -11916,7 +13038,7 @@ p, li { white-space: pre-wrap; } Üyeliği onayla - + This identity has a unsecure fingerprint (It's probably quite old). You should get rid of it now and use a new one. @@ -11927,7 +13049,7 @@ Bu izden kurtulup yeni bir tane kullanmalısınız. Bu kimliklere yakın zamanda destek verilmeyecek. - + [Unknown node] [Düğüm bilinmiyor] @@ -11970,7 +13092,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. İsimsiz kimlik - + Boards @@ -12050,7 +13172,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + information bilgiler @@ -12066,12 +13188,29 @@ Bu kimliklere yakın zamanda destek verilmeyecek. 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? + + + Banned Engellenmiş - + + <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 @@ -12115,11 +13254,19 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Forums Forumlar + + Posted + Gƶnderilme + Chat Sohbet + + Unknown + Bilinmiyor + [Unknown] @@ -12140,6 +13287,14 @@ Bu kimliklere yakın zamanda destek verilmeyecek. 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. @@ -12160,11 +13315,19 @@ Bu kimliklere yakın zamanda destek verilmeyecek. 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. @@ -12176,7 +13339,11 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Genel şifre Ƨƶzme. - + Membership verification in circle %1. + %1 Ƨevresinde üyelik doğrulama. + + + Add to Contacts Kişilere Ekle @@ -12226,21 +13393,21 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> - - - + + + People Kişiler - + Your Avatar Click here to change your avatar Avatarınız - + Linked to neighbor nodes Komşu düğümlerle bağlantılı @@ -12250,7 +13417,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Uzak düğümlerle bağlantılı - + Linked to a friend Retroshare node Bir arkadaşın RetroShare düğümüyle bağlantılı @@ -12265,7 +13432,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Bilinmeyen bir RetroShare düğümüyle bağlantılı - + Chat with this person Bu kişiyle sohbet edin @@ -12280,12 +13447,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Bu kişi ile uzak sohbet reddedildi. - + Last used: Son kullanılma: - + +50 Known PGP +50 Bilinen PGP @@ -12305,12 +13472,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Bu kimliği silmek istediğinize emin misiniz? - + Owned by Sahibi - + Node name: Düğüm adı: @@ -12320,7 +13487,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Düğüm Kodu: - + Really delete? GerƧekten silinsin mi? @@ -12328,7 +13495,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. IdEditDialog - + Nickname Takma ad @@ -12358,7 +13525,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Takma Ad - + Import image @@ -12368,19 +13535,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity Yeni kimlik @@ -12394,7 +13554,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + @@ -12404,12 +13564,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Kullanılamıyor - - No avatar chosen - - - - + Edit identity Kimliği düzenle @@ -12420,27 +13575,27 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Güncelle - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12460,7 +13615,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Identity update failed @@ -12470,7 +13625,11 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Error getting key! + Anahtar alınamadı! + + + Error KeyID invalid Anahtar kodu geƧersiz @@ -12485,7 +13644,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. GerƧek ad bilinmiyor - + Create New Identity Yeni Kimlik Oluştur @@ -12495,15 +13654,10 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Tür - + Choose image... - - - Remove - - @@ -12529,7 +13683,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Ekle - + Create Ekle @@ -12539,13 +13693,17 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Your Avatar Click here to change your avatar Avatarınız - + Set Avatar + Avatarı Ayarla + + + Linked to your profile Profilinizle bağlantılı @@ -12555,7 +13713,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Bir ya da bir kaƧ kimliğiniz olabilir. Kimlikler sohbet odalarında, forumlarda ve kanal yorumlarında yazışırken kullanılır. Uzak sohbet ve RetroShare uzak posta sistemi iƧin hedef olarak kullanılırlar. - + The nickname is too short. Please input at least %1 characters. Takma ad Ƨok kısa. Lütfen en az %1 karakter yazın. @@ -12614,6 +13772,10 @@ Bu kimliklere yakın zamanda destek verilmeyecek. PGP name: PGP adı: + + GXS id: + GXS kodu: + PGP id: @@ -12629,7 +13791,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Copy Kopyala @@ -12639,12 +13801,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Sil - + %1 's Message History - + Mark all Tümünü işaretle @@ -12663,38 +13825,26 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Quote + + Send + Gƶnder + ImageUtil - - + + Save image Gƶrseli kaydet - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename Dosya adı geƧersiz olduğundan gƶrsel kaydedilemiyor - - Copy image - - - - - + Not an image Bu bir gƶrsel değil @@ -12712,32 +13862,27 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Enable RetroShare JSON API Server - + Port: Kapı: - + Listen Address: - - Status: - Durum: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12758,12 +13903,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12772,31 +13912,26 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File Dosya AƧ - + Open Folder Klasƶr AƧ - + Checking... Denetleniyor... @@ -12806,7 +13941,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Dosyaları denetle - + Recommend in a message to... Şu kişiye iletiyle ƶner... @@ -12834,7 +13969,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. MainWindow - + Add Friend Arkadaş Ekle @@ -12850,8 +13985,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - - + Options Ayarlar @@ -12872,7 +14006,7 @@ Bu kimliklere yakın zamanda destek verilmeyecek. - + Quit Ƈık @@ -12883,12 +14017,12 @@ Bu kimliklere yakın zamanda destek verilmeyecek. Hızlı BaşlangıƧ Yardımcısı - + RetroShare %1 a secure decentralized communication platform RetroShare %1 merkezi olmayan güvenli bir iletişim platformudur - + Unfinished Tamamlanmamış @@ -12917,12 +14051,11 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın. - Status Durum - + Notify Bildir @@ -12933,35 +14066,31 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın. - Open Messages İletileri AƧ - - + Bandwidth Graph Bant Genişliği Ƈizelgesi - + Applications Uygulamalar - Help Yardım - - + Minimize Küçült - + Maximize Büyüt @@ -12976,12 +14105,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.RetroShare - - Close window - - - - + %1 new message %1 yeni ileti @@ -13011,7 +14135,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.%1 arkadaş bağlı - + Do you really want to exit RetroShare ? RetroShare uygulamasından Ƨıkmak istiyor musunuz? @@ -13031,7 +14155,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.Gƶrüntüle - + Make sure this link has not been forged to drag you to a malicious website. Bu bağlantının sizi zararlı yazılım bulunduran bir web sitesine yƶnlendirmediğinden emin olun. @@ -13076,13 +14200,12 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.Hizmet izinleri matrisi - - + Statistics İstatistikler - + Show web interface Web arayüzünü gƶrüntüle @@ -13097,7 +14220,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.klasƶründe yer azaldı (geƧerli sınır - + Really quit ? GerƧekten Ƨıkmak istiyor musunuz? @@ -13106,17 +14229,17 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.MessageComposer - + Compose Yeni İleti - + Contacts Kişiler - + Paragraph Paragraf @@ -13152,12 +14275,12 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.6. Başlık - + Font size Yazı Boyutu - + Increase font size Yazı boyutunu büyüt @@ -13172,32 +14295,32 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.Koyu - + Italic Yatık - + Alignment Hizalama - + Add an Image Bir gƶrsel ekle - + Sets text font to code style Metin yazı türünü kod biƧeminde ayarla - + Underline Altı Ƨizili - + Subject: Konu: @@ -13208,32 +14331,32 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın. - + Tags Etiketler - + Address list: Adres listesi: - + Recommend this friend Bu arkadaşı ƶner - + Set Text color Metin rengini ayarla - + Set Text background color Metin art alan rengini ayarla - + Recommended Files Ɩnerilen Dosyalar @@ -13303,7 +14426,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.Blok Alıntısı Ekle - + Send To: Kime: @@ -13327,6 +14450,10 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.&Justify &Yanlara + + All addresses (mixed) + Tüm adresler (karışık) + All people @@ -13338,7 +14465,7 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.Kişilerim - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Merhaba, <br>İyi bir arkadaşımı ƶneriyorum; bana güveniyorsan ona da güvenebilirsin. <br> @@ -13358,18 +14485,18 @@ Lütfen biraz boş disk alanı aƧıp Tamam düğmesine tıklayın.RetroShare üzerinde sizinle arkadaş olmak istiyor - + 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 Merhaba %1, %2 <br><br>RetroShare üzerinde seninle arkadaş olmak istiyor. <br><br>İsteği şimdi yanıtlayabilirsin: <br>%3<br><br>Teşekkürler,<br>RetroShare Takımı - - + + Save Message İletiyi Kaydet - + Message has not been Sent. Do you want to save message to draft box? İleti gƶnderilemedi @@ -13381,17 +14508,7 @@ Do you want to save message to draft box? RetroShare Bağlantısını Yapıştır - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" "Kime" alanına ekle @@ -13411,7 +14528,7 @@ Do you want to save message to draft box? Ɩneri Olarak Ekle - + Original Message Ɩzgün İleti @@ -13421,21 +14538,21 @@ Do you want to save message to draft box? Kimden - + - + To Kime - - + + Cc Kopya - + Sent Gƶnderildi @@ -13450,7 +14567,7 @@ Do you want to save message to draft box? %1 zamanında, %2 yazdı: - + Re: Ynt: @@ -13460,30 +14577,30 @@ Do you want to save message to draft box? İlet: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? Bu iletiyi konusu olmadan mı gƶndermek istiyorsunuz? - + Please insert at least one recipient. Lütfen en az bir alıcı ekleyin. - + Bcc Gizli Kopya - + Unknown Bilinmiyor @@ -13598,13 +14715,13 @@ Do you want to save message to draft box? Ayrıntılar - + Open File... Dosya AƧ... - + HTML-Files (*.htm *.html);;All Files (*) HTML Dosyaları (*.htm *.html);;Tüm Dosyalar (*) @@ -13624,7 +14741,7 @@ Do you want to save message to draft box? PDF Olarak Dışa Aktar - + Message has not been Sent. Do you want to save message ? İleti gƶnderilemedi @@ -13646,7 +14763,7 @@ Do you want to save message ? Başka Dosya Ekleyin - + Hi,<br>I want to be friends with you on RetroShare.<br> Merhaba,<br>RetroShare üzerinde sizinle arkadaş olmak istiyorum.<br> @@ -13670,24 +14787,28 @@ Do you want to save message ? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + Bir arkadaşlık isteğiniz var + Respond now: Şimdi yanıtlayın: - - + + Close Kapat - + From: Kimden: - + Friend Nodes Arkadaş Düğümleri @@ -13732,13 +14853,13 @@ Do you want to save message ? Sıralı liste (büyük romen) - - + + Thanks, <br> Teşekkürler, <br> - + Distant identity: Uzak kimlik: @@ -13748,12 +14869,12 @@ Do you want to save message ? [Eksik] - + Please create an identity to sign distant messages, or remove the distant peers from the destination list. Lütfen uzak iletileri imzalamak iƧin bir kimlik oluşturun ya da hedef listesinden uzak eşleri kaldırın. - + Node name & id: Düğüm adı ve kodu: @@ -13831,7 +14952,7 @@ Do you want to save message ? Varsayilan - + A new tab Yeni sekmede @@ -13841,7 +14962,7 @@ Do you want to save message ? Yeni pencerede - + Edit Tag Etiketi Düzenle @@ -13864,7 +14985,7 @@ Do you want to save message ? MessageToaster - + Sub: Konu: @@ -13872,7 +14993,7 @@ Do you want to save message ? MessageUserNotify - + Message İleti @@ -13900,7 +15021,7 @@ Do you want to save message ? MessageWidget - + Recommended Files Ɩnerilen Dosyalar @@ -13910,37 +15031,37 @@ Do you want to save message ? Ɩnerilen Tüm Dosyaları İndir - + Subject: Konu: - + From: Kimden: - + To: Kime: - + Cc: Kopya: - + Bcc: Gizli Kopya: - + Tags: Etiketler: - + Reply Yanıtla @@ -13962,7 +15083,7 @@ Do you want to save message ? Forward - İleri + @@ -13980,7 +15101,7 @@ Do you want to save message ? - + Send Invite Ƈağrı Gƶnder @@ -14024,7 +15145,7 @@ Do you want to save message ? Buttons Text Beside Icon - Düğme Simgelerinin Yanında Metin + @@ -14032,7 +15153,7 @@ Do you want to save message ? - + Confirm %1 as friend %1 kullanıcısını arkadaş olarak onayla @@ -14042,12 +15163,12 @@ Do you want to save message ? %1 kullanıcısını arkadaş olarak ekle - + View source - + No subject Konu yok @@ -14057,22 +15178,17 @@ Do you want to save message ? Indir - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14082,23 +15198,21 @@ Do you want to save message ? - - Show less - + Send invite? + Ƈağrı Gƶnder - - Show more - + 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ü indir - + Print Document Belgeyi Yazdır @@ -14113,12 +15227,12 @@ Do you want to save message ? HTML Dosyaları (*.htm *.html);;Tüm Dosyalar (*) - + Load images always for this message Bu iletideki gƶrseller her zaman yüklensin - + Hide the attachment pane Dosya ekleme panosu gizlensin @@ -14140,6 +15254,42 @@ Do you want to save message ? Compose Yeni İleti + + Reply to selected message + SeƧilmiş iletiyi yanıtla + + + Reply + Yanıtla + + + Reply all to selected message + SeƧilmiş iletinin tüm alıcılarını yanıtla + + + Reply all + Tümünü yanıtla + + + Forward selected message + SeƧilmiş iletiyi ilet + + + Forward + İlet + + + Remove selected message + SeƧilmiş iletiyi sil + + + Delete + Sil + + + Print selected message + SeƧilmiş iletiyi yazdır + Print @@ -14218,7 +15368,7 @@ Do you want to save message ? MessagesDialog - + New Message Yeni İleti @@ -14228,16 +15378,60 @@ Do you want to save message ? Yeni İleti - + Reply to selected message + SeƧilmiş iletiyi yanıtla + + + Reply + Yanıtla + + + Reply all to selected message + SeƧilmiş iletinin tüm alıcılarını yanıtla + + + Reply all + Tümünü yanıtla + + + Forward selected message + SeƧilmiş iletiyi ilet + + + Foward + İlet + + + Remove selected message + SeƧilmiş iletiyi sil + + + Delete + Sil + + + Print selected message + SeƧilmiş iletiyi yazdır + + + Print + Yazdır + + + Display + Gƶrünüm + + + - - + + Tags Etiketler - - + + Inbox Gelen @@ -14267,17 +15461,21 @@ Do you want to save message ? Ƈƶp - + Total Inbox: Toplam Gelen: - + Folders + Klasƶrler + + + Quick View Hızlı Gƶrünüm - + Print... Yazdır... @@ -14287,6 +15485,26 @@ Do you want to save message ? Print Preview Baskı Ɩnizleme + + Buttons Icon Only + Yalnız Düğme Simgeleri + + + Buttons Text Beside Icon + Düğme Simgelerinin Yanındaki Metin + + + Buttons with Text + Düğme Üzerindeki Metin + + + Buttons Text Under Icon + Simgenin Altındaki Düğme Metni + + + Set Text Under Icon + Simge Altındaki Metni Ayarlayın + Save As... @@ -14308,7 +15526,7 @@ Do you want to save message ? İletiyi İlet - + Subject Konu @@ -14318,7 +15536,7 @@ Do you want to save message ? Kimden - + Date Tarih @@ -14328,7 +15546,39 @@ Do you want to save message ? İƧindekiler - + Click to sort by attachments + Dosya eklerine gƶre sıralamak iƧin tıklayın + + + Click to sort by subject + Konuya gƶre sıralamak iƧin tıklayın + + + Click to sort by read + Okunmuş durumuna gƶre sıralamak iƧin tıklayın + + + Click to sort by from + Gƶnderene gƶre sıralamak iƧin tıklayın + + + Click to sort by date + Tarihe gƶre sıralamak iƧin tıklayın + + + Click to sort by tags + Etiketlere gƶre sıralamak iƧin tıklayın + + + Click to sort by star + Yıldızlara gƶre sıralamak iƧin tıklayın + + + Forward selected Message + SeƧilmiş iletiyi ilet + + + Search Subject Konu Arama @@ -14337,11 +15587,6 @@ Do you want to save message ? Search From Gƶnderen Arama - - - Search To - - Search Date @@ -14368,14 +15613,14 @@ Do you want to save message ? 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 strengthen 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 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 strengthen 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ş 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> - + Starred - + Yıldızlı @@ -14449,7 +15694,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14463,7 +15708,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14478,33 +15723,38 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts Taslaklar - + No Box selected. - - To - Kime + 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. + Henüz yıldızlı bir ileti yok. Kolayca ayırt etmek istediğiniz iletilere yıldız ekleyebilirsiniz. Yıldız eklemek iƧin bir iletinin yanındaki aƧık gri yıldıza tıklayın. - + No system messages available. + Henüz bir sistem iletisi yok. + + + To + Kime + + + Click to sort by to + Alıcıya gƶre sıralamak iƧin tıklayın + + + This message goes to a distant person. + Bu ileti uzaktaki bir kişiye gƶnderiliyor. + + + @@ -14512,6 +15762,26 @@ Do you want to save message ? Total: Toplam: + + Messages + İletiler + + + Click to sort by signature + İmzaya gƶre sıralamak iƧin tıklayın + + + This message was signed and the signature checks + Bu ileti imzalanmış ve imza denetlenmiş + + + This message was signed but the signature doesn't check + Bu ileti imzalanmış ancak imza denetlenmemiş + + + This message comes from a distant person. + Bu ileti uzak bir kişiden geliyor. + Mail @@ -14539,17 +15809,7 @@ Do you want to save message ? MimeTextEdit - - Save image - Gƶrseli kaydet - - - - Copy image - - - - + Paste as plain text Düz metin olarak yapıştır @@ -14603,7 +15863,7 @@ Do you want to save message ? - + Expand Genişlet @@ -14613,7 +15873,7 @@ Do you want to save message ? Ɩgeyi Sil - + from kimden @@ -14648,10 +15908,18 @@ Do you want to save message ? Bekleyen İleti - + Hide 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? + NATStatus @@ -14789,7 +16057,7 @@ Do you want to save message ? Eş Kodu - + Remove unused keys... Kullanılmayan anahtarları sil... @@ -14799,7 +16067,7 @@ Do you want to save message ? - + Clean keyring Anahtarlığı temizle @@ -14818,13 +16086,7 @@ Notlar: Eski anahtarlığınız yedeklenecek. Aynı bilgisayarda birden Ƨok RetroShare kopyası Ƨalışıyorsa silme işlemi tamamlanamayabilir. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info Anahtarlık bilgileri @@ -14860,13 +16122,18 @@ Güvenlik iƧin anahtarlığınız dosyaya yedeklendi Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Anahtarlık verileri tutarlı değil. Bu sorun bir hatadan kaynaklanıyor olabilir. Lütfen yazılımı geliştirenler ile gƶrüşün. + + + Export/create a new node + Yeni bir düğüm dışa aktar/oluştur + Trusted keys only Yalnız güvenilen anahtarlar - + Search name Ad Arama @@ -14876,12 +16143,12 @@ Güvenlik iƧin anahtarlığınız dosyaya yedeklendi Eş Kodu Arama - + Profile details... Profil ayrıntıları... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14890,6 +16157,13 @@ Reported error: Bildirilen hata: + + NetworkPage + + Network + Ağ + + NetworkView @@ -14916,7 +16190,7 @@ Bildirilen hata: NewFriendList - + Offline Friends @@ -14937,7 +16211,7 @@ Bildirilen hata: - + Groups Gruplar @@ -14967,19 +16241,19 @@ Bildirilen hata: arkadaş listenizi gruplarla birlikte iƧe aktarın - - + + Search Arama - + ID Kod - + Search ID @@ -14989,12 +16263,12 @@ Bildirilen hata: - + Show Items Ɩgeleri Gƶrüntüle - + Last contact @@ -15004,7 +16278,7 @@ Bildirilen hata: IP Adresi - + Group Grup @@ -15119,7 +16393,7 @@ Bildirilen hata: - + Do you want to remove this node? Bu düğümü silmek istiyor musunuz? @@ -15129,7 +16403,7 @@ Bildirilen hata: Bu Arkadaşı silmek istiyor musunuz? - + Done! Tamam! @@ -15243,7 +16517,11 @@ en az bir eş bir gruba eklenemedi NewsFeed - + Log entries + Günlük kayıtları + + + Activity Stream @@ -15258,7 +16536,11 @@ en az bir eş bir gruba eklenemedi Tümünü Kaldır - + This is a test. + Bu bir denemedir. + + + Newest on top Yeniden eskiye @@ -15268,12 +16550,20 @@ en az bir eş bir gruba eklenemedi Eskiden yeniye - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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 + + + Activity @@ -15328,6 +16618,10 @@ en az bir eş bir gruba eklenemedi Blogs Bloglar + + Security + Güvenlik + @@ -15349,6 +16643,10 @@ en az bir eş bir gruba eklenemedi Message İleti + + Connect attempt + Bağlanma girişimi + @@ -15365,6 +16663,10 @@ en az bir eş bir gruba eklenemedi Ip security IP güvenliği + + Log + Haber + Friend Connected @@ -15375,6 +16677,10 @@ en az bir eş bir gruba eklenemedi Circles Ƈevreler + + Links + Bağlantılar + Activity @@ -15427,6 +16733,26 @@ en az bir eş bir gruba eklenemedi 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ı + Position @@ -15502,16 +16828,24 @@ en az bir eş bir gruba eklenemedi Disable All Toaster temporarily Tüm Bildirimleri geƧici olarak devre dışı bırak + + Feed + Akış + Systray Sistem Tepsisi + + Count all unread messages + Tüm okunmamış iletiler sayılsın + NotifyQt - + Passphrase required Parola zorunludur @@ -15531,12 +16865,12 @@ en az bir eş bir gruba eklenemedi Parola Yanlış ! - + Please enter your Retroshare passphrase Lütfen RetroShare parolanızı yazın - + Unregistered plugin/executable Kaydedilmemiş eklenti ya da Ƨalıştırılabilir dosya @@ -15551,7 +16885,19 @@ en az bir eş bir gruba eklenemedi Lütfen sistem saatini denetleyin - + Examining shared files... + Paylaşılan dosyalar inceleniyor... + + + Hashing file + Dosya karılıyor + + + Saving file index... + Dosya dizini kaydediliyor... + + + Test Deneme @@ -15562,19 +16908,17 @@ en az bir eş bir gruba eklenemedi - Unknown title Başlık bilinmiyor - + - Encrypted message Şifreli ileti - + 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ınız olabileceği algılandı). @@ -15582,7 +16926,7 @@ en az bir eş bir gruba eklenemedi OnlineToaster - + Friend Online Arkadaş ƇevrimiƧi @@ -15634,6 +16978,10 @@ Düşük Trafik: %10 standart trafik ve YAPILACAK: tüm dosya aktarımları dura PGPKeyDialog + + Dialog + Pencere + Profile info @@ -15699,6 +17047,10 @@ 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ış + + Key signatures : + Anahtar imzaları : + <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> @@ -15728,20 +17080,23 @@ p, li { white-space: pre-wrap; } PGP anahtarı - - Friend options - - - - + These options apply to all nodes of the profile: Bu seƧenekler profildeki tüm düğümlere uygulanır: + + <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> + Keysigning: + + Sign PGP key + PGP anahtarını imzala + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15778,7 +17133,12 @@ p, li { white-space: pre-wrap; } Imzalar katılsın - + + Options + SeƧenekler + + + <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> @@ -15792,6 +17152,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15824,21 +17188,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. Hata: eş ayrıntıları alınamadı. - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Verilen anahtar algoritmasi RetroShare tarafından desteklenmiyor @@ -15859,7 +17223,7 @@ 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. Güvenilirlik düzeyi bu anahtara güveninizi gƶstermenin bir yoludur. Yazılım tarafından kullanılmaz ya da paylaşılmaz ancak iyi ve kƶtü anahtarları anımsamanıza yardımcı olur. @@ -15928,6 +17292,10 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Check the password! + + Maybe password is wrong + Parola yanlış olabilir + You haven't set a trust level for this key. @@ -15935,12 +17303,12 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. - + Retroshare profile RetroShare profili - + This is your own PGP key, and it is signed by : Bu sizin kendi PGP anahtarınız ve imzalayan : @@ -15966,7 +17334,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. PeerItem - + Chat Sohbet @@ -15987,7 +17355,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Ɩgeyi Sil - + Name: Ad: @@ -16027,7 +17395,7 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. - + Write Message İleti Yaz @@ -16041,6 +17409,10 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Friend Connected Arkadaş Bağlandı + + Connect Attempt + Bağlantı Girişimi + Connection refused by peer @@ -16079,13 +17451,17 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Unknown + + Unknown Peer + Bilinmeyen Eş + Hide Gizle - + Send Message İleti Gƶnder @@ -16137,6 +17513,10 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. Chat with this person as... Bu kişiyle şu kimlikle sohbet et... + + Send message to this person + Bu kişiye ileti gƶnder + Invite to Circle @@ -16195,6 +17575,10 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. <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 + use "positive" as the default opinion for contacts (instead of neutral) @@ -16252,6 +17636,13 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. <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> + + PhotoCommentItem + + Form + Form + + PhotoDialog @@ -16259,11 +17650,23 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. PhotoShare PhotoShare + + Photo + Fotoğraf + TextLabel Metin Etiketi + + Comment + Yorum + + + Summary + Ɩzet + Album / Photo Name @@ -16324,6 +17727,14 @@ Uyarı: Dosya-Aktarımı ayarlarınızda, doğrudan indirmeye İzin verilmemiş. ... ... + + Add Comment + Yorum Ekle + + + Write a comment... + Yorum yaz... + Album @@ -16394,6 +17805,10 @@ p, li { white-space: pre-wrap; } Create Album Albüm Ekle + + View Album + Albümü Gƶrüntüle + Edit Album Details @@ -16415,17 +17830,17 @@ p, li { white-space: pre-wrap; } Saydam Sunumu - + My Albums Albümlerim - + Subscribed Albums Abone Olunan Albümler - + Shared Albums Paylaşılan Albümler @@ -16455,7 +17870,7 @@ lütfen bir albüm seƧin! PhotoSlideShow - + Album Name Albüm Adı @@ -16514,19 +17929,19 @@ lütfen bir albüm seƧin! - - + + TextLabel Metin Etiketi - + Posted by - + ago @@ -16562,12 +17977,12 @@ lütfen bir albüm seƧin! PluginItem - + TextLabel Metin Etiketi - + Show more details about this plugin Bu uygulama eki ile ilgili ayrıntılı bilgilere bakın @@ -16713,6 +18128,60 @@ p, li { white-space: pre-wrap; } Plugin look-up directories Uygulama eklerinin aranacağı klasƶrler + + Plugin disabled. Click the enable button and restart Retroshare + Uygulama eki devre dışı. Etkinleştir düğmesine tıklayıp RetroShare yazılımını yeniden başlatın + + + [disabled] + [Devre Dışı] + + + No API number supplied. Please read plugin development manual. + Herhangi bir API numarası belirtilmemiş. Lütfen uygulama eki geliştirme kılavuzunu okuyun. + + + [loading problem] + [yükleme sorunu] + + + No SVN number supplied. Please read plugin development manual. + Herhangi bir SVN numarası belirtilmemiş. Lütfen uygulama eki geliştirme kılavuzunu okuyun. + + + Loading error. + Yükleme hatası. + + + Missing symbol. Wrong version? + Simge eksik. Sürüm yanlış olabilir mi? + + + No plugin object + Herhangi bir uygulama eki nesnesi yok + + + Plugins is loaded. + Uygulama ekleri yüklendi. + + + Unknown status. + Durum bilinmiyor. + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + Uygulama eki geliştirirken bu seƧeneği işaretleyin. +Bƶylece karma denetimi yapılmaz. Ancak +normal zamanlarda karma denetimi sizi +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ş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> + Plugins @@ -16782,27 +18251,12 @@ p, li { white-space: pre-wrap; } Pencere en üstte kalsın - - Ban this person (Sets negative opinion) - Bu kişiyi engelle (Olumsuz olarak değerlendirir) - - - - Give neutral opinion - Kararsız olarak değerlendir - - - - Give positive opinion - Olumlu olarak değerlendir - - - + Choose window color... - + Dock window @@ -16836,6 +18290,22 @@ p, li { white-space: pre-wrap; } Close conversation? + + 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 + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + Bu pencereyi kapatmak gƶrüşmenizi sona erdirerek, eşinizi bilgilendirir ve şifrelenmiş tüneli kaldırır. + + + Kill the tunnel? + Tünel kapatılsın mı? + PostedCardView @@ -16855,7 +18325,7 @@ p, li { white-space: pre-wrap; } Yeni - + Vote up Beğendim @@ -16875,8 +18345,8 @@ p, li { white-space: pre-wrap; } \/ - - + + Comments Yorumlar @@ -16901,13 +18371,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments Yorumlar @@ -16935,12 +18405,20 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Signed by: + İmzalayan: + + + Notes + Notlar + + + Create a new Post - + RetroShare RetroShare @@ -16955,22 +18433,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File Gƶrsel Dosyası Yükle - + Post image @@ -16986,17 +18454,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -17006,7 +18464,23 @@ p, li { white-space: pre-wrap; } - + Submit Post + İleti Gƶnder + + + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. + Bir bağlantı gƶnderiyorsunuz. Başarılı bir gƶnderinin sırrı ilginƧ bir iƧerik ve aƧıklayıcı bir başlıktır. + + + Submit + Gƶnder + + + Submit a new Post + Yeni bir ileti gƶnder + + + Please add a Title Lütfen bir başlık ekleyin @@ -17026,22 +18500,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17056,7 +18520,7 @@ p, li { white-space: pre-wrap; } Şu olarak gƶnder - + Post @@ -17067,7 +18531,7 @@ p, li { white-space: pre-wrap; } Gƶrsel - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17077,7 +18541,7 @@ p, li { white-space: pre-wrap; } Başlık - + Link Bağlantı @@ -17085,12 +18549,44 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + Posted Links + Gƶnderilen Bağlantılar + + + <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 Ekle + + + My Topics + Başlıklarım + + + Subscribed Topics + Abone Olunmuş Başlıklar + + + Popular Topics + Beğenilen Başlıklar + + + Other Topics + Diğer Başlıklar + + + Links + Bağlantılar + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17124,7 +18620,31 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Posted Topic + Gƶnderilen Konu + + + Add Topic Admins + Konu Yƶneticisi Ekle + + + Select Topic Admins + Konu Yƶneticilerini SeƧin + + + Create New Topic + Yeni Konu Ekle + + + Edit Topic + Konuyu Düzenle + + + Update Topic + Konuyu Güncelle + + + Create New Board @@ -17162,17 +18682,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - Metin Etiketi - - - + Subscribe to Posted Gƶnderilenlere Abone Ol @@ -17188,7 +18698,7 @@ p, li { white-space: pre-wrap; } - + Expand Genişlet @@ -17203,17 +18713,24 @@ p, li { white-space: pre-wrap; } - + Posted Description + Gƶnderilen AƧıklaması + + + Loading + Yükleniyor + + + New Posted + Gƶnderilen Ekle + + + Loading... - - Never - HiƧ - - - + New Board @@ -17226,18 +18743,22 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 0 - - + Site + Site + + + + Comments Yorumlar - + Copy RetroShare Link @@ -17248,12 +18769,12 @@ p, li { white-space: pre-wrap; } - + Comment Yorum yapın - + Comments Yorumlar @@ -17263,7 +18784,7 @@ p, li { white-space: pre-wrap; } <p><font color="#ff0000"><b>Bu iletinin yazarı (%1 kodlu) engellendi.</b> - + Click to view Picture @@ -17273,17 +18794,21 @@ p, li { white-space: pre-wrap; } Gizle - + Vote up Beğendim - + Vote down Beğenmedim - + \/ + \/ + + + Set as read and remove item Okunmuş olarak işaretle ve ƶgeyi sil @@ -17293,7 +18818,7 @@ p, li { white-space: pre-wrap; } Yeni - + New Comment: Yeni Yorum: @@ -17303,7 +18828,7 @@ p, li { white-space: pre-wrap; } Yorum Değeri - + Name Ad @@ -17344,10 +18869,77 @@ p, li { white-space: pre-wrap; } Metin Etiketi - + Loading Yükleniyor + + By + Gƶnderen + + + + PostedListWidget + + Form + Form + + + Hot + Sıcak + + + New + Yeni + + + Top + Beğenilen + + + Today + Bügün + + + Yesterday + Dün + + + This Week + Bu Hafta + + + This Month + Bu Ay + + + This Year + Bu Yil + + + Submit a new Post + Yeni bir ileti gƶnder + + + Next + Sonraki + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + Lütfen oylamadan ƶnce bir imzalayan kimliği oluşturun ya da seƧin + + + Previous + Ɩnceki + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17367,17 +18959,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17387,15 +18969,15 @@ p, li { white-space: pre-wrap; } Yƶnetici: - + - + unknown - + Distribution: Dağıtım: @@ -17405,42 +18987,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel Metin Etiketi - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts İletiler - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17460,7 +19042,7 @@ p, li { white-space: pre-wrap; } Sıcak - + Search Arama @@ -17490,17 +19072,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17515,17 +19097,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17535,38 +19112,34 @@ p, li { white-space: pre-wrap; } Düzenle - - + information bilgiler - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] Subscribed - Abone + @@ -17574,7 +19147,7 @@ p, li { white-space: pre-wrap; } Abone Ol - + Never HiƧ @@ -17621,7 +19194,7 @@ p, li { white-space: pre-wrap; } Public - Herkese AƧık + @@ -17648,16 +19221,6 @@ p, li { white-space: pre-wrap; } No Channel Selected Bir Kanal SeƧilmemiş - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17666,6 +19229,14 @@ p, li { white-space: pre-wrap; } Tabs Sekmeler + + Open each topic in a new tab + Her konu yeni bir sekmede aƧılsın + + + Links + Bağlantılar + Open each board in a new tab @@ -17679,6 +19250,10 @@ p, li { white-space: pre-wrap; } PostedUserNotify + + Posted + Gƶnderilme + Board Post @@ -17747,16 +19322,16 @@ p, li { white-space: pre-wrap; } 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:'Sans Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17868,7 +19443,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz ProfileWidget - + Edit status message Durum iletisini düzenle @@ -17884,7 +19459,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Profil Yƶnetimi - + Public Information Genel Bilgiler @@ -17919,12 +19494,12 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz ƇevrimiƧi süresi: - + Other Information Diğer Bilgiler - + My Address Adresim @@ -17968,27 +19543,51 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz PulseAddDialog - + Post From: + Şu Hesapla Gƶnderilsin: + + + Account 1 + 1. Hesap + + + Account 2 + 2. Hesap + + + Account 3 + 3. Hesap + + + Add to Pulse Pulse üzerine ekle - + filter + süzgeƧ + + + URL Adder + Adres Ekleyici + + + Display As Şu Şekilde Gƶrüntüle - + URL Adres - + GroupLabel - + IDLabel @@ -17998,12 +19597,12 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Kimden: - + Head - + Head Shot @@ -18033,13 +19632,13 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Olumsuz - - + + Whats happening? - + @@ -18051,22 +19650,12 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18075,13 +19664,17 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Cancel İptal + + Post Pulse to Wire + Pulse Wire Üzerine Gƶnder + Post - + Reply to Pulse @@ -18096,24 +19689,34 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - Gƶrsel Dosyası Yükle + From + Kimden + + + Date + Tarih + + + ... + ... @@ -18124,7 +19727,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz Form - + @@ -18143,7 +19746,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz PulseReply - + icn @@ -18153,7 +19756,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + REPLY @@ -18180,7 +19783,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + FOLLOW @@ -18190,7 +19793,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18210,7 +19813,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18326,7 +19929,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + FOLLOW @@ -18334,42 +19937,37 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18401,7 +19999,7 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz - + FOLLOW @@ -18409,8 +20007,8 @@ Kimliği İƧe Aktar düğmesine tıklayarak yükleyebilirsiniz QObject - - + + Confirmation Onaylama @@ -18681,12 +20279,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Eş ayrıntıları - + File Request canceled Dosya isteği iptal edildi - + 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 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. @@ -18717,7 +20315,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Beklenmeyen bir sorun Ƨıktı. Lütfen 'RsInit::InitRetroShare beklenmeyen dƶnüş kodu %1' hatasını bildirin. - + Cannot start Tor Manager! @@ -18751,7 +20349,7 @@ The error reported is:" - + Multiple instances Birden Ƨok kopya @@ -18773,26 +20371,6 @@ Kilit dosyası: Kilit dosyası: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18875,7 +20453,7 @@ Bildirilen hata: Veri iletilen - + You appear to have nodes associated to DSA keys: DSA anahtarlarıyla ilişkili düğümleriniz var gibi gƶrünüyor: @@ -18885,7 +20463,7 @@ Bildirilen hata: Bu RetroShare sürümü henüz DSA anahtarlarını desteklenmiyor. Tüm bu düğümler kullanılamayacak. Bunun iƧin Ƨok üzgünüz. - + enabled etkin @@ -18895,7 +20473,7 @@ Bildirilen hata: devre dışı - + Move IP %1 to whitelist %1 IP adresini beyaz listeye taşı @@ -18911,7 +20489,7 @@ Bildirilen hata: - + %1 seconds ago %1 saniye ƶnce @@ -18979,7 +20557,7 @@ Security: no anonymous IDs Güvenlik: İsimsiz kodlar kullanılamaz - + Join chat room Sohbet odasına katıl @@ -19007,7 +20585,7 @@ Güvenlik: İsimsiz kodlar kullanılamaz XML dosyası işlenemedi! - + Indefinitely Süresiz @@ -19187,29 +20765,13 @@ Güvenlik: İsimsiz kodlar kullanılamaz Ban list - - - Name - Ad - - Node - Düğüm - - - - Address - - - - - Status Durum - + NXS @@ -19402,6 +20964,10 @@ Güvenlik: İsimsiz kodlar kullanılamaz Click to resume the hashing process + + <p>This certificate contains: + <p>Bu sertifikanın iƧeriği: + Idle @@ -19452,18 +21018,6 @@ Güvenlik: İsimsiz kodlar kullanılamaz Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19626,7 +21180,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Tüm Ağda @@ -19809,7 +21363,7 @@ p, li { white-space: pre-wrap; } Form - + The loading of embedded images is blocked. Gƶmülü gƶrsellerin yüklenmesi engellenmiş. @@ -19822,7 +21376,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Varsayılan olarak onaylandı @@ -19995,22 +21549,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - Gƶrseli kaydet - - - - Copy image - - - - + Document source @@ -20018,12 +21562,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options AğaƧ Gƶrünümü Ayarları - + Show Header @@ -20053,6 +21597,14 @@ p, li { white-space: pre-wrap; } Show column … + + Show column... + Gƶrüntülenecek sütun... + + + [no title] + [başlık yok] + RatesStatus @@ -20715,7 +22267,7 @@ Dosyanın doğru olduğunu düşünüyorsanız bu satırı silerek dosyayı Retr RsDownloadListModel - + Name i.e: file name Ad @@ -20836,7 +22388,7 @@ Dosyanın doğru olduğunu düşünüyorsanız bu satırı silerek dosyayı Retr RsFriendListModel - + Name Ad @@ -20856,7 +22408,7 @@ Dosyanın doğru olduğunu düşünüyorsanız bu satırı silerek dosyayı Retr IP Adresi - + Profile ID @@ -20915,7 +22467,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: İleti arkadaşlarınıza iletilecek. - + [ ... Redacted message ... ] [ ... Düzeltilmiş İleti ... ] @@ -20929,6 +22481,11 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: [Unknown] [Bilinmiyor] + + + [ ... Missing Message ... ] + [... İleti Eksik ... ] + RsMessageModel @@ -20942,11 +22499,6 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: From Kimden - - - To - - Subject @@ -20969,18 +22521,13 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - Click to sort by read status - + Click to sort by read + Okunmuş durumuna gƶre sıralamak iƧin tıklayın - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + Gƶnderene gƶre sıralamak iƧin tıklayın @@ -21003,9 +22550,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - - - + [Notification] @@ -21026,7 +22571,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Rshare - + Resets ALL stored RetroShare settings. TÜM RetroShare ayarlarını sıfırlar. @@ -21087,7 +22632,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: RetroShare arayüz dilini ayarlar. - + Unable to open log file '%1': %2 '%1':%2 günlük dosyası aƧılamadı @@ -21108,7 +22653,11 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Veri klasƶrü oluşturulamadı: %1 - + Revision + Değişiklik + + + opmode @@ -21138,7 +22687,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + Invalid language code specified: Belirtilen dil kodu geƧersiz: @@ -21156,7 +22705,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: RshareSettings - + Registry Access Error. Maybe you need Administrator right. Kayıt Defterine Erişim Hatası. Yƶnetici izinleri gerekiyor olabilir. @@ -21173,12 +22722,12 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: SearchDialog - + Enter a keyword here (at least 3 char long) Buraya bir anahtar sƶzcük yazın (en az 3 karakter uzunluğunda) - + Start Search Aramayı Başlat @@ -21240,7 +22789,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Temizle - + KeyWords Anahtar Sƶzcükler @@ -21255,7 +22804,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Kod Arama - + Filename Dosya Adı @@ -21355,23 +22904,23 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: SeƧilmişleri indir - + File Name Dosya Adı - + Download Indir - + Copy RetroShare Link RetroShare Bağlantısını Kopyala - + Send RetroShare Link RetroShare Bağlantısını Gƶnder @@ -21381,7 +22930,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + Download Notice İndirme Bildirimi @@ -21418,7 +22967,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Tümünü Kaldır - + Folder Klasƶr @@ -21429,17 +22978,17 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + New RetroShare Link(s) Yeni RetroShare Bağlantıları - + Open Folder Klasƶr AƧ - + Create Collection... Derleme Oluştur... @@ -21459,7 +23008,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Derleme dosyasından indir... - + Collection Derleme @@ -21467,7 +23016,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: SecurityIpItem - + Peer details Eş ayrıntıları @@ -21483,22 +23032,22 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Ɩgeyi Sil - + IP address: IP Adresi: - + Peer ID: Eş Kodu: - + Location: Konum: - + Peer Name: Eş Adı: @@ -21515,7 +23064,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Gizle - + but reported: ancak bildirilen: @@ -21540,8 +23089,8 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: <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şı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> @@ -21549,7 +23098,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: SecurityItem - + wants to be friend with you on RetroShare RetroShare üzerinde arkadaşınız olmak istiyor @@ -21580,7 +23129,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + Expand Genişlet @@ -21625,12 +23174,12 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Durum: - + Write Message İleti Yaz - + Connect Attempt Bağlantı Girişimi @@ -21650,22 +23199,17 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Bilinmeyen (Giden) Bağlantı İsteği - + Unknown Security Issue Bilinmeyen Güvenlik Sorunu - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown @@ -21675,7 +23219,11 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + Unknown Peer + Bilinmeyen Eş + + + Hide Gizle @@ -21685,7 +23233,7 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Bu Arkadaşı silmek istiyor musunuz? - + 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. @@ -21695,12 +23243,12 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Eksik/Bozuk sertifika. Kullanıcı gerƧek bir RetroShare kullanıcısı değil. - + Certificate caused an internal error. Sertifika iƧeride bir soruna yol aƧtı. - + Peer/node not in friendlist (PGP id= Eş/Düğüm arkadaş listesinde değil (PGP kodu= @@ -21759,12 +23307,12 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: - + Local Address Yerel Adres - + NAT @@ -21785,22 +23333,22 @@ arkadaşlarınız da olumlu olarak değerlendirmemiş: Kapı: - + Local network Yerel ağ - + External ip address finder Dış IP adres bulucu - + UPnP UPnP - + Known / Previous IPs: Bilinen / Ɩnceki IP Adresleri: @@ -21817,16 +23365,21 @@ Ayrıca güvenlik duvarı ya da VPN bağlantısı kullanıyorsanız da yardımcı olur. - - - + + Allow RetroShare to ask my ip to these websites: + RetroShare IP adresinizi şu sitelere sorabilsin: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Kullanılabilecek kapı numaraları 10 ile 65535 arasındadır. Normal olarak 1024 altındaki kapı numaraları sistem kullanımına ayrılmıştır. @@ -21836,46 +23389,23 @@ yardımcı olur. Kullanılabilecek kapı numaraları 10 ile 65535 arasındadır. Normal olarak 1024 altındaki kapı numaraları sistem kullanımına ayrılmıştır. - + Onion Address Onion Adresi - + Discovery On (recommended) Keşif AƧık (Ɩnerilir) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off Keşif Kapalı @@ -21885,7 +23415,7 @@ List of found external IP: Gizli - Yapılandırmaya Bakın - + I2P Address I2P Adresi @@ -21910,95 +23440,37 @@ List of found external IP: geliş tamam - - - + + Proxy seems to work. Vekil sunucu Ƨalışıyor gƶrünüyor. - - + I2P proxy is not enabled I2P vekil sunucusu etkinleştirilmemiş - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -22013,7 +23485,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -22023,7 +23559,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. Gizli bir hizmet üzerinden ulaşılabiliyorsunuz. @@ -22037,12 +23588,12 @@ Tüm hizmetler düzgün Ƨalışıyor mu?? Ayrıca kapı ayarlarınızı da denetleyin! - + [Hidden mode] [Gizli Kip] - + <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 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> @@ -22052,7 +23603,7 @@ Ayrıca kapı ayarlarınızı da denetleyin! Temizle - + Download limit (KB/s) İndirme sınırı (KB/s) @@ -22067,23 +23618,23 @@ Ayrıca kapı ayarlarınızı da denetleyin! Yükleme sınırı (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>Yükleme sınırı tüm uygulamayı kapsar. Yükleme sınırı Ƨok küçük olursa düşük ƶncelikli hizmetler engellenebilir (forumlar, kanallar). Ɩnerilen en küçük değer: 50KB/s. </p></body></html> - + WARNING: These values don't take into account the Relays. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22094,7 +23645,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -22104,7 +23665,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22114,7 +23680,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -22154,7 +23730,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start Başlat @@ -22169,7 +23745,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why Durdur - + + BOB status + + + + Incoming Gelen @@ -22205,32 +23786,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay Aktarıcı @@ -22285,7 +23841,7 @@ If you have issues connecting over Tor check the Tor logs too. Toplam: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22310,7 +23866,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22322,7 +23878,7 @@ If you have issues connecting over Tor check the Tor logs too. Ağ - + IP Filters IP SüzgeƧleri @@ -22345,7 +23901,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status Durum @@ -22405,28 +23961,17 @@ If you have issues connecting over Tor check the Tor logs too. Beyaz listeye ekle - + Hidden Service Configuration Gizli Hizmet Yapılandırması - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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 Socks vekil sunucusunun kapı numarası. RetroShare düğümünüz bu kapıyı kullanarak</p><p>Gizli düğümlere bağlanabilir. Bilgisayarınızda bu kapı etkinleştiğinde sağdaki LED yeşile dƶner. </p><p>Bununla birlikte bu durum RetroShare trafiğinizin Tor üzerinden aktığı anlamına gelmez. Tor üzerinden veri akışı yalnız </p><p>Gizli düğümlere bağlandığınızda ya da Gizli bir düğüm Ƨalıştırıyorsanız gerƧekleşir.</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>Bilgisayarınızda soldaki kapı dinlemesi etkinleştiğinde bu LED yeşile dƶner. </p><p>Bununla birlikte bu durum RetroShare trafiğinizin Tor üzerinden aktığı anlamına gelmez. Tor üzerinden veri akışı yalnız </p><p>Gizli düğümlere bağlandığınızda ya da Gizli bir düğüm Ƨalıştırıyorsanız gerƧekleşir.</p></body></html> @@ -22442,18 +23987,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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>Bilgisayarınızda soldaki kapı dinlemesi etkinleştiğinde bu LED yeşile dƶner. </p><p>Bununla birlikte bu durum RetroShare trafiğinizin I2P üzerinden aktığı anlamına gelmez. I2P üzerinden veri akışı yalnız </p><p>Gizli düğümlere bağlandığınızda ya da Gizli bir düğüm Ƨalıştırıyorsanız gerƧekleşir.</p></body></html> - + I2P outgoing Okay I2P gidiş tamam - + Service Address Hizmet Adresi @@ -22488,12 +24033,12 @@ If you have issues connecting over Tor check the Tor logs too. Lütfen bir hizmet adresi yazın - + IP Range IP Aralığı - + Reported by DHT for IP masquerading DHT tarafından IP maskelemesi iƧin bildirildi @@ -22516,22 +24061,22 @@ If you have issues connecting over Tor check the Tor logs too. 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 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 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> - + <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>Bu işlem etkinleştirildiğinde, aşağıdaki web sitelerinden kendi IP adresinizi aldığınızda RetroShare bu imi yeşile dƶndürür. RetroShare kendi IP adresinizi bulmak iƧin başka yƶntemler de kullanır.</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>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> @@ -22566,7 +24111,7 @@ If you have issues connecting over Tor check the Tor logs too. Şuradan başlayan DHT maskeleme IP adresleri otomatik engellensin - + Outgoing Manual Tor/I2P @@ -22576,12 +24121,12 @@ If you have issues connecting over Tor check the Tor logs too. Tor Socks Vekil Sunucusu - + Tor outgoing Okay Tor gidiş tamam - + Tor proxy is not enabled Tor vekil sunucusu etkinleştirilmemiş @@ -22661,7 +24206,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with ƶzel yayın anahtarınızı paylaşacağınız eşleri seƧin @@ -22671,12 +24216,12 @@ If you have issues connecting over Tor check the Tor logs too. Arkadaşla Paylaş - + Share Paylaş - + 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. Kanalınızı paylaşarak arkadaşlarınıza bildirebilirsiniz. @@ -22696,7 +24241,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Paylaşılan Klasƶr Yƶnetimi - + Shared directory Paylaşılan klasƶr @@ -22716,17 +24261,17 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Gƶrünürlük - + Add new Yeni ekle - + Cancel İptal - + Add a Share Directory Paylaşım Klasƶrü Ekle @@ -22736,7 +24281,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Sil - + Apply and close Uygula ve kapat @@ -22827,7 +24372,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. 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şı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. @@ -22835,7 +24380,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. SharedFilesDialog - + Files Dosyalar @@ -22886,16 +24431,11 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files dosyaları seƧin - + Download selected SeƧilmişleri indir @@ -22905,7 +24445,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. İndir - + Copy retroshare Links to Clipboard RetroShare Bağlantılarını Panoya Kopyala @@ -22920,7 +24460,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. RetroShare Bağlantılarını Gƶnder - + Some files have been omitted Bazı dosyalar yok sayıldı @@ -22936,7 +24476,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Ɩneriler - + Create Collection... Derleme Ekle... @@ -22961,7 +24501,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Derleme dosyasından indir... - + Some files have been omitted because they have not been indexed yet. @@ -23104,12 +24644,12 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. SplashScreen - + Load configuration Yapılandırmayı yükle - + Create interface Arayüz ekle @@ -23133,7 +24673,7 @@ Kanalınızı paylaşmak istediğiniz Arkadaşlarınızı seƧin. Parolam Hatırlansın - + Log In Oturum AƧ @@ -23486,7 +25026,7 @@ Bu seƧim ayarlardan değiştirilebilir. Durum iletisi - + Message: İleti: @@ -23731,7 +25271,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags Tüm Etiketleri Kaldır @@ -23767,15 +25307,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown Bilinmiyor @@ -23785,13 +25322,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23801,57 +25343,12 @@ p, li { white-space: pre-wrap; } - - Error - Hata - - - - Not connected - Bağlı değil - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23859,7 +25356,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23869,7 +25366,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23880,12 +25377,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23913,7 +25409,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options Aktarım Ayarları @@ -23924,7 +25420,7 @@ p, li { white-space: pre-wrap; } Aynı anda en Ƨok indirme sayısı: - + Shared Directories Paylaşılan Klasƶrler @@ -23934,27 +25430,22 @@ p, li { white-space: pre-wrap; } Gelen klasƶrü otomatik olarak paylaşılsın (Ɩnerilir) - + + Edit Share + Paylaşımı Düzenle + + + Directories - - Configure shared directories - Paylaşılan klasƶrleri yapılandır - - - + Auto-check shared directories every Paylaşılan klasƶrler şu aralıkla denetlensin - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) dakika @@ -24039,7 +25530,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24048,12 +25539,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -24078,12 +25564,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming Akış @@ -24142,13 +25623,38 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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> + Max. tunnel req. forwarded per second: Saniyede iletilecek en fazla tünel isteği sayısı: - + + <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;">Akış </span>artan sırada, ƶnizlemeye izin verecek şekilde 1MB boyutlu dosya parƧaları aktarımının istenmesine neden olur. <span style=" font-weight:600;">Rastgele</span> Tümüyle rastgeledir ve kaynaşmaya yƶnelik davranır. <span style=" font-weight:600;">Gelişen</span> Ortalama Ƨƶzüm. dosya parƧasının sonundaki 50MB bƶlümden rastgele seƧilir. Bƶylece büyük boş dosya hazırlama süresini beklemeden biraz rastlantısallık sağlanır.</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>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> @@ -24158,17 +25664,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Bu değer saniyede iletilebilecek tünel isteği sayısını belirler. </p><p>İnternet bağlantı hızınız yüksek ise, durağan olarak daha uzun tünellerin geƧişine izin vermek iƧin bu değeri 30-40 yapabilirsiniz. Bu işlem Ƨok sayıda küçük paket oluşturarak kendi dosya aktarımınızı yavaşlatabileceğinden Ƨok dikkatli olun. </p><p>Varsayılan değer: 20. Emin değilseniz bƶyle bırakın.</p></body></html> - - Warning - Uyarı - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory Gelen Klasƶrünü Ayarla @@ -24196,7 +25692,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed İndirme tamamlandı @@ -24220,23 +25716,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + %1 dosya indirildi + + + You have %1 completed download + %1 dosya indirildi + + + %1 completed downloads + %1 dosya indirildi + + + %1 completed download + %1 dosya indirildi + TransfersDialog - - + + Downloads İndirmeler - + Uploads Yüklemeler - + Name i.e: file name Ad @@ -24443,7 +25955,11 @@ p, li { white-space: pre-wrap; } Belirtin... - + <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;Dosya Aktarımı</h1> <p>RetroShare iki şekilde dosya aktarımı sunar: Arkadaşlarınızdan doğrudan aktarım ve uzak isimsiz tünel aktarımı. Ek olarak, dosya aktarımı birden Ƨok kaynak kullanabilir ve karşılıklıdır (indirme yapılırken yükleme de yapılır)</p> <p>Sol yan Ƨubuktaki <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> simgesini kullanarak dosyaları paylaşabilirsiniz. Paylaşılan dosyalar Dosyalarım sekmesi altında gƶrüntülenir. Her bir arkadaş grubunuzun bu dosyaları kendi Arkadaşların Dosyaları sekmelerinde gƶrüp gƶrümeyeceğini seƧebilirsiniz.</p> <p>Arama sekmesi arkadaşlarınızın dosya listelerinde arama yapar ve birden Ƨok sıƧramalı tünel sistemi üzerinden uzak dosyalara isimsiz olarak erişebilir.</p> + + + Move in Queue... Kuyrukta Taşı... @@ -24468,7 +25984,7 @@ p, li { white-space: pre-wrap; } Klasƶr seƧin - + Anonymous end-to-end encrypted tunnel 0x İsimsiz uƧtan uca şifrelenmiş tünel 0x @@ -24489,7 +26005,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24522,17 +26038,7 @@ p, li { white-space: pre-wrap; } %1 dosyası tamamlanmamış. Bu bir ortam dosyası ise ƶnizlemeyi deneyin. - - Warning - Uyarı - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name Dosya adını değiştir @@ -24547,7 +26053,7 @@ p, li { white-space: pre-wrap; } Lütfen yeni -ve geƧerli- bir dosya adı yazın - + Expand all Tümünü genişlet @@ -24674,18 +26180,23 @@ 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> + + + + Columns Sütunlar - + File Transfers Dosya Aktarımları - + Path Yol @@ -24695,7 +26206,7 @@ p, li { white-space: pre-wrap; } Yol Sütunu Gƶrüntülensin - + Could not delete preview file Ɩnizleme dosyası silinemedi @@ -24705,7 +26216,7 @@ p, li { white-space: pre-wrap; } Yeniden denensin mi? - + Create Collection... Derleme Ekle... @@ -24720,12 +26231,7 @@ p, li { white-space: pre-wrap; } Derlemeyi Gƶrüntüle... - - <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> - - - - + Collection Derleme @@ -24735,7 +26241,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x İsimsiz tünel 0x @@ -24956,6 +26462,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + İsimsiz tüneller + Authenticated tunnels @@ -25149,17 +26659,12 @@ p, li { white-space: pre-wrap; } Form - + Enable Retroshare WEB Interface RetroShare Web arayüzü kullanılsın - - Status: - Durum: - - - + Web parameters Web parametreleri @@ -25199,27 +26704,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <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> - + Webinterface not enabled Web arayüzü etkinleştirilmemiş @@ -25229,12 +26724,12 @@ p, li { white-space: pre-wrap; } Web arayüzü etkinleştirilmemiş. Ayarlar > Web arayüzü bƶlümünden etkinleştirebilirsiniz. - + failed to start Webinterface Web arayüzü başlatılamadı - + Webinterface Web arayüzü @@ -25371,7 +26866,11 @@ p, li { white-space: pre-wrap; } Wiki Sayfaları - + New Group + Yeni Grup + + + Page Name Sayfa Adı @@ -25386,7 +26885,7 @@ p, li { white-space: pre-wrap; } Kaynak Kodu - + << << @@ -25474,7 +26973,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History Sayfa Düzenleme GeƧmişi @@ -25509,7 +27008,7 @@ p, li { white-space: pre-wrap; } SayfaKodu - + \/ \/ @@ -25539,18 +27038,14 @@ p, li { white-space: pre-wrap; } Etiketler - - History - GeƧmiş - - - + + Show Edit History Düzenleme GeƧmişi Gƶrüntülensin - + Status Durum @@ -25571,7 +27066,7 @@ p, li { white-space: pre-wrap; } Geri Al - + Submit Gƶnder @@ -25643,6 +27138,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + ZamanAralığı + Create Account @@ -25654,7 +27153,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + Yenile + + + Settings @@ -25669,7 +27177,7 @@ p, li { white-space: pre-wrap; } Diğerleri - + Who to Follow @@ -25689,7 +27197,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25719,17 +27227,85 @@ p, li { white-space: pre-wrap; } - + Last Month + GeƧen Ay + + + Last Week + GeƧen Hafta + + + Today + Bugün + + + New + Yeni + + + from + başlangıƧ + + + until + bitiş + + + Search/Filter + Arama/SüzgeƧ + + + Network Wide + Tüm Ağda + + + Manage Accounts + Hesap Yƶnetimi + + + Showing: + Gƶrüntülenen: + + + Yourself Benimkiler + + Friends + Arkadaşlar + Following İzlenen - + Custom + Ɩzel + + + Account 1 + 1. Hesap + + + Account 2 + 2. Hesap + + + Account 3 + 3. Hesap + + + CheckBox + İşaret Kutusu + + + Post Pulse to Wire + Wire Üzerine Pulse Gƶnderin + + + RetroShare @@ -25792,42 +27368,35 @@ p, li { white-space: pre-wrap; } Form - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - - - - Location: Konum: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25872,41 +27441,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - Kullanılamıyor - - - - Following - İzlenen - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) Bilinmeyen @@ -25984,7 +27523,7 @@ p, li { white-space: pre-wrap; } %1y %2g - + k e.g: 3.1 k k @@ -26017,11 +27556,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Gƶrseller (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_zh_CN.ts b/retroshare-gui/src/lang/retroshare_zh_CN.ts index 82bafc9e1..a07132cf4 100644 --- a/retroshare-gui/src/lang/retroshare_zh_CN.ts +++ b/retroshare-gui/src/lang/retroshare_zh_CN.ts @@ -84,6 +84,13 @@ ä»…éšč—čŠ‚ē‚¹ + + AddCommentDialog + + Add Comment + ę·»åŠ čÆ„č®ŗ + + AddFileAssociationDialog @@ -122,12 +129,12 @@ RetroShare: 高级搜瓢 - + Search Criteria ęœē“¢ę”ä»¶ - + Add a further search criterion. čæ½åŠ ęœē“¢ę”ä»¶ć€‚ @@ -137,7 +144,7 @@ é‡ē½®ęœē“¢ę”ä»¶ć€‚ - + Cancels the search. å–ę¶ˆęœē“¢ć€‚ @@ -157,6 +164,177 @@ 搜瓢 + + AlbumCreateDialog + + 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) + č°ƒę•“å¤§å° 图像 (< 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;"> +<p style=" margin-top:0px; 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;"> ꋖ &amp;ę”¾ę’å…„å›¾ē‰‡ć€‚ ē‚¹å‡»äø€å¼ å›¾ē‰‡ļ¼ŒåœØäø‹é¢ē¼–č¾‘čÆ¦ęƒ…ć€‚</span></p></body></html> + + + Back + čæ”å›ž + + + Add Photos + ę·»åŠ ē…§ē‰‡ + + + Publish Album + å‘åøƒē›øå†Œ + + + Untitle Album + ęœŖå‘½åē›øå†Œ + + + Say something about this album... + å†™ē‚¹ä»€ä¹ˆå§ā€¦ + + + Where were these taken? + čæ™äŗ›ę˜ÆåœØå“Ŗé‡Œę‹ę‘„ēš„? + + + Load Album Thumbnail + åŠ č½½ē›øå†Œē¼©ē•„å›¾ + + AlbumDialog @@ -165,11 +343,19 @@ Album ē›øå†Œ + + Album Thumbnail + ē›øå†Œē¼©ē•„å›¾ + TextLabel 文字标签 + + Summary + 概述 + Album Title: @@ -185,6 +371,34 @@ 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"> @@ -553,7 +767,7 @@ 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. ę³Øę„: čæ™é‡Œęä¾›ēš„ęœåŠ”éƒ½å¤„äŗŽčÆ•éŖŒé˜¶ę®µć€‚ę¬¢čæŽęµ‹čÆ•ć€‚ @@ -569,6 +783,14 @@ p, li { white-space: pre-wrap; } Circles 圈子 + + GxsForums + Gxsč®ŗå› + + + GxsChannels + Gxs频道 + The Wire @@ -580,23 +802,10 @@ p, li { white-space: pre-wrap; } 照片 - - AspectRatioPixmapLabel - - - Save image - äæå­˜å›¾åƒ - - - - Copy image - - - AttachFileItem - + %p Kb %p Kb @@ -633,13 +842,17 @@ p, li { white-space: pre-wrap; } Browse... + + Add Avatar + ę·»åŠ å¤“åƒ + Remove 删除 - + Set your Avatar picture č®¾ē½®å¤“åƒ @@ -658,6 +871,10 @@ p, li { white-space: pre-wrap; } Use the mouse to zoom and adjust the image for your avatar. + + Load Avatar + č½½å…„å¤“åƒ + AvatarWidget @@ -726,10 +943,22 @@ p, li { white-space: pre-wrap; } é‡ē½® - + Receive Rate + ęŽ„ę”¶é€Ÿåŗ¦ + + + Send Rate + å‘é€é€Ÿåŗ¦ + + + Always on Top 置锶 + + Style + ę ·å¼ + Changes the transparency of the Bandwidth Graph @@ -745,11 +974,23 @@ p, li { white-space: pre-wrap; } % Opaque % äøé€ę˜Ž + + Save + äæå­˜ + + + Cancel + å–ę¶ˆ + Since: č‡Ŗä»Ž: + + Hide Settings + éšč—č®¾ē½® + BandwidthStatsWidget @@ -822,7 +1063,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -852,12 +1093,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> <p><font color="#ff0000"><b>ę­¤ę¶ˆęÆēš„ä½œč€…(IDäøŗ%1)被禁止。</b> - + ago @@ -865,7 +1106,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up 赞 @@ -885,7 +1126,7 @@ p, li { white-space: pre-wrap; } \/ - + Posted by @@ -923,7 +1164,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up 赞 @@ -943,7 +1184,7 @@ p, li { white-space: pre-wrap; } \/ - + Click to view picture @@ -973,7 +1214,7 @@ p, li { white-space: pre-wrap; } åˆ†äŗ« - + Toggle Message Read Status åˆ‡ę¢ę¶ˆęÆé˜…čÆ»ēŠ¶ę€ @@ -983,7 +1224,7 @@ p, li { white-space: pre-wrap; } - + TextLabel @@ -991,12 +1232,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this 赞 - + 0 0 @@ -1016,18 +1257,18 @@ p, li { white-space: pre-wrap; } 夓像 - + New Comment - + Copy RetroShare Link - + Expand 展开 @@ -1042,12 +1283,12 @@ p, li { white-space: pre-wrap; } - + Name - + Comm value @@ -1216,17 +1457,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels 频道 - + Tabs 标签 - + General åøøč§„ @@ -1236,17 +1477,11 @@ p, li { white-space: pre-wrap; } - - Downloads - äø‹č½½ + Load posts in background (Thread) + åœØę–°ę ‡ē­¾é”µę‰“å¼€ (Thread) - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab åœØę–°ę ‡ē­¾äø­ę‰“å¼€ę‰€ęœ‰é¢‘é“ @@ -1254,7 +1489,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1277,7 +1512,7 @@ into the image, so as to ChannelsCommentsItem - + I like this 赞 @@ -1302,18 +1537,18 @@ into the image, so as to 夓像 - + New Comment - + Copy RetroShare Link - + Expand 展开 @@ -1328,7 +1563,7 @@ into the image, so as to - + Name @@ -1338,7 +1573,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide 隐藏 @@ -1346,7 +1591,7 @@ into the image, so as to ChatLobbyDialog - + Name 名字 @@ -1537,7 +1782,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby 显示聊天室 @@ -1549,6 +1794,22 @@ into the image, so as to Chats 聊天室 + + You have %1 new messages + ę‚Øęœ‰ %1 äøŖę–°ę¶ˆęÆ + + + You have %1 new message + ę‚Øęœ‰ %1 äøŖę–°ę¶ˆęÆ + + + %1 new messages + %1 äøŖę–°ę¶ˆęÆ + + + %1 new message + %1 äøŖę–°ę¶ˆęÆ + You have %1 mentions @@ -1570,14 +1831,13 @@ into the image, so as to - - + Unknown Lobby 未矄聊天室 - - + + Remove All åˆ é™¤å…ØéƒØ @@ -1585,13 +1845,13 @@ into the image, so as to ChatLobbyWidget - - + + Name åē§° - + Count ꕰ量 @@ -1601,7 +1861,33 @@ into the image, so as to 主题 - + + 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 åˆ›å»ŗčŠå¤©å®¤ @@ -1611,7 +1897,7 @@ into the image, so as to ē¦»å¼€ę­¤ęˆæé—“ - + Create a non anonymous identity and enter this room åˆ›å»ŗäø€äøŖåŒæåčŗ«ä»½å¹¶čæ›å…„ę­¤ęˆæé—“ @@ -1670,12 +1956,12 @@ 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: äøŗę­¤čŠå¤©å®¤é€‰ę‹©äø€äøŖéžåŒæåčŗ«ä»½: @@ -1685,31 +1971,31 @@ Double click a chat room to enter and chat. åÆ¹čæ™äøŖčŠå¤©å®¤é€‰ę‹©äø€äøŖčŗ«ä»½ļ¼š - + Create chat lobby + ę–°å»ŗčŠå¤©å®¤ + + + [No topic provided] [主题未设置] - - + Selected lobby info + ę‰€é€‰čŠå¤©å®¤äæ”ęÆ + + + Private 私人 - - - + Public 公开 - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted åŒæå IDå·²ęŽ„å— @@ -1719,25 +2005,42 @@ Double click a chat room to enter and chat. å–ę¶ˆč‡ŖåŠØč®¢é˜… - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe åÆē”Øč‡ŖåŠØč®¢é˜… - + Search Chat lobbies 搜瓢聊天室 - + Search Name ęœē“¢åē§° - + Subscribed + å·²č®¢é˜… + + + Columns 列 + + Yes + 是 + + + No + 否 + Chat rooms @@ -1749,47 +2052,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: čŠå¤©å®¤åē§°ļ¼š - + Chat room Id: 聊天室 ID : - + Topic: čÆé¢˜: - + Type: ē±»åž‹: - + Security: 安全 - + Peers: čŠ‚ē‚¹: - - - - - - + + + + + + TextLabel ę–‡ęœ¬ę ‡ē­¾ @@ -1804,24 +2107,13 @@ Double click a chat room to enter and chat. ę²”ęœ‰åŒæå ID - + Show 显示 - - Private Subscribed - - - - - - Public Subscribed - - - - + column 列 @@ -1835,7 +2127,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item åˆ é™¤é”¹ē›® @@ -1880,22 +2172,46 @@ Double click a chat room to enter and chat. ChatPage - + General åøøč§„ + + Distant Chat + 私聊 + Everyone ę‰€ęœ‰äŗŗ + + Contacts + 联系人 + Nobody ę— äŗŗ - + Accept encrypted distant chat from + ęŽ„å—åŠ åÆ†ēš„čæœēØ‹čŠå¤©ä»Ž + + + Chat Settings + 聊天设置 + + + Enable Emoticons Private Chat + ē§čŠäø­åÆē”Øč”Øęƒ…å›¾ę ‡ + + + Enable Emoticons Group Chat + ē¾¤čŠäø­åÆē”Øč”Øęƒ…å›¾ę ‡ + + + Enable custom fonts åÆē”Øč‡Ŗå®šä¹‰å­—ä½“ @@ -1904,6 +2220,10 @@ Double click a chat room to enter and chat. Enable custom font size åÆē”Øč‡Ŗå®šä¹‰å­—å· + + Minimum font size + ęœ€å°å­—ä½“ + Enable bold @@ -1915,7 +2235,7 @@ Double click a chat room to enter and chat. åÆē”Øę–œä½“ - + General settings @@ -1940,7 +2260,11 @@ Double click a chat room to enter and chat. åŠ č½½å†…åµŒå›¾åƒ - + Chat Lobby + 聊天室 + + + Blink tab icon é—Ŗēƒę ‡ē­¾å›¾ę ‡ @@ -1949,6 +2273,10 @@ Double click a chat room to enter and chat. Do not send typing notifications äøč¦ę˜¾ē¤ŗč¾“å…„ęē¤ŗ + + Private Chat + 私聊 + Open Window for new chat @@ -1970,7 +2298,11 @@ Double click a chat room to enter and chat. é—ŖēƒēŖ—å£/标签图标 - + Chat Font + čŠå¤©å­—ä½“ + + + Change Chat Font ę›“ę”¹čŠå¤©å­—ä½“ @@ -1980,10 +2312,14 @@ Double click a chat room to enter and chat. čŠå¤©å­—ä½“ļ¼š - + History 历史 + + Style + ę ·å¼ + @@ -1998,13 +2334,17 @@ Double click a chat room to enter and chat. Variant: 变量: + + Group chat + 群聊 + Private chat 私聊 - + Choose your default font for Chat. é€‰ę‹©ä½ ēš„é»˜č®¤čŠå¤©å­—ä½“ @@ -2068,28 +2408,22 @@ Double click a chat room to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> <html><head/><body><p align="justify">åÆ¹äŗŽäøåŒēš„čŠå¤©ē³»ē»Ÿļ¼Œčæ™äøŖé€‰é”¹å”ę˜Æē”Øę„č®¾ē½®å…č®øRetroShareåÆä»„äæå­˜å¤šå°‘čŠå¤©ę¶ˆęÆļ¼Œä»„åŠę˜¾ē¤ŗå¤šå°‘ę”čæ‡åŽ»ēš„åÆ¹čÆć€‚ęœ€å¤§å­˜å‚Øå‘ØęœŸå…č®øäø¢å¼ƒę—§ę¶ˆęÆä»„é˜²ę»žē•™čæ‡å¤šäøé‡č¦ēš„ę¶ˆęÆ(ęÆ”å¦‚ļ¼ŒčŠå¤©å®¤å’Œå¹“ä»£ä¹…čæœēš„čŠå¤©č®°å½•).</p></body></html> + + Chatlobbies + 聊天室 + Enabled: 已启用: - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2099,17 +2433,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms 聊天室 @@ -2156,7 +2480,7 @@ Double click a chat room to enter and chat. Description: - ęčæ°: + @@ -2206,7 +2530,11 @@ Double click a chat room to enter and chat. ęœ€é•æå­˜å‚Øę—¶é—“ļ¼Œå¤©ę•° (0 = äæęŒå…ØéƒØ): - + Search by default + 默认搜瓢 + + + Case sensitive åŒŗåˆ†å¤§å°å†™ @@ -2245,6 +2573,10 @@ Double click a chat room to enter and chat. Threshold for automatic search č‡ŖåŠØęœē“¢ēš„ęœ€å¤§å€¼ + + Default identity for chat lobbies: + čŠå¤©å®¤ēš„é»˜č®¤čŗ«ä»½ + Show Bar by default @@ -2312,7 +2644,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat 显示聊天 @@ -2348,7 +2680,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close 关闭 @@ -2383,12 +2715,12 @@ Double click a chat room to enter and chat. ę–œä½“ - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon ę’å…„č”Øęƒ… @@ -2397,6 +2729,10 @@ Double click a chat room to enter and chat. 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> + <html><head/><body><p>QTå·„å…·ęŒ‰é’®:禁用 {</p><p>⇄image: url(:/icons/png/send-message-blocked.png) ;</p><p>}</p><p><br/></p></body></html> + Strike @@ -2468,6 +2804,11 @@ Double click a chat room to enter and chat. Insert horizontal rule ę’å…„ę°“å¹³ēŗæ + + + Save image + äæå­˜å›¾åƒ + Import sticker @@ -2505,7 +2846,7 @@ Double click a chat room to enter and chat. - + is typing... ę­£åœØč¾“å…„... @@ -2527,7 +2868,7 @@ after HTML conversion. 选择字体 - + Do you really want to physically delete the history? ę‚Øē”®č®¤č¦åˆ é™¤čŠå¤©č®°å½•? @@ -2577,7 +2918,7 @@ after HTML conversion. å¤„äŗŽåæ™ē¢ŒēŠ¶ę€åÆčƒ½ę— ę³•å›žå¤ę‚Øēš„ę¶ˆęÆć€‚ - + Find Case Sensitively åŒŗåˆ†å¤§å°å†™ęŸ„ę‰¾ @@ -2599,7 +2940,7 @@ after HTML conversion. Xē‰©å“å‘ēŽ°åŽļ¼ŒčÆ·å‹æåœę­¢ē€č‰²(éœ€č¦ę›“å¤šCPUå ē”Ø) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>ęŸ„ę‰¾ä»„å‰ēš„</b><br/><i>Ctrl+Shift+G</i> @@ -2614,12 +2955,16 @@ after HTML conversion. <b>ęŸ„ę‰¾ </b><br/><i>Ctrl+F</i> - + (Status) (ēŠ¶ę€) - + Set text font & color + č®¾ē½®ę–‡å­—å¤§å°åŠé¢œč‰² + + + Attach a File é™„åŠ ę–‡ä»¶ @@ -2635,12 +2980,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>ę ‡č®°é€‰ę‹©ę–‡ęœ¬</b><br><i>Ctrl+M</i> - + Person id: äøŖäŗŗID @@ -2651,12 +2996,12 @@ Double click on it to add his name on text writer. - + Unsigned ęœŖē­¾å - + items found. å·²ę‰¾åˆ° @@ -2676,7 +3021,7 @@ Double click on it to add his name on text writer. åœØę­¤č¾“å…„ę¶ˆęÆ - + Don't stop to color after čÆ·å‹æåœę­¢ē€č‰² @@ -2702,7 +3047,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: ę˜¾ē¤ŗčÆ¦ęƒ…: @@ -2724,7 +3069,7 @@ Double click on it to add his name on text writer. - + Personal Circles 私人圈 @@ -2750,7 +3095,7 @@ Double click on it to add his name on text writer. - + Friends 儽友 @@ -2810,7 +3155,7 @@ Double click on it to add his name on text writer. å„½å‹ēš„å„½å‹ - + External Circles (Admin) 公共圈子(箔理) @@ -2826,7 +3171,7 @@ Double click on it to add his name on text writer. - + Circles 圈子 @@ -2878,48 +3223,43 @@ Double click on it to add his name on text writer. - + RetroShare RetroShare - + - + Error : cannot get peer details. é”™čÆÆļ¼šę— ę³•čŽ·å–čŠ‚ē‚¹čÆ¦ęƒ…ć€‚ - + Retroshare ID - + <p>This Retroshare ID contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: - - - <b>DNS:</b> : - - <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -2931,7 +3271,7 @@ Double click on it to add his name on text writer. åŠ åÆ† - + Not connected ęœŖčæžęŽ„ @@ -3013,17 +3353,25 @@ 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> @@ -3038,7 +3386,7 @@ Double click on it to add his name on text writer. <html><head/><body><p>čæ™äøŖåŠ åÆ†ę–¹å¼ę˜Æ <span style=" font-weight:600;">OpenSSL</span>. åˆ°å„½å‹ēš„čæžęŽ„</p><p>ę˜Æå¼ŗåŠ åÆ†ēš„ļ¼Œå¦‚ęžœęœ‰DHE</p><p>&quot;å®‰å…Øę•ˆęžœä¼šę›“åŠ å®Œē¾Ž&quot;.</p></body></html> - + with 和 @@ -3055,16 +3403,118 @@ 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) + &å‘é€é‚€čÆ·é‚®ä»¶ +(ä½ ēš„å„½å‹å°†ä¼šå—åˆ°äø€å°RetroShare下载教程邮件) + + + Include signatures + åŒ…å«ē­¾å + + + Copy your Cert to Clipboard + å¤åˆ¶ę‚Øēš„čÆä¹¦åˆ°å‰Ŗč““ęæ + + + Save your Cert into a File + äæå­˜ę‚Øēš„čÆä¹¦č‡³ę–‡ä»¶ + + + Run Email program + 运蔌 Email ēØ‹åŗ + 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. + ä½æē”Øę–‡ä»¶äø­ēš„ PGP 证书。 + + + 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 RetroShare ID + + Use RetroShare ID for adding a Friend which is available in your network. + 使用 RetroShare ID ę·»åŠ ę‚Øē½‘ē»œäø­ēš„čŠ‚ē‚¹äøŗå„½å‹ć€‚ + + + Add Friends RetroShare ID... + ę·»åŠ å„½å‹ēš„ RetroShare ID... + + + Paste Friends RetroShare ID in the box below + ē²˜č““å„½å‹ēš„ RetroShare ID 至下攆中 + + + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF + č¾“å…„å„½å‹ēš„ RetroShare IDļ¼Œä¾‹å¦‚ļ¼šPeer@BDE8D16A46D938CF + RetroShare is better with Friends @@ -3106,7 +3556,27 @@ Double click on it to add his name on text writer. 邮箱 - + Invite Friends by Email + é€ščæ‡é‚®ä»¶é‚€čÆ·å„½å‹ + + + Enter your friends' email addresses (separate each one with a semicolon) + č¾“å…„ę‚Øå„½å‹ēš„ Email 地址(å¤šäøŖåœ°å€ē”Øåˆ†å·åˆ†éš”) + + + Your friends' email addresses: + ę‚Øå„½å‹ēš„é‚®ä»¶åœ°å€: + + + Enter Friends Email addresses + č¾“å…„å„½å‹ēš„ē”µå­é‚®ä»¶åœ°å€ + + + Subject: + 主题: + + + @@ -3122,32 +3592,77 @@ Double click on it to add his name on text writer. čÆ·ę±‚čÆ¦ęƒ… - + Peer details čŠ‚ē‚¹čÆ¦ęƒ… - + Name: åē§°: + + Email: + Email: + + + Node: + čŠ‚ē‚¹: + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + čÆ·ę³Øę„ļ¼Œå¦‚ęžœä½ ę·»åŠ å¤Ŗå¤šēš„å„½å‹ļ¼ŒRetroShare å°†ä¼šéœ€č¦å¤§é‡åø¦å®½ļ¼Œå†…å­˜å’ŒCPUå ē”Øļ¼Œä½ åÆä»„å°½åÆčƒ½å¤šēš„åŠ å„½å‹ļ¼Œä½†ę˜Æč¶…čæ‡40äøŖå„½å‹åÆčƒ½å°±ä¼šå ē”Øå¤§é‡čµ„ęŗ + Location: ä½ē½®: - + Options 选锹 - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + čæ™äøŖå‘åÆ¼å°†åø®åŠ©ä½ čæžęŽ„åˆ°ä½ ēš„ęœ‹å‹(们)进兄RetroShareē½‘ē»œļ¼Œ<br>čÆ·é€‰ę‹©ä½ ęƒ³ę€Žä¹ˆę·»åŠ ä½ ēš„å„½å‹ + + + Enter the certificate manually + ę‰‹åŠØč¾“å…„čÆä¹¦ + + + Enter RetroShare ID manually + ę‰‹åŠØč¾“å…„ RetroShare ID + + + &Send an Invitation by Web Mail Providers + é€ščæ‡ē½‘é”µé‚®ē®±å‘é€é‚€čÆ· + + + Recommend many friends to each other + ę‰¹é‡ęŽØčå„½å‹ + + + 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> - + Add friend to group: ę·»åŠ č‡³å„½å‹åˆ†ē»„: @@ -3157,7 +3672,7 @@ Double click on it to add his name on text writer. äøŗå„½å‹ēš„ PGP åÆ†é’„ē­¾å - + Please paste below your friend's Retroshare ID @@ -3182,22 +3697,16 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with ę·»åŠ äøŗåÆä»„å»ŗē«‹čæžęŽ„ēš„å„½å‹ - + To accept the Friend Request, click the Finish button. + ē‚¹å‡»å®ŒęˆåÆęŽ„å—å„½å‹čÆ·ę±‚ć€‚ + + + Sorry, some error appeared ęŠ±ę­‰ļ¼Œå‡ŗēŽ°é”™čÆÆ @@ -3217,27 +3726,32 @@ Double click on it to add his name on text writer. ę‚Øēš„å„½å‹čÆ¦ęƒ…: - + Key validity: åÆ†é’„ęœ‰ę•ˆę€§: - + Profile ID: - + + 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> <html><head/><body><p><span style=" font-size:10pt;">ē­¾ē½²å„½å‹ēš„é’„åŒ™ę˜Æč”Øč¾¾ä½ åÆ¹čæ™äøŖå„½å‹ļ¼Œē»™ä½ ēš„å…¶ä»–å„½å‹ēš„äæ”ä»»ēš„äø€ē§ę–¹å¼ć€‚ äø‹é¢ēš„ē­¾ååŠ åÆ†åœ°čÆę˜Žę‰€åˆ—å‡ŗēš„åÆ†é’„ēš„ę‰€ęœ‰č€…å°†å½“å‰ēš„PGPåÆ†é’„čÆ†åˆ«äøŗēœŸå®žēš„</span></p></body></html> - + This peer is already on your friend list. Adding it might just set it's ip address. ę­¤čŠ‚ē‚¹å·²ē»å­˜åœØäŗŽę‚Øēš„å„½å‹åˆ—č”Øäø­ć€‚é‡å¤ę·»åŠ ä»…č®¾ē½®å…¶IPåœ°å€ć€‚ - + To accept the Friend Request, click the Accept button. @@ -3283,17 +3797,49 @@ Double click on it to add his name on text writer. - + Certificate Load Failed 证书载兄失蓄 - + Cannot get peer details of PGP key %1 + ę— ę³•čŽ·å–PGP密钄 %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 + čŠ‚ē‚¹ ID + + + Certificate appears to be valid + čÆä¹¦ä¼¼ä¹Žęœ‰ę•ˆ + + + Not a valid Retroshare certificate! äøę˜Æäø€äøŖęœ‰ę•ˆēš„ RetroShare 证书! - + RetroShare Invitation RetroShare 邀请 @@ -3315,12 +3861,12 @@ 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? čæ™ę˜Æä½ č‡Ŗå·±ēš„čÆä¹¦ļ¼ä½ čÆ„äøä¼šę˜Æęƒ³å’Œč‡Ŗå·±äŗ¤ęœ‹å‹å§ļ¼Ÿ - + @@ -3328,7 +3874,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list ę­¤åÆ†é’„å·²ē»åœØä½ ēš„äæ”ä»»åˆ—č”Øäø­ @@ -3368,7 +3914,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.ę‚Øęœ‰äø€äøŖå„½å‹čÆ·ę±‚ę„č‡Ŗ - + Profile password needed. @@ -3393,7 +3939,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3403,7 +3949,47 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Certificate Load Failed:file %1 not found + 证书载兄失蓄: ęœŖę‰¾åˆ°ę–‡ä»¶ %1 + + + This Peer %1 is not available in your Network + čŠ‚ē‚¹ %1 åœØę‚Øēš„ē½‘ē»œäø­äøåÆē”Ø + + + Use new certificate format (safer, more robust) + ä½æē”Øę–°čÆä¹¦ę ¼å¼(ę›“å®‰å…Øļ¼Œę›“å¼ŗå¤§) + + + Use old (backward compatible) certificate format + ä½æē”Øę—§čÆä¹¦ę ¼å¼(向后兼容) + + + Remove signatures + åˆ é™¤ē­¾å + + + RetroShare Invite + RetroShare 邀请 + + + 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... + å¦å­˜äøŗ... + + + RetroShare Certificate (*.rsc );;All Files (*) @@ -3442,7 +4028,11 @@ Warning: In your File-Transfer option, you select allow direct download to No.*** ꗠ *** - + Use as direct source, when available + åÆē”Øę—¶ļ¼Œä½œäøŗē›“čæžę•°ę®ęŗć€‚ + + + IP-Addr: IP 地址: @@ -3452,7 +4042,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.IP 地址: - + Show Advanced options ę˜¾ē¤ŗé«˜ēŗ§é€‰é”¹ @@ -3461,6 +4051,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> @@ -3471,13 +4065,45 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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> + + Recommend many friends to each others + ę‰¹é‡äŗ’čå„½å‹ + + + Friend Recommendations + å„½å‹ęŽØč + + + The text below is your Retroshare certificate. You have to provide it to your friend + äø‹é¢ēš„ę–‡ęœ¬ę˜Æä½ ēš„ RetroShare čÆä¹¦ć€‚ä½ åæ…é”»ęä¾›ē»™ä½ ēš„å„½å‹ + + + 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 åÆ†é’„å·²å­˜åœØäŗŽę‚Øēš„é’„åŒ™ēŽÆäø­ @@ -3493,7 +4119,7 @@ even if you don't make friends. å‘é€čæœēØ‹äæ”ęÆęœ‰ē”Øć€‚ - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. čÆä¹¦åŒ…å«é”™čÆÆēš„ē‰ˆęœ¬å·ļ¼Œč®°ä½0.6ē‰ˆęœ¬č·Ÿ0.5ē‰ˆęœ¬äøčƒ½ē›øäŗ’ę·»åŠ  @@ -3528,7 +4154,7 @@ even if you don't make friends. ę·»åŠ č‡³ē™½åå• - + No IP in this certificate! čÆä¹¦é‡Œę²”ęœ‰IP @@ -3538,10 +4164,27 @@ even if you don't make friends. <p>ę­¤čÆä¹¦ę²”ęœ‰IP怂 ä½ ä¼šä¾é čŠ‚ē‚¹å‘ēŽ°å’ŒDHTę‰¾åˆ°å®ƒć€‚ ē”±äŗŽę‚Øéœ€č¦ęø…é™¤ē™½åå•ļ¼ŒčŠ‚ē‚¹å°†åœØNewsFeedé€‰é”¹å”äø­å¼•å‘å®‰å…Øč­¦å‘Šć€‚ ä»Žé‚£é‡Œļ¼Œä½ åÆä»„å°†ä»–ēš„IPåˆ—å…„ē™½åå•ć€‚</ p> - + + [Unknown] + [未矄] + + + Added with certificate from %1 ę·»åŠ ę„č‡Ŗ1%ēš„čÆä¹¦ + + Paste Cert of your friend from Clipboard + å¤åˆ¶åÆ¹ę–¹ēš„čÆä¹¦åˆ°å‰Ŗč““ęæ + + + Certificate Load Failed:can't read from file %1 + ē­¾åč½½å…„å¤±č“„:ę— ę³•čÆ»å–ę–‡ä»¶ %1 + + + Certificate Load Failed:something is wrong with %1 + 证书载兄失蓄: %1 出错 + ConnectProgressDialog @@ -3603,7 +4246,7 @@ even if you don't make friends. - + UDP Setup UDP 设置 @@ -3631,7 +4274,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant čæžęŽ„åŠ©ę‰‹ @@ -3641,20 +4284,17 @@ p, li { white-space: pre-wrap; } ę— ę•ˆčŠ‚ē‚¹ ID - - + Unknown State ęœŖēŸ„ēŠ¶ę€ - - + Offline 离线 - - + Behind Symmetric NAT å—é™äŗŽåÆ¹ē§° NAT @@ -3664,14 +4304,12 @@ p, li { white-space: pre-wrap; } å—é™äŗŽ NAT 且无 DHT - - + NET Restart NET é‡åÆ - - + Behind NAT å—é™äŗŽ NAT @@ -3681,8 +4319,7 @@ p, li { white-space: pre-wrap; } ꗠ DHT - - + NET STATE GOOD! ē½‘ē»œēŠ¶å†µå¾ˆå„½! @@ -3707,7 +4344,7 @@ p, li { white-space: pre-wrap; } ę­£åœØęŽ¢ē“¢ RS čŠ‚ē‚¹ - + Lookup requires DHT ęŸ„čÆ¢éœ€č¦ DHT @@ -3999,7 +4636,7 @@ p, li { white-space: pre-wrap; } čÆ·é‡čÆ•åÆ¼å…„å®Œę•“ēš„čÆä¹¦ - + @@ -4007,8 +4644,7 @@ p, li { white-space: pre-wrap; } äøé€‚ē”Ø - - + UNVERIFIABLE FORWARD! ē«Æå£č½¬å‘ēŠ¶ę€ę— ę³•ē”®č®¤ļ¼ @@ -4018,7 +4654,7 @@ p, li { white-space: pre-wrap; } ē«Æå£č½¬å‘ēŠ¶ę€ę— ę³•ē”®å®šļ¼Œę—  DHT! - + Searching 正在搜瓢 @@ -4054,12 +4690,12 @@ p, li { white-space: pre-wrap; } åœˆå­čÆ¦ęƒ… - + 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> @@ -4079,7 +4715,7 @@ p, li { white-space: pre-wrap; } - + IDs ID @@ -4099,18 +4735,18 @@ p, li { white-space: pre-wrap; } 过滤 - + Cancel - + Nickname 昵称 - + Invited Members å·²é‚€čÆ·ęˆå‘˜ @@ -4125,7 +4761,15 @@ p, li { white-space: pre-wrap; } č®¤čÆ†ēš„äŗŗ - + ID + ID + + + Type + ē±»åž‹ + + + Name: åē§°: @@ -4165,19 +4809,23 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>åœˆå­åÆä»„é™åˆ¶åœØå¦äø€äøŖåœˆå­ēš„ęˆå‘˜čŗ«äøŠć€‚ åŖęœ‰čÆ„ē¬¬äŗŒåœˆēš„ęˆå‘˜ę‰čƒ½ēœ‹åˆ°ę–°åœˆå­åŠå…¶å†…å®¹(ęˆå‘˜åˆ—č”Øē­‰)怂</p></body></html> - - + Only visible to members of: + ä»…åÆ¹äø‹åˆ—ęˆå‘˜åÆč§: + + + + RetroShare RetroShare - + Please set a name for your Circle čÆ·äøŗę‚Øēš„åœˆå­å‘½å - + No Restriction Circle Selected ęœŖé€‰ę‹©å—é™åœˆå­ @@ -4187,24 +4835,12 @@ p, li { white-space: pre-wrap; } ęœŖé€‰ę‹©åœˆå­é™åˆ¶ - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] [未矄] - + Add 添加 @@ -4214,7 +4850,7 @@ p, li { white-space: pre-wrap; } 删除 - + Search 搜瓢 @@ -4229,6 +4865,10 @@ p, li { white-space: pre-wrap; } Signed å·²ē­¾å + + Signed by known nodes + ē­¾åč€…:å·²ēŸ„čŠ‚ē‚¹ + Edit Circle @@ -4245,6 +4885,10 @@ p, li { white-space: pre-wrap; } PGP Identity PGP ID + + Anon Id + åŒæå ID + Circle name @@ -4267,13 +4911,17 @@ p, li { white-space: pre-wrap; } ę–°å»ŗåœˆå­ - + Create åˆ›å»ŗ - + PGP Linked Id + PGP 关联 ID + + + Add Member ę·»åŠ ęˆå‘˜ @@ -4292,7 +4940,7 @@ p, li { white-space: pre-wrap; } åˆ›å»ŗåˆ†ē»„ - + Group Name: ē»„åē§°: @@ -4327,7 +4975,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post 新频道蓓文 @@ -4337,7 +4985,7 @@ p, li { white-space: pre-wrap; } 邮件 - + Post @@ -4398,11 +5046,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;"><img src=":/images/feedback_arrow.png" /><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">使用拖放 / ę·»åŠ ę–‡ä»¶ęŒ‰é’®, Hash ꖰꖇ件怂</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> + + Add File to Attach + é™„åŠ ę–‡ä»¶ + Add Channel Thumbnail ę·»åŠ é¢‘é“ē¼©ē•„å›¾ + + Message + 消息 + + + Subject : + 主题: + @@ -4488,17 +5148,17 @@ p, li { white-space: pre-wrap; } - + RetroShare RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4517,18 +5177,17 @@ p, li { white-space: pre-wrap; } The following files will only be shared for 30 days. Think about adding them to a shared directory. + + File already Added and Hashed + ę–‡ä»¶å·²ę·»åŠ å¹¶ē”Ÿęˆę•£åˆ—ę ”éŖŒå€¼ + Please add a Subject 请添加主题 - - Cannot publish post - - - - + Load thumbnail picture 载兄图片缩畄图 @@ -4543,12 +5202,18 @@ p, li { white-space: pre-wrap; } 隐藏 - + + Generate mass data ē”Ÿęˆå¤§é‡ę•°ę® - + + Do you really want to generate %1 messages ? + ä½ ēœŸēš„ęƒ³ē”Ÿęˆ ļ¼…1 ę¶ˆęÆå—ļ¼Ÿ + + + You are about to add files you're not actually sharing. Do you still want this to happen? ä½ ę­£åœØę·»åŠ ęœŖåˆ†äŗ«ēš„ę–‡ä»¶ļ¼Œä»ęƒ³ē»§ē»­? @@ -4582,7 +5247,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message č®ŗå›å‘åø– @@ -4591,6 +5256,10 @@ p, li { white-space: pre-wrap; } Forum č®ŗå› + + Subject + 主题 + Attach File @@ -4611,8 +5280,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> +</style></head><body style=" font-family:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> @@ -4631,7 +5300,7 @@ p, li { white-space: pre-wrap; } ę‚ØåÆä»„é€ščæ‡ę‹–ę‹½åœØę­¤ēŖ—å£äø­ę·»åŠ ę–‡ä»¶ - + Post @@ -4661,17 +5330,17 @@ p, li { white-space: pre-wrap; } - + No Forum ę— č®ŗå› - + In Reply to 回复 - + Title ę ‡é¢˜ @@ -4724,7 +5393,7 @@ Do you want to discard this message? 载兄图片文件 - + No compatible ID for this forum ę²”ęœ‰å…¼å®¹ę­¤č®ŗå›ēš„ ID @@ -4734,8 +5403,8 @@ Do you want to discard this message? ę‚Øēš„čŗ«ä»½äøå…č®øåœØę­¤č®ŗå›äø­å‘åøƒć€‚ čæ™åÆčƒ½ę˜Æē”±äŗŽč®ŗå›é™äŗŽäø€äøŖäøåŒ…å«ę‚Øēš„čŗ«ä»½ēš„åœˆå­ļ¼Œęˆ–č€…č®ŗå›éœ€č¦PGPē­¾åēš„čŗ«ä»½ć€‚ - - + + Generate mass data ē”Ÿęˆå¤§é‡ę•°ę® @@ -4744,6 +5413,10 @@ Do you want to discard this message? Do you really want to generate %1 messages ? ä½ ēœŸēš„ęƒ³ē”Ÿęˆ ļ¼…1 ę¶ˆęÆå—ļ¼Ÿ + + Send + 发送 + Post as @@ -4758,7 +5431,23 @@ Do you want to discard this message? CreateLobbyDialog - + 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: + 聊天室主题: + + + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4793,7 +5482,7 @@ Do you want to discard this message? - + Create åˆ›å»ŗ @@ -4803,7 +5492,11 @@ 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 ē­¾åēš„čŗ«ä»½ @@ -4818,7 +5511,11 @@ Do you want to discard this message? é€‰ę‹©ē¾¤čŠå„½å‹ - + Invited friends + å·²é‚€čÆ·å„½å‹ + + + Create Chat Room åˆ›å»ŗčŠå¤©å®¤ @@ -4839,7 +5536,7 @@ Do you want to discard this message? 联系人: - + Identity to use: 使用身份 @@ -4847,17 +5544,17 @@ Do you want to discard this message? CryptoPage - + Public Information 公开俔息 - + Name: åē§°: - + Location: ä½ē½®: @@ -4867,12 +5564,12 @@ Do you want to discard this message? åœ°ē‚¹ ID: - + Software Version: č½Æä»¶ē‰ˆęœ¬: - + Online since: åœØēŗæå§‹äŗŽ: @@ -4892,7 +5589,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4902,7 +5604,7 @@ Do you want to discard this message? - + Other Information å…¶å®ƒäæ”ęÆ @@ -4912,12 +5614,17 @@ Do you want to discard this message? - + Profile - + + Certificate + 证书 + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4927,7 +5634,11 @@ Do you want to discard this message? åŒ…å«ē­¾å - + Save Key into a file + äæå­˜åÆ†é’„åˆ°ę–‡ä»¶ + + + Export Identity 导出身份 @@ -5001,33 +5712,33 @@ and use the import button to load it - + TextLabel ę–‡ęœ¬ę ‡ē­¾ - + PGP fingerprint: PGP ęŒ‡ēŗ¹: - + + Node information + čŠ‚ē‚¹äæ”ęÆ + + + PGP Id : PGP Id : - + Friend nodes: å„½å‹čŠ‚ē‚¹: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5066,6 +5777,14 @@ and use the import button to load it Node čŠ‚ē‚¹ + + Create new node... + ę–°å»ŗčŠ‚ē‚¹ + + + show statistics window + ę˜¾ē¤ŗē»Ÿč®”ēŖ—å£ + DHTGraphSource @@ -5082,6 +5801,10 @@ and use the import button to load it DHT DHT + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>RetroShare使用Bittorrentēš„DHTä½œäøŗčæžęŽ„ēš„ä»£ē†ć€‚ å®ƒäøä¼šå°†ę‚Øēš„IPå­˜å‚ØåœØDHTäø­.怂 ē›øåļ¼Œę‚Øēš„å„½å‹åÆä»„ä½æē”ØDHTę„å¤„ē†ę ‡å‡†ēš„DHT请求。 一旦RetroShareä»Žę‚Øēš„äø€äøŖå„½å‹čŽ·å¾—DHTå“åŗ”ļ¼ŒēŠ¶ę€ę ē¬¦å·å°†å˜äøŗē»æč‰²ć€‚</p> + <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 trusted nodes 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 trusted nodes.</p> @@ -5117,7 +5840,7 @@ and use the import button to load it DLListDelegate - + B B @@ -5785,7 +6508,7 @@ and use the import button to load it DownloadToaster - + Start file åÆåŠØę–‡ä»¶ä»»åŠ” @@ -5793,38 +6516,38 @@ and use the import button to load it ExprParamElement - + - + to 至 - + ignore case åæ½ē•„å¤§å°å†™ - - - yyyy-MM-dd - + + + dd.MM.yyyy + dd.MM.yyyy - - + + KB KB - - + + MB MB - - + + GB GB @@ -5832,12 +6555,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget č”Øęƒ…éƒØä»¶ - + Delete this expression åˆ ęŽ‰čæ™äøŖč”Øč¾¾å¼ @@ -5999,7 +6722,7 @@ and use the import button to load it FilesDefs - + Picture 图片 @@ -6009,7 +6732,7 @@ and use the import button to load it 视频 - + Audio 音频 @@ -6069,21 +6792,11 @@ and use the import button to load it C C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories å„½å‹ē›®å½• @@ -6205,7 +6918,7 @@ and use the import button to load it - + ID ID @@ -6240,6 +6953,10 @@ and use the import button to load it Show State ę˜¾ē¤ŗēŠ¶ę€ + + Trusted nodes + äæ”ä»»ēš„čŠ‚ē‚¹ + @@ -6247,7 +6964,7 @@ and use the import button to load it ę˜¾ē¤ŗåˆ†ē»„ - + Group åˆ†ē»„ @@ -6283,7 +7000,7 @@ and use the import button to load it ę·»åŠ č‡³åˆ†ē»„ - + Search 搜瓢 @@ -6299,7 +7016,7 @@ and use the import button to load it ä»„ēŠ¶ę€åˆ†ē±» - + Profile details ē”Øęˆ·äæ”ęÆ @@ -6541,7 +7258,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request ē”®č®¤å„½å‹čÆ·ę±‚ @@ -6558,6 +7275,10 @@ at least one peer was not added to a group FriendSelectionWidget + + Search : + 搜瓢 : + Sort by state @@ -6579,7 +7300,7 @@ at least one peer was not added to a group ęœē“¢å„½å‹ - + Mark all ę ‡č®°å…ØéƒØ @@ -6590,134 +7311,16 @@ at least one peer was not added to a group å–ę¶ˆę ‡č®° - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - 地址 - - - - Status - ēŠ¶ę€ - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - ęŽ„å—å„½å‹ - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - ä»£ē†ęœŖåÆē”Øęˆ–äø­ę–­ć€‚ -ę‰€ęœ‰ęœåŠ”éƒ½å¼€åÆå¹¶ę­£åøøčæč”Œå—ļ¼Ÿ -å¦å¤–čÆ·ę£€ęŸ„ę‚Øēš„ē«Æå£ļ¼ - - FriendsDialog - + Edit status message ē¼–č¾‘ēŠ¶ę€ę¶ˆęÆ - - + + Broadcast 广播 @@ -6800,38 +7403,33 @@ Also check your ports! é‡ē½®äøŗé»˜č®¤å­—ä½“ - + 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> + <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. RetroShare å¹æč€Œå‘Šä¹‹ļ¼šę­¤å¤„ēš„ę¶ˆęÆä¼šå‘ē»™å½“å‰čæžęŽ„ēš„ę‰€ęœ‰å„½å‹ć€‚ - - + + Network ē½‘ē»œ - - Friend Server - - - - + Network graph ē½‘ē»œå›¾č”Ø - - <h1><img width="%1" 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> - - - - + Set your status message here. åœØčæ™é‡Œč®¾ē½®ä½ ēš„ēŠ¶ę€ę¶ˆęÆć€‚ @@ -6849,17 +7447,7 @@ Also check your ports! 密码 - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters ę‰€ęœ‰å­—ę®µéƒ½éœ€č¦ęœ€å°‘3个字符 @@ -6869,12 +7457,17 @@ Also check your ports! åÆ†ē äøē¬¦ - + Port ē«Æå£ - + + Use BOB + + + + This password is for PGP čæ™ę˜ÆäæęŠ¤PGPåÆ†é’„ēš„åÆ†ē ć€‚ @@ -6895,38 +7488,42 @@ Also check your ports! ę–°čÆä¹¦ē”Ÿęˆå¤±č“„ļ¼ŒåÆčƒ½ę‚Øēš„ PGP åÆ†ē ęœ‰čÆÆ! - + 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> - + Node name čŠ‚ē‚¹åē§° - + Node type: @@ -6946,12 +7543,12 @@ Also check your ports! - + <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 åÆ¼å‡ŗč“¦ęˆ·ę–‡ä»¶ @@ -6961,43 +7558,42 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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> @@ -7045,13 +7641,13 @@ and use the import button to load it ę‚Øēš„ē”Øęˆ·ę”£ę”ˆęœŖäæå­˜ć€‚ęœ‰é”™čÆÆå‘ē”Ÿć€‚ - + Import profile åÆ¼å…„ē”Øęˆ·ę”£ę”ˆ - + Create new profile and new Retroshare node åˆ›å»ŗę–°ēš„ē”Øęˆ·ę”£ę”ˆå’ŒRetroSharečŠ‚ē‚¹ @@ -7061,7 +7657,7 @@ and use the import button to load it 新建 RetroShare čŠ‚ē‚¹ - + Tor/I2P address @@ -7096,7 +7692,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7106,7 +7702,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7116,7 +7717,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7342,13 +7948,36 @@ and use the import button to load it å…„é—ØęŒ‡å— - + 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;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be sure to get their invitation back as well... </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space:pre-wrapļ¼›} +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">å°†ę‚Øēš„ "ID 证书" é€ščæ‡ē”µé‚®é‚€čÆ·å‘é€ē»™ę‚Øēš„å„½å‹ć€‚</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" 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=" 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> + + + Add Your Friends to RetroShare ę·»åŠ ę‚Øēš„å„½å‹č‡³ RetroShare @@ -7358,103 +7987,131 @@ and use the import button to load it ę·»åŠ å„½å‹ - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> - +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">å’Œä½ ēš„å„½å‹åŒę—¶åœØēŗæļ¼Œ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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port - 高级:ę‰“å¼€é˜²ē«ē«Æå£ +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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:'Sans Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> + + + + Connect To Friends + čæžęŽ„åˆ°å„½å‹ + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 ę›“å¤šåø®åŠ©äøŽę”ÆęŒ - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website 访问 RS 网站 @@ -7479,7 +8136,7 @@ p, li { white-space: pre-wrap; } åé¦ˆē”µé‚® - + RetroShare Invitation RetroShare 邀请 @@ -7529,12 +8186,12 @@ p, li { white-space: pre-wrap; } RetroShare 反馈 - + RetroShare Support RetroShare ę”ÆęŒ - + It has many features, including built-in chat, messaging, ä»–ę‹„ęœ‰å¤šē§åŠŸčƒ½ļ¼ŒåŒ…ę‹¬å†…ē½®ēš„čŠå¤©ļ¼Œä¼ äæ”ē­‰ć€‚ @@ -7658,7 +8315,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat ę˜¾ē¤ŗē¾¤ē»„čŠå¤© @@ -7666,7 +8323,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] [未矄] @@ -7832,11 +8489,19 @@ p, li { white-space: pre-wrap; } 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. + ę‚ØåÆä»„å…č®øę‚Øēš„å„½å‹ē¼–č¾‘äø»é¢˜ć€‚ åœØäø‹é¢ēš„åˆ—č”Øäø­é€‰ę‹©å®ƒä»¬ć€‚ ę³Øę„ļ¼šę— ę³•ę’¤é”€å‘åøƒēš„ē®”ē†å‘˜ęƒé™ć€‚ + GroupTreeWidget - + Title ę ‡é¢˜ @@ -7849,12 +8514,12 @@ p, li { white-space: pre-wrap; } - + Description ęčæ° - + Number of Unread message @@ -7879,7 +8544,31 @@ p, li { white-space: pre-wrap; } - + Sort Descending Order + ęŒ‰é™åŗęŽ’åˆ— + + + Sort Ascending Order + ęŒ‰å‡åŗęŽ’åˆ— + + + Sort by Name + ęŒ‰åē§°ęŽ’åŗ + + + Sort by Popularity + ęŒ‰ę“»č·ƒåŗ¦ęŽ’åŗ + + + Sort by Last Post + ęŒ‰ę–°č““ę–‡ęŽ’åŗ + + + Sort by Unread + ęŒ‰ęœŖčÆ»äæ”ęÆåˆ†ē±» + + + You are admin (modify names and description using Edit menu) ä½ ę˜Æē®”ē†å‘˜(äæ®ę”¹åå­—å’Œęčæ°čÆ·ē”Øē¼–č¾‘čœå•) @@ -7894,14 +8583,14 @@ p, li { white-space: pre-wrap; } ID - - + + Last Post ęœ€ę–°č““ę–‡ - + Name @@ -7912,13 +8601,17 @@ p, li { white-space: pre-wrap; } 擻跃度 - + Never ä»Žäø - + Display + 显示 + + + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7931,7 +8624,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and äøŽ @@ -8067,7 +8760,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels 频道 @@ -8078,22 +8771,26 @@ p, li { white-space: pre-wrap; } åˆ›å»ŗé¢‘é“ - + Enable Auto-Download åÆē”Øč‡ŖåŠØäø‹č½½ - + My Channels ęˆ‘ēš„é¢‘é“ - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts 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> + + + + <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> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels č®¢é˜…ēš„é¢‘é“ @@ -8113,12 +8810,12 @@ p, li { white-space: pre-wrap; } 选择频道下载目录 - + Disable Auto-Download ē¦ē”Øč‡ŖåŠØäø‹č½½ - + Set download directory 设置下载目录 @@ -8153,22 +8850,22 @@ p, li { white-space: pre-wrap; } - + Play 播放 - + Open folder 打开文件夹 - + Open file - + Error 错误 @@ -8188,17 +8885,17 @@ p, li { white-space: pre-wrap; } ę£€ęŸ„äø­ - + Are you sure that you want to cancel and delete the file? ę‚Øē”®å®šč¦å–ę¶ˆå’Œåˆ é™¤čæ™äŗ›ę–‡ä»¶å—? - + Can't open folder 无法打开文件夹 - + Play File 播放文件 @@ -8208,10 +8905,37 @@ p, li { white-space: pre-wrap; } ę–‡ä»¶ä½ē½® %1 äøå­˜åœØć€‚ + + GxsChannelFilesWidget + + Form + č”Øå• + + + Filename + ę–‡ä»¶å + + + Size + 大小 + + + Title + ę ‡é¢˜ + + + Published + å·²å‘åøƒ + + + Status + ēŠ¶ę€ + + GxsChannelGroupDialog - + Create New Channel 新建频道 @@ -8249,19 +8973,9 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel - + + Subscribe to Channel + č®¢é˜…é¢‘é“ @@ -8275,7 +8989,7 @@ p, li { white-space: pre-wrap; } - + Expand 展开 @@ -8290,7 +9004,7 @@ p, li { white-space: pre-wrap; } é¢‘é“ęčæ° - + Loading ę­£åœØč½½å…„ @@ -8305,9 +9019,8 @@ p, li { white-space: pre-wrap; } - - Never - ä»Žäø + New Channel + 新频道 @@ -8318,7 +9031,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: ę–°čÆ„č®ŗļ¼š @@ -8339,7 +9052,7 @@ p, li { white-space: pre-wrap; } - + Play 播放 @@ -8395,24 +9108,28 @@ 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 å°ę—¶ %2 åˆ†ļ¼ŒčÆ·č€ƒč™‘äæå­˜ć€‚ + Hide 隐藏 - + New ꖰ - + 0 0 - - + + Comment 评论*** @@ -8427,17 +9144,21 @@ p, li { white-space: pre-wrap; } čø© - + Loading + ę­£åœØč½½å…„ + + + Loading... - + Comments - + Post @@ -8462,16 +9183,135 @@ p, li { white-space: pre-wrap; } ę’­ę”¾å½±éŸ³ + + GxsChannelPostsWidget + + Post to Channel + å‘åøƒč‡³é¢‘é“ + + + 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 + 显示feeds + + + Show files + ę˜¾ē¤ŗę–‡ä»¶ + + + Administrator: + ē®”ē†å‘˜ļ¼š + + + Last Post: + ęœ€ę–°č““ę–‡ + + + unknown + 未矄 + + + Distribution: + ä¼ ę’­čŒƒå›“ + + + Feeds + č®¢é˜… + + + Files + ꖇ件 + + + Subscribers + č®¢é˜… + + + Description: + ęčæ°ļ¼š + + + Posts (at neighbor nodes): + č““ę–‡(ē›øé‚»čŠ‚ē‚¹) + + GxsChannelPostsWidgetWithModel - + Post to Channel å‘åøƒč‡³é¢‘é“ - + Add new post @@ -8541,7 +9381,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8577,7 +9417,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8592,13 +9432,13 @@ p, li { white-space: pre-wrap; } č®¢é˜… - - + + Click to switch to list view - + Show unread posts only @@ -8613,7 +9453,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8628,7 +9468,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8688,22 +9528,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8760,17 +9590,17 @@ p, li { white-space: pre-wrap; } Restricted to members of circle " - ä»…é™äŗŽåœˆå­ēš„ęˆå‘˜" + Restricted to members of circle - ä»…é™äŗŽåœˆå­ēš„ęˆå‘˜ + Your eyes only - åŖęœ‰ä½ čƒ½ēœ‹č§ + @@ -8778,13 +9608,12 @@ p, li { white-space: pre-wrap; } ä½ å’Œä½ å„½å‹ēš„čŠ‚ē‚¹ - - + Copy Retroshare link - + Subscribed å·²č®¢é˜… @@ -8835,17 +9664,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8960,7 +9789,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container 评论容器 @@ -8973,7 +9802,7 @@ p, li { white-space: pre-wrap; } 蔨格 - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -9003,7 +9832,7 @@ p, li { white-space: pre-wrap; } åˆ·ę–° - + Comment 评论 @@ -9042,7 +9871,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment å›žå¤čÆ„č®ŗ @@ -9066,21 +9895,6 @@ p, li { white-space: pre-wrap; } Vote Down čø© - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9090,7 +9904,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; } @@ -9119,10 +9933,26 @@ p, li { white-space: pre-wrap; } - + Post + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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;">评论</span></p></body></html> + + + Signed by + ē­¾åč€… + Reply to Comment @@ -9150,7 +9980,7 @@ before you can comment čÆ„č®ŗå‰ę‚Øéœ€č¦å…ˆåˆ›å»ŗčŗ«ä»½ - + It remains %1 characters after HTML conversion. @@ -9192,6 +10022,14 @@ before you can comment Forum moderators can edit/delete/pinup others posts + + Add Forum Admins + ę·»åŠ č®ŗå›ē®”ē†å‘˜ + + + Select Forum Admins + é€‰ę‹©č®ŗå›ē®”ē†å‘˜ + Create @@ -9201,7 +10039,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum č®¢é˜…č®ŗå› @@ -9217,7 +10055,7 @@ before you can comment - + Expand 展开 @@ -9237,9 +10075,8 @@ before you can comment - - TextLabel - + Loading + ę­£åœØč½½å…„ @@ -9270,13 +10107,13 @@ before you can comment GxsForumMsgItem - - + + Subject: 主题: - + Unsubscribe To Forum é€€č®¢č®ŗå› @@ -9287,7 +10124,7 @@ before you can comment - + Expand 展开 @@ -9307,17 +10144,21 @@ before you can comment 回复 - + Loading + ę­£åœØč½½å…„ + + + Loading... - + Forum Feed č®ŗå›feed - + Hide 隐藏 @@ -9330,66 +10171,63 @@ before you can comment 蔨格 - + Start new Thread for Selected Forum ę–°å»ŗäø»é¢˜åø– - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums ęœē“¢č®ŗå› - + Last Post + ęœ€ę–°č““ę–‡ + + + New Thread 新帖子 + + + Threaded View + čÆé¢˜č§†å›¾ + + + + Flat View + ę™®é€šč§†å›¾ + - + Title ę ‡é¢˜ - - + + Date ę—„ęœŸ - + Author ä½œč€… - + + Save image + äæå­˜å›¾åƒ + + + Loading ę­£åœØč½½å…„ - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9399,7 +10237,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message å›žå¤č““ę–‡ @@ -9423,6 +10266,10 @@ before you can comment Download all files äø‹č½½å…ØéƒØę–‡ä»¶ + + Next unread + äø‹äø€ę”ęœŖčÆ» + Search Title @@ -9439,23 +10286,35 @@ 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> + <p>č®¢é˜…č®ŗå›å°†ę”¶é›† ę‚Øč®¢é˜…ēš„å„½å‹ēš„ åÆē”Øåø–å­ć€‚</p><p>ä¹‹åŽļ¼Œę‚ØåÆä»„ä»Žå·¦ä¾§ēš„č®ŗå›åˆ—č”Øēš„äøŠäø‹ę–‡čœå•äø­å–ę¶ˆč®¢é˜…ć€‚</p> + + + No name ęœŖå‘½å - - + + Reply 回复 - + <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> - + Loading... @@ -9498,12 +10357,20 @@ before you can comment 复制 RetroShare é“¾ęŽ„ - + Hide 隐藏 - + Expand + 展开 + + + [Banned] + [č¢«å±č”½ēš„] + + + [unknown] [未矄] @@ -9533,8 +10400,8 @@ before you can comment åŖęœ‰ä½ čƒ½ēœ‹č§ - - + + Distribution ä¼ ę’­čŒƒå›“ @@ -9548,6 +10415,26 @@ before you can comment 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> @@ -9617,12 +10504,16 @@ before you can comment åŽŸå§‹č““ę–‡ - + New thread - + Read status + čÆ»å–ēŠ¶ę€ + + + Edit 编辑 @@ -9683,7 +10574,7 @@ before you can comment ä½œč€…ēš„äæ”čŖ‰ - + Show column @@ -9703,7 +10594,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive å¦‚ęžœåŒæåč“¦ęˆ·/ęœŖēŸ„čŠ‚ē‚¹čÆ„åˆ†ę˜Æę­£ēš„ļ¼Œå…č®øå‘åø– @@ -9755,7 +10646,7 @@ This message is missing. You should receive it later. - + No result. @@ -9765,7 +10656,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9780,7 +10671,28 @@ This message is missing. You should receive it later. - + 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) @@ -9789,6 +10701,10 @@ This message is missing. You should receive it later. (Old) + + You cant act on the author to a non-existant Message + ä½ äøčƒ½åÆ¹äøå­˜åœØēš„ę¶ˆęÆęŒ‡å®šä½œč€… + From @@ -9846,12 +10762,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages 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> - + Forums č®ŗå› @@ -9882,16 +10798,35 @@ This message is missing. You should receive it later. å…¶ä»–č®ŗå› + + GxsForumsFillThread + + Waiting + 等待中 + + + Retrieving + ę­£åœØčŽ·å– + + + Loading + ę­£åœØč½½å…„ + + GxsGroupDialog - + Name åē§° - + Add Icon + ę·»åŠ å›¾ę ‡ + + + Key recipients can publish to restricted-type group and can view and publish for private-type channels åÆ†é’„ęŽ„ę”¶č€…åÆä»„åœØå—é™å°ē»„äø­å‘åø–ļ¼ŒåÆä»„åœØäøŖäŗŗé¢‘é“äø­å‘åø–å’Œęµč§ˆć€‚ @@ -9900,14 +10835,22 @@ This message is missing. You should receive it later. Share Publish Key åˆ†äŗ«å‘åø–åÆ†é’„ + + check peers you would like to share private publish key with + é€‰ę‹©ę‚ØåøŒęœ›äøŽä¹‹å…±äŗ«äøŖäŗŗå‘åø–åÆ†é’„ēš„čŠ‚ē‚¹ + + + Share Key With + 密钄共享给 + - + Description ęčæ° - + Message Distribution ä¼ ę’­čŒƒå›“ @@ -9915,7 +10858,7 @@ This message is missing. You should receive it later. - + Public 公开 @@ -9934,6 +10877,14 @@ This message is missing. You should receive it later. New Thread 新帖子 + + Required + åæ…éœ€ + + + Encrypted Msgs + åŠ åÆ†ę¶ˆęÆ + Personal Signatures @@ -9975,7 +10926,7 @@ This message is missing. You should receive it later. åžƒåœ¾äæ”ęÆäæęŠ¤ - + Comments: 评论: @@ -9998,7 +10949,7 @@ This message is missing. You should receive it later. 反垃圾 - + All People @@ -10014,12 +10965,12 @@ This message is missing. You should receive it later. - + Restricted to circle: ä»…é™äŗŽåœˆå­ - + Limited to your friends é™äŗŽä½ ēš„å„½å‹ @@ -10036,23 +10987,23 @@ This message is missing. You should receive it later. - + Message tracking 消息追踪 - - + + PGP signature required éœ€č¦ PGP ē­¾å - + Never ä»Žäø - + Only friends nodes in group ä»…åˆ†ē»„äø­ēš„å„½å‹čŠ‚ē‚¹ @@ -10068,28 +11019,30 @@ This message is missing. You should receive it later. čÆ·ę·»åŠ åē§° - + PGP signature from known ID required éœ€č¦å·²ēŸ„IDēš„ PGP ē­¾å - - - [None] - - - - + Load Group Logo åŠ č½½å°ē»„Logo - + Submit Group Changes ęäŗ¤ē¾¤ē»„ę›“ę”¹ - + Failed to Prepare Group MetaData - please Review + ē¾¤ē»„å…ƒę•°ę®å‡†å¤‡å¤±č“„-čÆ·ęŸ„é˜… + + + Will be used to send feedback + å°†ē”ØäŗŽå‘é€åé¦ˆ + + + Owner: ę‹„ęœ‰ē€: @@ -10099,12 +11052,12 @@ This message is missing. You should receive it later. åœØę­¤č®¾ē½®ęčæ°ę€§ä»‹ē» - + Info 俔息 - + ID ID @@ -10114,7 +11067,7 @@ This message is missing. You should receive it later. ęœ€ę–°č““ę–‡ - + <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> @@ -10189,12 +11142,7 @@ This message is missing. You should receive it later. å–ę¶ˆę”¶č—ę„č‡ŖęœŖēŸ„čŠ‚ē‚¹ēš„ęœŖē­¾åID - - Author: - - - - + Popularity 擻跃度 @@ -10210,22 +11158,27 @@ This message is missing. You should receive it later. - + Created - + Cancel - + Create åˆ›å»ŗ - + + Author + ä½œč€… + + + GxsIdLabel GXS ID 标签 @@ -10233,7 +11186,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading ę­£åœØč½½å…„ @@ -10293,7 +11246,7 @@ This message is missing. You should receive it later. ē¼–č¾‘čÆ¦ęƒ… - + Synchronise posts of last... åŒę­„ęœ€åŽēš„č““ę–‡... @@ -10350,12 +11303,16 @@ This message is missing. You should receive it later. - + Search for - + Share publish permissions + å…±äŗ«å‘åøƒęƒé™ + + + Copy RetroShare Link 复制 RetroShare é“¾ęŽ„ @@ -10378,7 +11335,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature ę— ē­¾å @@ -10391,24 +11348,40 @@ This message is missing. You should receive it later. GxsIdDetails - + Loading + ę­£åœØč½½å…„ + + + Not found ęœŖę‰¾åˆ° + + No Signature + ę— ē­¾å + - - + + [Banned] [č¢«å±č”½ēš„] + + Authentication + 验证 + unknown Key ęœŖēŸ„åÆ†é’„ - + anonymous + åŒæå + + + Loading... @@ -10418,12 +11391,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name 身份 åē§° @@ -10437,20 +11405,16 @@ This message is missing. You should receive it later. Node čŠ‚ē‚¹ + + Signed&nbsp;by + ē­¾åč€… + [Unknown] [未矄] - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10462,7 +11426,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10510,13 +11474,17 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] [未矄] GxsMessageFramePostWidget + + Loading + ę­£åœØč½½å…„ + Loading... @@ -10680,6 +11648,41 @@ This message is missing. You should receive it later. 否 + + GxsTunnelsDialog + + 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 + ęœŖēŸ„čŠ‚ē‚¹ + + HashBox @@ -10892,12 +11895,48 @@ This message is missing. You should receive it later. 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> +<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> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10913,7 +11952,7 @@ p, li { white-space: pre-wrap; } - + Authors ä½œč€… @@ -10932,7 +11971,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10945,6 +11984,36 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-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="-qt-paragraph-type:empty; margin-top:0px; margin-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 翻译:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-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 网锵翻译:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-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 @@ -11010,12 +12079,12 @@ p, li { white-space: pre-wrap; } č”Øå• - + <html><head/><body><p>Copy your RetroShare ID to clipboard</p></body></html> - + Add friend @@ -11030,7 +12099,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11039,12 +12108,32 @@ p, li { white-space: pre-wrap; } This is your Retroshare ID. Copy and share with your friends! + + 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, @@ -11055,12 +12144,16 @@ private and secure decentralized communication platform. - + Launch startup wizard + åˆę¬”ä½æē”Øå‘åÆ¼ + + + Open Web Help ę‰“å¼€ē½‘ē»œåø®åŠ© - + Copy your Cert to Clipboard å¤åˆ¶ę‚Øēš„čÆä¹¦åˆ°å‰Ŗč““ęæ @@ -11070,7 +12163,7 @@ private and secure decentralized communication platform. äæå­˜ę‚Øēš„čÆä¹¦č‡³ę–‡ä»¶ - + Send via Email é€ščæ‡é‚®ä»¶å‘é€ @@ -11090,37 +12183,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11132,12 +12201,17 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11151,6 +12225,10 @@ new short format RetroShare Invite RetroShare邀请 + + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way + ę‚Øēš„čÆä¹¦å·²å¤åˆ°å‰Ŗåˆ‡ęæļ¼ŒčÆ·å°†å…¶é€ščæ‡é‚®ä»¶ęˆ–å…¶ä»–ę–¹å¼ē²˜č““å‘é€ē»™ę‚Øēš„å„½å‹ + Save as... @@ -11422,14 +12500,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All å…ØéƒØ - + Reputation 俔誉 @@ -11439,12 +12517,12 @@ p, li { white-space: pre-wrap; } 搜瓢 - + Anonymous Id åŒæå ID - + Create new Identity 新建身份 @@ -11454,7 +12532,7 @@ p, li { white-space: pre-wrap; } ę–°å»ŗåœˆå­ - + Persons äøŖäŗŗ @@ -11469,27 +12547,27 @@ p, li { white-space: pre-wrap; } 人物 - + Close 关闭 - + Ban-option: å±č”½é€‰é”¹ - + Auto-Ban all identities signed by the same node č‡ŖåŠØå±č”½ęŽ‰čæ™äøŖčŠ‚ē‚¹ē­¾åčæ‡ēš„čŗ«ä»½ - + Friend votes: å„½å‹ē‚¹čµž - + Positive votes ę­£é¢ēš„ęŠ•ē„Ø @@ -11505,39 +12583,29 @@ p, li { white-space: pre-wrap; } č“Ÿé¢ēš„ęŠ•ē„Ø - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics ä½æē”Øē»Ÿč®” - + Circles 圈子 - + Circle name åœˆå­åē§° @@ -11557,20 +12625,18 @@ p, li { white-space: pre-wrap; } 私人圈子 - + - Edit identity 编辑身份 - - + Delete identity åˆ é™¤čŗ«ä»½ - + Chat with this peer äøŽę­¤čŠ‚ē‚¹čŠå¤© @@ -11580,78 +12646,78 @@ p, li { white-space: pre-wrap; } č·Ÿčæ™äøŖčŠ‚ē‚¹å¼€åÆäø€äøŖčæœēØ‹čŠå¤© - + Owner node ID : ę‰€ęœ‰č€…čŠ‚ē‚¹åē§°ļ¼š - + Identity name : čŗ«ä»½åē§° - + () () - + Identity ID 身份ID - + Send message å‘é€ę¶ˆęÆ - + Identity info 身份俔息 - + Identity ID : 身份 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> <html><head/><body><p>å…³äŗŽčæ™äøŖčŗ«ä»½ļ¼Œē›øé‚»čŠ‚ē‚¹ēš„ē»¼åˆčÆ„ä»·ć€‚ č“Ÿēš„ę˜Æå·®ēš„ļ¼Œ</p><p> ę­£ēš„ę˜Æå„½ēš„ļ¼Œé›¶ę˜Æäø­ē«‹ēš„</p></body></html> - + Your opinion: ä½ ēš„čÆ„ä»· - + Negative č“Ÿé¢ēš„ - + Neutral äø­ē«‹ēš„ @@ -11662,17 +12728,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> <html><head/><body><p>ę€»ä½“äæ”čŖ‰å¾—åˆ†ļ¼ŒęŗäŗŽä½ å’Œä½ ēš„å„½å‹</p><p> č“Ÿēš„ę˜Æå·®ēš„ļ¼Œę­£ēš„ę˜Æå„½ēš„ļ¼Œé›¶ę˜Æäø­ē«‹ēš„ļ¼Œå¦‚ęžœåˆ†ę•°å¤Ŗä½Ž</p><p>čæ™äøŖčŗ«ä»½å°±č¢«ę ‡č®°äøŗå·®ēš„ , ä¼šč¢«č®ŗå›ļ¼ŒčŠå¤©å®¤é¢‘é“ē­‰</p><p>过滤。</p></body></html> - + Overall: 总体: - + Anonymous åŒæå @@ -11687,24 +12753,24 @@ p, li { white-space: pre-wrap; } 搜瓢 ID - + This identity is owned by you čæ™äøŖčŗ«ä»½č¢«ä½ ę˜Æę‹„ęœ‰č€… - - + + My own identities ęˆ‘ę‰€ę‹„ęœ‰ēš„čŗ«ä»½ - - + + My contacts ęˆ‘ēš„é€šč®Æå½• - + Show Items ę˜¾ē¤ŗé”¹ē›® @@ -11719,12 +12785,7 @@ p, li { white-space: pre-wrap; } é“¾ęŽ„åˆ°ęˆ‘ēš„čŠ‚ē‚¹ - - <h1><img width="%1" 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> - - - - + Other circles 其他圈子 @@ -11734,7 +12795,7 @@ p, li { white-space: pre-wrap; } ęˆ‘åŠ å…„ēš„åœˆå­ - + Circle ID: 圈子ID @@ -11809,7 +12870,7 @@ p, li { white-space: pre-wrap; } äøę˜Æä¼šå‘˜(ę— ęƒč®æé—®ę­¤åœˆå­ēš„ę•°ę®) - + Identity ID: 身份 ID : @@ -11839,7 +12900,7 @@ p, li { white-space: pre-wrap; } 未矄 - + Invited 被邀请 @@ -11854,7 +12915,7 @@ p, li { white-space: pre-wrap; } ęˆå‘˜ - + Edit Circle ē¼–č¾‘åœˆå­ @@ -11902,7 +12963,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. @@ -11913,7 +12974,7 @@ These identities will soon be not supported anymore. ę­¤ē§čŗ«ä»½å°†å¾ˆåæ«äøå†č¢«ę”ÆęŒć€‚ - + [Unknown node] [ęœŖēŸ„čŠ‚ē‚¹] @@ -11956,7 +13017,7 @@ These identities will soon be not supported anymore. åŒæåčŗ«ä»½ - + Boards @@ -12036,7 +13097,7 @@ These identities will soon be not supported anymore. - + information @@ -12052,12 +13113,25 @@ These identities will soon be not supported anymore. - + 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>åÆä»„å—é™äŗŽå¦äø€äøŖåœˆå­ļ¼Œä»Žč€Œé™åˆ¶å®ƒåÆ¹čÆ„åœˆå­ęˆå‘˜ēš„åÆč§ę€§ļ¼Œē”šč‡³é™åˆ¶åœˆå­ęœ¬čŗ«ēš„åÆč§ę€§ļ¼Œčæ™ę„å‘³ē€åŖęœ‰č¢«é‚€čÆ·ēš„ęˆå‘˜åÆä»„ēœ‹åˆ°ć€‚ + + + positive ę­£é¢ēš„ @@ -12101,11 +13175,19 @@ These identities will soon be not supported anymore. Forums č®ŗå› + + Posted + å·²å‘č”Ø + Chat 聊天 + + Unknown + 未矄 + [Unknown] @@ -12126,6 +13208,14 @@ These identities will soon be not supported anymore. Creation of author signature in service %1 ä½æē”Øäø­ēš„ä½œč€…ē­¾å%1 + + Message/vote/comment + 俔息/ē‚¹čµž/评论 + + + %1 in %2 tab + %1 在 %2 标签锵 + Distant message signature validation. @@ -12146,11 +13236,19 @@ These identities will soon be not supported anymore. Signature in distant tunnel system. åœØčæœēØ‹éš§é“ē³»ē»Ÿäø­ēš„ē­¾å + + Update of identity data. + ę›“ę–°čŗ«ä»½ę•°ę®ć€‚ + Generic signature validation. é€šē”Øē­¾åéŖŒčÆć€‚ + + Generic signature. + é€šē”Øē­¾åć€‚ + Generic encryption. @@ -12162,7 +13260,11 @@ These identities will soon be not supported anymore. é€šē”Øč§£åÆ†ć€‚ - + Membership verification in circle %1. + 圈子%1äø­ēš„ęˆå‘˜éŖŒčÆć€‚ + + + Add to Contacts ę·»åŠ åˆ°é€šč®Æå½• @@ -12212,21 +13314,21 @@ These identities will soon be not supported anymore. 你儽,<br>ęˆ‘ęƒ³äøŽä½ ęˆäøŗ RetroShare äøŠēš„å„½å‹ć€‚<br> - - - + + + People 人物 - + Your Avatar Click here to change your avatar ä½ ēš„å¤“åƒ - + Linked to neighbor nodes é“¾ęŽ„åˆ°ē›øé‚»čŠ‚ē‚¹ @@ -12236,7 +13338,7 @@ These identities will soon be not supported anymore. é“¾ęŽ„åˆ°čæœēØ‹čŠ‚ē‚¹ - + Linked to a friend Retroshare node é“¾ęŽ„åˆ°å„½å‹ēš„RetroSharečŠ‚ē‚¹ @@ -12251,7 +13353,7 @@ These identities will soon be not supported anymore. é“¾ęŽ„åˆ°ęœŖēŸ„RetroSharečŠ‚ē‚¹ - + Chat with this person äøŽę­¤äŗŗčŠå¤© @@ -12266,12 +13368,12 @@ These identities will soon be not supported anymore. čæœēØ‹čŠå¤©ę‹’ē»ę­¤äŗŗ - + Last used: äøŠę¬”ä½æē”Ø - + +50 Known PGP +50 已矄 PGP @@ -12291,12 +13393,12 @@ These identities will soon be not supported anymore. ä½ ēœŸēš„č¦åˆ é™¤čæ™äøŖčŗ«ä»½å—ļ¼Ÿ - + Owned by ę‹„ęœ‰č€… - + Node name: čŠ‚ē‚¹åē§°ļ¼š @@ -12306,7 +13408,7 @@ These identities will soon be not supported anymore. čŠ‚ē‚¹Id: - + Really delete? ēœŸēš„č¦åˆ é™¤ļ¼Ÿ @@ -12314,7 +13416,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname 昵称 @@ -12344,7 +13446,7 @@ These identities will soon be not supported anymore. ē¬”å - + Import image @@ -12354,19 +13456,12 @@ These identities will soon be not supported anymore. - - - No Avatar chosen. A default image will be automatically displayed from your new identity. + + Use the mouse to zoom and adjust the image for your avatar. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity 新建身份 @@ -12380,7 +13475,7 @@ These identities will soon be not supported anymore. - + @@ -12390,12 +13485,7 @@ These identities will soon be not supported anymore. äøé€‚ē”Ø - - No avatar chosen - - - - + Edit identity 编辑身份 @@ -12406,27 +13496,27 @@ These identities will soon be not supported anymore. ꛓꖰ - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12446,7 +13536,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12456,7 +13546,11 @@ These identities will soon be not supported anymore. - + Error getting key! + é”™čÆÆļ¼šåÆ†é’„čŽ·å–å‡ŗé”™! + + + Error KeyID invalid é”™čÆÆļ¼šåÆ†é’„IDꗠꕈ @@ -12471,7 +13565,7 @@ These identities will soon be not supported anymore. ęœŖēŸ„ēœŸå®žå§“å*** - + Create New Identity åˆ›å»ŗę–°čŗ«ä»½ @@ -12481,15 +13575,10 @@ These identities will soon be not supported anymore. ē±»åž‹ - + Choose image... - - - Remove - 删除 - @@ -12515,7 +13604,7 @@ These identities will soon be not supported anymore. 添加 - + Create åˆ›å»ŗ @@ -12525,13 +13614,17 @@ These identities will soon be not supported anymore. - + Your Avatar Click here to change your avatar ä½ ēš„å¤“åƒ - + Set Avatar + č®¾ē½®å¤“åƒ + + + Linked to your profile é“¾ęŽ„åˆ°ä½ ēš„ē”Øęˆ·ę”£ę”ˆ @@ -12541,7 +13634,7 @@ These identities will soon be not supported anymore. ę‚ØåÆä»„ę‹„ęœ‰äø€äøŖęˆ–å¤šäøŖčŗ«ä»½ć€‚ å½“ę‚ØåœØčŠå¤©å¤§åŽ…ļ¼Œč®ŗå›å’Œé¢‘é“äø­ę’°å†™čÆ„č®ŗę—¶ļ¼Œä¼šä½æē”Øå®ƒä»¬ć€‚ å®ƒä»¬ä½œäøŗčæœēØ‹čŠå¤©å’ŒRetroSharečæœēØ‹é‚®ä»¶ē³»ē»Ÿēš„ęŽ„ę”¶åœ°å€ć€‚ - + The nickname is too short. Please input at least %1 characters. 63/5000 ę˜µē§°å¤ŖēŸ­ć€‚ 请输兄至少%1个字符。 @@ -12601,6 +13694,10 @@ These identities will soon be not supported anymore. PGP name: PGP ē”Øęˆ·å + + GXS id: + GXS ID: + PGP id: @@ -12616,7 +13713,7 @@ These identities will soon be not supported anymore. - + Copy 复制 @@ -12626,12 +13723,12 @@ These identities will soon be not supported anymore. 删除 - + %1 's Message History - + Mark all ę ‡č®°å…ØéƒØ @@ -12650,38 +13747,26 @@ These identities will soon be not supported anymore. Quote 引用 + + Send + 发送 + ImageUtil - - + + Save image äæå­˜å›¾åƒ - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename ę— ę³•äæå­˜å›¾ē‰‡ļ¼Œę— ę•ˆēš„ę–‡ä»¶å - - Copy image - - - - - + Not an image äøę˜Æäø€å¼ å›¾ē‰‡ @@ -12699,32 +13784,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: ē«Æå£: - + Listen Address: - - Status: - ēŠ¶ę€: - - - + 127.0.0.1 127.0.0.1 - + Token: @@ -12745,12 +13825,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12759,31 +13834,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File 打开文件 - + Open Folder 打开文件夹 - + Checking... 正在栔验... @@ -12793,7 +13863,7 @@ These identities will soon be not supported anymore. ę ”éŖŒę–‡ä»¶ - + Recommend in a message to... @@ -12821,7 +13891,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend ę·»åŠ å„½å‹ @@ -12837,8 +13907,7 @@ These identities will soon be not supported anymore. - - + Options 选锹 @@ -12859,7 +13928,7 @@ These identities will soon be not supported anymore. - + Quit 退出 @@ -12870,12 +13939,12 @@ These identities will soon be not supported anymore. åæ«é€Ÿå…„é—Øå‘åÆ¼ - + RetroShare %1 a secure decentralized communication platform RetroShare %1 ― äø€äøŖåˆ†åøƒå¼å®‰å…Øé€šäæ”å¹³å° - + Unfinished 未完成 @@ -12904,12 +13973,11 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ - Status ēŠ¶ę€ - + Notify ęē¤ŗ @@ -12920,35 +13988,31 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ - Open Messages 打开邮件箱 - - + Bandwidth Graph 带宽图 - + Applications 应用 - Help 帮助 - - + Minimize ęœ€å°åŒ– - + Maximize ęœ€å¤§åŒ– @@ -12963,12 +14027,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ RetroShare - - Close window - - - - + %1 new message %1 ę”ę–°ę¶ˆęÆ @@ -12998,7 +14057,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ %1 äøŖå„½å‹å·²čæžęŽ„ - + Do you really want to exit RetroShare ? ę‚Øē”®å®šč¦é€€å‡ŗ RetroShare 吗? @@ -13018,7 +14077,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ 显示 - + Make sure this link has not been forged to drag you to a malicious website. čÆ·ē”®č®¤ę­¤čæžęŽ„äøę˜Æä¼Ŗé€ ļ¼Œäøę˜ÆęŒ‡å‘ę¶ę„ē½‘ē«™ć€‚ @@ -13063,13 +14122,12 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ ęœåŠ”ęƒé™åˆ—č”Ø - - + Statistics 统讔 - + Show web interface 显示 Web ē•Œé¢ @@ -13084,7 +14142,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ ē›®å½•čæč”Œå¾ˆę…¢(ēŽ°åœØēš„é™åˆ¶ę˜Æ - + Really quit ? ēœŸēš„č¦é€€å‡ŗå—ļ¼Ÿ @@ -13093,17 +14151,17 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ MessageComposer - + Compose 写俔 - + Contacts 联系人 - + Paragraph 段落 @@ -13139,12 +14197,12 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ å…­ēŗ§ę ‡é¢˜ - + Font size 字体大小 - + Increase font size 增大字号 @@ -13159,32 +14217,32 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ 粗体 - + Italic ę–œä½“ - + Alignment åÆ¹é½ę–¹å¼ - + Add an Image ę·»åŠ å›¾ē‰‡ - + Sets text font to code style č®¾ē½®ę–‡ęœ¬äøŗä»£ē ę ·å¼ - + Underline äø‹åˆ’ēŗæ - + Subject: 主题: @@ -13195,32 +14253,32 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ - + Tags 标签 - + Address list: åœ°å€åˆ—č”Øļ¼š - + Recommend this friend ęŽØččæ™äøŖå„½å‹ - + Set Text color č®¾ē½®ę–‡ęœ¬é¢œč‰² - + Set Text background color č®¾ē½®ę–‡ęœ¬čƒŒę™Æé¢œč‰² - + Recommended Files ęŽØčę–‡ä»¶ @@ -13290,7 +14348,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ ę·»åŠ å¤§ę®µå¼•ē”Ø - + Send To: å‘é€č‡³: @@ -13314,6 +14372,10 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ &Justify &两端对齐 + + All addresses (mixed) + ę‰€ęœ‰åœ°å€(混合) + All people @@ -13325,7 +14387,7 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ ęˆ‘ēš„é€šč®Æå½• - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> 你儽,<br>ęˆ‘å‘ä½ ęŽØčęˆ‘ēš„äø€äøŖå„½å‹ļ¼›å¦‚ęžœä½ äæ”ä»»ęˆ‘ļ¼Œä¹ŸåÆä»„äæ”ä»»ä»–ä»¬ć€‚<br> @@ -13345,18 +14407,18 @@ RetroShare å°†ęš‚åœåÆ¹ę­¤ē›®å½•ēš„č®æé—®ć€‚ åøŒęœ›äøŽę‚ØåœØ 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 你儽 %1,<br><br>%2 åøŒęœ›åŠ ä½ äøŗ RetroShare å„½å‹ć€‚<br><br>ē«‹å³å›žåŗ”:<br>%3<br><br>谢谢,<br> RetroShare č½Æä»¶å°ē»„ - - + + Save Message äæå­˜é‚®ä»¶ - + Message has not been Sent. Do you want to save message to draft box? é‚®ä»¶ęœŖå‘é€ć€‚ @@ -13368,17 +14430,7 @@ Do you want to save message to draft box? 粘蓓 RetroShare é“¾ęŽ„ - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" ę·»åŠ č‡³"ę”¶ä»¶äŗŗ" @@ -13398,7 +14450,7 @@ Do you want to save message to draft box? ę·»åŠ äøŗęŽØč - + Original Message åŽŸå§‹ę¶ˆęÆ @@ -13408,21 +14460,21 @@ Do you want to save message to draft box? å‘ä»¶äŗŗ - + - + To ę”¶ä»¶äŗŗ - - + + Cc ꊄ送 - + Sent 已发送 @@ -13437,7 +14489,7 @@ Do you want to save message to draft box? %1, %2 写道: - + Re: 回复: @@ -13447,30 +14499,30 @@ Do you want to save message to draft box? č½¬å‘: - - - + + + RetroShare RetroShare - + Do you want to send the message without a subject ? ę‚Øē”®å®šč¦å‘é€ę— äø»é¢˜ēš„é‚®ä»¶å—? - + Please insert at least one recipient. 请输兄至少一个收件人。 - + Bcc 密送 - + Unknown 未矄 @@ -13585,13 +14637,13 @@ Do you want to save message to draft box? čÆ¦ęƒ… - + Open File... 打开文件... - + HTML-Files (*.htm *.html);;All Files (*) HTML ꖇ件 (*.htm *.html);;ę‰€ęœ‰ę–‡ä»¶ (*) @@ -13611,7 +14663,7 @@ Do you want to save message to draft box? 导出 PDF - + Message has not been Sent. Do you want to save message ? é‚®ä»¶ęœŖå‘é€ć€‚ @@ -13633,7 +14685,7 @@ Do you want to save message ? ę·»åŠ é¢å¤–ę–‡ä»¶ - + Hi,<br>I want to be friends with you on RetroShare.<br> 你儽,<br>ęˆ‘ęƒ³äøŽä½ ęˆäøŗ RetroShare äøŠēš„å„½å‹ć€‚<br> @@ -13657,24 +14709,28 @@ Do you want to save message ? Warning: This message is too big of %1 characters after HTML conversion. + + You have a friend invite + ę‚Øęœ‰äø€ę”å„½å‹ęŽØč + Respond now: ēŽ°åœØå›žåŗ”: - - + + Close 关闭 - + From: å‘ä»¶äŗŗ: - + Friend Nodes å„½å‹čŠ‚ē‚¹ @@ -13719,13 +14775,13 @@ Do you want to save message ? ęŽ’åŗ(ę‹‰äøå­—ęÆå€’åŗ) - - + + Thanks, <br> ę„Ÿč°¢, <br> - + Distant identity: čæœēØ‹čŗ«ä»½ @@ -13735,12 +14791,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: čŠ‚ē‚¹åå’Œid: @@ -13818,7 +14874,7 @@ Do you want to save message ? 默认 - + A new tab 新标签 @@ -13828,7 +14884,7 @@ Do you want to save message ? ę–°ēŖ—å£ - + Edit Tag 标记标签 @@ -13851,7 +14907,7 @@ Do you want to save message ? MessageToaster - + Sub: 主题: @@ -13859,7 +14915,7 @@ Do you want to save message ? MessageUserNotify - + Message 邮件 @@ -13887,7 +14943,7 @@ Do you want to save message ? MessageWidget - + Recommended Files ęŽØčēš„ę–‡ä»¶ @@ -13897,37 +14953,37 @@ Do you want to save message ? äø‹č½½ę‰€ęœ‰ęŽØčę–‡ä»¶ - + Subject: 主题: - + From: å‘ä»¶äŗŗ: - + To: ę”¶ä»¶äŗŗ: - + Cc: ꊄ送: - + Bcc: 密送: - + Tags: 标签: - + Reply 回复 @@ -13949,7 +15005,7 @@ Do you want to save message ? Forward - å‰čæ› + @@ -13967,7 +15023,7 @@ Do you want to save message ? - + Send Invite å‘é€é‚€čÆ· @@ -14019,7 +15075,7 @@ Do you want to save message ? - + Confirm %1 as friend 甮认 %1 äøŗå„½å‹ @@ -14029,12 +15085,12 @@ Do you want to save message ? 添加 %1 äøŗå„½å‹ - + View source - + No subject ę— äø»é¢˜ @@ -14044,22 +15100,17 @@ Do you want to save message ? äø‹č½½ - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14069,23 +15120,21 @@ Do you want to save message ? - - Show less - + Send invite? + å‘é€é‚€čÆ·ļ¼Ÿ - - Show more - + Do you really want send a invite with your Certificate? + ä½ ēœŸēš„č¦ä»„ä½ ēš„čÆä¹¦å‘é€é‚€čÆ·å— - + Download all äø‹č½½å…ØéƒØ - + Print Document ę‰“å°ę–‡ę”£ @@ -14100,12 +15149,12 @@ Do you want to save message ? HTML ꖇ件 (*.htm *.html);;ę‰€ęœ‰ę–‡ä»¶ (*) - + Load images always for this message ę­¤ę¶ˆęÆę€»ę˜Æč½½å…„å›¾åƒ - + Hide the attachment pane éšč—é™„ä»¶ēŖ—ę ¼ @@ -14127,6 +15176,42 @@ Do you want to save 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 @@ -14205,7 +15290,7 @@ Do you want to save message ? MessagesDialog - + New Message 新俔息 @@ -14215,16 +15300,60 @@ Do you want to save message ? 写俔 - + 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 + 显示 + + + - - + + Tags 标签 - - + + Inbox ę”¶ä»¶ē®± @@ -14254,17 +15383,21 @@ Do you want to save message ? å›žę”¶ē«™ - + Total Inbox: 收件箱总数: - + Folders + 文件夹 + + + Quick View åæ«ę·č§†å›¾ - + Print... ę‰“å°... @@ -14274,6 +15407,26 @@ Do you want to save message ? Print Preview ę‰“å°é¢„č§ˆ + + Buttons Icon Only + ęŒ‰é’®ę˜¾ē¤ŗå›¾ę ‡ + + + Buttons Text Beside Icon + ęŒ‰é’®ę˜¾ē¤ŗę–‡ęœ¬å’Œå›¾ę ‡ + + + Buttons with Text + ęŒ‰é’®ę˜¾ē¤ŗę–‡ęœ¬ + + + Buttons Text Under Icon + ęŒ‰é’®ę–‡ęœ¬ä½äŗŽå›¾ę ‡äø‹ę–¹ + + + Set Text Under Icon + ę–‡ęœ¬ę”¾ē½®äŗŽå›¾ę ‡äø‹ę–¹ + Save As... @@ -14295,7 +15448,7 @@ Do you want to save message ? č½¬å‘äæ”ä»¶ - + Subject 主题 @@ -14305,7 +15458,7 @@ Do you want to save message ? å‘ä»¶äŗŗ - + Date ę—„ęœŸ @@ -14315,7 +15468,39 @@ Do you want to save message ? 内容 - + 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 搜瓢主题 @@ -14324,11 +15509,6 @@ Do you want to save message ? Search From ęœē“¢å‘ä»¶äŗŗ - - - Search To - - Search Date @@ -14355,14 +15535,14 @@ 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 strengthen 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 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 strengthen 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> - + Starred - + 加星 @@ -14436,7 +15616,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14450,7 +15630,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14465,33 +15645,38 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts č‰ēØæē®± - + No Box selected. - - To - ę”¶ä»¶äŗŗ + 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. + čæ™ę”ę¶ˆęÆå‘é€åˆ°äŗ†čæœēØ‹ē”Øęˆ· + + + @@ -14499,6 +15684,26 @@ 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 @@ -14526,17 +15731,7 @@ Do you want to save message ? MimeTextEdit - - Save image - äæå­˜å›¾åƒ - - - - Copy image - - - - + Paste as plain text ē²˜č““ēŗÆę–‡ęœ¬ @@ -14590,7 +15785,7 @@ Do you want to save message ? - + Expand 展开 @@ -14600,7 +15795,7 @@ Do you want to save message ? åˆ é™¤é”¹ē›® - + from ę„č‡Ŗ @@ -14635,10 +15830,18 @@ Do you want to save message ? å¾…å‘é€ę¶ˆęÆ - + Hide 隐藏 + + Send invite? + å‘é€é‚€čÆ·ļ¼Ÿ + + + Do you really want send a invite with your Certificate? + ä½ ēœŸēš„č¦ä»„ä½ ēš„čÆä¹¦å‘é€é‚€čÆ·å— + NATStatus @@ -14776,7 +15979,7 @@ Do you want to save message ? čŠ‚ē‚¹ ID - + Remove unused keys... ē§»é™¤ęœŖä½æē”Øēš„åÆ†é’„... @@ -14786,7 +15989,7 @@ Do you want to save message ? - + Clean keyring ęø…ē†é’„åŒ™ēŽÆ @@ -14804,13 +16007,7 @@ Notes: Your old keyring will be backed up. å¦‚ęžœę‚ØåœØåŒäø€å°ē”µč„‘äøŠåŒę—¶čæč”Œå¤šäøŖRSå®žä¾‹ļ¼Œęø…ē†ę“ä½œä¼šå¤±č“„ć€‚ - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info é’„åŒ™ēŽÆäæ”ęÆ @@ -14845,13 +16042,18 @@ For security, your keyring was previously backed-up to file 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 ęœē“¢åē§° @@ -14861,12 +16063,12 @@ For security, your keyring was previously backed-up to file ęœē“¢čŠ‚ē‚¹ ID - + Profile details... ē”Øęˆ·čÆ¦ęƒ… - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14875,6 +16077,13 @@ Reported error: ęŠ„å‘Šé”™čÆÆļ¼š + + NetworkPage + + Network + ē½‘ē»œ + + NetworkView @@ -14901,7 +16110,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14922,7 +16131,7 @@ Reported error: - + Groups åˆ†ē»„ @@ -14952,19 +16161,19 @@ Reported error: åÆ¼å‡ŗä½ ēš„å„½å‹åˆ—č”ØåŒ…ę‹¬åˆ†ē»„ - - + + Search - + ID ID - + Search ID 搜瓢 ID @@ -14974,12 +16183,12 @@ Reported error: - + Show Items ę˜¾ē¤ŗé”¹ē›® - + Last contact @@ -14989,7 +16198,7 @@ Reported error: IP - + Group åˆ†ē»„ @@ -15104,7 +16313,7 @@ Reported error: å…ØéƒØęŠ˜å  - + Do you want to remove this node? ä½ ęƒ³ē§»é™¤čæ™äøŖčŠ‚ē‚¹å— @@ -15114,7 +16323,7 @@ Reported error: ę‚Øę˜Æå¦č¦åˆ é™¤ę­¤å„½å‹? - + Done! 完成! @@ -15226,7 +16435,11 @@ at least one peer was not added to a group NewsFeed - + Log entries + ę—„åæ—ę”ē›® + + + Activity Stream @@ -15241,7 +16454,11 @@ at least one peer was not added to a group åˆ é™¤å…ØéƒØ - + This is a test. + čæ™ę˜Æäø€äøŖęµ‹čÆ•ć€‚ + + + Newest on top ę–°ēš„åœØäøŠé¢ @@ -15251,12 +16468,27 @@ at least one peer was not added to a group ę—§ēš„åœØäøŠé¢ - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + <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 + ę—„åæ— + + + Activity @@ -15311,6 +16543,10 @@ at least one peer was not added to a group Blogs 博客 + + Security + 安全 + @@ -15332,6 +16568,10 @@ at least one peer was not added to a group Message 邮件 + + Connect attempt + čæžęŽ„å°čÆ• + @@ -15348,6 +16588,10 @@ at least one peer was not added to a group Ip security IP安全 + + Log + ę—„åæ— + Friend Connected @@ -15358,6 +16602,10 @@ at least one peer was not added to a group Circles 圈子 + + Links + é“¾ęŽ„ + Activity @@ -15410,6 +16658,14 @@ at least one peer was not added to a group Chat rooms 聊天室 + + Chat Rooms + 聊天室 + + + Case sensitive + åŒŗåˆ†å¤§å°å†™ + Position @@ -15485,16 +16741,24 @@ at least one peer was not added to a group Disable All Toaster temporarily äø“ę—¶ē¦ē”Øę‰€ęœ‰å¼¹å‡ŗę¶ˆęÆ + + Feed + ę—„åæ—č®¢é˜… + Systray ē³»ē»Ÿę‰˜ē›˜ + + Count all unread messages + č®”ę•°ę‰€ęœ‰ęœŖčÆ»äæ”ęÆ + NotifyQt - + Passphrase required éœ€č¦åÆ†ē  @@ -15514,12 +16778,12 @@ at least one peer was not added to a group 密码错误! - + Please enter your Retroshare passphrase čÆ·č¾“å…„ę‚Øēš„RetroShare密码 - + Unregistered plugin/executable ęœŖę³Øå†Œę’ä»¶/åÆę‰§č”ŒēØ‹åŗ @@ -15534,7 +16798,19 @@ at least one peer was not added to a group čÆ·ę£€ęŸ„ę‚Øēš„ē³»ē»Ÿę—¶é’Ÿć€‚ - + Examining shared files... + ę­£åœØę£€ęŸ„å…±äŗ«ę–‡ä»¶... + + + Hashing file + ę­£åœØč®”ē®—ę–‡ä»¶ēš„ę ”éŖŒę•£åˆ—å€¼ + + + Saving file index... + ę­£åœØäæå­˜ę–‡ä»¶ē“¢å¼•... + + + Test 测试 @@ -15545,19 +16821,17 @@ at least one peer was not added to a group - 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). äøŗäŗ†ę­£åøøä½æē”ØčŠå¤©å¤§åŽ…ļ¼Œę‚Øēš„ē”µč„‘ę—¶é—“äø€å®šč¦ę­£ē”®ć€‚å¦‚ęžœå‡ŗēŽ°äø‹é¢ēŠ¶å†µčÆ·ę£€ęŸ„ę—¶é—“(ä¾¦ęµ‹åˆ°ę‚ØäøŽå„½å‹ä¹‹é—“åÆčƒ½å­˜åœØå‡ åˆ†é’Ÿēš„ę—¶é—“åå·®)怂 @@ -15565,7 +16839,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online å„½å‹åœØēŗæ @@ -15617,6 +16891,10 @@ at least one peer was not added to a group PGPKeyDialog + + Dialog + åÆ¹čÆ + Profile info @@ -15682,6 +16960,10 @@ at least one peer was not added to a group 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> @@ -15711,20 +16993,23 @@ p, li { white-space: pre-wrap; } PGP 密钄 - - Friend options - - - - + 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> + Keysigning: + + Sign PGP key + 签署PGP密钄 + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> @@ -15761,7 +17046,12 @@ 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> @@ -15775,6 +17065,10 @@ 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 profile (e.g. when the message author is a signed identity that belongs to this profile). This can be used for instance to send files between your own nodes.</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> + Auto-download recommended files from this node @@ -15807,21 +17101,21 @@ p, li { white-space: pre-wrap; } kB/s - - + + RetroShare RetroShare - - + + Error : cannot get peer details. é”™čÆÆļ¼šę— ę³•čŽ·å–čŠ‚ē‚¹čÆ¦ęƒ…ć€‚ - + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) RetroShare äøę”ÆęŒę­¤åÆ†é’„ē®—ę³• @@ -15842,7 +17136,7 @@ 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. äæ”ä»»ēŗ§åˆ«ę˜Æč”Øč¾¾ę‚ØåÆ¹ę­¤åÆ†é’„ēš„äæ”ä»»ēš„äø€ē§ę–¹å¼ć€‚ å®ƒäøč¢«č½Æä»¶ä½æē”Øļ¼Œä¹Ÿäøę˜Æå…±äŗ«ēš„ļ¼Œä»…ē”ØäŗŽę–¹ä¾æč®°ä½å„½/åēš„åÆ†é’„ć€‚ @@ -15911,6 +17205,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Check the password! + + Maybe password is wrong + åÆ†ē åÆčƒ½äøåÆ¹ + You haven't set a trust level for this key. @@ -15918,12 +17216,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile RetroShareē”Øęˆ·ę”£ę”ˆ - + This is your own PGP key, and it is signed by : čæ™ę˜Æä½ ēš„åÆ†é’„ļ¼Œē­¾åäŗŗę˜Æļ¼š @@ -15949,7 +17247,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat 聊天 @@ -15970,7 +17268,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.åˆ é™¤é”¹ē›® - + Name: åē§°: @@ -16010,7 +17308,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message ę’°å†™ę¶ˆęÆ @@ -16024,6 +17322,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Friend Connected å„½å‹å·²čæžęŽ„ + + Connect Attempt + čæžęŽ„å°čÆ• + Connection refused by peer @@ -16062,13 +17364,17 @@ Warning: In your File-Transfer option, you select allow direct download to No.Unknown 未矄 + + Unknown Peer + ęœŖēŸ„čŠ‚ē‚¹ + Hide 隐藏 - + Send Message å‘é€ę¶ˆęÆ @@ -16120,6 +17426,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.Chat with this person as... č·Ÿčæ™äøŖäŗŗčŠå¤©ä»„ + + Send message to this person + ē»™čæ™äøŖäŗŗå‘é€äæ”ęÆ + Invite to Circle @@ -16178,6 +17488,10 @@ Warning: In your File-Transfer option, you select allow direct download to No.<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 + ē»™ęˆ‘ēš„č”ē³»äŗŗč‡ŖåŠØē»™å‡ŗę­£é¢ēš„čÆ„ä»· + use "positive" as the default opinion for contacts (instead of neutral) @@ -16235,6 +17549,13 @@ Warning: In your File-Transfer option, you select allow direct download to No.<html><head/><body><p>äøŗé˜²ę­¢å·²åˆ é™¤ēš„č¢«å±č”½ ID å› äøŗåœØč®ŗå›ęˆ–é¢‘é“äø­ä½æē”Øč€Œč¢«ę‹’ē»ļ¼Œč¢«ē¦ę­¢ēš„čŗ«ä»½å°†č¢«äæē•™åœØåˆ—č”Øäø­ļ¼Œäø€ę®µę—¶é—“åŽļ¼Œå®ƒä»¬ä¼šč¢«ä»Žē¦ę­¢åˆ—č”Øäø­"清除" ļ¼Œå¦‚ęžœåœØč®ŗå›ć€čŠå¤©å®¤ē­‰äø­ä½æē”Øļ¼Œå°†ä¼šé‡ę–°ä½œäøŗęœŖč¢«å±č”½ēš„ ID 被下载。</p></body></html> + + PhotoCommentItem + + Form + 蔨格 + + PhotoDialog @@ -16242,11 +17563,23 @@ Warning: In your File-Transfer option, you select allow direct download to No.PhotoShare 照片共享 + + Photo + 照片 + TextLabel 文字标签 + + Comment + 评论 + + + Summary + 概述 + Album / Photo Name @@ -16307,6 +17640,14 @@ Warning: In your File-Transfer option, you select allow direct download to No.... ... + + Add Comment + ę·»åŠ čÆ„č®ŗ + + + Write a comment... + 写评论... + Album @@ -16377,6 +17718,10 @@ p, li { white-space: pre-wrap; } Create Album åˆ›å»ŗē›øå†Œ + + View Album + ęµč§ˆē›øå†Œ + Edit Album Details @@ -16398,17 +17743,17 @@ p, li { white-space: pre-wrap; } å¹»ēÆē‰‡ę”¾ę˜  - + My Albums ęˆ‘ēš„ē›øå†Œ - + Subscribed Albums å·²č®¢é˜…ē›øå†Œ - + Shared Albums å·²åˆ†äŗ«ē›øå†Œ @@ -16437,7 +17782,7 @@ requesting to edit it! PhotoSlideShow - + Album Name ē›øå†Œåē§° @@ -16496,19 +17841,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16544,12 +17889,12 @@ requesting to edit it! PluginItem - + TextLabel ę–‡ęœ¬ę ‡ē­¾ - + Show more details about this plugin ę˜¾ē¤ŗę­¤ę’ä»¶ēš„ę›“å¤ščÆ¦ęƒ… @@ -16695,6 +18040,60 @@ p, li { white-space:pre-wrapļ¼›} Plugin look-up directories ę’ä»¶ęŸ„ę‰¾ē›®å½• + + Plugin disabled. Click the enable button and restart Retroshare + ę’ä»¶å·²ē¦ē”Øļ¼Œē‚¹å‡»åÆē”ØęŒ‰é’®é‡åÆ RetroShare åŽåÆē”Øć€‚ + + + [disabled] + [禁用] + + + No API number supplied. Please read plugin development manual. + ęœŖęä¾› API ē‰ˆęœ¬ļ¼ŒčÆ·é˜…čÆ»ę’ä»¶å¼€å‘ę‰‹å†Œć€‚ + + + [loading problem] + [åŠ č½½é—®é¢˜] + + + No SVN number supplied. Please read plugin development manual. + ęœŖęä¾› SVN ē‰ˆęœ¬ć€‚čÆ·é˜…čÆ»ę’ä»¶å¼€å‘ę‰‹å†Œć€‚ + + + Loading error. + 载兄错误。 + + + Missing symbol. Wrong version? + ē¼ŗå°‘ē¬¦å·,ē‰ˆęœ¬é”™čÆÆ? + + + No plugin object + ę— ę’ä»¶åÆ¹č±” + + + Plugins is loaded. + ę’ä»¶å·²č½½å…„ć€‚ + + + Unknown status. + ęœŖēŸ„ēŠ¶ę€ć€‚ + + + Check this for developing plugins. They will not +be checked for the hash. However, in normal +times, checking the hash protects you from +malicious behavior of crafted plugins. + å¼€å‘ę’ä»¶åÆé€‰ę­¤é”¹ć€‚äøå†ę ”éŖŒę’ä»¶ēš„ę•£åˆ—å€¼ć€‚ +ē„¶č€Œļ¼Œé€šåøøęƒ…å†µäø‹ę ”éŖŒę’ä»¶ę•£åˆ—å€¼åÆä»„äæęŠ¤ę‚Ø +čæœē¦»č¢«äæ®ę”¹ēš„ęœ‰å®³ę’ä»¶ć€‚ + + + + <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> + Plugins @@ -16764,27 +18163,12 @@ p, li { white-space:pre-wrapļ¼›} č®¾ē½®č£…å£ē½®é”¶ - - Ban this person (Sets negative opinion) - å±č”½čæ™äøŖäŗŗ (ē»™å‡ŗč“Ÿé¢čÆ„ä»·) - - - - Give neutral opinion - 给出中立评价 - - - - Give positive opinion - ē»™å‡ŗę­£é¢čÆ„ä»· - - - + Choose window color... - + Dock window @@ -16818,6 +18202,14 @@ p, li { white-space:pre-wrapļ¼›} Close conversation? + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + å…³é—­ę­¤ēŖ—å£å°†ē»“ęŸä¼ščÆļ¼ŒåŒę—¶é€šēŸ„åÆ¹ę–¹čŠ‚ē‚¹ē»ˆę­¢åŠ åÆ†čŠå¤©é€šé“ć€‚ + + + Kill the tunnel? + ē»ˆę­¢éš§é“? + PostedCardView @@ -16837,7 +18229,7 @@ p, li { white-space:pre-wrapļ¼›} - + Vote up 赞 @@ -16857,8 +18249,8 @@ p, li { white-space:pre-wrapļ¼›} \/ - - + + Comments @@ -16883,13 +18275,13 @@ p, li { white-space:pre-wrapļ¼›} - - + + Comment - + Comments @@ -16917,12 +18309,20 @@ p, li { white-space:pre-wrapļ¼›} PostedCreatePostDialog - + Signed by: + ē­¾åč€…ļ¼š + + + Notes + 备注 + + + Create a new Post - + RetroShare RetroShare @@ -16937,22 +18337,12 @@ p, li { white-space:pre-wrapļ¼›} - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File 载兄图片文件 - + Post image @@ -16968,17 +18358,7 @@ p, li { white-space:pre-wrapļ¼›} - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16988,7 +18368,23 @@ p, li { white-space:pre-wrapļ¼›} - + 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 čÆ·ę·»åŠ ę ‡é¢˜ @@ -17008,22 +18404,12 @@ p, li { white-space:pre-wrapļ¼›} - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -17038,7 +18424,7 @@ p, li { white-space:pre-wrapļ¼›} å‘č”Ø - + Post @@ -17049,7 +18435,7 @@ p, li { white-space:pre-wrapļ¼›} 图像 - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -17059,7 +18445,7 @@ p, li { white-space:pre-wrapļ¼›} ę ‡é¢˜ - + Link é“¾ęŽ„: @@ -17067,12 +18453,44 @@ p, li { white-space:pre-wrapļ¼›} PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + 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> + <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 + åˆ›å»ŗčÆé¢˜ + + + My Topics + ęˆ‘ēš„äø»é¢˜ + + + Subscribed Topics + č®¢é˜…ēš„äø»é¢˜ + + + Popular Topics + 擻跃主题 + + + Other Topics + å…¶å®ƒäø»é¢˜ + + + Links + é“¾ęŽ„: + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17106,7 +18524,31 @@ p, li { white-space:pre-wrapļ¼›} PostedGroupDialog - + Posted Topic + å·²å‘č”Øäø»é¢˜ + + + Add Topic Admins + ę·»åŠ äø»é¢˜ē®”ē†å‘˜ + + + Select Topic Admins + é€‰ę‹©äø»é¢˜ē®”ē†å‘˜ + + + Create New Topic + åˆ›å»ŗę–°čÆé¢˜ + + + Edit Topic + ē¼–č¾‘čÆé¢˜ + + + Update Topic + ę›“ę–°äø»é¢˜ + + + Create New Board @@ -17144,17 +18586,7 @@ p, li { white-space:pre-wrapļ¼›} PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted č®¢é˜…å·²å‘åøƒēš„ @@ -17170,7 +18602,7 @@ p, li { white-space:pre-wrapļ¼›} - + Expand 展开 @@ -17185,17 +18617,24 @@ p, li { white-space:pre-wrapļ¼›} - + Posted Description + č““ę–‡ęčæ° + + + Loading + ę­£åœØč½½å…„ + + + New Posted + 新建蓓文 + + + Loading... - - Never - ä»Žäø - - - + New Board @@ -17208,18 +18647,22 @@ p, li { white-space:pre-wrapļ¼›} PostedItem - + 0 0 - - + Site + 站点 + + + + Comments ę³Øé‡Š - + Copy RetroShare Link @@ -17230,12 +18673,12 @@ p, li { white-space:pre-wrapļ¼›} - + Comment 评论 - + Comments @@ -17245,7 +18688,7 @@ p, li { white-space:pre-wrapļ¼›} <p><font color="#ff0000"><b>ę­¤ę¶ˆęÆēš„ä½œč€…(IDäøŗ%1)被禁止。</b> - + Click to view Picture @@ -17255,17 +18698,21 @@ p, li { white-space:pre-wrapļ¼›} 隐藏 - + Vote up 赞 - + Vote down čø© - + \/ + \/ + + + Set as read and remove item č®¾ē½®äøŗå·²čÆ»å¹¶åˆ é™¤ę”ē›® @@ -17275,7 +18722,7 @@ p, li { white-space:pre-wrapļ¼›} ꖰ - + New Comment: ę–°čÆ„č®ŗļ¼š @@ -17285,7 +18732,7 @@ p, li { white-space:pre-wrapļ¼›} 评论值 - + Name @@ -17326,10 +18773,77 @@ p, li { white-space:pre-wrapļ¼›} - + Loading ę­£åœØč½½å…„ + + By + ä½œč€… + + + + PostedListWidget + + Form + č”Øå• + + + Hot + äŗŗę°” + + + New + ꖰ + + + Top + ęŽ’å + + + Today + 今天 + + + Yesterday + 昨天 + + + This Week + ęœ¬å‘Ø + + + This Month + 本月 + + + This Year + 今幓 + + + Submit a new Post + ęäŗ¤ę–°č““ę–‡ + + + Next + äø‹äø€ę” + + + RetroShare + RetroShare + + + Please create or choose a Signing Id before Voting + ęŠ•ē„Øå‰čÆ·é€‰ę‹©ę‚Øēš„ē­¾åID + + + Previous + äøŠäø€ę” + + + 1-10 + 1-10 + PostedListWidgetWithModel @@ -17349,17 +18863,7 @@ p, li { white-space:pre-wrapļ¼›} - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 0 @@ -17369,15 +18873,15 @@ p, li { white-space:pre-wrapļ¼›} ē®”ē†å‘˜ļ¼š - + - + unknown 未矄 - + Distribution: ä¼ ę’­čŒƒå›“ @@ -17387,42 +18891,42 @@ p, li { white-space:pre-wrapļ¼›} - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts č““ę–‡ - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17439,10 +18943,10 @@ p, li { white-space:pre-wrapļ¼›} Hot - ēƒ­é—Ø + - + Search @@ -17472,17 +18976,17 @@ p, li { white-space:pre-wrapļ¼›} - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17497,17 +19001,12 @@ p, li { white-space:pre-wrapļ¼›} - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17517,31 +19016,27 @@ p, li { white-space:pre-wrapļ¼›} 编辑 - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17556,7 +19051,7 @@ p, li { white-space:pre-wrapļ¼›} č®¢é˜… - + Never ä»Žäø @@ -17608,17 +19103,17 @@ p, li { white-space:pre-wrapļ¼›} Restricted to members of circle " - ä»…é™äŗŽåœˆå­ēš„ęˆå‘˜" + Restricted to members of circle - ä»…é™äŗŽåœˆå­ēš„ęˆå‘˜ + Your eyes only - åŖęœ‰ä½ čƒ½ēœ‹č§ + @@ -17630,16 +19125,6 @@ p, li { white-space:pre-wrapļ¼›} No Channel Selected ęœŖé€‰ę‹©é¢‘é“! - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17648,6 +19133,10 @@ p, li { white-space:pre-wrapļ¼›} Tabs 标签 + + Open each topic in a new tab + åœØę–°ę ‡ē­¾é”µę‰“å¼€ęÆäøŖčÆé¢˜ + Open each board in a new tab @@ -17661,6 +19150,10 @@ p, li { white-space:pre-wrapļ¼›} PostedUserNotify + + Posted + å·²å‘č”Ø + Board Post @@ -17729,16 +19222,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17850,7 +19343,7 @@ and use the import button to load it ProfileWidget - + Edit status message ē¼–č¾‘ēŠ¶ę€ę¶ˆęÆ @@ -17866,7 +19359,7 @@ and use the import button to load it ē”Øęˆ·ę”£ę”ˆē®”ē†å™Ø - + Public Information 公开俔息 @@ -17901,12 +19394,12 @@ and use the import button to load it åœØēŗæå§‹äŗŽ: - + Other Information å…¶å®ƒäæ”ęÆ - + My Address ęˆ‘ēš„åœ°å€ @@ -17950,27 +19443,51 @@ and use the import button to load it PulseAddDialog - + Post From: + č““ę–‡ę„č‡Ŗļ¼š + + + Account 1 + 蓦ꈷ1 + + + Account 2 + 蓦ꈷ2 + + + Account 3 + 蓦ꈷ3 + + + Add to Pulse ę·»åŠ č‡³ Pulse - + filter + 过滤 + + + URL Adder + URL 添加 + + + Display As 显示为 - + URL URL - + GroupLabel - + IDLabel @@ -17980,12 +19497,12 @@ and use the import button to load it å‘ä»¶äŗŗ: - + Head - + Head Shot @@ -18015,13 +19532,13 @@ and use the import button to load it č“Ÿé¢ēš„ - - + + Whats happening? - + @@ -18033,22 +19550,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -18057,13 +19564,17 @@ and use the import button to load it Cancel å–ę¶ˆ + + Post Pulse to Wire + 向wireå‘åˆŗęŽ¢åŒ… + Post - + Reply to Pulse @@ -18078,24 +19589,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - 载兄图片文件 + From + å‘äæ”äŗŗ + + + Date + ę—„ęœŸ + + + ... + ... @@ -18106,7 +19627,7 @@ and use the import button to load it - + @@ -18125,7 +19646,7 @@ and use the import button to load it PulseReply - + icn @@ -18135,7 +19656,7 @@ and use the import button to load it - + REPLY @@ -18162,7 +19683,7 @@ and use the import button to load it - + FOLLOW @@ -18172,7 +19693,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18192,7 +19713,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18308,7 +19829,7 @@ and use the import button to load it - + FOLLOW @@ -18316,42 +19837,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18383,7 +19899,7 @@ and use the import button to load it - + FOLLOW @@ -18391,8 +19907,8 @@ and use the import button to load it QObject - - + + Confirmation 甮认 @@ -18661,12 +20177,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace čŠ‚ē‚¹čÆ¦ęƒ… - + 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. ę­¤ē‰ˆęœ¬ēš„ RetroShare ę­£åœØä½æē”Ø OpenPGP-SDKć€‚å› ę­¤ę²”ęœ‰ä½æē”Øē³»ē»Ÿäø­ēš„å…±äŗ«PGPé’„åŒ™ēŽÆļ¼Œč€Œę˜Æč‡Ŗęœ‰é’„åŒ™ēŽÆļ¼ŒåœØę‰€ęœ‰RetroShareå®žä¾‹é—“å…±äŗ«ć€‚<br><br> ę‚Øä¼¼ä¹Žę²”ęœ‰čæ™ē§é’„åŒ™ēŽÆļ¼Œå°½ē®”ēŽ°ęœ‰ RetroShare č“¦ęˆ·äø­å¼•ē”Øäŗ†PGPåÆ†é’„ļ¼Œä¹Ÿč®øę‚Øåˆšåˆšę‰å‡ēŗ§č‡³ę­¤ę–°ē‰ˆęœ¬ć€‚ @@ -18701,7 +20217,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace å‘ē”Ÿę„å¤–é”™čÆÆć€‚čÆ·ęŠ„å‘Šé”™čÆÆ'RsInit::InitRetroShare unexpected return code %1'怂 - + Cannot start Tor Manager! @@ -18735,7 +20251,7 @@ The error reported is:" - + Multiple instances å¤šå®žä¾‹čæč”Œ @@ -18758,26 +20274,6 @@ The error reported is:" Lock ꖇ件: - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18860,7 +20356,7 @@ Reported error is: ę•°ę®č½¬å‘ - + You appear to have nodes associated to DSA keys: ę‚Øä¼¼ä¹Žęœ‰äøŽDSAåÆ†é’„å…³č”ēš„čŠ‚ē‚¹ļ¼š @@ -18870,7 +20366,7 @@ Reported error is: 当前 RetroShare ēš„ē‰ˆęœ¬äøę”ÆęŒ DSA åÆ†é’„ć€‚ę‰€ęœ‰čæ™äŗ›åœ°ē‚¹éƒ½å°†ę— ę³•ä½æē”Øć€‚ęˆ‘ä»¬å¾ˆęŠ±ę­‰ä¼ščæ™ę ·ć€‚ - + enabled 启用 @@ -18880,7 +20376,7 @@ Reported error is: 禁用 - + Move IP %1 to whitelist 添加%1č‡³ē™½åå• @@ -18896,7 +20392,7 @@ Reported error is: - + %1 seconds ago %1 ē§’å‰ @@ -18964,7 +20460,7 @@ Security: no anonymous IDs 安全:ę²”ęœ‰åŒæåID - + Join chat room åŠ å…„čŠå¤©å®¤ @@ -18993,7 +20489,7 @@ Security: no anonymous IDs ę— ę³•č§£ęžXML文件! - + Indefinitely ꗠ限ꜟ @@ -19173,29 +20669,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - čŠ‚ē‚¹ - - - - Address - 地址 - - - - Status ēŠ¶ę€ - + NXS @@ -19388,6 +20868,10 @@ Security: no anonymous IDs Click to resume the hashing process + + <p>This certificate contains: + <p>ę­¤čÆä¹¦åŒ…å«ļ¼š + Idle @@ -19438,18 +20922,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19612,7 +21084,7 @@ p, li { white-space:pre-wrapļ¼›} - + Network Wide å…Øē½‘åŒæååÆč§ @@ -19795,7 +21267,7 @@ p, li { white-space:pre-wrapļ¼›} č”Øå• - + The loading of embedded images is blocked. å·²é˜»ę­¢å†…ē½®å›¾åƒåŠ č½½ @@ -19808,7 +21280,7 @@ p, li { white-space:pre-wrapļ¼›} RSPermissionMatrixWidget - + Allowed by default é»˜č®¤å…č®ø @@ -19981,22 +21453,12 @@ p, li { white-space:pre-wrapļ¼›} RSTextBrowser - + View &Source - - Save image - äæå­˜å›¾åƒ - - - - Copy image - - - - + Document source @@ -20004,12 +21466,12 @@ p, li { white-space:pre-wrapļ¼›} RSTreeWidget - + Tree View Options ę ‘ēŠ¶č§†å›¾é€‰é”¹ - + Show Header @@ -20039,6 +21501,14 @@ p, li { white-space:pre-wrapļ¼›} Show column … + + Show column... + ę˜¾ē¤ŗåˆ— + + + [no title] + [ę— ę ‡é¢˜] + RatesStatus @@ -20701,7 +22171,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20822,7 +22292,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20842,7 +22312,7 @@ If you believe it is correct, remove the corresponding line from the file and re IP - + Profile ID @@ -20900,7 +22370,7 @@ prevents the message to be forwarded to your friends. äæ”ęÆå°†č¢«č½¬å‘ē»™ä½ ēš„å„½å‹ - + [ ... Redacted message ... ] [ ... 丢失消息 ... ] @@ -20914,6 +22384,11 @@ prevents the message to be forwarded to your friends. [Unknown] [未矄] + + + [ ... Missing Message ... ] + [ ... 丢失消息 ... ] + RsMessageModel @@ -20927,11 +22402,6 @@ prevents the message to be forwarded to your friends. From - - - To - - Subject @@ -20954,18 +22424,13 @@ prevents the message to be forwarded to your friends. - Click to sort by read status - + Click to sort by read + ē‚¹å‡»ęŒ‰å·²čÆ»ęŽ’åŗ - Click to sort by author - - - - - Click to sort by destination - + Click to sort by from + ē‚¹å‡»ęŒ‰å‘ä»¶äŗŗęŽ’åŗ @@ -20988,9 +22453,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -21011,7 +22474,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. é‡č®¾ę‰€ęœ‰äæå­˜ēš„RetroShare设置。 @@ -21072,7 +22535,7 @@ prevents the message to be forwarded to your friends. 设置RetroShare语言 - + Unable to open log file '%1': %2 无法打开旄志文件 "%1':%2 @@ -21093,7 +22556,11 @@ prevents the message to be forwarded to your friends. ę— ę³•åˆ›å»ŗē›®å½•:%1 - + Revision + Revision + + + opmode @@ -21123,7 +22590,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: ęŒ‡å®šēš„čÆ­čØ€ä»£ē ę— ę•ˆ: @@ -21141,7 +22608,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. ę³Øå†Œč”Øč®æé—®é”™čÆÆć€‚ä¹Ÿč®øä½ éœ€č¦ē®”ē†å‘˜ęƒé™ć€‚ @@ -21158,12 +22625,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) åœØę­¤č¾“å…„å…³é”®čÆ(至少3个字符长) - + Start Search å¼€å§‹ęœē“¢ @@ -21225,7 +22692,7 @@ prevents the message to be forwarded to your friends. 清除 - + KeyWords å…³é”®čÆ @@ -21240,7 +22707,7 @@ prevents the message to be forwarded to your friends. 搜瓢 ID - + Filename ę–‡ä»¶å @@ -21340,23 +22807,23 @@ prevents the message to be forwarded to your friends. 下载所选锹目 - + File Name ę–‡ä»¶åē§° - + Download äø‹č½½ - + Copy RetroShare Link 复制 RetroShare é“¾ęŽ„ - + Send RetroShare Link 发送 RetroShare é“¾ęŽ„ @@ -21366,7 +22833,7 @@ prevents the message to be forwarded to your friends. - + Download Notice äø‹č½½ęē¤ŗ @@ -21403,7 +22870,7 @@ prevents the message to be forwarded to your friends. åˆ é™¤å…ØéƒØ - + Folder 文件夹 @@ -21414,17 +22881,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) 新建 RetroShare é“¾ęŽ„ - + Open Folder 打开文件夹 - + Create Collection... åˆ›å»ŗčµ„ęŗé›†åˆ @@ -21444,7 +22911,7 @@ prevents the message to be forwarded to your friends. ä»Žé›†åˆę–‡ä»¶äø­äø‹č½½... - + Collection čµ„ęŗé›†åˆ @@ -21452,7 +22919,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details čŠ‚ē‚¹čÆ¦ęƒ… @@ -21468,22 +22935,22 @@ prevents the message to be forwarded to your friends. åˆ é™¤ę”ē›® - + IP address: IP åœ°å€ļ¼š - + Peer ID: čŠ‚ē‚¹ ID - + Location: ä½ē½®: - + Peer Name: čŠ‚ē‚¹åē§° @@ -21500,7 +22967,7 @@ prevents the message to be forwarded to your friends. 隐藏 - + but reported: å·²ęŠ„å‘Š @@ -21525,8 +22992,8 @@ prevents the message to be forwarded to your friends. <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> @@ -21534,7 +23001,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare åøŒęœ›ęˆäøŗę‚Øēš„ RetroShare 儽友 @@ -21565,7 +23032,7 @@ prevents the message to be forwarded to your friends. - + Expand 展开 @@ -21610,12 +23077,12 @@ prevents the message to be forwarded to your friends. ēŠ¶ę€: - + Write Message 写邮件 - + Connect Attempt čæžęŽ„å°čÆ• @@ -21635,22 +23102,17 @@ prevents the message to be forwarded to your friends. 未矄(出站)čæžęŽ„ä¼å›¾ - + Unknown Security Issue ęœŖēŸ„å®‰å…Øé—®é¢˜ - - SSL request + + A unknown peer - - An unknown peer - - - - + Unknown 未矄 @@ -21660,7 +23122,11 @@ prevents the message to be forwarded to your friends. - + Unknown Peer + ęœŖēŸ„čŠ‚ē‚¹ + + + Hide 隐藏 @@ -21670,7 +23136,7 @@ prevents the message to be forwarded to your friends. ę‚Øę˜Æå¦č¦åˆ é™¤ę­¤å„½å‹? - + Certificate has wrong signature!! This peer is not who he claims to be. čÆä¹¦ęœ‰é”™čÆÆēš„ē­¾åļ¼ čæ™äøŖčŠ‚ē‚¹äøę˜Æä»–č‡Ŗē§°ēš„é‚£ę ·ć€‚ @@ -21680,12 +23146,12 @@ prevents the message to be forwarded to your friends. 丢失/ęŸåēš„čÆä¹¦ ć€‚äøę˜Æäø€äøŖēœŸę˜ÆRetroShareē”Øęˆ· - + Certificate caused an internal error. čÆä¹¦åÆ¼č‡“äŗ†äø€äøŖå†…éƒØé”™čÆÆć€‚ - + Peer/node not in friendlist (PGP id= čŠ‚ē‚¹äøåœØå„½å‹åˆ—č”Øé‡Œ(PGP ID= @@ -21744,12 +23210,12 @@ prevents the message to be forwarded to your friends. - + Local Address ęœ¬åœ°åœ°å€ - + NAT @@ -21770,22 +23236,22 @@ prevents the message to be forwarded to your friends. ē«Æå£: - + Local network ęœ¬åœ°ē½‘ē»œ - + External ip address finder 公网 IP ęŽ¢ęµ‹ęœåŠ” - + UPnP UPnP - + Known / Previous IPs: 已矄/å…ˆå‰ēš„ IP @@ -21801,16 +23267,21 @@ behind a firewall or a VPN. äø‹čæžęŽ„ēš„ęƒ…å†µć€‚ - - - + + Allow RetroShare to ask my ip to these websites: + 允许 RetroShare é€ščæ‡å¦‚äø‹ē½‘ē«™ē”®å®šå¤–ē½‘IP: + + + + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. åÆęŽ„å—ēš„ē«Æå£čŒƒå›“ä»Ž 10 到 65535 ć€‚ę­£åøøęƒ…å†µäø‹ä½ŽäŗŽ 1024 ēš„ē«Æå£č¢«ä½ ēš„ē³»ē»Ÿäæē•™ć€‚ @@ -21820,46 +23291,23 @@ behind a firewall or a VPN. åÆęŽ„å—ēš„ē«Æå£čŒƒå›“ä»Ž 10 到 65535 ć€‚ę­£åøøęƒ…å†µäø‹ä½ŽäŗŽ 1024 ēš„ē«Æå£č¢«ä½ ēš„ē³»ē»Ÿäæē•™ć€‚ - + Onion Address éšč—åœ°å€ - + Discovery On (recommended) čŠ‚ē‚¹ęŽ¢ē“¢å¼€åÆ(ęŽØč) - + Tor has been automatically configured by Retroshare. You shouldn't need to change anything here. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off čŠ‚ē‚¹ęŽ¢ē“¢å…³é—­ @@ -21869,7 +23317,7 @@ List of found external IP: 隐藏 - ęŸ„ēœ‹é…ē½® - + I2P Address I2P 地址 @@ -21894,95 +23342,37 @@ List of found external IP: 传兄正常 - - - + + Proxy seems to work. ä»£ē†ēœ‹čµ·ę„ę­£åøøå·„ä½œ - - + I2P proxy is not enabled I2P ä»£ē†ę²”ęœ‰åÆē”Ø - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client 客户端 @@ -21997,7 +23387,71 @@ When changing options use the buttons at the bottom to restart SAMv3. 未矄 - + + + + 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 @@ -22007,7 +23461,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. é€ščæ‡éšč—ęœåŠ”åÆ¹ä½ åÆč¾¾ @@ -22021,12 +23490,12 @@ 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> @@ -22036,7 +23505,7 @@ Also check your ports! 清除 - + Download limit (KB/s) äø‹č½½é€ŸēŽ‡ (KB/s) @@ -22051,23 +23520,23 @@ Also check your ports! äøŠä¼ é€ŸēŽ‡ (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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -22078,7 +23547,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings åÆē”Øé«˜ēŗ§č®¾ē½® @@ -22088,7 +23567,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why é«˜ēŗ§ęØ”å¼ - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -22098,7 +23582,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 127.0.0.1 - + + I2P proxy port + I2Pä»£ē†ē«Æå£ + + + + BOB accessible + + + + Address 地址 @@ -22138,7 +23632,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start 开始 @@ -22153,7 +23647,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why 停止 - + + BOB status + + + + Incoming ꎄꔶ @@ -22189,32 +23688,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay äø­ē»§ @@ -22269,7 +23743,7 @@ If you have issues connecting over Tor check the Tor logs too. ꀻ讔: - + Warning: This bandwidth adds up to the max bandwidth. @@ -22294,7 +23768,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22306,7 +23780,7 @@ If you have issues connecting over Tor check the Tor logs too. ē½‘ē»œ - + IP Filters IP过滤 @@ -22329,7 +23803,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status ēŠ¶ę€ @@ -22389,28 +23863,17 @@ If you have issues connecting over Tor check the Tor logs too. ę·»åŠ åˆ°ē™½åå• - + Hidden Service Configuration éšč—ęœåŠ”é…ē½® - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22426,18 +23889,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 ęœåŠ”åœ°å€ @@ -22472,12 +23935,12 @@ If you have issues connecting over Tor check the Tor logs too. čÆ·å”«å†™ęœåŠ”åœ°å€ - + IP Range IP čŒƒå›“ - + Reported by DHT for IP masquerading DHTęŠ„å‘ŠIP伪装 @@ -22500,22 +23963,22 @@ 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>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> @@ -22550,7 +24013,7 @@ If you have issues connecting over Tor check the Tor logs too. č‡ŖåŠØå±č”½DHT伪装IPēš„čŒƒå›“ - + Outgoing Manual Tor/I2P @@ -22560,12 +24023,12 @@ If you have issues connecting over Tor check the Tor logs too. Tor Socks 代理 - + Tor outgoing Okay Tor 传出代理正常 - + Tor proxy is not enabled Tor ä»£ē†ę²”ęœ‰åÆē”Ø @@ -22645,7 +24108,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with é€‰ę‹©ę‚ØåøŒęœ›äøŽä¹‹å…±äŗ«äøŖäŗŗå‘åø–åÆ†é’„ēš„čŠ‚ē‚¹ @@ -22655,12 +24118,12 @@ 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. ę‚ØåÆä»„é€ščæ‡åˆ†äŗ«č®©ä½ ēš„å„½å‹äŗ†č§£ę‚Øēš„é¢‘é“ć€‚ é€‰ę‹©ę‚Øēš„å„½å‹ę„åˆ†äŗ«é¢‘é“ć€‚ @@ -22679,7 +24142,7 @@ Select the Friends with which you want to Share your Channel. 共享文件夹箔理器 - + Shared directory 共享文件目录 @@ -22699,17 +24162,17 @@ Select the Friends with which you want to Share your Channel. åÆč§ę€§ - + Add new ę·»åŠ ę–°ēš„å…±äŗ«ę–‡ä»¶å¤¹ - + Cancel å–ę¶ˆ - + Add a Share Directory ę·»åŠ å…±äŗ«ē›®å½• @@ -22719,7 +24182,7 @@ Select the Friends with which you want to Share your Channel. 删除 - + Apply and close 应用并关闭 @@ -22810,7 +24273,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. čæ™ę˜Æäø€äøŖå…±äŗ«ę–‡ä»¶å¤¹ēš„åˆ—č”Øć€‚ę‚ØåÆä»„ä½æē”Øåŗ•éƒØēš„ęŒ‰é’®ę·»åŠ å’Œåˆ é™¤ę–‡ä»¶å¤¹ć€‚å½“ę‚Øę·»åŠ ę–°ę–‡ä»¶å¤¹ę—¶ļ¼ŒčÆ„ę–‡ä»¶å¤¹äø­ę‰€ęœ‰ę–‡ä»¶éƒ½ä¼šč¢«å…±äŗ«ć€‚ę‚ØåÆä»„å•ē‹¬č®¾ē½®ęÆäøŖå…±äŗ«ę–‡ä»¶å¤¹ēš„å…±äŗ«ę ‡åæ—ć€‚ @@ -22818,7 +24281,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files 共享 @@ -22869,16 +24332,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files ę ”éŖŒę–‡ä»¶ - + Download selected 下载所选锹目 @@ -22888,7 +24346,7 @@ Select the Friends with which you want to Share your Channel. äø‹č½½ - + Copy retroshare Links to Clipboard 复制 RetroShare é“¾ęŽ„č‡³å‰Ŗåˆ‡ęæ @@ -22903,7 +24361,7 @@ Select the Friends with which you want to Share your Channel. 发送 RetroShare é“¾ęŽ„ - + Some files have been omitted ęŸäŗ›ę–‡ä»¶å·²č¢«åæ½ē•„ @@ -22919,7 +24377,7 @@ Select the Friends with which you want to Share your Channel. ęŽØčå†…å®¹ - + Create Collection... åˆ›å»ŗčµ„ęŗé›†åˆ @@ -22944,7 +24402,7 @@ Select the Friends with which you want to Share your Channel. ä»Žé›†åˆę–‡ä»¶äø­äø‹č½½... - + Some files have been omitted because they have not been indexed yet. @@ -23087,12 +24545,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration 载兄设置 - + Create interface åˆ›å»ŗē•Œé¢ @@ -23116,7 +24574,7 @@ Select the Friends with which you want to Share your Channel. č®°ä½åÆ†ē  - + Log In 登录 @@ -23471,7 +24929,7 @@ This choice can be reverted in settings. äøŖäŗŗēŠ¶ę€ę¶ˆęÆ - + Message: 消息: @@ -23718,7 +25176,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags åˆ é™¤ę‰€ęœ‰ę ‡ē­¾ @@ -23754,15 +25212,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: TorēŠ¶ę€: - - - + Unknown 未矄 @@ -23772,13 +25227,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: + éšč—ęœåŠ”åœ°å€: + + + + Tor bootstrap status: - - + + Not set @@ -23788,57 +25248,12 @@ p, li { white-space: pre-wrap; } Onion地址: - - Error - 错误 - - - - Not connected - ęœŖčæžęŽ„ - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] [等待Tor就绪] @@ -23846,7 +25261,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor Tor @@ -23856,7 +25271,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline TorēŽ°åœØē¦»ēŗæ @@ -23867,12 +25282,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23900,7 +25314,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options 传输选锹 @@ -23911,7 +25325,7 @@ p, li { white-space: pre-wrap; } ęœ€å¤šåŒę—¶äø‹č½½ä»»åŠ”: - + Shared Directories 共享文件目录 @@ -23921,27 +25335,22 @@ p, li { white-space: pre-wrap; } č‡ŖåŠØå…±äŗ«ęŽ„ę”¶ę–‡ä»¶ē›®å½•(ęŽØč) - + + Edit Share + ē¼–č¾‘åˆ†äŗ« + + + Directories - - Configure shared directories - 设置共享文件目录 - - - + Auto-check shared directories every č‡ŖåŠØę£€ęŸ„å…±äŗ«ē›®å½•,ęÆéš” - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) (分钟) @@ -24026,7 +25435,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -24035,12 +25444,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -24065,12 +25469,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming é”ŗåŗ @@ -24129,13 +25528,37 @@ p, li { white-space: pre-wrap; } Trust friend nodes with banned files + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="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;"> 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> + 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><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> @@ -24145,17 +25568,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>čæ™äøŖå€¼ęŽ§åˆ¶ę‚Øēš„čŠ‚ē‚¹ęÆē§’åÆä»„č½¬å‘å¤šå°‘äøŖéš§é“čÆ·ę±‚ć€‚</p><p>å¦‚ęžœä½ ē½‘ē»œåø¦å®½å……č£•ļ¼ŒåÆä»„å°†å…¶ęé«˜åˆ° 30-40ļ¼Œä»„å…č®øę›“é•æēš„éš§é“é€ščæ‡ć€‚ č¦ę…Žé‡ļ¼Œå› äøŗčæ™ä¼šäŗ§ē”Ÿč®øå¤šå°ę•°ę®åŒ…ļ¼ŒåÆčƒ½ä¼šę˜¾č‘—å‡ę…¢ä½ č‡Ŗå·±ēš„ę–‡ä»¶ä¼ č¾“é€Ÿåŗ¦ć€‚</p><p>é»˜č®¤å€¼äøŗ20ć€‚å¦‚ęžœä½ äøē”®å®šļ¼ŒäæęŒé»˜č®¤å€¼ć€‚</p></body></html> - - Warning - č­¦å‘Š - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory č®¾ē½®ę–‡ä»¶ęŽ„ę”¶ē›®å½• @@ -24183,7 +25596,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed äø‹č½½å®Œęˆ @@ -24207,23 +25620,39 @@ p, li { white-space: pre-wrap; } %1 completed transfer + + You have %1 completed downloads + ę‚Øęœ‰ %1 äøŖäø‹č½½ä»»åŠ”å·²å®Œęˆ + + + You have %1 completed download + ę‚Øęœ‰ %1 äøŖäø‹č½½ä»»åŠ”å·²å®Œęˆ + + + %1 completed downloads + %1 äøŖäø‹č½½ä»»åŠ”å·²å®Œęˆ + + + %1 completed download + %1 äøŖäø‹č½½ä»»åŠ”å·²å®Œęˆ + TransfersDialog - - + + Downloads äø‹č½½ - + Uploads 上传 - + Name i.e: file name åē§° @@ -24430,7 +25859,16 @@ 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> + + + Move in Queue... é˜Ÿåˆ—ä½ē½®... @@ -24455,7 +25893,7 @@ p, li { white-space: pre-wrap; } 选择目录 - + Anonymous end-to-end encrypted tunnel 0x åŒæåå’Œē«ÆåÆ¹ē«ÆåŠ åÆ†č·Æē”± 0x @@ -24476,7 +25914,7 @@ p, li { white-space: pre-wrap; } RetroShare - + @@ -24509,17 +25947,7 @@ p, li { white-space: pre-wrap; } ꖇ件 %1 ęœŖå®Œęˆć€‚ä½†å¦‚ęžœę˜ÆåŖ’ä½“ę–‡ä»¶ļ¼Œä»åÆå°čÆ•é¢„č§ˆć€‚ - - Warning - č­¦å‘Š - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name äæ®ę”¹ę–‡ä»¶å @@ -24534,7 +25962,7 @@ p, li { white-space: pre-wrap; } č¾“å…„ę–°ēš„ęœ‰ę•ˆę–‡ä»¶å - + Expand all å…ØéƒØå±•å¼€ @@ -24661,18 +26089,23 @@ 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> + + + + Columns 列 - + File Transfers 文件传输 - + Path 路径 @@ -24682,7 +26115,7 @@ p, li { white-space: pre-wrap; } ę˜¾ē¤ŗč·Æå¾„ę  - + Could not delete preview file äøčƒ½åˆ é™¤ä¹‹å‰ę–‡ä»¶ @@ -24692,7 +26125,7 @@ p, li { white-space: pre-wrap; } å†čÆ•äø€ę¬”ļ¼Ÿ - + Create Collection... åˆ›å»ŗčµ„ęŗé›†åˆ @@ -24707,12 +26140,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> - - - - + Collection čµ„ęŗé›†åˆ @@ -24722,7 +26150,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x åŒæåTurtleč·Æē”± @@ -24943,6 +26371,10 @@ p, li { white-space: pre-wrap; } File transfer tunnels + + Anonymous tunnels + åŒæåTurtleč·Æē”± + Authenticated tunnels @@ -25136,17 +26568,12 @@ p, li { white-space: pre-wrap; } č”Øå• - + Enable Retroshare WEB Interface 启用RetroShareē½‘é”µē•Œé¢ć€‚ - - Status: - ēŠ¶ę€: - - - + Web parameters ē½‘é”µå‚ę•° @@ -25180,33 +26607,31 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Note: these settings do not affect retroshare-service, which has a command line switch to activate the web interface and select the listening port.</p></body></html> + + Port: + ē«Æå£: + Allow access from all IP addresses (Default: localhost only) - + Apply setting and start browser + åŗ”ē”Øč®¾ē½®å¹¶ę‰“å¼€ęµč§ˆå™Ø + + + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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> <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;ē½‘é”µē•Œé¢</h1> <p>ē½‘é”µē•Œé¢å…č®øę‚Øä»Žęµč§ˆå™ØęŽ§åˆ¶ RetroShare ć€‚å¤šäøŖč®¾å¤‡åÆä»„é€ščæ‡äø€äøŖ RetroShare å®žä¾‹å…±äŗ«ęŽ§åˆ¶ć€‚ ę‰€ä»„ļ¼Œę‚ØåÆä»„åœØå¹³ęæē”µč„‘äøŠå¼€å§‹åÆ¹čÆļ¼Œē„¶åŽä½æē”Øå°å¼ē”µč„‘ē»§ē»­ę“ä½œć€‚</p> <p>č­¦å‘Šļ¼šäøč¦å°†ē½‘ē»œęŽ„å£ęš“éœ²åœØäŗ’č”ē½‘äøŠļ¼Œå› äøŗę²”ęœ‰č®æé—®ęŽ§åˆ¶å’ŒåŠ åÆ†ć€‚ å¦‚ęžœč¦é€ščæ‡äŗ’č”ē½‘ä½æē”Øē½‘ē»œęŽ„å£ļ¼ŒčÆ·ä½æē”ØSSHéš§é“ęˆ–ä»£ē†ę„äæęŠ¤čæžęŽ„ć€‚</p> - + Webinterface not enabled äøę‰“å¼€ē½‘é”µē•Œé¢ @@ -25216,12 +26641,12 @@ p, li { white-space: pre-wrap; } ę— ę³•ę‰“å¼€ē½‘é”µē•Œé¢ļ¼ŒčÆ·åˆ°č®¾ē½® -> ē½‘ē»œē•Œé¢é‡Œčæ›č”Œč®¾ē½® - + failed to start Webinterface ę— ę³•ę‰“å¼€ē½‘é”µē•Œé¢ - + Webinterface ē½‘é”µē•Œé¢ @@ -25358,7 +26783,11 @@ p, li { white-space: pre-wrap; } Wiki锵面 - + New Group + ę–°å»ŗåˆ†ē»„ + + + Page Name é”µé¢åē§° @@ -25373,7 +26802,7 @@ p, li { white-space: pre-wrap; } 原始 ID - + << << @@ -25461,7 +26890,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History é”µé¢åŽ†å²ē‰ˆęœ¬ @@ -25496,7 +26925,7 @@ p, li { white-space: pre-wrap; } 锵面Id - + \/ \/ @@ -25526,18 +26955,14 @@ p, li { white-space: pre-wrap; } 标签 - - History - 历史 - - - + + Show Edit History ę˜¾ē¤ŗē¼–č¾‘åŽ†å² - + Status ēŠ¶ę€ @@ -25558,7 +26983,7 @@ p, li { white-space: pre-wrap; } ꒤销 - + Submit ęäŗ¤ @@ -25630,6 +27055,10 @@ p, li { white-space: pre-wrap; } WireDialog + + TimeRange + ę—¶é—“čŒƒå›“ + Create Account @@ -25641,7 +27070,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + åˆ·ę–° + + + Settings @@ -25656,7 +27094,7 @@ p, li { white-space: pre-wrap; } 其他 - + Who to Follow @@ -25676,7 +27114,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25706,17 +27144,85 @@ p, li { white-space: pre-wrap; } - + Last Month + 上月 + + + Last Week + äøŠå‘Ø + + + Today + 今天 + + + New + 新建 + + + from + č‡Ŗä»Ž + + + until + ē›“åˆ° + + + Search/Filter + 搜瓢/过滤 + + + Network Wide + å…Øē½‘åŒæååÆč§ + + + Manage Accounts + ē®”ē†č“¦ęˆ· + + + Showing: + å½“å‰ę˜¾ē¤ŗ: + + + Yourself ęˆ‘č‡Ŗå·± + + Friends + 儽友 + Following 仄下 - + Custom + č‡Ŗå®šä¹‰ + + + Account 1 + 蓦ꈷ1 + + + Account 2 + 蓦ꈷ2 + + + Account 3 + 蓦ꈷ3 + + + CheckBox + å¤é€‰ę”† + + + Post Pulse to Wire + 向wireå‘åˆŗęŽ¢åŒ… + + + RetroShare @@ -25779,42 +27285,35 @@ p, li { white-space: pre-wrap; } - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - 删除 - - - Location: ä½ē½®: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25859,41 +27358,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - äøé€‚ē”Ø - - - - Following - 仄下 - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) 未矄 @@ -25971,7 +27440,7 @@ p, li { white-space: pre-wrap; } %1 幓 %2 天 - + k e.g: 3.1 k k @@ -26004,11 +27473,15 @@ p, li { white-space: pre-wrap; } Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif *.webp) + + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + 图片 (*.png *.xpm *.jpg *.tiff *.gif *.jpeg) + pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/lang/retroshare_zh_TW.ts b/retroshare-gui/src/lang/retroshare_zh_TW.ts index 2acc19ab2..92a16dae4 100644 --- a/retroshare-gui/src/lang/retroshare_zh_TW.ts +++ b/retroshare-gui/src/lang/retroshare_zh_TW.ts @@ -121,12 +121,12 @@ - + Search Criteria - + Add a further search criterion. @@ -136,7 +136,7 @@ - + Cancels the search. @@ -156,6 +156,13 @@ + + AlbumCreateDialog + + Description: + ęčæ°: + + AlbumDialog @@ -184,6 +191,10 @@ Caption + + Description: + ęčæ°: + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -540,7 +551,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. @@ -566,23 +577,10 @@ p, li { white-space: pre-wrap; } - - AspectRatioPixmapLabel - - - Save image - - - - - Copy image - - - AttachFileItem - + %p Kb @@ -625,7 +623,7 @@ p, li { white-space: pre-wrap; } åˆŖé™¤ - + Set your Avatar picture @@ -712,7 +710,7 @@ p, li { white-space: pre-wrap; } - + Always on Top @@ -731,6 +729,10 @@ p, li { white-space: pre-wrap; } % Opaque + + Cancel + å–ę¶ˆ + Since: @@ -808,7 +810,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidgetBase - + Comment @@ -838,12 +840,12 @@ p, li { white-space: pre-wrap; } - + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + ago @@ -851,7 +853,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_card - + Vote up @@ -871,7 +873,7 @@ p, li { white-space: pre-wrap; } - + Posted by @@ -909,7 +911,7 @@ p, li { white-space: pre-wrap; } BoardPostDisplayWidget_compact - + Vote up @@ -929,7 +931,7 @@ p, li { white-space: pre-wrap; } - + Click to view picture @@ -959,7 +961,7 @@ p, li { white-space: pre-wrap; } - + Toggle Message Read Status @@ -969,7 +971,7 @@ p, li { white-space: pre-wrap; } 新建 - + TextLabel @@ -977,12 +979,12 @@ p, li { white-space: pre-wrap; } BoardsCommentsItem - + I like this - + 0 @@ -1002,18 +1004,18 @@ p, li { white-space: pre-wrap; } - + New Comment - + Copy RetroShare Link - + Expand 展開 @@ -1028,12 +1030,12 @@ p, li { white-space: pre-wrap; } åˆŖé™¤é …ē›® - + Name - + Comm value @@ -1202,17 +1204,17 @@ p, li { white-space: pre-wrap; } ChannelPage - + Channels - + Tabs - + General @@ -1222,17 +1224,7 @@ p, li { white-space: pre-wrap; } - - Downloads - - - - - Maximum Auto Download Size (in GBs) - - - - + Open each channel in a new tab @@ -1240,7 +1232,7 @@ p, li { white-space: pre-wrap; } ChannelPostDelegate - + files @@ -1263,7 +1255,7 @@ into the image, so as to ChannelsCommentsItem - + I like this @@ -1288,18 +1280,18 @@ into the image, so as to - + New Comment - + Copy RetroShare Link - + Expand 展開 @@ -1314,7 +1306,7 @@ into the image, so as to åˆŖé™¤é …ē›® - + Name @@ -1324,7 +1316,17 @@ into the image, so as to - + + Comment + + + + + Comments + + + + Hide éš±č— @@ -1332,7 +1334,7 @@ into the image, so as to ChatLobbyDialog - + Name @@ -1523,7 +1525,7 @@ into the image, so as to ChatLobbyToaster - + Show Chat Lobby @@ -1556,14 +1558,13 @@ into the image, so as to - - + Unknown Lobby - - + + Remove All @@ -1571,13 +1572,13 @@ into the image, so as to ChatLobbyWidget - - + + Name - + Count @@ -1587,7 +1588,29 @@ into the image, so as to - + + Private Subscribed chat rooms + + + + + + Public Subscribed chat rooms + + + + + Private chat rooms + + + + + + Public chat rooms + + + + Create chat room @@ -1597,7 +1620,7 @@ into the image, so as to - + Create a non anonymous identity and enter this room @@ -1654,12 +1677,12 @@ 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: @@ -1669,42 +1692,23 @@ Double click a chat room to enter and chat. - + [No topic provided] - - Private Subscribed - - - - - - Public Subscribed - - - - - + Private - - - + Public - - <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=":/icons/png/add.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> - - - - + Anonymous IDs accepted @@ -1714,22 +1718,27 @@ Double click a chat room to enter and chat. - + + <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=":/icons/png/add.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> + + + + Add Auto Subscribe - + Search Chat lobbies - + Search Name - + Columns @@ -1744,47 +1753,47 @@ Double click a chat room to enter and chat. - + Chat Room info - + Chat room Name: - + Chat room Id: - + Topic: - + Type: 锞型 - + Security: - + Peers: - - - - - - + + + + + + TextLabel @@ -1799,7 +1808,7 @@ Double click a chat room to enter and chat. - + Show 锯示 @@ -1819,7 +1828,7 @@ Double click a chat room to enter and chat. ChatMsgItem - + Remove Item åˆŖé™¤é …ē›® @@ -1864,7 +1873,7 @@ Double click a chat room to enter and chat. ChatPage - + General @@ -1879,7 +1888,7 @@ Double click a chat room to enter and chat. - + Enable custom fonts @@ -1899,7 +1908,7 @@ Double click a chat room to enter and chat. - + General settings @@ -1924,7 +1933,7 @@ Double click a chat room to enter and chat. - + Blink tab icon @@ -1954,7 +1963,7 @@ Double click a chat room to enter and chat. - + Change Chat Font @@ -1964,7 +1973,7 @@ Double click a chat room to enter and chat. - + History @@ -1988,7 +1997,7 @@ Double click a chat room to enter and chat. - + Choose your default font for Chat. @@ -2058,22 +2067,12 @@ Double click a chat room to enter and chat. - + Search - - When focus on text browser after showing chat room - - - - - Shrink text edit field when not needed - - - - + Fonts @@ -2083,17 +2082,7 @@ Double click a chat room to enter and chat. - - If your system is set up correctly, this next square should measure 1 cm. - - - - - This next square is scaled accordingly to your system font size. - - - - + Chat rooms @@ -2190,7 +2179,7 @@ Double click a chat room to enter and chat. - + Case sensitive å€åˆ†å¤§å°åÆ« @@ -2296,7 +2285,7 @@ Double click a chat room to enter and chat. ChatToaster - + Show Chat @@ -2332,7 +2321,7 @@ Double click a chat room to enter and chat. ChatWidget - + Close @@ -2367,12 +2356,12 @@ Double click a chat room to enter and chat. - + <html><head/><body><p>Chat menu</p></body></html> - + Insert emoticon @@ -2452,6 +2441,11 @@ Double click a chat room to enter and chat. Insert horizontal rule + + + Save image + + Import sticker @@ -2489,7 +2483,7 @@ Double click a chat room to enter and chat. - + is typing... @@ -2511,7 +2505,7 @@ after HTML conversion. - + Do you really want to physically delete the history? @@ -2561,7 +2555,7 @@ after HTML conversion. - + Find Case Sensitively @@ -2583,7 +2577,7 @@ after HTML conversion. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2598,12 +2592,12 @@ after HTML conversion. - + (Status) - + Attach a File @@ -2619,12 +2613,12 @@ after HTML conversion. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + Person id: @@ -2635,12 +2629,12 @@ Double click on it to add his name on text writer. - + Unsigned - + items found. @@ -2660,7 +2654,7 @@ Double click on it to add his name on text writer. - + Don't stop to color after @@ -2686,7 +2680,7 @@ Double click on it to add his name on text writer. CirclesDialog - + Showing details: @@ -2708,7 +2702,7 @@ Double click on it to add his name on text writer. - + Personal Circles @@ -2734,7 +2728,7 @@ Double click on it to add his name on text writer. - + Friends @@ -2794,7 +2788,7 @@ Double click on it to add his name on text writer. - + External Circles (Admin) @@ -2810,7 +2804,7 @@ Double click on it to add his name on text writer. - + Circles @@ -2862,45 +2856,45 @@ Double click on it to add his name on text writer. - + RetroShare - + - + Error : cannot get peer details. - + Retroshare ID - + <p>This Retroshare ID contains: - + <p>This certificate contains: - + <li> <b>onion address</b> and <b>port</b> - + <li><b>IP address</b> and <b>port</b>: - + <b>IP address</b> and <b>port</b>: @@ -2910,7 +2904,7 @@ Double click on it to add his name on text writer. - + Not connected @@ -2992,17 +2986,12 @@ Double click on it to add his name on text writer. - + <li>a <b>node ID</b> and <b>name</b> - - <b>DNS:</b> : - - - - + <p>You can use this Retroshare ID to make new friends. Send it by email, or give it hand to hand.</p> @@ -3022,7 +3011,7 @@ Double click on it to add his name on text writer. - + with @@ -3090,7 +3079,7 @@ Double click on it to add his name on text writer. - + @@ -3106,12 +3095,12 @@ Double click on it to add his name on text writer. - + Peer details - + Name: åēØ±: @@ -3121,17 +3110,17 @@ Double click on it to add his name on text writer. - + Options 選項 - + <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: @@ -3141,7 +3130,7 @@ Double click on it to add his name on text writer. - + Please paste below your friend's Retroshare ID @@ -3166,22 +3155,12 @@ Double click on it to add his name on text writer. - - Signers: - - - - - Known IP: - - - - + Add as friend to connect with - + Sorry, some error appeared @@ -3201,27 +3180,32 @@ Double click on it to add his name on text writer. - + Key validity: - + Profile ID: - + + 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. - + To accept the Friend Request, click the Accept button. @@ -3267,17 +3251,17 @@ Double click on it to add his name on text writer. - + Certificate Load Failed - + Not a valid Retroshare certificate! - + RetroShare Invitation @@ -3297,12 +3281,12 @@ 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? - + @@ -3310,7 +3294,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already on your trusted list @@ -3350,7 +3334,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Profile password needed. @@ -3375,7 +3359,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Valid Retroshare ID @@ -3385,7 +3369,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + RetroShare Certificate (*.rsc );;All Files (*) @@ -3424,7 +3408,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + IP-Addr: @@ -3434,7 +3418,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Show Advanced options @@ -3459,7 +3443,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + This key is already in your keyring @@ -3472,7 +3456,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -3507,7 +3491,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -3517,7 +3501,12 @@ even if you don't make friends. - + + [Unknown] + + + + Added with certificate from %1 @@ -3582,7 +3571,7 @@ even if you don't make friends. - + UDP Setup @@ -3610,7 +3599,7 @@ p, li { white-space: pre-wrap; } - + Connection Assistant @@ -3620,20 +3609,17 @@ p, li { white-space: pre-wrap; } - - + Unknown State - - + Offline - - + Behind Symmetric NAT @@ -3643,14 +3629,12 @@ p, li { white-space: pre-wrap; } - - + NET Restart - - + Behind NAT @@ -3660,8 +3644,7 @@ p, li { white-space: pre-wrap; } - - + NET STATE GOOD! @@ -3686,7 +3669,7 @@ p, li { white-space: pre-wrap; } - + Lookup requires DHT @@ -3978,7 +3961,7 @@ p, li { white-space: pre-wrap; } - + @@ -3986,8 +3969,7 @@ p, li { white-space: pre-wrap; } - - + UNVERIFIABLE FORWARD! @@ -3997,7 +3979,7 @@ p, li { white-space: pre-wrap; } - + Searching @@ -4033,12 +4015,12 @@ p, li { white-space: pre-wrap; } - + 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> @@ -4058,7 +4040,7 @@ p, li { white-space: pre-wrap; } - + IDs @@ -4078,18 +4060,18 @@ p, li { white-space: pre-wrap; } - + Cancel å–ę¶ˆ - + Nickname - + Invited Members @@ -4104,7 +4086,11 @@ p, li { white-space: pre-wrap; } - + Type + 锞型 + + + Name: åēØ±: @@ -4144,19 +4130,19 @@ p, li { white-space: pre-wrap; } - - + + RetroShare - + Please set a name for your Circle - + No Restriction Circle Selected @@ -4166,24 +4152,12 @@ p, li { white-space: pre-wrap; } - - Circle created - - - - - Your new circle has been created: - Name: %1 - Id: %2. - - - - + [Unknown] - + Add 添加 @@ -4193,7 +4167,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -4246,13 +4220,13 @@ p, li { white-space: pre-wrap; } - + Create - + Add Member @@ -4271,7 +4245,7 @@ p, li { white-space: pre-wrap; } - + Group Name: @@ -4306,7 +4280,7 @@ p, li { white-space: pre-wrap; } CreateGxsChannelMsg - + New Channel Post @@ -4316,7 +4290,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4461,17 +4435,17 @@ p, li { white-space: pre-wrap; } - + RetroShare - + This file already in this post: - + Post refers to non shared files @@ -4496,12 +4470,7 @@ p, li { white-space: pre-wrap; } - - Cannot publish post - - - - + Load thumbnail picture @@ -4516,12 +4485,18 @@ p, li { white-space: pre-wrap; } éš±č— - + + 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? @@ -4555,7 +4530,7 @@ p, li { white-space: pre-wrap; } CreateGxsForumMsg - + Post Forum Message @@ -4565,16 +4540,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 Sans Serif'; font-size:9pt; 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-size:8.25pt;"><br /></p></body></html> - - - - + Attach File @@ -4589,7 +4555,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:'MS Sans Serif'; font-size:8.25pt; 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 Sans Serif';"><br /></p></body></html> + + + + Attach a Picture @@ -4604,7 +4579,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -4634,17 +4609,17 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to - + Title ęØ™é”Œ @@ -4697,7 +4672,7 @@ Do you want to discard this message? - + No compatible ID for this forum @@ -4707,8 +4682,8 @@ Do you want to discard this message? - - + + Generate mass data @@ -4731,7 +4706,7 @@ Do you want to discard this message? CreateLobbyDialog - + A chat room is a decentralized and anonymous chat group. All participants receive all messages. Once the room is created you can invite other friend nodes with invite button on top right. @@ -4766,7 +4741,7 @@ Do you want to discard this message? - + Create @@ -4776,7 +4751,7 @@ Do you want to discard this message? å–ę¶ˆ - + require PGP-signed identities @@ -4791,7 +4766,7 @@ Do you want to discard this message? - + Create Chat Room @@ -4812,7 +4787,7 @@ Do you want to discard this message? - + Identity to use: @@ -4820,17 +4795,17 @@ Do you want to discard this message? CryptoPage - + Public Information - + Name: åēØ±: - + Location: @@ -4840,12 +4815,12 @@ Do you want to discard this message? - + Software Version: - + Online since: @@ -4865,7 +4840,12 @@ Do you want to discard this message? - + + <html><head/><body><p>Use this to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> + + + + Export @@ -4875,7 +4855,7 @@ Do you want to discard this message? - + Other Information @@ -4885,12 +4865,17 @@ Do you want to discard this message? - + Profile - + + Certificate + + + + <html><head/><body><p>This option includes all signatures of your profile key. Signatures are not mandatory, but only a way to express your trust in some particular profile.</p></body></html> @@ -4900,7 +4885,7 @@ Do you want to discard this message? - + Export Identity @@ -4970,33 +4955,33 @@ and use the import button to load it - + TextLabel - + PGP fingerprint: - + + Node information + + + + PGP Id : - + Friend nodes: - - <html><head/><body><p>Use this button to export your profile key. You can then import it in a different computer and make a new node with the same profile. Doing so, existing friends that you also add to the new node will automatically recognise that new node as friend.</p></body></html> - - - - + <html><head/><body><p>The short format only contains the profile fingerprint, and authentication is based on the node ID (ID of the SSL key). If you choose the old (long) format, the certificate includes the full profile public key. There is no fundamental difference between making friends with either method, because the public profile keys will be exchanged and checked w.r.t. the fingerprint after connection.</p></body></html> @@ -5086,7 +5071,7 @@ and use the import button to load it DLListDelegate - + B @@ -5754,7 +5739,7 @@ and use the import button to load it DownloadToaster - + Start file @@ -5762,38 +5747,38 @@ and use the import button to load it ExprParamElement - + - + to - + ignore case - - - yyyy-MM-dd + + + dd.MM.yyyy - - + + KB - - + + MB - - + + GB @@ -5801,12 +5786,12 @@ and use the import button to load it ExpressionWidget - + Expression Widget - + Delete this expression @@ -5968,7 +5953,7 @@ and use the import button to load it FilesDefs - + Picture @@ -5978,7 +5963,7 @@ and use the import button to load it - + Audio @@ -6038,21 +6023,11 @@ and use the import button to load it C - - - APK - - - - - DLL - - FlatStyle_RDM - + Friends Directories @@ -6174,7 +6149,7 @@ and use the import button to load it - + ID @@ -6216,7 +6191,7 @@ and use the import button to load it - + Group @@ -6252,7 +6227,7 @@ and use the import button to load it - + Search @@ -6268,7 +6243,7 @@ and use the import button to load it - + Profile details @@ -6505,7 +6480,7 @@ at least one peer was not added to a group FriendRequestToaster - + Confirm Friend Request @@ -6543,7 +6518,7 @@ at least one peer was not added to a group - + Mark all @@ -6554,132 +6529,16 @@ at least one peer was not added to a group - - FriendServerControl - - - Server onion address: - - - - - <html><head/><body><p>Enter here the onion address of the Friend Server that was given to you. The address will be automatically checked after you enter it and a green bullet will appear if the server is online.</p></body></html> - - - - - Onion address of the friend server - - - - - <html><head/><body><p>Communication port of the server. You usually get a server address as somestring.onion:port. The port is the number right after &quot;:&quot;</p></body></html> - - - - - Retroshare passphrase: - - - - - <html><head/><body><p>Your Retroshare login passphrase is needed to ensure the security of data exchange with the friend server.</p></body></html> - - - - - Your retroshare passphrase - - - - - On/Off - - - - - Friends to request: - - - - - Auto accept received certificates as friends - - - - - Auto-accept - - - - - Name - - - - - Node ID - - - - - Address - - - - - Status - - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Friend Server</h1> <p>This configuration panel allows you to specify the onion address of a friend server. Retroshare will talk to that server anonymously through Tor and use it to acquire a fixed number of friends.</p> <p>The friend server will continue supplying new friends until that number is reached in particular if you add your own friends manually, the friend server may become useless and you will save bandwidth disabling it. When disabling it, you will keep existing friends.</p> <p>The friend server only knows your peer ID and profile public key. It doesn't know your IP address.</p> - - - - - Make friend - - - - - Missing profile passphrase. - - - - - Your profile passphrase is missing. Please enter is in the field below before enabling the friend server. - - - - - Trying to contact friend server -This may take up to 1 min. - - - - - Friend server is currently reachable. - - - - - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - - - FriendsDialog - + Edit status message - - + + Broadcast @@ -6762,38 +6621,33 @@ Also check your ports! - + 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 - - Friend Server - - - - + Network graph - - <h1><img width="%1" 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> - - - - + Set your status message here. @@ -6811,17 +6665,7 @@ Also check your ports! 密碼 - - SAMv3 support is not available - - - - - I2P instance address with SAMv3 enabled - - - - + All fields are required with a minimum of 3 characters @@ -6831,12 +6675,17 @@ Also check your ports! - + Port - + + Use BOB + + + + This password is for PGP @@ -6857,38 +6706,38 @@ Also check your ports! - + 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 - + <html><head/><body><p>Your node name designates the Retroshare instance that</p><p>will run on this computer.</p></body></html> - + Node name - + Node type: @@ -6908,12 +6757,12 @@ Also check your ports! - + <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 @@ -6923,43 +6772,38 @@ Also check your ports! - + <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> - - Use I2P - - - - + <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 - + 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> @@ -7003,13 +6847,13 @@ and use the import button to load it - + Import profile - + Create new profile and new Retroshare node @@ -7019,7 +6863,7 @@ and use the import button to load it - + Tor/I2P address @@ -7054,7 +6898,7 @@ and use the import button to load it - + <html><p>Put a strong password here. This password will be required to start your Retroshare node and protects all your data.</p></html> @@ -7064,7 +6908,12 @@ and use the import button to load it - + + BOB support is not available + + + + <p>Node creation is disabled until all fields correctly set.</p> @@ -7074,7 +6923,12 @@ and use the import button to load it - + + I2P instance address with BOB enabled + + + + I2P instance address @@ -7300,13 +7154,27 @@ and use the import button to load it - + 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;"> +<p style=" 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 @@ -7316,57 +7184,39 @@ and use the import button to load it - - 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:'Sans Serif'; 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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Be sure to get their invitation back as well... </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, and RetroShare will automatically connect you!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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:'Sans Serif'; 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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> - - - - - Advanced: Open Firewall Port +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet for instructions.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -7374,45 +7224,49 @@ 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 Serif'; 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:12pt;">You can improve your Retroshare performance by opening an External Port. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">This will speed up connections and allow more people to connect with you. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">The easiest way to do this is by enabling UPnP on your Wireless Box or Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; 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-family:'MS Shell Dlg 2'; font-size:12pt;"><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: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-family:'MS Shell Dlg 2'; font-size:12pt;"><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></body></html> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Having trouble getting started with RetroShare?</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">3) Try the Internal RetroShare Forums </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - These come online once you are connected to friends.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">4) If you are still stuck. Email us.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + Connect To Friends + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">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 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Having trouble getting started with RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">2) Check out the Online Forums. Ask questions and discuss features.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">3) Try the Internal RetroShare Forums </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;"> - These come online once you are connected to friends.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">4) If you are still stuck. Email us.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt;"><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:12pt;">Enjoy Retrosharing</span></p></body></html> - - - - + Open RS Website @@ -7437,7 +7291,7 @@ p, li { white-space: pre-wrap; } - + RetroShare Invitation @@ -7487,12 +7341,12 @@ p, li { white-space: pre-wrap; } - + RetroShare Support - + It has many features, including built-in chat, messaging, @@ -7616,7 +7470,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster - + Show Group Chat @@ -7624,7 +7478,7 @@ p, li { white-space: pre-wrap; } GroupChooser - + [Unknown] @@ -7794,7 +7648,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title ęØ™é”Œ @@ -7807,12 +7661,12 @@ p, li { white-space: pre-wrap; } - + Description - + Number of Unread message @@ -7837,7 +7691,7 @@ p, li { white-space: pre-wrap; } - + You are admin (modify names and description using Edit menu) @@ -7852,14 +7706,14 @@ p, li { white-space: pre-wrap; } - - + + Last Post - + Name @@ -7870,13 +7724,13 @@ p, li { white-space: pre-wrap; } - + Never - + <html><head/><body><p>Searches a single keyword into the reachable network.</p><p>Objects already provided by friend nodes are not reported.</p></body></html> @@ -7889,7 +7743,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -8025,7 +7879,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -8036,22 +7890,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - - <h1><img width="%1" 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 %2 days, and sync-ed over the last %3 days, unless you change this.</p><p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> <p>UI Tip: use Control + mouse wheel to control image size in the thumbnail view.</p> - + Subscribed Channels @@ -8071,12 +7925,12 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download - + Set download directory @@ -8111,22 +7965,22 @@ p, li { white-space: pre-wrap; } - + Play - + Open folder - + Open file - + Error @@ -8146,17 +8000,17 @@ p, li { white-space: pre-wrap; } - + Are you sure that you want to cancel and delete the file? - + Can't open folder - + Play File @@ -8166,10 +8020,21 @@ p, li { white-space: pre-wrap; } + + GxsChannelFilesWidget + + Form + 蔨單 + + + Title + ęØ™é”Œ + + GxsChannelGroupDialog - + Create New Channel @@ -8207,18 +8072,8 @@ p, li { white-space: pre-wrap; } GxsChannelGroupItem - - Last activity - - - - - TextLabel - - - - - Subscribe this Channel + + Subscribe to Channel @@ -8233,7 +8088,7 @@ p, li { white-space: pre-wrap; } - + Expand 展開 @@ -8248,7 +8103,7 @@ p, li { white-space: pre-wrap; } - + Loading @@ -8262,11 +8117,6 @@ p, li { white-space: pre-wrap; } New Channel: - - - Never - - Hide @@ -8276,7 +8126,7 @@ p, li { white-space: pre-wrap; } GxsChannelPostItem - + New Comment: @@ -8297,7 +8147,7 @@ p, li { white-space: pre-wrap; } - + Play @@ -8359,18 +8209,18 @@ p, li { white-space: pre-wrap; } éš±č— - + New 新建 - + 0 - - + + Comment @@ -8385,17 +8235,17 @@ p, li { white-space: pre-wrap; } - + Loading... - + Comments - + Post @@ -8420,16 +8270,35 @@ p, li { white-space: pre-wrap; } + + GxsChannelPostsWidget + + Title + ęØ™é”Œ + + + Search Title + ęœē“¢ęØ™é”Œ + + + Feeds + 訂閱 + + + Description: + ęčæ°: + + GxsChannelPostsWidgetWithModel - + Post to Channel - + Add new post @@ -8499,7 +8368,7 @@ p, li { white-space: pre-wrap; } - Items (locally / at friends): + Posts (locally / at friends): @@ -8535,7 +8404,7 @@ p, li { white-space: pre-wrap; } - + Comments @@ -8550,13 +8419,13 @@ p, li { white-space: pre-wrap; } 訂閱 - - + + Click to switch to list view - + Show unread posts only @@ -8571,7 +8440,7 @@ p, li { white-space: pre-wrap; } - + No text to display @@ -8586,7 +8455,7 @@ p, li { white-space: pre-wrap; } - + Switch to list view @@ -8646,22 +8515,12 @@ p, li { white-space: pre-wrap; } - + Comments (%1) - - Loading... - - - - - No posts available in this channel. - - - - + [No name] @@ -8736,13 +8595,12 @@ p, li { white-space: pre-wrap; } - - + Copy Retroshare link - + Subscribed @@ -8793,17 +8651,17 @@ p, li { white-space: pre-wrap; } GxsCircleItem - + TextLabel - + Circle name: - + Accept @@ -8918,7 +8776,7 @@ p, li { white-space: pre-wrap; } GxsCommentContainer - + Comment Container @@ -8931,7 +8789,7 @@ p, li { white-space: pre-wrap; } 蔨單 - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14px; color:#24292e; background-color:#ffffff;">sort by</span></p></body></html> @@ -8961,7 +8819,7 @@ p, li { white-space: pre-wrap; } - + Comment @@ -9000,7 +8858,7 @@ p, li { white-space: pre-wrap; } GxsCommentTreeWidget - + Reply to Comment @@ -9024,21 +8882,6 @@ p, li { white-space: pre-wrap; } Vote Down - - - Show Author - - - - - Cannot vote - - - - - Error while voting: - - GxsCreateCommentDialog @@ -9048,7 +8891,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; } @@ -9077,7 +8920,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -9108,7 +8951,7 @@ before you can comment - + It remains %1 characters after HTML conversion. @@ -9159,7 +9002,7 @@ before you can comment GxsForumGroupItem - + Subscribe to Forum @@ -9175,7 +9018,7 @@ before you can comment - + Expand 展開 @@ -9194,11 +9037,6 @@ before you can comment Moderator list - - - TextLabel - - Loading... @@ -9228,13 +9066,13 @@ before you can comment GxsForumMsgItem - - + + Subject: - + Unsubscribe To Forum @@ -9245,7 +9083,7 @@ before you can comment - + Expand 展開 @@ -9265,17 +9103,17 @@ before you can comment - + Loading... - + Forum Feed - + Hide éš±č— @@ -9288,66 +9126,59 @@ before you can comment 蔨單 - + Start new Thread for Selected Forum - - Threaded - - - - - - - ... - ... - - - - Flat - - - - - Latest post in thread - - - - + Search forums ęœē“¢č«–å£‡ - + New Thread + + + Threaded View + + + + + Flat View + + - + Title ęØ™é”Œ - - + + Date ę—„ęœŸ - + Author ä½œč€… - + + Save image + + + + Loading - + <html><head/><body><p>Click here to clear current selected thread and display more information about this forum.</p></body></html> @@ -9357,7 +9188,12 @@ before you can comment - + + Lastest post in thread + + + + Reply Message @@ -9397,23 +9233,23 @@ before you can comment ęœē“¢ä½œč€… - + No name ęœŖå‘½å - - + + Reply - + <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> - + Loading... @@ -9456,12 +9292,16 @@ before you can comment - + Hide éš±č— - + Expand + 展開 + + + [unknown] @@ -9491,8 +9331,8 @@ before you can comment - - + + Distribution @@ -9575,12 +9415,12 @@ before you can comment - + New thread - + Edit 編輯 @@ -9641,7 +9481,7 @@ before you can comment - + Show column @@ -9661,7 +9501,7 @@ before you can comment - + Anonymous/unknown posts forwarded if reputation is positive @@ -9713,7 +9553,7 @@ This message is missing. You should receive it later. - + No result. @@ -9723,7 +9563,7 @@ This message is missing. You should receive it later. - + Failed to retrieve this message. Is the database currently overloaded? @@ -9738,7 +9578,7 @@ This message is missing. You should receive it later. - + (Latest) @@ -9804,12 +9644,12 @@ This message is missing. You should receive it later. GxsForumsDialog - - <h1><img width="%1" 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 %2 days and sync-ed over the last %3 days, unless you configure it otherwise.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages are kept for %1 days and sync-ed over the last %2 days, unless you configure it otherwise.</p> - + Forums 論壇 @@ -9844,12 +9684,12 @@ This message is missing. You should receive it later. GxsGroupDialog - + Name - + Key recipients can publish to restricted-type group and can view and publish for private-type channels @@ -9860,12 +9700,12 @@ This message is missing. You should receive it later. - + Description - + Message Distribution @@ -9873,7 +9713,7 @@ This message is missing. You should receive it later. - + Public @@ -9933,7 +9773,7 @@ This message is missing. You should receive it later. - + Comments: @@ -9956,7 +9796,7 @@ This message is missing. You should receive it later. - + All People @@ -9972,12 +9812,12 @@ This message is missing. You should receive it later. - + Restricted to circle: - + Limited to your friends @@ -9994,23 +9834,23 @@ This message is missing. You should receive it later. - + Message tracking - - + + PGP signature required - + Never - + Only friends nodes in group @@ -10026,28 +9866,22 @@ This message is missing. You should receive it later. - + PGP signature from known ID required - - - [None] - - - - + Load Group Logo - + Submit Group Changes - + Owner: @@ -10057,12 +9891,12 @@ This message is missing. You should receive it later. - + Info - + ID @@ -10072,7 +9906,7 @@ This message is missing. You should receive it later. - + <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> @@ -10147,12 +9981,7 @@ This message is missing. You should receive it later. - - Author: - - - - + Popularity @@ -10168,22 +9997,27 @@ This message is missing. You should receive it later. - + Created - + Cancel å–ę¶ˆ - + Create - + + Author + ä½œč€… + + + GxsIdLabel @@ -10191,7 +10025,7 @@ This message is missing. You should receive it later. GxsGroupFrameDialog - + Loading @@ -10251,7 +10085,7 @@ This message is missing. You should receive it later. - + Synchronise posts of last... @@ -10308,12 +10142,12 @@ This message is missing. You should receive it later. - + Search for - + Copy RetroShare Link @@ -10336,7 +10170,7 @@ This message is missing. You should receive it later. GxsIdChooser - + No Signature @@ -10349,14 +10183,14 @@ This message is missing. You should receive it later. GxsIdDetails - + Not found - - + + [Banned] @@ -10366,7 +10200,7 @@ This message is missing. You should receive it later. - + Loading... @@ -10376,12 +10210,7 @@ This message is missing. You should receive it later. - - [Nobody] - - - - + Identity&nbsp;name @@ -10401,14 +10230,6 @@ This message is missing. You should receive it later. - - GxsIdLabel - - - [Nobody] - - - GxsIdStatistics @@ -10420,7 +10241,7 @@ This message is missing. You should receive it later. GxsIdStatisticsWidget - + Total identities: @@ -10468,7 +10289,7 @@ This message is missing. You should receive it later. GxsIdTreeItemDelegate - + [Unknown] @@ -10855,7 +10676,7 @@ This message is missing. You should receive it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10871,7 +10692,7 @@ p, li { white-space: pre-wrap; } - + Authors @@ -10890,7 +10711,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> @@ -10964,7 +10785,7 @@ p, li { white-space: pre-wrap; } 蔨單 - + Add friend @@ -10974,7 +10795,7 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>Share your RetroShare ID</p></body></html> @@ -11002,7 +10823,7 @@ private and secure decentralized communication platform. - + Did you receive a Retroshare ID from a friend? @@ -11012,7 +10833,7 @@ private and secure decentralized communication platform. - + Copy your Cert to Clipboard @@ -11022,7 +10843,7 @@ private and secure decentralized communication platform. - + Send via Email @@ -11042,37 +10863,13 @@ private and secure decentralized communication platform. - - Include current local IP - - - - - Include current external IP - - - - - Include my DNS - - - - - Include all IPs history - - - - - <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 width="%2" height="%3" src=":/images/network_map.png" style="display: block; margin-left: auto; margin-right: auto; "/></div><p>To do so, copy your Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p><p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> - - - - + + Include all your known IPs - + Use old certificate format @@ -11084,12 +10881,12 @@ new short format - + Use new (short) certificate format - + Your Retroshare certificate is copied to Clipboard, paste and send it to your friend via email or some other way @@ -11104,7 +10901,12 @@ new short format - + + <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 Retroshare ID on this page and send it to friends, and add your friends' Retroshare ID.</p> <p>Another option is to search the internet for "Retroshare chat servers" (independently administrated). These servers allow you to exchange Retroshare ID with a dedicated Retroshare node, through which you will be able to anonymously meet other people.</p> + + + + Save as... @@ -11369,14 +11171,14 @@ p, li { white-space: pre-wrap; } IdDialog - - - + + + All - + Reputation @@ -11386,12 +11188,12 @@ p, li { white-space: pre-wrap; } - + Anonymous Id - + Create new Identity @@ -11401,7 +11203,7 @@ p, li { white-space: pre-wrap; } - + Persons @@ -11416,27 +11218,27 @@ p, li { white-space: pre-wrap; } - + Close - + Ban-option: - + Auto-Ban all identities signed by the same node - + Friend votes: - + Positive votes @@ -11452,39 +11254,29 @@ p, li { white-space: pre-wrap; } - + Created on : - - Auto-Ban profile - - - - + <html><head/><body><p><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 difference between friend's positive and negative opinions. If not, your own opinion gives the score.</span></p><p><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 -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).</span></p><p><span style=" font-family:'Sans'; font-size:9pt;">You can change the thresholds and the time of inactivity to delete identities in preferences -&gt; people. </span></p></body></html> - - Edit Identity - - - - + Usage statistics - + Circles - + Circle name @@ -11504,20 +11296,18 @@ p, li { white-space: pre-wrap; } - + - Edit identity - - + Delete identity - + Chat with this peer @@ -11527,78 +11317,78 @@ p, li { white-space: pre-wrap; } - + 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: - + Negative - + Neutral @@ -11609,17 +11399,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 @@ -11634,24 +11424,24 @@ p, li { white-space: pre-wrap; } - + This identity is owned by you - - + + My own identities - - + + My contacts - + Show Items @@ -11666,12 +11456,7 @@ p, li { white-space: pre-wrap; } - - <h1><img width="%1" 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> - - - - + Other circles @@ -11681,7 +11466,7 @@ p, li { white-space: pre-wrap; } - + Circle ID: @@ -11756,7 +11541,7 @@ p, li { white-space: pre-wrap; } - + Identity ID: @@ -11786,7 +11571,7 @@ p, li { white-space: pre-wrap; } - + Invited @@ -11801,7 +11586,7 @@ p, li { white-space: pre-wrap; } - + Edit Circle @@ -11849,7 +11634,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. @@ -11857,7 +11642,7 @@ These identities will soon be not supported anymore. - + [Unknown node] @@ -11900,7 +11685,7 @@ These identities will soon be not supported anymore. - + Boards @@ -11980,7 +11765,7 @@ These identities will soon be not supported anymore. - + information @@ -11996,12 +11781,17 @@ 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> + + + + positive @@ -12106,7 +11896,7 @@ These identities will soon be not supported anymore. - + Add to Contacts @@ -12156,21 +11946,21 @@ These identities will soon be not supported anymore. - - - + + + People - + Your Avatar Click here to change your avatar - + Linked to neighbor nodes @@ -12180,7 +11970,7 @@ These identities will soon be not supported anymore. - + Linked to a friend Retroshare node @@ -12195,7 +11985,7 @@ These identities will soon be not supported anymore. - + Chat with this person @@ -12210,12 +12000,12 @@ These identities will soon be not supported anymore. - + Last used: - + +50 Known PGP @@ -12235,12 +12025,12 @@ These identities will soon be not supported anymore. - + Owned by - + Node name: @@ -12250,7 +12040,7 @@ These identities will soon be not supported anymore. - + Really delete? @@ -12258,7 +12048,7 @@ These identities will soon be not supported anymore. IdEditDialog - + Nickname @@ -12288,13 +12078,7 @@ These identities will soon be not supported anymore. - - - Use the mouse to zoom and adjust the image for your avatar. Hit Del to remove it. - - - - + New identity @@ -12308,7 +12092,7 @@ These identities will soon be not supported anymore. - + @@ -12318,12 +12102,7 @@ These identities will soon be not supported anymore. - - No avatar chosen - - - - + Edit identity @@ -12334,27 +12113,27 @@ These identities will soon be not supported anymore. - - + + Profile password needed. - + - + Identity creation failed - - + + Cannot create an identity linked to your profile without your profile password. - + Identity creation success @@ -12374,7 +12153,7 @@ These identities will soon be not supported anymore. - + Identity update failed @@ -12384,18 +12163,12 @@ These identities will soon be not supported anymore. - + Error KeyID invalid - - - No Avatar chosen. A default image will be automatically displayed from your new identity. - - - - + Import image @@ -12405,7 +12178,12 @@ These identities will soon be not supported anymore. - + + Use the mouse to zoom and adjust the image for your avatar. + + + + Unknown GpgId @@ -12415,7 +12193,7 @@ These identities will soon be not supported anymore. - + Create New Identity @@ -12425,15 +12203,10 @@ These identities will soon be not supported anymore. 锞型 - + Choose image... - - - Remove - åˆŖé™¤ - @@ -12459,7 +12232,7 @@ These identities will soon be not supported anymore. 添加 - + Create @@ -12469,13 +12242,13 @@ These identities will soon be not supported anymore. å–ę¶ˆ - + Your Avatar Click here to change your avatar - + Linked to your profile @@ -12485,7 +12258,7 @@ These identities will soon be not supported anymore. - + The nickname is too short. Please input at least %1 characters. @@ -12559,7 +12332,7 @@ These identities will soon be not supported anymore. - + Copy 複製 @@ -12569,12 +12342,12 @@ These identities will soon be not supported anymore. åˆŖé™¤ - + %1 's Message History - + Mark all @@ -12597,34 +12370,18 @@ These identities will soon be not supported anymore. ImageUtil - - + + Save image - Save Picture File - - - - - Pictures (*.png *.xpm *.jpg) - - - - Cannot save the image, invalid filename - - Copy image - - - - - + Not an image @@ -12642,32 +12399,27 @@ These identities will soon be not supported anymore. - + Enable RetroShare JSON API Server - + Port: - + Listen Address: - - Status: - - - - + 127.0.0.1 - + Token: @@ -12688,12 +12440,7 @@ These identities will soon be not supported anymore. - Authenticated Tokens: - - - - - Registered services: + Authenticated Tokens @@ -12702,31 +12449,26 @@ These identities will soon be not supported anymore. - + JSON API - - - <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>Retroshare provides a JSON API allowing other softwares to communicate with its core using token-controlled HTTP requests to http://localhost:[port]. Please refer to the Retroshare documentation for how to use this feature. </p> <p>Unless you know what you're doing, you shouldn't need to change anything in this page. The web interface for instance will automatically register its own token to the JSON API which will be visible in the list of authenticated tokens after you enable it.</p> - - LocalSharedFilesDialog - - + + Open File - + Open Folder - + Checking... @@ -12736,7 +12478,7 @@ These identities will soon be not supported anymore. - + Recommend in a message to... @@ -12764,7 +12506,7 @@ These identities will soon be not supported anymore. MainWindow - + Add Friend @@ -12780,8 +12522,7 @@ These identities will soon be not supported anymore. - - + Options 選項 @@ -12802,7 +12543,7 @@ These identities will soon be not supported anymore. - + Quit @@ -12813,12 +12554,12 @@ These identities will soon be not supported anymore. - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -12843,12 +12584,11 @@ These identities will soon be not supported anymore. - Status - + Notify @@ -12859,35 +12599,31 @@ These identities will soon be not supported anymore. - Open Messages - - + Bandwidth Graph - + Applications - Help - - + Minimize - + Maximize @@ -12902,12 +12638,7 @@ These identities will soon be not supported anymore. - - Close window - - - - + %1 new message @@ -12937,7 +12668,7 @@ These identities will soon be not supported anymore. - + Do you really want to exit RetroShare ? @@ -12957,7 +12688,7 @@ These identities will soon be not supported anymore. 锯示 - + Make sure this link has not been forged to drag you to a malicious website. @@ -13002,13 +12733,12 @@ These identities will soon be not supported anymore. - - + Statistics - + Show web interface @@ -13023,7 +12753,7 @@ These identities will soon be not supported anymore. - + Really quit ? @@ -13032,17 +12762,17 @@ These identities will soon be not supported anymore. MessageComposer - + Compose - + Contacts - + Paragraph @@ -13078,12 +12808,12 @@ These identities will soon be not supported anymore. - + Font size - + Increase font size @@ -13098,32 +12828,32 @@ These identities will soon be not supported anymore. - + Italic - + Alignment - + Add an Image - + Sets text font to code style - + Underline - + Subject: @@ -13134,32 +12864,32 @@ These identities will soon be not supported anymore. - + Tags - + Address list: - + Recommend this friend - + Set Text color - + Set Text background color - + Recommended Files @@ -13229,7 +12959,7 @@ These identities will soon be not supported anymore. - + Send To: @@ -13269,7 +12999,7 @@ These identities will soon be not supported anymore. - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -13289,18 +13019,18 @@ 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? @@ -13311,17 +13041,7 @@ Do you want to save message to draft box? - - Will not reply - - - - - There is no point in replying to a notification message! - - - - + Add to "To" @@ -13341,7 +13061,7 @@ Do you want to save message to draft box? - + Original Message @@ -13351,21 +13071,21 @@ Do you want to save message to draft box? 來自 - + - + To - - + + Cc - + Sent @@ -13380,7 +13100,7 @@ Do you want to save message to draft box? - + Re: @@ -13390,30 +13110,30 @@ Do you want to save message to draft box? - - - + + + RetroShare - + Do you want to send the message without a subject ? - + Please insert at least one recipient. - + Bcc - + Unknown 未矄 @@ -13528,13 +13248,13 @@ Do you want to save message to draft box? - + Open File... - + HTML-Files (*.htm *.html);;All Files (*) @@ -13554,7 +13274,7 @@ Do you want to save message to draft box? - + Message has not been Sent. Do you want to save message ? @@ -13575,7 +13295,7 @@ Do you want to save message ? - + Hi,<br>I want to be friends with you on RetroShare.<br> @@ -13605,18 +13325,18 @@ Do you want to save message ? - - + + Close - + From: å¾žļ¼š - + Bullet list (disc) @@ -13656,13 +13376,13 @@ Do you want to save message ? - - + + Thanks, <br> - + Distant identity: @@ -13672,12 +13392,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: @@ -13755,7 +13475,7 @@ Do you want to save message ? - + A new tab @@ -13765,7 +13485,7 @@ Do you want to save message ? - + Edit Tag @@ -13788,7 +13508,7 @@ Do you want to save message ? MessageToaster - + Sub: @@ -13796,7 +13516,7 @@ Do you want to save message ? MessageUserNotify - + Message @@ -13824,7 +13544,7 @@ Do you want to save message ? MessageWidget - + Recommended Files @@ -13834,37 +13554,37 @@ Do you want to save message ? - + Subject: - + From: å¾žļ¼š - + To: 到: - + Cc: - + Bcc: - + Tags: - + Reply @@ -13904,7 +13624,7 @@ Do you want to save message ? - + Send Invite @@ -13956,7 +13676,7 @@ Do you want to save message ? - + Confirm %1 as friend @@ -13966,12 +13686,12 @@ Do you want to save message ? - + View source - + No subject @@ -13981,22 +13701,17 @@ Do you want to save message ? 下載 - + You got an invite to make friend! You may accept this request. - + You got an invite to make friend! You may accept this request and send your own Certificate back - - more - - - - + Document source @@ -14005,24 +13720,14 @@ Do you want to save message ? %1 (%2) - - - Show less - - - - - Show more - - - + Download all - + Print Document @@ -14037,12 +13742,12 @@ Do you want to save message ? - + Load images always for this message - + Hide the attachment pane @@ -14064,6 +13769,10 @@ Do you want to save message ? Compose + + Delete + åˆŖé™¤ + Print @@ -14142,7 +13851,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -14152,16 +13861,20 @@ Do you want to save message ? - + Delete + åˆŖé™¤ + + + - - + + Tags - - + + Inbox @@ -14191,17 +13904,17 @@ Do you want to save message ? - + Total Inbox: - + Quick View - + Print... @@ -14232,7 +13945,7 @@ Do you want to save message ? - + Subject @@ -14242,7 +13955,7 @@ Do you want to save message ? 來自 - + Date ę—„ęœŸ @@ -14252,7 +13965,7 @@ Do you want to save message ? - + Search Subject @@ -14261,16 +13974,6 @@ Do you want to save message ? Search From - - - To - - - - - Search To - - Search Date @@ -14297,12 +14000,12 @@ Do you want to save message ? - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1><p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p><p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p><p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p><p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strengthen 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 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 strengthen your network, or send feedback to a channel's owner.</p> - + Starred @@ -14378,7 +14081,7 @@ Do you want to save message ? - Show in People + Show author in People @@ -14392,7 +14095,7 @@ Do you want to save message ? - + No message using %1 tag available. @@ -14407,28 +14110,18 @@ Do you want to save message ? - - Deletion is not recommended - - - - - Messages in this box are automatically deleted when received. Manually deleting a message does not guaranty that the message will not be delivered. Messages that cannot be delivered will however stay here indefinitly. Do you want to proceed and delete? - - - - + Drafts - + No Box selected. - + @@ -14463,17 +14156,7 @@ Do you want to save message ? MimeTextEdit - - Save image - - - - - Copy image - - - - + Paste as plain text @@ -14527,7 +14210,7 @@ Do you want to save message ? - + Expand 展開 @@ -14537,7 +14220,7 @@ Do you want to save message ? åˆŖé™¤é …ē›® - + from @@ -14572,7 +14255,7 @@ Do you want to save message ? - + Hide éš±č— @@ -14713,7 +14396,7 @@ Do you want to save message ? - + Remove unused keys... @@ -14723,7 +14406,7 @@ Do you want to save message ? - + Clean keyring @@ -14737,13 +14420,7 @@ Notes: Your old keyring will be backed up. - - You have selected %1 accepted peers among others, - Are you sure you want to un-friend them? - - - - + Keyring info @@ -14776,13 +14453,18 @@ For security, your keyring was previously backed-up to file 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 @@ -14792,12 +14474,12 @@ For security, your keyring was previously backed-up to file - + Profile details... - + Key removal has failed. Your keyring remains intact. Reported error: @@ -14830,7 +14512,7 @@ Reported error: NewFriendList - + Offline Friends @@ -14851,7 +14533,7 @@ Reported error: - + Groups @@ -14881,19 +14563,19 @@ Reported error: - - + + Search - + ID - + Search ID @@ -14903,12 +14585,12 @@ Reported error: - + Show Items - + Last contact @@ -14918,7 +14600,7 @@ Reported error: - + Group @@ -15033,7 +14715,7 @@ Reported error: - + Do you want to remove this node? @@ -15043,7 +14725,7 @@ Reported error: - + Done! @@ -15150,7 +14832,7 @@ at least one peer was not added to a group NewsFeed - + Activity Stream @@ -15165,7 +14847,7 @@ at least one peer was not added to a group - + Newest on top @@ -15175,12 +14857,12 @@ at least one peer was not added to a group - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1><p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Activity Feed</h1> <p>The Activity 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, Forum and Board posts</li> <li>Circle membership requests and invites</li> <li>New Channels, Forums and Boards you can subscribe to</li> <li>Channel and Board comments</li> <li>New Mail messages</li> <li>Private messages from your friends</li> </ul> </p> - + Activity @@ -15409,6 +15091,10 @@ at least one peer was not added to a group Disable All Toaster temporarily + + Feed + 訂閱 + Systray @@ -15418,7 +15104,7 @@ at least one peer was not added to a group NotifyQt - + Passphrase required @@ -15438,12 +15124,12 @@ at least one peer was not added to a group - + Please enter your Retroshare passphrase - + Unregistered plugin/executable @@ -15458,7 +15144,7 @@ at least one peer was not added to a group - + Test 測試 @@ -15469,19 +15155,17 @@ at least one peer was not added to a group - 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). @@ -15489,7 +15173,7 @@ at least one peer was not added to a group OnlineToaster - + Friend Online @@ -15628,12 +15312,7 @@ p, li { white-space: pre-wrap; } - - Friend options - - - - + These options apply to all nodes of the profile: @@ -15678,7 +15357,12 @@ 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> @@ -15724,21 +15408,21 @@ 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) @@ -15756,7 +15440,7 @@ 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. @@ -15832,12 +15516,12 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Retroshare profile - + This is your own PGP key, and it is signed by : @@ -15863,7 +15547,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. PeerItem - + Chat @@ -15884,7 +15568,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.åˆŖé™¤é …ē›® - + Name: åēØ±: @@ -15924,7 +15608,7 @@ Warning: In your File-Transfer option, you select allow direct download to No. - + Write Message @@ -15982,7 +15666,7 @@ Warning: In your File-Transfer option, you select allow direct download to No.éš±č— - + Send Message @@ -16149,6 +15833,13 @@ Warning: In your File-Transfer option, you select allow direct download to No. + + PhotoCommentItem + + Form + 蔨單 + + PhotoDialog @@ -16300,17 +15991,17 @@ p, li { white-space: pre-wrap; } - + My Albums - + Subscribed Albums - + Shared Albums @@ -16339,7 +16030,7 @@ requesting to edit it! PhotoSlideShow - + Album Name @@ -16398,19 +16089,19 @@ requesting to edit it! - - + + TextLabel - + Posted by - + ago @@ -16446,12 +16137,12 @@ requesting to edit it! PluginItem - + TextLabel - + Show more details about this plugin @@ -16662,27 +16353,12 @@ p, li { white-space: pre-wrap; } - - Ban this person (Sets negative opinion) - - - - - Give neutral opinion - - - - - Give positive opinion - - - - + Choose window color... - + Dock window @@ -16735,7 +16411,7 @@ p, li { white-space: pre-wrap; } 新建 - + Vote up @@ -16755,8 +16431,8 @@ p, li { white-space: pre-wrap; } - - + + Comments @@ -16781,13 +16457,13 @@ p, li { white-space: pre-wrap; } - - + + Comment - + Comments @@ -16815,12 +16491,12 @@ p, li { white-space: pre-wrap; } PostedCreatePostDialog - + Create a new Post - + RetroShare @@ -16835,22 +16511,12 @@ p, li { white-space: pre-wrap; } - - Error while creating post - - - - - An error occurred while creating the post. - - - - + Load Picture File - + Post image @@ -16866,17 +16532,7 @@ p, li { white-space: pre-wrap; } - - No clipboard image found. - - - - - There is no image data in the clipboard to paste - - - - + Close this window? @@ -16886,7 +16542,7 @@ p, li { white-space: pre-wrap; } - + Please add a Title @@ -16906,22 +16562,12 @@ p, li { white-space: pre-wrap; } - + Post size is limited to 32 KB, pictures will be downscaled. - - Paste image from clipboard - - - - - Paste Picture - - - - + Remove image @@ -16936,7 +16582,7 @@ p, li { white-space: pre-wrap; } - + Post @@ -16947,7 +16593,7 @@ p, li { white-space: pre-wrap; } - + You are submitting a post. The key to a successful submission is interesting content and a descriptive title. @@ -16957,7 +16603,7 @@ p, li { white-space: pre-wrap; } ęØ™é”Œ - + Link @@ -16965,12 +16611,12 @@ p, li { white-space: pre-wrap; } PostedDialog - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1><p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p><p>Posts 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>Boards are kept for %2 days, and sync-ed over the last %3 days, unless you change this.</p> + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Boards</h1> <p>The Boards service allows you to share images, blog posts & internet links, that spread among Retroshare nodes like forums and channels</p> <p>Posts 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>Boards are kept for %1 days, and sync-ed over the last %2 days, unless you change this.</p> - + Boards @@ -17004,7 +16650,7 @@ p, li { white-space: pre-wrap; } PostedGroupDialog - + Create New Board @@ -17042,17 +16688,7 @@ p, li { white-space: pre-wrap; } PostedGroupItem - - Last activity - - - - - TextLabel - - - - + Subscribe to Posted @@ -17068,7 +16704,7 @@ p, li { white-space: pre-wrap; } - + Expand 展開 @@ -17083,17 +16719,12 @@ p, li { white-space: pre-wrap; } - + Loading... - - Never - - - - + New Board @@ -17106,18 +16737,18 @@ p, li { white-space: pre-wrap; } PostedItem - + 0 - - + + Comments - + Copy RetroShare Link @@ -17128,12 +16759,12 @@ p, li { white-space: pre-wrap; } - + Comment - + Comments @@ -17143,7 +16774,7 @@ p, li { white-space: pre-wrap; } - + Click to view Picture @@ -17153,17 +16784,17 @@ p, li { white-space: pre-wrap; } éš±č— - + Vote up - + Vote down - + Set as read and remove item čØ­ē½®ē‚ŗå·²č®€å¹¶åˆŖé™¤é …ē›® @@ -17173,7 +16804,7 @@ p, li { white-space: pre-wrap; } 新建 - + New Comment: @@ -17183,7 +16814,7 @@ p, li { white-space: pre-wrap; } - + Name @@ -17224,11 +16855,30 @@ p, li { white-space: pre-wrap; } - + Loading + + PostedListWidget + + Form + 蔨單 + + + New + 新建 + + + Next + 下一個 + + + Previous + å‰äø€å€‹ + + PostedListWidgetWithModel @@ -17247,17 +16897,7 @@ p, li { white-space: pre-wrap; } - - <html><head/><body><p>Maximum number of data items (including posts, comments, votes) across friend nodes.</p></body></html> - - - - - Items (at friends): - - - - + 0 @@ -17267,15 +16907,15 @@ p, li { white-space: pre-wrap; } - + - + unknown - + Distribution: @@ -17285,42 +16925,42 @@ p, li { white-space: pre-wrap; } - + Created - + TextLabel - + Popularity: - + + Contributions: + + + + Sync period: - - Number of subscribed friend nodes - - - - + Posts - + Create Post - + <html><head/><body><p><span style=" font-family:'-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol'; font-size:14pt; color:#24292e; background-color:#ffffff;">Select sorting</span></p></body></html> @@ -17340,7 +16980,7 @@ p, li { white-space: pre-wrap; } - + Search @@ -17370,17 +17010,17 @@ p, li { white-space: pre-wrap; } - + No files in this post, or no post selected - + No posts available in this board - + Click to switch to card view @@ -17395,17 +17035,12 @@ p, li { white-space: pre-wrap; } - + Copy RetroShare Link - - Copy http Link - - - - + Show author in People tab @@ -17415,31 +17050,27 @@ p, li { white-space: pre-wrap; } 編輯 - - + information - - + The Retrohare link was copied to your clipboard. - - + Link creation error - - + Link could not be created: - + [No name] @@ -17454,7 +17085,7 @@ p, li { white-space: pre-wrap; } - + Never @@ -17528,16 +17159,6 @@ p, li { white-space: pre-wrap; } No Channel Selected - - - Could not vote - - - - - Error occured while voting: - - PostedPage @@ -17627,16 +17248,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 Serif'; 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:'Ubuntu'; font-size:11pt;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">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. </span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Ubuntu'; font-size:11pt;"><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:'Ubuntu'; font-size:11pt;">Creating a new node with the same key allows your friend nodes to accept you automatically.</span></p></body></html> +</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> @@ -17744,7 +17365,7 @@ and use the import button to load it ProfileWidget - + Edit status message @@ -17760,7 +17381,7 @@ and use the import button to load it - + Public Information @@ -17795,12 +17416,12 @@ and use the import button to load it - + Other Information - + My Address @@ -17844,27 +17465,27 @@ and use the import button to load it PulseAddDialog - + Add to Pulse - + Display As - + URL - + GroupLabel - + IDLabel @@ -17874,12 +17495,12 @@ and use the import button to load it å¾žļ¼š - + Head - + Head Shot @@ -17909,13 +17530,13 @@ and use the import button to load it - - + + Whats happening? - + @@ -17927,22 +17548,12 @@ and use the import button to load it - - Remove all images - - - - + Clear Display As - - Add Picture - - - - + Post @@ -17957,7 +17568,7 @@ and use the import button to load it - + Reply to Pulse @@ -17972,24 +17583,34 @@ and use the import button to load it - + Like Pulse - + Hide Pictures - + Add Pictures + + + PulseItem - - Load Picture File - + From + 來自 + + + Date + ę—„ęœŸ + + + ... + ... @@ -18000,7 +17621,7 @@ and use the import button to load it 蔨單 - + @@ -18019,7 +17640,7 @@ and use the import button to load it PulseReply - + icn @@ -18029,7 +17650,7 @@ and use the import button to load it - + REPLY @@ -18056,7 +17677,7 @@ and use the import button to load it - + FOLLOW @@ -18066,7 +17687,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> @@ -18086,7 +17707,7 @@ and use the import button to load it - + <html><head/><body><p><span style=" color:#555753;">Replying to @sidler</span></p></body></html> @@ -18202,7 +17823,7 @@ and use the import button to load it - + FOLLOW @@ -18210,42 +17831,37 @@ and use the import button to load it PulseViewGroup - + headshot - + <html><head/><body><p><span style=" color:#555753;">@sidler_here</span></p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Sidler</span></p></body></html> - + <html><head/><body><p><span style=" color:#2e3436;">3:58 AM Ā· Apr 13, 2020 Ā·</span></p></body></html> - + Location - - Edit profile - - - - + Tag Line - + <html><head/><body><p><span style=" font-weight:600;">1.2K</span></p></body></html> @@ -18277,7 +17893,7 @@ and use the import button to load it - + FOLLOW @@ -18285,8 +17901,8 @@ and use the import button to load it QObject - - + + Confirmation @@ -18554,12 +18170,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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. @@ -18590,7 +18206,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Cannot start Tor Manager! @@ -18624,7 +18240,7 @@ The error reported is:" - + Multiple instances @@ -18643,26 +18259,6 @@ The error reported is:" - - - Old certificate - - - - - This node uses old certificate settings that are considered too weak by your current OpenSSL library version. You need to create a new node possibly using the same profile. - - - - - Tor error - - - - - Cannot run/configure Tor. Make sure it is installed on your system. - - Distant peer has closed the chat @@ -18742,7 +18338,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -18752,7 +18348,7 @@ Reported error is: - + enabled @@ -18762,7 +18358,7 @@ Reported error is: - + Move IP %1 to whitelist @@ -18778,7 +18374,7 @@ Reported error is: - + %1 seconds ago @@ -18845,7 +18441,7 @@ Security: no anonymous IDs - + Join chat room @@ -18873,7 +18469,7 @@ Security: no anonymous IDs - + Indefinitely @@ -19053,29 +18649,13 @@ Security: no anonymous IDs Ban list - - - Name - - - Node - - - - - Address - - - - - Status - + NXS @@ -19318,18 +18898,6 @@ Security: no anonymous IDs Server - - - - Missing channel post - - - - - - [System] - - QuickStartWizard @@ -19469,7 +19037,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -19636,7 +19204,7 @@ p, li { white-space: pre-wrap; } 蔨單 - + The loading of embedded images is blocked. @@ -19649,7 +19217,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -19822,22 +19390,12 @@ p, li { white-space: pre-wrap; } RSTextBrowser - + View &Source - - Save image - - - - - Copy image - - - - + Document source @@ -19845,12 +19403,12 @@ p, li { white-space: pre-wrap; } RSTreeWidget - + Tree View Options - + Show Header @@ -20538,7 +20096,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsDownloadListModel - + Name i.e: file name @@ -20659,7 +20217,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsFriendListModel - + Name @@ -20679,7 +20237,7 @@ If you believe it is correct, remove the corresponding line from the file and re - + Profile ID @@ -20735,7 +20293,7 @@ prevents the message to be forwarded to your friends. - + [ ... Redacted message ... ] @@ -20749,6 +20307,11 @@ prevents the message to be forwarded to your friends. [Unknown] + + + [ ... Missing Message ... ] + + RsMessageModel @@ -20762,11 +20325,6 @@ prevents the message to be forwarded to your friends. From 來自 - - - To - - Subject @@ -20789,17 +20347,12 @@ prevents the message to be forwarded to your friends. - Click to sort by read status + Click to sort by read - Click to sort by author - - - - - Click to sort by destination + Click to sort by from @@ -20823,9 +20376,7 @@ prevents the message to be forwarded to your friends. - - - + [Notification] @@ -20846,7 +20397,7 @@ prevents the message to be forwarded to your friends. Rshare - + Resets ALL stored RetroShare settings. @@ -20907,7 +20458,7 @@ prevents the message to be forwarded to your friends. - + Unable to open log file '%1': %2 @@ -20928,7 +20479,7 @@ prevents the message to be forwarded to your friends. - + opmode @@ -20958,7 +20509,7 @@ prevents the message to be forwarded to your friends. - + Invalid language code specified: @@ -20976,7 +20527,7 @@ prevents the message to be forwarded to your friends. RshareSettings - + Registry Access Error. Maybe you need Administrator right. @@ -20993,12 +20544,12 @@ prevents the message to be forwarded to your friends. SearchDialog - + Enter a keyword here (at least 3 char long) - + Start Search @@ -21059,7 +20610,7 @@ prevents the message to be forwarded to your friends. - + KeyWords @@ -21074,7 +20625,7 @@ prevents the message to be forwarded to your friends. - + Filename @@ -21174,23 +20725,23 @@ prevents the message to be forwarded to your friends. - + File Name - + Download 下載 - + Copy RetroShare Link - + Send RetroShare Link @@ -21200,7 +20751,7 @@ prevents the message to be forwarded to your friends. - + Download Notice 下載 @@ -21237,7 +20788,7 @@ prevents the message to be forwarded to your friends. - + Folder 文件夾 @@ -21248,17 +20799,17 @@ prevents the message to be forwarded to your friends. - + New RetroShare Link(s) - + Open Folder - + Create Collection... @@ -21278,7 +20829,7 @@ prevents the message to be forwarded to your friends. - + Collection @@ -21286,7 +20837,7 @@ prevents the message to be forwarded to your friends. SecurityIpItem - + Peer details @@ -21302,22 +20853,22 @@ prevents the message to be forwarded to your friends. åˆŖé™¤é …ē›® - + IP address: - + Peer ID: - + Location: - + Peer Name: @@ -21334,7 +20885,7 @@ prevents the message to be forwarded to your friends. éš±č— - + but reported: @@ -21359,8 +20910,8 @@ prevents the message to be forwarded to your friends. - - + + <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> @@ -21368,7 +20919,7 @@ prevents the message to be forwarded to your friends. SecurityItem - + wants to be friend with you on RetroShare @@ -21399,7 +20950,7 @@ prevents the message to be forwarded to your friends. - + Expand 展開 @@ -21444,12 +20995,12 @@ prevents the message to be forwarded to your friends. - + Write Message - + Connect Attempt @@ -21469,12 +21020,17 @@ prevents the message to be forwarded to your friends. - + Unknown Security Issue - + + A unknown peer + + + + Unknown 未矄 @@ -21484,17 +21040,7 @@ prevents the message to be forwarded to your friends. - - SSL request - - - - - An unknown peer - - - - + Hide éš±č— @@ -21504,7 +21050,7 @@ prevents the message to be forwarded to your friends. - + Certificate has wrong signature!! This peer is not who he claims to be. @@ -21514,12 +21060,12 @@ prevents the message to be forwarded to your friends. - + Certificate caused an internal error. - + Peer/node not in friendlist (PGP id= @@ -21578,12 +21124,12 @@ prevents the message to be forwarded to your friends. - + Local Address - + NAT @@ -21604,22 +21150,22 @@ prevents the message to be forwarded to your friends. - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -21632,16 +21178,21 @@ behind a firewall or a VPN. - - - + + Allow RetroShare to ask my ip to these websites: + + + + + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -21651,46 +21202,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. - - sec - - - - - local - - - - - external - - - - - - -List of found external IP: - - - - - + Discovery Off @@ -21700,7 +21228,7 @@ List of found external IP: - + I2P Address @@ -21725,95 +21253,37 @@ List of found external IP: - - - + + Proxy seems to work. - - + I2P proxy is not enabled - - SAMv3 is running and accessible + + BOB is running and accessible - SAMv3 is not accessible! Is i2p running and SAM enabled? + BOB is not accessible! Is it running? - - Your key uses the following algorithms: %1 and %2 - - - - - - unkown key type - - - - - RetroShare uses SAMv3 to set up a %1 tunnel at %2:%3 -(id: %4) + + RetroShare uses BOB to set up a %1 tunnel at %2:%3 (named %4) -When changing options use the buttons at the bottom to restart SAMv3. +When changing options (e.g. port) use the buttons at the bottom to restart BOB. - - Offline, no SAM session is established yet. - - - - - - SAM is trying to establish a session ... this can take some time. - - - - - - SAM session established! Now setting up a forward session ... - - - - - - Online, SAM is working as exptected - - - - - - You key uses %1 for signing and %2 for crypto - - - - - stop SAM tunnel first to generate a new key - - - - - stop SAM tunnel first to load a key - - - - - stop SAM tunnel first to disable SAM - - - - + client @@ -21828,7 +21298,71 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + + + 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 @@ -21838,7 +21372,22 @@ When changing options use the buttons at the bottom to restart SAMv3. - + + 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. @@ -21850,12 +21399,12 @@ 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> @@ -21865,7 +21414,7 @@ Also check your ports! - + Download limit (KB/s) @@ -21880,23 +21429,23 @@ Also check your ports! - + <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. - + <html><head/><body><p>Configure your Tor and I2P SOCKS proxy here. It will allow you to also connect </p><p>to hidden nodes.</p></body></html> - + 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: @@ -21907,7 +21456,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + Automatic I2P/BOB + + + + + Enable I2P BOB - changing this requires a restart to fully take effect + + + + enableds advanced settings @@ -21917,7 +21476,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P Basic Open Bridge + + + + I2P Instance address @@ -21927,7 +21491,17 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + I2P proxy port + + + + + BOB accessible + + + + Address @@ -21967,7 +21541,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + Start @@ -21982,7 +21556,12 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - + + BOB status + + + + Incoming @@ -22018,32 +21597,7 @@ If you have issues connecting over Tor check the Tor logs too. - - Automatic I2P - - - - - Enable I2P SAMv3 - changing this requires a restart to fully take effect - - - - - I2P Simple Anonymous Messaging - - - - - SAM accessible - - - - - SAM status - - - - + Relay @@ -22098,7 +21652,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Warning: This bandwidth adds up to the max bandwidth. @@ -22123,7 +21677,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <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> @@ -22135,7 +21689,7 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Filters @@ -22158,7 +21712,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Status @@ -22218,28 +21772,17 @@ If you have issues connecting over Tor check the Tor logs too. - + Hidden Service Configuration - - Allow RetroShare to ask my ip to these DNS servers: - - - - - - List of OpenDns servers used. - - - - + <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> @@ -22255,18 +21798,18 @@ If you have issues connecting over Tor check the Tor logs too. - + <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 @@ -22301,12 +21844,12 @@ If you have issues connecting over Tor check the Tor logs too. - + IP Range - + Reported by DHT for IP masquerading @@ -22329,22 +21872,22 @@ 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> @@ -22379,7 +21922,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Outgoing Manual Tor/I2P @@ -22389,12 +21932,12 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay - + Tor proxy is not enabled @@ -22474,7 +22017,7 @@ If you have issues connecting over Tor check the Tor logs too. ShareKey - + check peers you would like to share private publish key with @@ -22484,12 +22027,12 @@ 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. @@ -22508,7 +22051,7 @@ Select the Friends with which you want to Share your Channel. - + Shared directory @@ -22528,17 +22071,17 @@ Select the Friends with which you want to Share your Channel. - + Add new - + Cancel å–ę¶ˆ - + Add a Share Directory @@ -22548,7 +22091,7 @@ Select the Friends with which you want to Share your Channel. åˆŖé™¤ - + Apply and close @@ -22639,7 +22182,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. @@ -22647,7 +22190,7 @@ Select the Friends with which you want to Share your Channel. SharedFilesDialog - + Files @@ -22698,16 +22241,11 @@ Select the Friends with which you want to Share your Channel. - <html><head/><body><p>Forces the re-check of all shared directories. While automatic file checking only cares for new/removed files for efficiency reasons, this button will force the re-scan of all files, possibly re-hashing existing files that may have changed. </p></body></html> - - - - check files - + Download selected @@ -22717,7 +22255,7 @@ Select the Friends with which you want to Share your Channel. 下載 - + Copy retroshare Links to Clipboard @@ -22732,7 +22270,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted @@ -22748,7 +22286,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -22773,7 +22311,7 @@ Select the Friends with which you want to Share your Channel. - + Some files have been omitted because they have not been indexed yet. @@ -22916,12 +22454,12 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load configuration - + Create interface @@ -22945,7 +22483,7 @@ Select the Friends with which you want to Share your Channel. - + Log In @@ -23284,7 +22822,7 @@ This choice can be reverted in settings. - + Message: @@ -23521,7 +23059,7 @@ p, li { white-space: pre-wrap; } TagsMenu - + Remove All Tags @@ -23557,15 +23095,12 @@ p, li { white-space: pre-wrap; } - - + Tor status: - - - + Unknown 未矄 @@ -23575,13 +23110,18 @@ p, li { white-space: pre-wrap; } - - Hidden address: + + Hidden service address: - - + + Tor bootstrap status: + + + + + Not set @@ -23591,57 +23131,12 @@ p, li { white-space: pre-wrap; } - - Error - - - - - Not connected - - - - - Connecting - - - - - Socket connected - - - - - Authenticating - - - - - Authenticated - - - - - Hidden service ready - - - - - Tor offline - - - - - Tor ready - - - - + Check that Tor is accessible in your executable path - + [Waiting for Tor...] @@ -23649,7 +23144,7 @@ p, li { white-space: pre-wrap; } TorStatus - + Tor @@ -23659,7 +23154,7 @@ p, li { white-space: pre-wrap; } - + Tor is currently offline @@ -23670,12 +23165,11 @@ p, li { white-space: pre-wrap; } - No tor configuration - + Tor proxy is OK @@ -23703,7 +23197,7 @@ p, li { white-space: pre-wrap; } TransferPage - + Transfer options @@ -23714,7 +23208,7 @@ p, li { white-space: pre-wrap; } - + Shared Directories @@ -23724,27 +23218,22 @@ p, li { white-space: pre-wrap; } - + + Edit Share + + + + Directories - - Configure shared directories - - - - + Auto-check shared directories every - <html><head/><body><p>Retroshare will quickly scan shared directories for new/removed files. It will not detect changes in existing files for efficiency reasons. It is however possible to force a full re-scan of the entire hierarchy including possibly modified files using the &quot;check files&quot; button in shared files tab.</p></body></html> - - - - minute(s) @@ -23829,7 +23318,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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transferring data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:8pt;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> @@ -23838,12 +23327,7 @@ p, li { white-space: pre-wrap; } - - Minimum font size for Shared Files - - - - + Maximum uploads per friend (0 = no limit) @@ -23868,12 +23352,7 @@ 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 (although not recommended on Windows systems). <span style=" font-weight:600;">Progressive</span> is a good 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> - - - - + Streaming @@ -23938,7 +23417,12 @@ 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> @@ -23948,17 +23432,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, randomly writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway (otherwise use "progressive")? - - - - + Set Incoming Directory @@ -23986,7 +23460,7 @@ p, li { white-space: pre-wrap; } TransferUserNotify - + Download completed @@ -24014,19 +23488,19 @@ p, li { white-space: pre-wrap; } TransfersDialog - - + + Downloads - + Uploads - + Name i.e: file name @@ -24233,12 +23707,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> - - - - + Move in Queue... @@ -24263,7 +23732,7 @@ p, li { white-space: pre-wrap; } - + Anonymous end-to-end encrypted tunnel 0x @@ -24284,7 +23753,7 @@ p, li { white-space: pre-wrap; } - + @@ -24317,17 +23786,7 @@ p, li { white-space: pre-wrap; } - - Warning - - - - - On Windows systems, writing in the middle of large empty files may hang the software for several seconds. Do you want to use this option anyway? - - - - + Change file name @@ -24342,7 +23801,7 @@ p, li { white-space: pre-wrap; } - + Expand all @@ -24469,18 +23928,23 @@ 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> + + + + Columns - + File Transfers - + Path @@ -24490,7 +23954,7 @@ p, li { white-space: pre-wrap; } - + Could not delete preview file @@ -24500,7 +23964,7 @@ p, li { white-space: pre-wrap; } - + Create Collection... @@ -24515,7 +23979,7 @@ p, li { white-space: pre-wrap; } - + Collection @@ -24525,7 +23989,7 @@ p, li { white-space: pre-wrap; } - + Anonymous tunnel 0x @@ -24939,17 +24403,12 @@ p, li { white-space: pre-wrap; } 蔨單 - + Enable Retroshare WEB Interface - - Status: - - - - + Web parameters @@ -24989,27 +24448,17 @@ p, li { white-space: pre-wrap; } - + Please select the directory were to find retroshare webinterface files - - Missing passphrase - - - - - Please set a passphrase to proect the access to 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 @@ -25019,12 +24468,12 @@ p, li { white-space: pre-wrap; } - + failed to start Webinterface - + Webinterface @@ -25161,7 +24610,7 @@ p, li { white-space: pre-wrap; } - + Page Name @@ -25176,7 +24625,7 @@ p, li { white-space: pre-wrap; } - + << @@ -25264,7 +24713,7 @@ p, li { white-space: pre-wrap; } WikiEditDialog - + Page Edit History @@ -25299,7 +24748,7 @@ p, li { white-space: pre-wrap; } - + \/ @@ -25329,18 +24778,14 @@ p, li { white-space: pre-wrap; } - - History - - - - + + Show Edit History - + Status @@ -25361,7 +24806,7 @@ p, li { white-space: pre-wrap; } - + Submit @@ -25444,7 +24889,16 @@ p, li { white-space: pre-wrap; } - + ... + ... + + + + Refresh + + + + Settings @@ -25459,7 +24913,7 @@ p, li { white-space: pre-wrap; } - + Who to Follow @@ -25479,7 +24933,7 @@ p, li { white-space: pre-wrap; } - + Most Recent @@ -25509,7 +24963,11 @@ p, li { white-space: pre-wrap; } - + New + 新建 + + + Yourself @@ -25519,7 +24977,7 @@ p, li { white-space: pre-wrap; } - + RetroShare @@ -25582,42 +25040,35 @@ p, li { white-space: pre-wrap; } 蔨單 - - + + Masthead + + + MastHead background Image - + Select Image - + Tagline: - Remove - åˆŖé™¤ - - - Location: - + Load Masthead - - - Use the mouse to zoom and adjust the image for your background. - - WireGroupItem @@ -25662,41 +25113,11 @@ p, li { white-space: pre-wrap; } Edit Profile - - - Own - - - - - N/A - - - - - Following - - - - - Unfollow - - - - - Other - - - - - Follow - - misc - + Unknown Unknown (size) 未矄 @@ -25774,7 +25195,7 @@ p, li { white-space: pre-wrap; } - + k e.g: 3.1 k @@ -25811,7 +25232,7 @@ p, li { white-space: pre-wrap; } pgpid_item_model - + Do you accept connections signed by this profile? diff --git a/retroshare-gui/src/main.cpp b/retroshare-gui/src/main.cpp index 228f24067..3361597c8 100644 --- a/retroshare-gui/src/main.cpp +++ b/retroshare-gui/src/main.cpp @@ -22,17 +22,12 @@ #include "util/stacktrace.h" #include "util/argstream.h" -#include "retroshare/rswebui.h" CrashStackTrace gCrashStackTrace; #include #include #include -#include -#include -#include -#include #include #include "gui/common/FilesDefs.h" @@ -95,10 +90,10 @@ CrashStackTrace gCrashStackTrace; extern "C" { __declspec(dllexport) __cdecl BOOL _OPENSSL_isservice(void) { - DWORD sess; - if (ProcessIdToSessionId(GetCurrentProcessId(),&sess)) - return sess==0; - return FALSE; + DWORD sess; + if (ProcessIdToSessionId(GetCurrentProcessId(),&sess)) + return sess==0; + return FALSE; } } #endif @@ -110,468 +105,286 @@ __declspec(dllexport) __cdecl BOOL _OPENSSL_isservice(void) #include "gui/notifyqt.h" #include -static void showHelp(const argstream& as) -{ - RsInfo() << "\n" << - "+================================================================+\n" - "| o---o o |\n" - "| \\ / - Retroshare GUI - / \\ |\n" - "| o o---o |\n" - "+================================================================+" - << std::endl ; - - std::cerr << as.usage(false) << std::endl; - - char *argv[1]; - int argc=0; - QApplication dummyApp (argc, argv); // needed for QMessageBox - QMessageBox box; - QString text = QString::fromUtf8(as.usage(false,false).c_str()); - QFont font("Courier New",10,50,false); - font.setStyleHint(QFont::TypeWriter,QFont::PreferMatch); - font.setStyle(QFont::StyleNormal); - font.setBold(true); - box.setFont(font); - box.setInformativeText(text); - box.setWindowTitle(QObject::tr("Retroshare commandline arguments")); - - // now compute the size of text and set the size of the box. For the record, this doesn't work... - box.setBaseSize( QSize(QFontMetricsF(font).width(text),QFontMetricsF(font).height()*text.count('\n')) ); - box.exec(); -} - -static bool notifyRunningInstance() -{ - // Connect to the Local Server of the main process to notify it - // that a new process had been started - - RsInfo() << "Trying to contact running instance through socket \"" << TARGET << "\""; - QLocalSocket localSocket; - localSocket.connectToServer(QString(TARGET)); -#ifdef DEBUG - std::cerr << "RsApplication::RsApplication waitForConnected to other instance." << std::endl; -#endif - if( localSocket.waitForConnected(100) ) - { -#ifdef DEBUG - std::cerr << "RsApplication::RsApplication Connection etablished. Waiting for disconnection." << std::endl; -#endif - localSocket.waitForDisconnected(1000); - return true; - } - else - { -#ifdef DEBUG - std::cerr << "RsApplication::RsApplication failed to connect to other instance." << std::endl; -#endif - return false; - } -} - -static void sendArgsToRunningInstance(const QStringList& args) -{ - QString serverName = QString(TARGET); - - // load into shared memory - QBuffer buffer; - buffer.open(QBuffer::ReadWrite); - QDataStream out(&buffer); - out << args; - int size = buffer.size(); - - QSharedMemory newArgs; - newArgs.setKey(serverName + "_newArgs"); - if (newArgs.isAttached()) newArgs.detach(); - - if (!newArgs.create(size)) { - std::cerr << "(EE) RsApplication::RsApplication Unable to create shared memory segment of size:" - << size << " error:" << newArgs.errorString().toStdString() << "." << std::endl; -#ifdef Q_OS_UNIX - std::cerr << "Look with `ipcs -m` for nattch==0 segment. And remove it with `ipcrm -m 'shmid'`." << std::endl; - //No need for windows, as it removes shared segment directly even when crash. -#endif - newArgs.detach(); - ::exit(EXIT_FAILURE); - } - newArgs.lock(); - char *to = (char*)newArgs.data(); - const char *from = buffer.data().data(); - memcpy(to, from, qMin(newArgs.size(), size)); - newArgs.unlock(); - - std::cerr << "RsApplication::RsApplication waitForConnected to other instance." << std::endl; - if(notifyRunningInstance()) - { - newArgs.detach(); - std::cerr << "RsApplication::RsApplication Arguments was sended." << std::endl - << " To disable it, in Options - General - Misc," << std::endl - << " uncheck \"Use Local Server to get new Arguments\"." << std::endl; - ::exit(EXIT_SUCCESS); // Terminate the program using STDLib's exit function - } - else - std::cerr << "RsApplication::RsApplication failed to connect to other instance." << std::endl; - newArgs.detach(); -} - -static bool setLanguage(const std::string& language) -{ - if(!language.empty()) - { - if(!LanguageSupport::translate(QString::fromStdString(language))) - { - RsErr() << "Language \"" << language << "\" is not supported." ; - - QString s; - for(QString ss:LanguageSupport::languageCodes()) - s += ss + ", " ; - - RsErr() << "Possible choices are: " << s.toStdString(); - return false; - } - return true; - } - else - { - LanguageSupport::translate(LanguageSupport::defaultLanguageCode()); - return true; - } -} - - static void displayWarningAboutDSAKeys() { - std::map > unsupported_keys; - RsAccounts::GetUnsupportedKeys(unsupported_keys); + std::map > unsupported_keys; + RsAccounts::GetUnsupportedKeys(unsupported_keys); + + if(unsupported_keys.empty()) + return ; - if(unsupported_keys.empty()) - return ; + QMessageBox msgBox; - QMessageBox msgBox; + QString txt = QObject::tr("You appear to have nodes associated to DSA keys:"); + txt += "
    " ; + for(std::map >::const_iterator it(unsupported_keys.begin());it!=unsupported_keys.end();++it) + { + txt += "
  • " + QString::fromStdString(it->first) ; + txt += "
      " ; - QString txt = QObject::tr("You appear to have nodes associated to DSA keys:"); - txt += "
        " ; - for(std::map >::const_iterator it(unsupported_keys.begin());it!=unsupported_keys.end();++it) - { - txt += "
      • " + QString::fromStdString(it->first) ; - txt += "
          " ; + for(uint32_t i=0;isecond.size();++i) + txt += "
        • " + QString::fromStdString(it->second[i]) + "
        • " ; - for(uint32_t i=0;isecond.size();++i) - txt += "
        • " + QString::fromStdString(it->second[i]) + "
        • " ; + txt += "
        " ; + txt += "
      • " ; + } + txt += "
      " ; - txt += "
    " ; - txt += "
  • " ; - } - txt += "
" ; - - msgBox.setText(txt) ; - msgBox.setInformativeText(QObject::tr("DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that.")); - msgBox.setStandardButtons(QMessageBox::Ok); - msgBox.setDefaultButton(QMessageBox::Ok); + msgBox.setText(txt) ; + msgBox.setInformativeText(QObject::tr("DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that.")); + msgBox.setStandardButtons(QMessageBox::Ok); + msgBox.setDefaultButton(QMessageBox::Ok); msgBox.setWindowIcon(FilesDefs::getIconFromQtResourcePath(":/icons/logo_128.png")); - msgBox.exec(); + msgBox.exec(); } #ifdef WINDOWS_SYS #if QT_VERSION >= QT_VERSION_CHECK (5, 0, 0) && QT_VERSION < QT_VERSION_CHECK (5, 3, 0) QStringList filedialog_open_filenames_hook(QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options) { - return QFileDialog::getOpenFileNames(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); + return QFileDialog::getOpenFileNames(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); } QString filedialog_open_filename_hook(QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options) { - return QFileDialog::getOpenFileName(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); + return QFileDialog::getOpenFileName(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); } QString filedialog_save_filename_hook(QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options) { - return QFileDialog::getSaveFileName(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); + return QFileDialog::getSaveFileName(parent, caption, dir, filter, selectedFilter, options | QFileDialog::DontUseNativeDialog); } QString filedialog_existing_directory_hook(QWidget *parent, const QString &caption, const QString &dir, QFileDialog::Options options) { - return QFileDialog::getExistingDirectory(parent, caption, dir, options | QFileDialog::DontUseNativeDialog); + return QFileDialog::getExistingDirectory(parent, caption, dir, options | QFileDialog::DontUseNativeDialog); } #endif #endif int main(int argc, char *argv[]) -{ +{ #ifdef WINDOWS_SYS - // The current directory of the application is changed when using the native dialog on Windows - // This is a quick fix until libretroshare is using a absolute path in the portable Version + // The current directory of the application is changed when using the native dialog on Windows + // This is a quick fix until libretroshare is using a absolute path in the portable Version #if QT_VERSION >= QT_VERSION_CHECK (5, 3, 0) - // Do we need a solution in v0.6? + // Do we need a solution in v0.6? #endif #if QT_VERSION >= QT_VERSION_CHECK (5, 0, 0) && QT_VERSION < QT_VERSION_CHECK (5, 3, 0) - typedef QStringList (*_qt_filedialog_open_filenames_hook)(QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); - typedef QString (*_qt_filedialog_open_filename_hook) (QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); - typedef QString (*_qt_filedialog_save_filename_hook) (QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); - typedef QString (*_qt_filedialog_existing_directory_hook)(QWidget *parent, const QString &caption, const QString &dir, QFileDialog::Options options); + typedef QStringList (*_qt_filedialog_open_filenames_hook)(QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); + typedef QString (*_qt_filedialog_open_filename_hook) (QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); + typedef QString (*_qt_filedialog_save_filename_hook) (QWidget * parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedFilter, QFileDialog::Options options); + typedef QString (*_qt_filedialog_existing_directory_hook)(QWidget *parent, const QString &caption, const QString &dir, QFileDialog::Options options); - extern Q_GUI_EXPORT _qt_filedialog_open_filename_hook qt_filedialog_open_filename_hook; - extern Q_GUI_EXPORT _qt_filedialog_open_filenames_hook qt_filedialog_open_filenames_hook; - extern Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook; - extern Q_GUI_EXPORT _qt_filedialog_existing_directory_hook qt_filedialog_existing_directory_hook; + extern Q_GUI_EXPORT _qt_filedialog_open_filename_hook qt_filedialog_open_filename_hook; + extern Q_GUI_EXPORT _qt_filedialog_open_filenames_hook qt_filedialog_open_filenames_hook; + extern Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook; + extern Q_GUI_EXPORT _qt_filedialog_existing_directory_hook qt_filedialog_existing_directory_hook; - qt_filedialog_open_filename_hook = filedialog_open_filename_hook; - qt_filedialog_open_filenames_hook = filedialog_open_filenames_hook; - qt_filedialog_save_filename_hook = filedialog_save_filename_hook; - qt_filedialog_existing_directory_hook = filedialog_existing_directory_hook; + qt_filedialog_open_filename_hook = filedialog_open_filename_hook; + qt_filedialog_open_filenames_hook = filedialog_open_filenames_hook; + qt_filedialog_save_filename_hook = filedialog_save_filename_hook; + qt_filedialog_existing_directory_hook = filedialog_existing_directory_hook; #endif #if QT_VERSION < QT_VERSION_CHECK (5, 0, 0) - extern bool Q_GUI_EXPORT qt_use_native_dialogs; - qt_use_native_dialogs = false; + extern bool Q_GUI_EXPORT qt_use_native_dialogs; + qt_use_native_dialogs = false; #endif - { - /* Set the current directory to the application dir, - because the start dir with autostart from the registry run key is not the exe dir */ - QApplication app(argc, argv); - QDir::setCurrent(QCoreApplication::applicationDirPath()); - } + { + /* Set the current directory to the application dir, + because the start dir with autostart from the registry run key is not the exe dir */ + QApplication app(argc, argv); + QDir::setCurrent(QCoreApplication::applicationDirPath()); + } #endif #ifdef SIGFPE_DEBUG feenableexcept(FE_INVALID | FE_DIVBYZERO); #endif - QStringList args = char_array_to_stringlist(argv+1, argc-1); + QStringList args = char_array_to_stringlist(argv+1, argc-1); Q_INIT_RESOURCE(images); Q_INIT_RESOURCE(icons); - // This is needed to allocate rsNotify, so that it can be used to ask for PGP passphrase - // - RsControl::earlyInitNotificationSystem() ; + // Loop through all command-line args/values to get help wanted before RsInit exit. + for (int i = 0; i < args.size(); ++i) { + QString arg; + /* Get the argument name and set a blank value */ + arg = args.at(i); + if ((arg.toLower() == "-h") || (arg.toLower() == "--help")) { + QApplication dummyApp (argc, argv); // needed for QMessageBox + Rshare::showUsageMessageBox(); + } + } - NotifyQt *notify = NotifyQt::Create(); - rsNotify->registerNotifyClient(notify); + // This is needed to allocate rsNotify, so that it can be used to ask for PGP passphrase + // + RsControl::earlyInitNotificationSystem() ; - /* RetroShare Core Objects */ - RsInit::InitRsConfig(); + NotifyQt *notify = NotifyQt::Create(); + rsNotify->registerNotifyClient(notify); - RsGUIConfigOptions conf; + /* RetroShare Core Objects */ + RsInit::InitRsConfig(); - std::string rslink,rsfile; - std::list links_and_files; - std::string loglevel="off"; - std::string logfilename,language,guistyle,guistylesheetfile; + RsConfigOptions conf; - argstream as(argc,argv); - as >> option( 's',"stderr" ,conf.outStderr ,"output to stderr instead of log file " ) - >> option( 'u',"udp" ,conf.udpListenerOnly ,"Only listen to UDP " ) - >> option( 'R',"reset" ,conf.optResetParams ,"reset retroshare parameters " ) - >> parameter('c',"base-dir" ,conf.optBaseDir ,"directory" ,"Set base directory " ,false) - >> parameter('l',"log-file" ,logfilename ,"logfile" ,"Set Log filename " ,false) - >> parameter('d',"debug-level" ,loglevel ,"level (debug,info,notice,warn,error,off)","Set debug level " ,false) - >> parameter('i',"ip-address" ,conf.forcedInetAddress ,"nnn.nnn.nnn.nnn" ,"Force IP address " ,false) - >> parameter('p',"port" ,conf.forcedPort ,"port" ,"Set listenning port " ,false) - >> parameter('o',"opmode" ,conf.opModeStr ,"opmode (Full, NoTurtle, Gaming, Minimal)","Set mode" ,false) - >> parameter('t',"tor" ,conf.userSuppliedTorExecutable,"path" ,"supply full tor executable path " ,false) - >> parameter('g',"style" ,guistyle ,"style (fusion,windows,gtk2,breeze)" ,"set GUI style" ,false) - >> parameter('k',"style" ,guistylesheetfile ,"file" ,"gui stylesheet file" ,false) - >> parameter('L',"lang" ,language ,"langage (fr,cn,...)" ,"set language" ,false) - >> parameter('r',"link" ,rslink ,"retroshare link" ,"retroshare link to open (passed to running server)" ,false) - >> parameter('f',"rsfile" ,rsfile ,"rsfile" ,"rscollection file to open (passed to running server)" ,false); + argstream as(argc,argv); + as >> option('s',"stderr" ,conf.outStderr ,"output to stderr instead of log file." ) + >> option('u',"udp" ,conf.udpListenerOnly,"Only listen to UDP." ) + >> parameter('c',"base-dir" ,conf.optBaseDir ,"directory", "Set base directory." ,false) + >> parameter('l',"log-file" ,conf.logfname ,"logfile" ,"Set Log filename." ,false) + >> parameter('d',"debug-level" ,conf.debugLevel ,"level" ,"Set debug level." ,false) + >> parameter('i',"ip-address" ,conf.forcedInetAddress,"nnn.nnn.nnn.nnn", "Force IP address to use (if cannot be detected)." ,false) + >> parameter('p',"port" ,conf.forcedPort ,"port" ,"Set listenning port to use." ,false) + >> parameter('o',"opmode" ,conf.opModeStr ,"opmode" ,"Set Operating mode (Full, NoTurtle, Gaming, Minimal)." ,false) + >> parameter('t',"opmode" ,conf.userSuppliedTorExecutable,"tor" ,"supply full tor eecutable path." ,false); #ifdef RS_JSONAPI - as >> parameter('J', "jsonApiPort" ,conf.jsonApiPort ,"jsonApiPort" ,"Enable JSON API on the specified port" ,false) - >> parameter('P', "jsonApiBindAddress",conf.jsonApiBindAddress ,"jsonApiBindAddress" ,"JSON API Bind Address " ,false); + as >> parameter('J', "jsonApiPort", conf.jsonApiPort, "jsonApiPort", "Enable JSON API on the specified port", false ) + >> parameter('P', "jsonApiBindAddress", conf.jsonApiBindAddress, "jsonApiBindAddress", "JSON API Bind Address.", false); #endif // ifdef RS_JSONAPI #ifdef LOCALNET_TESTING - as >> parameter('R',"restrict-port" ,portRestrictions ,"port1-port2","Apply port restriction " ,false); + as >> parameter('R',"restrict-port" ,portRestrictions ,"port1-port2","Apply port restriction" ,false); #endif // ifdef LOCALNET_TESTING #ifdef RS_AUTOLOGIN - as >> option('a',"auto-login" ,conf.autoLogin ,"AutoLogin (Windows Only) + StartMinimised"); + as >> option('a',"auto-login" ,conf.autoLogin ,"AutoLogin (Windows Only) + StartMinimised"); #endif // ifdef RS_AUTOLOGIN - as >> values(std::back_inserter(links_and_files),"links and rscollection files") - >> help('h',"help",QObject::tr("Display this help").toStdString().c_str()); - - if(!as.isOk()) - { - std::cerr << "Incorrect arguments." << std::endl; - std::cerr << as.usage() << std::endl; - return 0; - } - conf.logFileName = QString::fromStdString(logfilename); - conf.logLevel = QString::fromStdString(loglevel); // these will be checked when used in RsApplication - conf.guiStyle = QString::fromStdString(guistyle); // these will be checked when used in RsApplication - conf.guiStyleSheetFile = QString::fromUtf8(guistylesheetfile.c_str());// these will be checked when used in RsApplication - - if(as.helpRequested()) - { - showHelp(as); - return 0; - } - // Look for parameters to be transmitted to running server - - if((!rslink.empty() || !rsfile.empty() || !links_and_files.empty() || !conf.opModeStr.empty()) && notifyRunningInstance()) - { - QStringList args; - RsErr() << "Sending rscollection files, retroshare links and opmode parameters to the runnning retroshare server." ; - - if(!rslink.empty()) { args.push_back("-l"); args.push_back(QString::fromUtf8(rslink.c_str())); } - if(!rsfile.empty()) { args.push_back("-f"); args.push_back(QString::fromUtf8(rsfile.c_str())); } - - for(auto s:links_and_files) - args.push_back(QString::fromUtf8(s.c_str())); - - if(!conf.opModeStr.empty()) { args.push_back("-o"); args.push_back(QString::fromStdString(conf.opModeStr)); } - - sendArgsToRunningInstance(args); - return 0; - } - - // Now start RS login system conf.main_executable_path = argv[0]; - int initResult = RsInit::InitRetroShare(conf); + int initResult = RsInit::InitRetroShare(conf); - if(initResult == RS_INIT_NO_KEYRING) // happens when we already have accounts, but no pgp key. This is when switching to the openpgp-sdk version. - { - QApplication dummyApp (argc, argv); // needed for QMessageBox - /* Translate into the desired language */ + if(initResult == RS_INIT_NO_KEYRING) // happens when we already have accounts, but no pgp key. This is when switching to the openpgp-sdk version. + { + QApplication dummyApp (argc, argv); // needed for QMessageBox + /* Translate into the desired language */ + LanguageSupport::translate(LanguageSupport::defaultLanguageCode()); - if(!setLanguage(language)) - return 1; - - QMessageBox msgBox; - msgBox.setText(QObject::tr("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.

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.")); - msgBox.setInformativeText(QObject::tr("Choose between:
  • Ok to copy the existing keyring from gnupg (safest bet), or
  • Close without saving 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).
  • Cancel to quit and forge a keyring by yourself (needs some PGP skills)
")); - msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Discard | QMessageBox::Cancel); - msgBox.setDefaultButton(QMessageBox::Ok); + QMessageBox msgBox; + msgBox.setText(QObject::tr("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.

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.")); + msgBox.setInformativeText(QObject::tr("Choose between:
  • Ok to copy the existing keyring from gnupg (safest bet), or
  • Close without saving 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).
  • Cancel to quit and forge a keyring by yourself (needs some PGP skills)
")); + msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Discard | QMessageBox::Cancel); + msgBox.setDefaultButton(QMessageBox::Ok); msgBox.setWindowIcon(FilesDefs::getIconFromQtResourcePath(":/icons/logo_128.png")); - int ret = msgBox.exec(); + int ret = msgBox.exec(); - if(ret == QMessageBox::Cancel) - return 0 ; - if(ret == QMessageBox::Ok) - { - if(!RsAccounts::CopyGnuPGKeyrings()) - return 0 ; + if(ret == QMessageBox::Cancel) + return 0 ; + if(ret == QMessageBox::Ok) + { + if(!RsAccounts::CopyGnuPGKeyrings()) + return 0 ; - initResult = RsInit::InitRetroShare(conf); + initResult = RsInit::InitRetroShare(conf); - displayWarningAboutDSAKeys() ; + displayWarningAboutDSAKeys() ; - } - else - initResult = RS_INIT_OK ; - } + } + else + initResult = RS_INIT_OK ; + } - if (initResult < 0) { - /* Error occured */ - QApplication dummyApp (argc, argv); // needed for QMessageBox - /* Translate into the desired language */ + if (initResult < 0) { + /* Error occured */ + QApplication dummyApp (argc, argv); // needed for QMessageBox + /* Translate into the desired language */ + LanguageSupport::translate(LanguageSupport::defaultLanguageCode()); - if(!setLanguage(language)) - return 1; + displayWarningAboutDSAKeys(); - displayWarningAboutDSAKeys(); - - QMessageBox mb(QMessageBox::Critical, QObject::tr("RetroShare"), "", QMessageBox::Ok); + QMessageBox mb(QMessageBox::Critical, QObject::tr("RetroShare"), "", QMessageBox::Ok); mb.setWindowIcon(FilesDefs::getIconFromQtResourcePath(":/icons/logo_128.png")); - switch (initResult) - { - case RS_INIT_AUTH_FAILED: - std::cerr << "RsInit::InitRetroShare AuthGPG::InitAuth failed" << std::endl; - mb.setText(QObject::tr("Initialization failed. Wrong or missing installation of PGP.")); - break; - default: - /* Unexpected return code */ - std::cerr << "RsInit::InitRetroShare unexpected return code " << initResult << std::endl; - mb.setText(QObject::tr("An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'.").arg(initResult)); - break; - } - mb.exec(); - return 1; - } + switch (initResult) + { + case RS_INIT_AUTH_FAILED: + std::cerr << "RsInit::InitRetroShare AuthGPG::InitAuth failed" << std::endl; + mb.setText(QObject::tr("Initialization failed. Wrong or missing installation of PGP.")); + break; + default: + /* Unexpected return code */ + std::cerr << "RsInit::InitRetroShare unexpected return code " << initResult << std::endl; + mb.setText(QObject::tr("An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'.").arg(initResult)); + break; + } + mb.exec(); + return 1; + } - /* create global settings object - path maybe wrong, when no profile exist - in this case it can be use only for default values */ - RshareSettings::Create (); + /* create global settings object + path maybe wrong, when no profile exist + in this case it can be use only for default values */ + RshareSettings::Create (); - if(LanguageSupport::isValidLanguageCode(QString::fromStdString(language))) - conf.language = QString::fromStdString(language); + /* Setup The GUI Stuff */ + Rshare rshare(args, argc, argv, QString::fromUtf8(RsAccounts::ConfigDirectory().c_str())); - /* Setup The GUI Stuff */ - //Rshare rshare(args, argc, argv, QString::fromUtf8(RsAccounts::ConfigDirectory().c_str())); - RsApplication rshare(conf); + /* Start RetroShare */ + QString sDefaultGXSIdToCreate = ""; + switch (initResult) { + case RS_INIT_OK: + { + /* Login Dialog */ + /* check for existing Certificate */ + bool genCert = false; + std::list accountIds; + if (RsAccounts::GetAccountIds(accountIds) && (accountIds.size() > 0)) + { + StartDialog sd; + if (sd.exec() == QDialog::Rejected) { + return 1; + } - if(!setLanguage(language)) - return 1; + /* if we're logged in */ + genCert = sd.requestedNewCert(); + } + else + { + genCert = true; + } - /* Start RetroShare */ - QString sDefaultGXSIdToCreate = ""; - switch (initResult) { - case RS_INIT_OK: - { - /* Login Dialog */ - /* check for existing Certificate */ - bool genCert = false; - std::list accountIds; - if (RsAccounts::GetAccountIds(accountIds) && (accountIds.size() > 0)) - { - StartDialog sd; - if (sd.exec() == QDialog::Rejected) { - return 1; - } + if (genCert) + { + GenCertDialog gd(false); - /* if we're logged in */ - genCert = sd.requestedNewCert(); - } - else - { - genCert = true; - } + if (gd.exec () == QDialog::Rejected) + return 1; - if (genCert) - { - GenCertDialog gd(false); + sDefaultGXSIdToCreate = gd.getGXSNickname(); + } - if (gd.exec () == QDialog::Rejected) - return 1; + //splashScreen.show(); + } + break; + case RS_INIT_HAVE_ACCOUNT: + { + //splashScreen.show(); + //splashScreen.showMessage(rshare.translate("SplashScreen", "Load profile"), Qt::AlignHCenter | Qt::AlignBottom); - sDefaultGXSIdToCreate = gd.getGXSNickname(); - } + RsPeerId preferredId; + RsAccounts::GetPreferredAccountId(preferredId); - //splashScreen.show(); - } - break; - case RS_INIT_HAVE_ACCOUNT: - { - //splashScreen.show(); - //splashScreen.showMessage(rshare.translate("SplashScreen", "Load profile"), Qt::AlignHCenter | Qt::AlignBottom); + // true: note auto-login is active + Rshare::loadCertificate(preferredId, true); + } + break; + default: + /* Unexpected return code */ + std::cerr << "RsInit::InitRetroShare unexpected return code " << initResult << std::endl; + QMessageBox::warning(0, QObject::tr("RetroShare"), QObject::tr("An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'.").arg(initResult)); + return 1; + } - RsPeerId preferredId; - RsAccounts::GetPreferredAccountId(preferredId); + /* recreate global settings object, now with correct path */ + RshareSettings::Create(true); + Rshare::resetLanguageAndStyle(); - // true: note auto-login is active - if(!RsApplication::loadCertificate(preferredId, true)) - { - RsErr() << "Retroshare auto-login startup failed." ; - return 1; - } - } - break; - default: - /* Unexpected return code */ - std::cerr << "RsInit::InitRetroShare unexpected return code " << initResult << std::endl; - QMessageBox::warning(0, QObject::tr("RetroShare"), QObject::tr("An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'.").arg(initResult)); - return 1; - } - - /* recreate global settings object, now with correct path, specific to the selected node */ - RshareSettings::Create(true); - RsApplication::resetLanguageAndStyle(); - - SoundManager::create(); + SoundManager::create(); bool is_hidden_node = false; bool is_auto_tor = false ; @@ -580,15 +393,15 @@ feenableexcept(FE_INVALID | FE_DIVBYZERO); RsAccounts::getCurrentAccountOptions(is_hidden_node,is_auto_tor,is_first_time); if(is_auto_tor) - { + { if(!conf.userSuppliedTorExecutable.empty()) RsTor::setTorExecutablePath(conf.userSuppliedTorExecutable); - // Now that we know the Tor service running, and we know the SSL id, we can make sure it provides a viable hidden service + // Now that we know the Tor service running, and we know the SSL id, we can make sure it provides a viable hidden service std::string tor_hidden_service_dir = RsAccounts::AccountDirectory() + "/hidden_service/" ; - RsTor::setTorDataDirectory(RsApplication::dataDirectory().toStdString() + "/tor/"); + RsTor::setTorDataDirectory(Rshare::dataDirectory().toStdString() + "/tor/"); RsTor::setHiddenServiceDirectory(tor_hidden_service_dir); // re-set it, because now it's changed to the specific location that is run RsDirUtil::checkCreateDirectory(std::string(tor_hidden_service_dir)) ; @@ -596,72 +409,72 @@ feenableexcept(FE_INVALID | FE_DIVBYZERO); //RsTor::setupHiddenService(); if(! RsTor::start() || RsTor::hasError()) - { + { QMessageBox::critical(NULL,QObject::tr("Cannot start Tor Manager!"),QObject::tr("Tor cannot be started on your system: \n\n")+QString::fromStdString(RsTor::errorMessage())) ; - return 1 ; - } + return 1 ; + } - { + { TorControlDialog tcd; - QString error_msg ; - tcd.show(); + QString error_msg ; + tcd.show(); - while(tcd.checkForTor(error_msg) != TorControlDialog::TOR_STATUS_OK || tcd.checkForHiddenService() != TorControlDialog::HIDDEN_SERVICE_STATUS_OK) // runs until some status is reached: either tor works, or it fails. - { - QCoreApplication::processEvents(); - rstime::rs_usleep(0.2*1000*1000) ; + while(tcd.checkForTor(error_msg) != TorControlDialog::TOR_STATUS_OK || tcd.checkForHiddenService() != TorControlDialog::HIDDEN_SERVICE_STATUS_OK) // runs until some status is reached: either tor works, or it fails. + { + QCoreApplication::processEvents(); + rstime::rs_usleep(0.2*1000*1000) ; - if(!error_msg.isNull()) - { - QMessageBox::critical(NULL,QObject::tr("Cannot start Tor"),QObject::tr("Sorry but Tor cannot be started on your system!\n\nThe error reported is:\"")+error_msg+"\"") ; - return 1; - } - } + if(!error_msg.isNull()) + { + QMessageBox::critical(NULL,QObject::tr("Cannot start Tor"),QObject::tr("Sorry but Tor cannot be started on your system!\n\nThe error reported is:\"")+error_msg+"\"") ; + return 1; + } + } - tcd.hide(); + tcd.hide(); - if(tcd.checkForHiddenService() != TorControlDialog::HIDDEN_SERVICE_STATUS_OK) - { - QMessageBox::critical(NULL,QObject::tr("Cannot start a hidden tor service!"),QObject::tr("It was not possible to start a hidden service.")) ; - return 1 ; - } - } - } + if(tcd.checkForHiddenService() != TorControlDialog::HIDDEN_SERVICE_STATUS_OK) + { + QMessageBox::critical(NULL,QObject::tr("Cannot start a hidden tor service!"),QObject::tr("It was not possible to start a hidden service.")) ; + return 1 ; + } + } + } QSplashScreen splashScreen(FilesDefs::getPixmapFromQtResourcePath(":/images/logo/logo_splash.png")/* , Qt::WindowStaysOnTopHint*/); - splashScreen.show(); - splashScreen.showMessage(rshare.translate("SplashScreen", "Load configuration"), Qt::AlignHCenter | Qt::AlignBottom); + splashScreen.show(); + splashScreen.showMessage(rshare.translate("SplashScreen", "Load configuration"), Qt::AlignHCenter | Qt::AlignBottom); - QCoreApplication::processEvents(); + QCoreApplication::processEvents(); - /* stop Retroshare if startup fails */ - if (!RsControl::instance()->StartupRetroShare()) - { - std::cerr << "libretroshare failed to startup!" << std::endl; - return 1; - } + /* stop Retroshare if startup fails */ + if (!RsControl::instance()->StartupRetroShare()) + { + std::cerr << "libretroshare failed to startup!" << std::endl; + return 1; + } if(is_auto_tor) - { - // Tor works with viable hidden service. Let's use it! + { + // Tor works with viable hidden service. Let's use it! std::string service_id ; std::string onion_address ; - uint16_t service_port ; - uint16_t service_target_port ; - uint16_t proxy_server_port ; + uint16_t service_port ; + uint16_t service_target_port ; + uint16_t proxy_server_port ; std::string service_target_address ; std::string proxy_server_address ; RsTor::getHiddenServiceInfo(service_id,onion_address,service_port,service_target_address,service_target_port); RsTor::getProxyServerInfo(proxy_server_address,proxy_server_port) ; - std::cerr << "Got hidden service info: " << std::endl; + std::cerr << "Got hidden service info: " << std::endl; std::cerr << " onion address : " << onion_address << std::endl; std::cerr << " service_id : " << service_id << std::endl; - std::cerr << " service port : " << service_port << std::endl; - std::cerr << " target port : " << service_target_port << std::endl; + std::cerr << " service port : " << service_port << std::endl; + std::cerr << " target port : " << service_target_port << std::endl; std::cerr << " target address : " << service_target_address << std::endl; std::cerr << "Setting proxy server to " << service_target_address << ":" << service_target_port << std::endl; @@ -669,132 +482,130 @@ feenableexcept(FE_INVALID | FE_DIVBYZERO); rsPeers->setLocalAddress(rsPeers->getOwnId(), service_target_address, service_target_port); rsPeers->setHiddenNode(rsPeers->getOwnId(), onion_address, service_port); rsPeers->setProxyServer(RS_HIDDEN_TYPE_TOR, proxy_server_address,proxy_server_port) ; - } + } - RsApplication::initPlugins(); + Rshare::initPlugins(); - splashScreen.showMessage(rshare.translate("SplashScreen", "Create interface"), Qt::AlignHCenter | Qt::AlignBottom); - QCoreApplication::processEvents(); // forces splashscreen to show up + splashScreen.showMessage(rshare.translate("SplashScreen", "Create interface"), Qt::AlignHCenter | Qt::AlignBottom); + QCoreApplication::processEvents(); // forces splashscreen to show up - RsharePeerSettings::Create(); + RsharePeerSettings::Create(); - Emoticons::load(); - AvatarDialog::load(); + Emoticons::load(); + AvatarDialog::load(); - if (Settings->value(QString::fromUtf8("FirstRun"), true).toBool()) { - splashScreen.hide(); + if (Settings->value(QString::fromUtf8("FirstRun"), true).toBool()) { + splashScreen.hide(); - Settings->setValue(QString::fromUtf8("FirstRun"), false); + Settings->setValue(QString::fromUtf8("FirstRun"), false); - SoundManager::initDefault(); + SoundManager::initDefault(); #ifdef __APPLE__ - /* For OSX, we set the default to "cleanlooks", as the AQUA style hides some input boxes - * only on the first run - as the user might want to change it ;) - */ - QString osx_style("cleanlooks"); - RsApplication::setStyle(osx_style); - Settings->setInterfaceStyle(osx_style); + /* For OSX, we set the default to "cleanlooks", as the AQUA style hides some input boxes + * only on the first run - as the user might want to change it ;) + */ + QString osx_style("cleanlooks"); + Rshare::setStyle(osx_style); + Settings->setInterfaceStyle(osx_style); #endif // This is now disabled - as it doesn't add very much. // Need to make sure that defaults are sensible! #ifdef ENABLE_QUICKSTART_WIZARD - QuickStartWizard qstartWizard; - qstartWizard.exec(); + QuickStartWizard qstartWizard; + qstartWizard.exec(); #endif - } + } - MainWindow *w = MainWindow::Create (); - splashScreen.finish(w); + MainWindow *w = MainWindow::Create (); + splashScreen.finish(w); - if (!sDefaultGXSIdToCreate.isEmpty()) { - RsIdentityParameters params; - params.nickname = sDefaultGXSIdToCreate.toUtf8().constData(); - params.isPgpLinked = true; - params.mImage.clear(); - uint32_t token = 0; - rsIdentity->createIdentity(token, params); - } - // I'm using a signal to transfer the hashing info to the mainwindow, because Qt schedules signals properly to - // avoid clashes between infos from threads. - // + w->processLastArgs(); - qRegisterMetaType("RsPeerId") ; -#ifdef DEBUG - std::cerr << "connecting signals and slots" << std::endl ; -#endif - QObject::connect(notify,SIGNAL(deferredSignatureHandlingRequested()),notify,SLOT(handleSignatureEvent()),Qt::QueuedConnection) ; - QObject::connect(notify,SIGNAL(chatLobbyTimeShift(int)),notify,SLOT(handleChatLobbyTimeShift(int)),Qt::QueuedConnection) ; - QObject::connect(notify,SIGNAL(diskFull(int,int)) ,w ,SLOT(displayDiskSpaceWarning(int,int))) ; + if (!sDefaultGXSIdToCreate.isEmpty()) { + RsIdentityParameters params; + params.nickname = sDefaultGXSIdToCreate.toUtf8().constData(); + params.isPgpLinked = true; + params.mImage.clear(); + uint32_t token = 0; + rsIdentity->createIdentity(token, params); + } + // I'm using a signal to transfer the hashing info to the mainwindow, because Qt schedules signals properly to + // avoid clashes between infos from threads. + // + + qRegisterMetaType("FileDetail") ; + qRegisterMetaType("RsPeerId") ; + + std::cerr << "connecting signals and slots" << std::endl ; +// QObject::connect(notify,SIGNAL(gotTurtleSearchResult(qulonglong,FileDetail)),w->transfersDialog->searchDialog ,SLOT(updateFiles(qulonglong,FileDetail))) ; + QObject::connect(notify,SIGNAL(deferredSignatureHandlingRequested()),notify,SLOT(handleSignatureEvent()),Qt::QueuedConnection) ; + QObject::connect(notify,SIGNAL(chatLobbyTimeShift(int)),notify,SLOT(handleChatLobbyTimeShift(int)),Qt::QueuedConnection) ; + QObject::connect(notify,SIGNAL(diskFull(int,int)) ,w ,SLOT(displayDiskSpaceWarning(int,int))) ; QObject::connect(notify,SIGNAL(filesPostModChanged(bool)) ,w ,SLOT(postModDirectories(bool)) ,Qt::QueuedConnection ) ; - QObject::connect(notify,SIGNAL(transfersChanged()) ,w->transfersDialog ,SLOT(insertTransfers() )) ; - QObject::connect(notify,SIGNAL(publicChatChanged(int)) ,w->friendsDialog ,SLOT(publicChatChanged(int) )); - QObject::connect(notify,SIGNAL(neighboursChanged()) ,w->friendsDialog->networkDialog ,SLOT(securedUpdateDisplay())) ; + QObject::connect(notify,SIGNAL(transfersChanged()) ,w->transfersDialog ,SLOT(insertTransfers() )) ; + QObject::connect(notify,SIGNAL(publicChatChanged(int)) ,w->friendsDialog ,SLOT(publicChatChanged(int) )); + QObject::connect(notify,SIGNAL(neighboursChanged()) ,w->friendsDialog->networkDialog ,SLOT(securedUpdateDisplay())) ; - QObject::connect(notify,SIGNAL(chatStatusChanged(const QString&,const QString&,bool)),w->friendsDialog,SLOT(updatePeerStatusString(const QString&,const QString&,bool))); - QObject::connect(notify,SIGNAL(ownStatusMessageChanged()),w->friendsDialog,SLOT(loadmypersonalstatus())); + QObject::connect(notify,SIGNAL(chatStatusChanged(const QString&,const QString&,bool)),w->friendsDialog,SLOT(updatePeerStatusString(const QString&,const QString&,bool))); + QObject::connect(notify,SIGNAL(ownStatusMessageChanged()),w->friendsDialog,SLOT(loadmypersonalstatus())); // QObject::connect(notify,SIGNAL(logInfoChanged(const QString&)) ,w->friendsDialog->networkDialog,SLOT(setLogInfo(QString))) ; - QObject::connect(notify,SIGNAL(discInfoChanged()) ,w->friendsDialog->networkView,SLOT(update()),Qt::QueuedConnection) ; - QObject::connect(notify,SIGNAL(errorOccurred(int,int,const QString&)),w,SLOT(displayErrorMessage(int,int,const QString&))) ; + QObject::connect(notify,SIGNAL(discInfoChanged()) ,w->friendsDialog->networkView,SLOT(update()),Qt::QueuedConnection) ; + QObject::connect(notify,SIGNAL(errorOccurred(int,int,const QString&)),w,SLOT(displayErrorMessage(int,int,const QString&))) ; - w->installGroupChatNotifier(); + w->installGroupChatNotifier(); - /* only show window, if not startMinimized */ - if (RsInit::getStartMinimised() || Settings->getStartMinimized()) - { - splashScreen.close(); - } else { - w->show(); - } + /* only show window, if not startMinimized */ + if (RsInit::getStartMinimised() || Settings->getStartMinimized()) + { + splashScreen.close(); + } else { + w->show(); + } - /* Startup a Timer to keep the gui's updated */ - QTimer *timer = new QTimer(w); - timer -> connect(timer, SIGNAL(timeout()), notify, SLOT(UpdateGUI())); - timer->start(1000); + /* Startup a Timer to keep the gui's updated */ + QTimer *timer = new QTimer(w); + timer -> connect(timer, SIGNAL(timeout()), notify, SLOT(UpdateGUI())); + timer->start(1000); - notify->enable() ; // enable notification system after GUI creation, to avoid data races in Qt. - - // Read webui params in settings. We cannot save them to some webui.cfg because cfg needs the node id and - // jsonapi is started before node ID selection in retroshare-service. + notify->enable() ; // enable notification system after GUI creation, to avoid data races in Qt. #ifdef RS_JSONAPI + JsonApiPage::checkStartJsonApi(); + #ifdef RS_WEBUI - conf.enableWebUI = Settings->getWebinterfaceEnabled(); - - if(!Settings->getWebinterfaceFilesDirectory().isNull()) - rsWebUi->setHtmlFilesDirectory(Settings->getWebinterfaceFilesDirectory().toStdString()); + WebuiPage::checkStartWebui(); // normally we should rather save the UI flags internally to p3webui #endif - RsInit::startupWebServices(conf,false); -#endif - - /* dive into the endless loop */ - int ti = rshare.exec(); - delete w ; - -#ifdef RS_JSONAPI - JsonApiPage::checkShutdownJsonApi(); #endif // RS_JSONAPI - /* cleanup */ - ChatDialog::cleanupChat(); + /* dive into the endless loop */ + int ti = rshare.exec(); + delete w ; + +#ifdef RS_JSONAPI + JsonApiPage::checkShutdownJsonApi(); +#endif // RS_JSONAPI + + /* cleanup */ + ChatDialog::cleanupChat(); #ifdef RS_ENABLE_GXS - RsGxsUpdateBroadcast::cleanup(); + RsGxsUpdateBroadcast::cleanup(); #endif - if (is_auto_tor) { - RsTor::stop(); - } + if (is_auto_tor) { + RsTor::stop(); + } - RsControl::instance()->rsGlobalShutDown(); + RsControl::instance()->rsGlobalShutDown(); - delete(soundManager); - soundManager = NULL; + delete(soundManager); + soundManager = NULL; - Settings->sync(); - delete(Settings); + Settings->sync(); + delete(Settings); - return ti ; + return ti ; } diff --git a/retroshare-gui/src/qss/retroclassic.qss b/retroshare-gui/src/qss/retroclassic.qss index eea7fdf25..02da3c18f 100644 --- a/retroshare-gui/src/qss/retroclassic.qss +++ b/retroshare-gui/src/qss/retroclassic.qss @@ -178,15 +178,3 @@ IdDialog QWidget#idTreeWidget { selection-background-color: #9FCBFF; show-decoration-selected: 1; } - -/* Wire */ -QLabel#label_masthead{ - border: 2px solid #CCCCCC; - border-radius: 4px; -} - -PulseReplySeperator QFrame#frame { - border: 2px solid #CCCCCC; - background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #EEEEEE, stop: 1 #CCCCCC); - border-radius: 10px} -} diff --git a/retroshare-gui/src/retroshare-gui.pro b/retroshare-gui/src/retroshare-gui.pro index 6f217db9c..b8e8365e0 100644 --- a/retroshare-gui/src/retroshare-gui.pro +++ b/retroshare-gui/src/retroshare-gui.pro @@ -304,9 +304,6 @@ macx { #DEFINES *= MAC_IDLE # for idle feature CONFIG -= uitools - - OBJECTIVE_SOURCES += gui/common/MacDockIconHandler.mm - OBJECTIVE_HEADERS += gui/common/MacDockIconHandler.h } ##################################### FreeBSD ###################################### @@ -451,7 +448,6 @@ HEADERS += rshare.h \ util/qtthreadsutils.h \ util/ClickableLabel.h \ util/AspectRatioPixmapLabel.h \ - util/FontSizeHandler.h \ gui/profile/ProfileWidget.h \ gui/profile/ProfileManager.h \ gui/profile/StatusMessage.h \ @@ -520,7 +516,6 @@ HEADERS += rshare.h \ gui/common/vmessagebox.h \ gui/common/RsUrlHandler.h \ gui/common/RsCollectionDialog.h \ - gui/common/RsCollectionModel.h \ gui/common/rwindow.h \ gui/common/rshtml.h \ gui/common/AvatarDefs.h \ @@ -818,7 +813,6 @@ SOURCES += main.cpp \ util/RichTextEdit.cpp \ util/ClickableLabel.cpp \ util/AspectRatioPixmapLabel.cpp \ - util/FontSizeHandler.cpp \ gui/profile/ProfileWidget.cpp \ gui/profile/StatusMessage.cpp \ gui/profile/ProfileManager.cpp \ @@ -848,7 +842,6 @@ SOURCES += main.cpp \ gui/common/ElidedLabel.cpp \ gui/common/vmessagebox.cpp \ gui/common/RsCollectionDialog.cpp \ - gui/common/RsCollectionModel.cpp \ gui/common/RsUrlHandler.cpp \ gui/common/rwindow.cpp \ gui/common/rshtml.cpp \ @@ -1227,7 +1220,6 @@ gxsthewire { gui/TheWire/PulseReply.h \ gui/TheWire/PulseReplySeperator.h \ gui/TheWire/PulseMessage.h \ - gui/TheWire/CustomFrame.h \ FORMS += gui/TheWire/WireDialog.ui \ gui/TheWire/WireGroupItem.ui \ @@ -1250,7 +1242,6 @@ gxsthewire { gui/TheWire/PulseReply.cpp \ gui/TheWire/PulseReplySeperator.cpp \ gui/TheWire/PulseMessage.cpp \ - gui/TheWire/CustomFrame.cpp \ RESOURCES += gui/TheWire/TheWire_images.qrc } @@ -1259,7 +1250,6 @@ identities { HEADERS += \ gui/Identity/IdDialog.h \ - gui/Identity/IdentityListModel.h \ gui/Identity/IdEditDialog.h \ gui/Identity/IdDetailsDialog.h \ @@ -1269,7 +1259,6 @@ identities { SOURCES += \ gui/Identity/IdDialog.cpp \ - gui/Identity/IdentityListModel.cpp \ gui/Identity/IdEditDialog.cpp \ gui/Identity/IdDetailsDialog.cpp \ diff --git a/retroshare-gui/src/rshare.cpp b/retroshare-gui/src/rshare.cpp index d867f1545..8fb8fdc58 100644 --- a/retroshare-gui/src/rshare.cpp +++ b/retroshare-gui/src/rshare.cpp @@ -50,22 +50,55 @@ #include #include -#include #include #include #include #include "rshare.h" -#ifdef __APPLE__ -QStringList RsApplication::_links; /**< List of links passed by arguments. */ -QStringList RsApplication::_files; /**< List of files passed by arguments. */ -#endif +/* Available command-line arguments. */ +#define ARG_RESET "reset" /**< Reset Rshare's saved settings. */ +#define ARG_DATADIR "datadir" /**< Directory to use for data files. */ +#define ARG_LOGFILE "logfile" /**< Location of our logfile. */ +#define ARG_LOGLEVEL "loglevel" /**< Log verbosity. */ +#define ARG_GUISTYLE "style" /**< Argument specfying GUI style. */ +#define ARG_GUISTYLESHEET "stylesheet" /**< Argument specfying GUI style. */ +#define ARG_LANGUAGE "lang" /**< Argument specifying language. */ +#define ARG_OPMODE_S "o" /**< OpMode (Full, NoTurtle, Gaming, Minimal) */ +#define ARG_OPMODE_L "opmode" /**< OpMode (Full, NoTurtle, Gaming, Minimal) */ +#define ARG_RSLINK_S "r" /**< Open RsLink with protocol retroshare:// */ +#define ARG_RSLINK_L "link" /**< Open RsLink with protocol retroshare:// */ +#define ARG_RSFILE_S "f" /**< Open RsFile with or without arg. */ +#define ARG_RSFILE_L "rsfile" /**< Open RsFile with or without arg. */ +//Other defined for server in /libretroshare/src/rsserver/rsinit.cc:351 -Log RsApplication::log_output; /**< Logs debugging messages to file or stdout. */ -RsGUIConfigOptions RsApplication::options; -QDateTime RsApplication::mStartupTime; -QLocalServer* RsApplication::localServer; +// The arguments here can be send to a running instance. +// If the command line contains arguments not listed here, we have to start a new instance. +// For example, the user wants to start a second instance using --base-dir arg of libretroshare. +static const char* const forwardableArgs[] = { + ARG_OPMODE_S, + ARG_OPMODE_L, + ARG_RSLINK_S, + ARG_RSLINK_L, + ARG_RSFILE_S, + ARG_RSFILE_L, + NULL, +}; + +/* Static member variables */ +QMap Rshare::_args; /**< List of command-line arguments. */ +Log Rshare::_log; /**< Logs debugging messages to file or stdout. */ +QString Rshare::_style; /**< The current GUI style. */ +QString Rshare::_stylesheet; /**< The current GUI stylesheet. */ +QString Rshare::_language; /**< The current language. */ +QString Rshare::_dateformat; /**< The format of dates in feed items etc. */ +QString Rshare::_opmode; /**< The operating mode passed by args. */ +QStringList Rshare::_links; /**< List of links passed by arguments. */ +QStringList Rshare::_files; /**< List of files passed by arguments. */ +QDateTime Rshare::mStartupTime; +bool Rshare::useConfigDir; +QString Rshare::configDir; +QLocalServer* Rshare::localServer; /** Catches debugging messages from Qt and sends them to RetroShare's logs. If Qt * emits a QtFatalMsg, we will write the message to the log and then abort(). @@ -100,87 +133,189 @@ void qt_msg_handler(QtMsgType type, const char *msg) } } -/** Constructor. Parses the command-line arguments, resets RsApplication's - * configuration (if requested), and sets up the GUI style and language - * translation. - * the const_cast below is truely horrible, but it allows to hide these unused argc/argv - * when initing RsApplication - */ - -RsApplication::RsApplication(const RsGUIConfigOptions& conf) -: QApplication(const_cast(&conf)->argc,const_cast(&conf)->argv) +static bool notifyRunningInstance() { - mStartupTime = QDateTime::currentDateTime(); - localServer = NULL; - options = conf; + // Connect to the Local Server of the main process to notify it + // that a new process had been started + QLocalSocket localSocket; + localSocket.connectToServer(QString(TARGET)); - // So we start a Local Server to listen for connections from new process - localServer= new QLocalServer(); - QObject::connect(localServer, SIGNAL(newConnection()), this, SLOT(slotConnectionEstablished())); - updateLocalServer(); + std::cerr << "Rshare::Rshare waitForConnected to other instance." << std::endl; + if( localSocket.waitForConnected(100) ) + { + std::cerr << "Rshare::Rshare Connection etablished. Waiting for disconnection." << std::endl; + localSocket.waitForDisconnected(1000); + return true; + } + else + { + std::cerr << "Rshare::Rshare failed to connect to other instance." << std::endl; + return false; + } +} - // clear out any old arguments (race condition?) - QSharedMemory newArgs; - newArgs.setKey(QString(TARGET) + "_newArgs"); - if(newArgs.attach(QSharedMemory::ReadWrite)) +/** Constructor. Parses the command-line arguments, resets Rshare's + * configuration (if requested), and sets up the GUI style and language + * translation. */ +Rshare::Rshare(QStringList args, int &argc, char **argv, const QString &dir) +: QApplication(argc, argv) +{ + mStartupTime = QDateTime::currentDateTime(); + localServer = NULL; + + //Initialize connection to LocalServer to know if other process runs. + { + QString serverName = QString(TARGET); + + // check if another instance is running + bool haveRunningInstance = notifyRunningInstance(); + + bool sendArgsToRunningInstance = haveRunningInstance; + if(args.empty()) + sendArgsToRunningInstance = false; + // if we find non-forwardable args, start a new instance + for(int iCurs = 0; iCurs < args.size(); ++iCurs) + { + const char* const* argit = forwardableArgs; + bool found = false; + while(*argit && iCurs < args.size()) + { + if(args.value(iCurs) == "-"+QString(*argit) || args.value(iCurs) == "--"+QString(*argit)) + { + found = true; + if(argNeedsValue(*argit)) + iCurs++; + } + argit++; + } + if(!found) + sendArgsToRunningInstance = false; + } + + if (sendArgsToRunningInstance) { + // load into shared memory + QBuffer buffer; + buffer.open(QBuffer::ReadWrite); + QDataStream out(&buffer); + out << args; + int size = buffer.size(); + + QSharedMemory newArgs; + newArgs.setKey(serverName + "_newArgs"); + if (newArgs.isAttached()) newArgs.detach(); + + if (!newArgs.create(size)) { + std::cerr << "(EE) Rshare::Rshare Unable to create shared memory segment of size:" + << size << " error:" << newArgs.errorString().toStdString() << "." << std::endl; +#ifdef Q_OS_UNIX + std::cerr << "Look with `ipcs -m` for nattch==0 segment. And remove it with `ipcrm -m 'shmid'`." << std::endl; + //No need for windows, as it removes shared segment directly even when crash. +#endif newArgs.detach(); + ::exit(EXIT_FAILURE); + } + newArgs.lock(); + char *to = (char*)newArgs.data(); + const char *from = buffer.data().data(); + memcpy(to, from, qMin(newArgs.size(), size)); + newArgs.unlock(); + + std::cerr << "Rshare::Rshare waitForConnected to other instance." << std::endl; + if(notifyRunningInstance()) + { + newArgs.detach(); + std::cerr << "Rshare::Rshare Arguments was sended." << std::endl + << " To disable it, in Options - General - Misc," << std::endl + << " uncheck \"Use Local Server to get new Arguments\"." << std::endl; + ::exit(EXIT_SUCCESS); // Terminate the program using STDLib's exit function + } + else + std::cerr << "Rshare::Rshare failed to connect to other instance." << std::endl; + newArgs.detach(); + } + + if(!haveRunningInstance) + { + // No main process exists + // Or started without arguments + // So we start a Local Server to listen for connections from new process + localServer= new QLocalServer(); + QObject::connect(localServer, SIGNAL(newConnection()), this, SLOT(slotConnectionEstablished())); + updateLocalServer(); + // clear out any old arguments (race condition?) + QSharedMemory newArgs; + newArgs.setKey(QString(TARGET) + "_newArgs"); + if(newArgs.attach(QSharedMemory::ReadWrite)) + newArgs.detach(); + } + } #if QT_VERSION >= QT_VERSION_CHECK (5, 0, 0) - qInstallMessageHandler(qt_msg_handler); + qInstallMessageHandler(qt_msg_handler); #else - qInstallMsgHandler(qt_msg_handler); + qInstallMsgHandler(qt_msg_handler); #endif #ifndef __APPLE__ - /* set default window icon */ - setWindowIcon(FilesDefs::getIconFromQtResourcePath(":/icons/logo_128.png")); + /* set default window icon */ + setWindowIcon(FilesDefs::getIconFromQtResourcePath(":/icons/logo_128.png")); #endif - mBlink = true; - QTimer *timer = new QTimer(this); - timer->setInterval(500); - connect(timer, SIGNAL(timeout()), this, SLOT(blinkTimer())); - timer->start(); + mBlink = true; + QTimer *timer = new QTimer(this); + timer->setInterval(500); + connect(timer, SIGNAL(timeout()), this, SLOT(blinkTimer())); + timer->start(); - timer = new QTimer(this); - timer->setInterval(60000); - connect(timer, SIGNAL(timeout()), this, SIGNAL(minuteTick())); - timer->start(); + timer = new QTimer(this); + timer->setInterval(60000); + connect(timer, SIGNAL(timeout()), this, SIGNAL(minuteTick())); + timer->start(); - /* Check if we're supposed to reset our config before proceeding. */ - if (options.optResetParams) - { - RsInfo() << "Resetting Retroshare config parameters, as requested (option -R)"; - Settings->reset(); - } + /* Read in all our command-line arguments. */ + parseArguments(args); - /* Handle the -loglevel and -logfile options. */ - if (options.logLevel != "Off") - { - if (!options.logFileName.isNull()) - log_output.open(options.logFileName); - else - log_output.open(stdout); + /* Check if we're supposed to reset our config before proceeding. */ + if (_args.contains(ARG_RESET)) { + Settings->reset(); + } + + /* Handle the -loglevel and -logfile options. */ + if (_args.contains(ARG_LOGFILE)) + _log.open(_args.value(ARG_LOGFILE)); + if (_args.contains(ARG_LOGLEVEL)) { + _log.setLogLevel(Log::stringToLogLevel( + _args.value(ARG_LOGLEVEL))); + if (!_args.contains(ARG_LOGFILE)) + _log.open(stdout); + } + if (!_args.contains(ARG_LOGLEVEL) && + !_args.contains(ARG_LOGFILE)) + _log.setLogLevel(Log::Off); - log_output.setLogLevel(Log::stringToLogLevel(options.logLevel)); - } + /* config directory */ + useConfigDir = false; + if (dir != "") + { + setConfigDirectory(dir); + } - /** Initialize support for language translations. */ - //LanguageSupport::initialize(); + /** Initialize support for language translations. */ + //LanguageSupport::initialize(); - resetLanguageAndStyle(); + resetLanguageAndStyle(); - /* Switch off auto shutdown */ - setQuitOnLastWindowClosed ( false ); + /* Switch off auto shutdown */ + setQuitOnLastWindowClosed ( false ); - /* Initialize GxsIdDetails */ - GxsIdDetails::initialize(); + /* Initialize GxsIdDetails */ + GxsIdDetails::initialize(); } /** Destructor */ -RsApplication::~RsApplication() +Rshare::~Rshare() { /* Cleanup GxsIdDetails */ GxsIdDetails::cleanup(); @@ -194,7 +329,7 @@ RsApplication::~RsApplication() /** * @brief Executed when new instance connect command is sent to LocalServer */ -void RsApplication::slotConnectionEstablished() +void Rshare::slotConnectionEstablished() { QSharedMemory newArgs; newArgs.setKey(QString(TARGET) + "_newArgs"); @@ -206,7 +341,7 @@ void RsApplication::slotConnectionEstablished() /* this is not an error. It just means we were notified to check newArgs, but none had been set yet. TODO: implement separate ping/take messages - std::cerr << "(EE) RsApplication::slotConnectionEstablished() Unable to attach to shared memory segment." + std::cerr << "(EE) Rshare::slotConnectionEstablished() Unable to attach to shared memory segment." << newArgs.errorString().toStdString() << std::endl; */ socket->close(); @@ -217,41 +352,36 @@ void RsApplication::slotConnectionEstablished() socket->close(); delete socket; - if(newArgs.error()) - { - RsErr() << "Something when wrong in receiving arguments from operating system: " << newArgs.errorString().toStdString() ; - return ; - } - QBuffer buffer; - QDataStream in(&buffer); - QStringList args; + QBuffer buffer; + QDataStream in(&buffer); + QStringList args; - newArgs.lock(); - buffer.setData((char*)newArgs.constData(), newArgs.size()); - buffer.open(QBuffer::ReadOnly); - in >> args; - newArgs.unlock(); - newArgs.detach(); + newArgs.lock(); + buffer.setData((char*)newArgs.constData(), newArgs.size()); + buffer.open(QBuffer::ReadOnly); + in >> args; + newArgs.unlock(); + newArgs.detach(); - emit newArgsReceived(args); - while (!args.empty()) - { - std::cerr << "RsApplication::slotConnectionEstablished args:" << QString(args.takeFirst()).toStdString() << std::endl; - } + emit newArgsReceived(args); + while (!args.empty()) + { + std::cerr << "Rshare::slotConnectionEstablished args:" << QString(args.takeFirst()).toStdString() << std::endl; + } } -QString RsApplication::retroshareVersion(bool) { return RS_HUMAN_READABLE_VERSION; } +QString Rshare::retroshareVersion(bool) { return RS_HUMAN_READABLE_VERSION; } /** Enters the main event loop and waits until exit() is called. The signal * running() will be emitted when the event loop has started. */ int -RsApplication::run() +Rshare::run() { QTimer::singleShot(0, rApp, SLOT(onEventLoopStarted())); return rApp->exec(); } -QDateTime RsApplication::startupTime() +QDateTime Rshare::startupTime() { return mStartupTime; } @@ -260,17 +390,203 @@ QDateTime RsApplication::startupTime() * will emit the running() signal to indicate that the application's event * loop is running. */ void -RsApplication::onEventLoopStarted() +Rshare::onEventLoopStarted() { emit running(); } +/** Display usage information regarding command-line arguments. */ +/*void +Rshare::printUsage(QString errmsg) +{ + QTextStream out(stdout);*/ + + /* If there was an error message, print it out. */ + /*if (!errmsg.isEmpty()) { + out << "** " << errmsg << " **" << endl << endl; + }*/ + + /* Now print the application usage */ + //out << "Usage: " << endl; + //out << "\t" << qApp->arguments().at(0) << " [options]" << endl; + + /* And available options */ + //out << endl << "Available Options:" << endl; + //out << "\t-"ARG_RESET"\t\tResets ALL stored Rshare settings." << endl; + //out << "\t-"ARG_DATADIR"\tSets the directory Rshare uses for data files"<< endl; + //out << "\t-"ARG_GUISTYLE"\t\tSets Rshare's interface style." << endl; + //out << "\t-"ARG_GUISTYLESHEET"\t\tSets Rshare's stylesheet." << endl; + //out << "\t\t\t[" << QStyleFactory::keys().join("|") << "]" << endl; + //out << "\t-"ARG_LANGUAGE"\t\tSets Rshare's language." << endl; + //out << "\t\t\t[" << LanguageSupport::languageCodes().join("|") << "]" << endl; +//} + +/** Displays usage information for command-line args. */ +void +Rshare::showUsageMessageBox() +{ + QString usage; + QTextStream out(&usage); + + out << "Available Options:" << endl; + out << ""; + //out << trow(tcol("-"ARG_HELP) + + // tcol(tr("Displays this usage message and exits."))); + out << trow(tcol("-" ARG_RESET) + + tcol(tr("Resets ALL stored RetroShare settings."))); + out << trow(tcol("-" ARG_DATADIR" <dir>") + + tcol(tr("Sets the directory RetroShare uses for data files."))); + out << trow(tcol("-" ARG_LOGFILE" <" + tr("filename") + ">") + + tcol(tr("Sets the name and location of RetroShare's logfile."))); + out << trow(tcol("-" ARG_LOGLEVEL" <" + tr("level") + ">") + + tcol(tr("Sets the verbosity of RetroShare's logging.") + + "
[" + Log::logLevels().join("|") +"]")); + out << trow(tcol("-" ARG_GUISTYLE" <" + tr("style") +">") + + tcol(tr("Sets RetroShare's interface style.") + + "
[" + QStyleFactory::keys().join("|") + "]")); + out << trow(tcol("-" ARG_GUISTYLESHEET" <" + tr("stylesheet") + ">") + + tcol(tr("Sets RetroShare's interface stylesheets."))); + out << trow(tcol("-" ARG_LANGUAGE" <" + tr("language") + ">") + + tcol(tr("Sets RetroShare's language.") + + "
[" + LanguageSupport::languageCodes().join("|") + "]")); + out << trow(tcol("--" ARG_OPMODE_L" <" + tr("opmode") + ">") + + tcol(tr("Sets RetroShare's operating mode.") + + "
[full|noturtle|gaming|minimal]")); + out << trow(tcol("-" ARG_RSLINK_L" <" + tr("RsLinkURL") + ">") + + tcol(tr("Open RsLink with protocol retroshare://"))); + out << trow(tcol("-" ARG_RSFILE_L" <" + tr("filename") + ">") + + tcol(tr("Open RsFile with or without arg."))); + out << "
"; + + VMessageBox::information(0, + tr("RetroShare GUI Usage Information"), usage, VMessageBox::Ok); +} + +/** Returns true if the specified argument expects a value. */ +bool +Rshare::argNeedsValue(const QString &argName) +{ + return ( + argName == ARG_DATADIR || + argName == ARG_LOGFILE || + argName == ARG_LOGLEVEL || + argName == ARG_GUISTYLE || + argName == ARG_GUISTYLESHEET || + argName == ARG_LANGUAGE || + argName == ARG_OPMODE_S || + argName == ARG_OPMODE_L || + argName == ARG_RSLINK_S || + argName == ARG_RSLINK_L || + argName == ARG_RSFILE_S || + argName == ARG_RSFILE_L ); +} + +/** Parses the list of command-line arguments for their argument names and + * values. */ +void +Rshare::parseArguments(QStringList args, bool firstRun) +{ + QString arg, argl, value; + + /* Loop through all command-line args/values and put them in a map */ + for (int iCurs = 0; iCurs < args.size(); ++iCurs) { + /* Get the argument name and set a blank value */ + arg = args.at(iCurs);//.toLower(); Need Upper case for file name. + argl = arg.toLower(); + if (argl == "empty") continue; + value = ""; + + /* Check if it starts with a - or -- */ + if (arg.startsWith("-")) { + arg = arg.mid((arg.startsWith("--") ? 2 : 1)); + /* Check if it takes a value and there is one on the command-line */ + if (iCurs < args.size()-1 && argNeedsValue(arg)) { + value = args.at(++iCurs); + } + } else { + /* Check if links or files without arg */ + if (argl.startsWith("retroshare://")) { + value = arg; + arg = ARG_RSLINK_L; + } else { + if (QFile(arg).exists()) { + value = arg; + arg = ARG_RSFILE_L; + } + } + } + + /* handle opmode that could be change while running.*/ + QString omValue = QString(value).prepend(";").append(";").toLower(); + QString omValues = QString(";full;noturtle;gaming;minimal;"); + if ((arg == ARG_OPMODE_S || arg == ARG_OPMODE_L ) + && omValues.contains(omValue)) { + _opmode = value; + } + + /* Don't send theses argument to _args map to allow multiple. */ + if (arg == ARG_RSLINK_S || arg == ARG_RSLINK_L) { + _links.append(value); + } else if (arg == ARG_RSFILE_S || arg == ARG_RSFILE_L) { + _files.append(value); + } else if (firstRun) { + /* Place this arg/value in the map only first time*/ + _args.insert(arg, value); + } + } +} + +/** Verifies that all specified arguments were valid. */ +bool +Rshare::validateArguments(QString &errmsg) +{ + /* Check for a writable log file */ + if (_args.contains(ARG_LOGFILE) && !_log.isOpen()) { + errmsg = tr("Unable to open log file '%1': %2") + .arg( _args.value(ARG_LOGFILE) + , _log.errorString()); + return false; + } + /* Check for a valid log level */ + if (_args.contains(ARG_LOGLEVEL) && + !Log::logLevels().contains(_args.value(ARG_LOGLEVEL))) { + errmsg = tr("Invalid log level specified:")+" " + _args.value(ARG_LOGLEVEL); + return false; + } + /* Check for a valid GUI style */ + if (_args.contains(ARG_GUISTYLE) && + !QStyleFactory::keys().contains(_args.value(ARG_GUISTYLE), + Qt::CaseInsensitive)) { + errmsg = tr("Invalid GUI style specified:")+" " + _args.value(ARG_GUISTYLE); + return false; + } + /* Check for a language that Retroshare recognizes. */ + if (_args.contains(ARG_LANGUAGE) && + !LanguageSupport::isValidLanguageCode(_args.value(ARG_LANGUAGE))) { + errmsg = tr("Invalid language code specified:")+" " + _args.value(ARG_LANGUAGE); + return false; + } + /* Check for an opmode that Retroshare recognizes. */ + if (_args.contains(ARG_OPMODE_S) && + !QString(";full;noturtle;gaming;minimal;").contains(QString(_args.value(ARG_OPMODE_S)).prepend(";").append(";").toLower())) { + errmsg = tr("Invalid operating mode specified:")+" " + _args.value(ARG_OPMODE_S); + return false; + } + /* Check for an opmode that Retroshare recognizes. */ + if (_args.contains(ARG_OPMODE_L) && + !QString(";full;noturtle;gaming;minimal;").contains(QString(_args.value(ARG_OPMODE_L)).prepend(";").append(";").toLower())) { + errmsg = tr("Invalid operating mode specified:")+" " + _args.value(ARG_OPMODE_L); + return false; + } + return true; +} + /** Sets the translation RetroShare will use. If one was specified on the * command-line, we will use that. Otherwise, we'll check to see if one was * saved previously. If not, we'll default to one appropriate for the system * locale. */ bool -RsApplication::setLanguage(QString languageCode) +Rshare::setLanguage(QString languageCode) { /* If the language code is empty, use the previously-saved setting */ if (languageCode.isEmpty()) { @@ -278,7 +594,7 @@ RsApplication::setLanguage(QString languageCode) } /* Translate into the desired language */ if (LanguageSupport::translate(languageCode)) { - options.language = languageCode; + _language = languageCode; return true; } return false; @@ -289,7 +605,7 @@ RsApplication::setLanguage(QString languageCode) * saved previously. If not, we'll default to the system * locale. */ bool -RsApplication::setLocale(QString languageCode) +Rshare::setLocale(QString languageCode) { bool retVal = false; /* If the language code is empty, use the previously-saved setting */ @@ -305,20 +621,20 @@ RsApplication::setLocale(QString languageCode) } /** customize date format for feeds etc. */ -void RsApplication::customizeDateFormat() +void Rshare::customizeDateFormat() { QLocale locale = QLocale(); // set to default locale /* get long date format without weekday */ - options.dateformat = locale.dateFormat(QLocale::LongFormat); - options.dateformat.replace(QRegExp("^dddd,*[^ ]* *('[^']+' )*"), ""); - options.dateformat.replace(QRegExp(",* *dddd"), ""); - options.dateformat = options.dateformat.trimmed(); + _dateformat = locale.dateFormat(QLocale::LongFormat); + _dateformat.replace(QRegExp("^dddd,*[^ ]* *('[^']+' )*"), ""); + _dateformat.replace(QRegExp(",* *dddd"), ""); + _dateformat = _dateformat.trimmed(); } /** Get custom date format (defaultlongformat) */ -QString RsApplication::customDateFormat() +QString Rshare::customDateFormat() { - return options.dateformat; + return _dateformat; } /** Sets the GUI style RetroShare will use. If one was specified on the @@ -326,50 +642,49 @@ QString RsApplication::customDateFormat() * saved previously. If not, we'll default to one appropriate for the * operating system. */ bool -RsApplication::setStyle(QString styleKey) +Rshare::setStyle(QString styleKey) { /* If no style was specified, use the previously-saved setting */ if (styleKey.isEmpty()) { styleKey = Settings->getInterfaceStyle(); } /* Apply the specified GUI style */ - if (QApplication::setStyle(styleKey)) - { - options.guiStyle = styleKey; + if (QApplication::setStyle(styleKey)) { + _style = styleKey; return true; } return false; } bool -RsApplication::setSheet(QString sheet) +Rshare::setSheet(QString sheet) { /* If no stylesheet was specified, use the previously-saved setting */ if (sheet.isEmpty()) { sheet = Settings->getSheetName(); } /* Apply the specified GUI stylesheet */ - options.guiStyleSheetFile = sheet; + _stylesheet = sheet; /* load the StyleSheet*/ - loadStyleSheet(options.guiStyleSheetFile); + loadStyleSheet(_stylesheet); return true; } -void RsApplication::resetLanguageAndStyle() +void Rshare::resetLanguageAndStyle() { /** Translate the GUI to the appropriate language. */ - setLanguage(options.language); + setLanguage(_args.value(ARG_LANGUAGE)); /** Set the locale appropriately. */ - setLocale(options.language); + setLocale(_args.value(ARG_LANGUAGE)); /** Set the GUI style appropriately. */ - setStyle(options.guiStyle); + setStyle(_args.value(ARG_GUISTYLE)); /** Set the GUI stylesheet appropriately. */ - setSheet(options.guiStyleSheetFile); + setSheet(_args.value(ARG_GUISTYLESHEET)); } // RetroShare: @@ -394,7 +709,7 @@ void RsApplication::resetLanguageAndStyle() // Language depended stylesheet // _.lqss -void RsApplication::loadStyleSheet(const QString &sheetName) +void Rshare::loadStyleSheet(const QString &sheetName) { QString locale = QLocale().name(); QString styleSheet; @@ -465,7 +780,7 @@ void RsApplication::loadStyleSheet(const QString &sheetName) } /** get list of available stylesheets **/ -void RsApplication::getAvailableStyleSheets(QMap &styleSheets) +void Rshare::getAvailableStyleSheets(QMap &styleSheets) { QFileInfoList fileInfoList = QDir(":/qss/stylesheet/").entryInfoList(QStringList("*.qss")); QFileInfo fileInfo; @@ -493,7 +808,7 @@ void RsApplication::getAvailableStyleSheets(QMap &styleSheets) } } -void RsApplication::refreshStyleSheet(QWidget *widget, bool processChildren) +void Rshare::refreshStyleSheet(QWidget *widget, bool processChildren) { if (widget != NULL) { // force widget to recalculate valid style @@ -519,35 +834,40 @@ void RsApplication::refreshStyleSheet(QWidget *widget, bool processChildren) } /** Initialize plugins. */ -void RsApplication::initPlugins() +void Rshare::initPlugins() { - loadStyleSheet(options.guiStyleSheetFile); - LanguageSupport::translatePlugins(options.language); + loadStyleSheet(_stylesheet); + LanguageSupport::translatePlugins(_language); } /** Returns the directory RetroShare uses for its data files. */ -QString RsApplication::dataDirectory() +QString +Rshare::dataDirectory() { - if(!options.optBaseDir.empty()) - return QString::fromUtf8(options.optBaseDir.c_str()); - else - return defaultDataDirectory(); + if (useConfigDir) + { + return configDir; + } + else if (_args.contains(ARG_DATADIR)) { + return _args.value(ARG_DATADIR); + } + return defaultDataDirectory(); } /** Returns the default location of RetroShare's data directory. */ QString -RsApplication::defaultDataDirectory() +Rshare::defaultDataDirectory() { #if defined(Q_OS_WIN) return (win32_app_data_folder() + "\\RetroShare"); #else - return (QDir::homePath() + "/.retroshare"); + return (QDir::homePath() + "/.RetroShare"); #endif } -/** Creates RsApplication's data directory, if it doesn't already exist. */ +/** Creates Rshare's data directory, if it doesn't already exist. */ bool -RsApplication::createDataDirectory(QString *errmsg) +Rshare::createDataDirectory(QString *errmsg) { QDir datadir(dataDirectory()); if (!datadir.exists()) { @@ -560,29 +880,33 @@ RsApplication::createDataDirectory(QString *errmsg) return true; } -/** Set RsApplication's data directory - externally */ -bool RsApplication::setConfigDirectory(const QString& dir) +/** Set Rshare's data directory - externally */ +bool Rshare::setConfigDirectory(const QString& dir) { - options.optBaseDir = std::string(dir.toUtf8()); + useConfigDir = true; + configDir = dir; return true; } /** Writes msg with severity level to RetroShare's log. */ -Log::LogMessage RsApplication::log(Log::LogLevel level, QString msg) +Log::LogMessage +Rshare::log(Log::LogLevel level, QString msg) { - return log_output.log(level, msg); + return _log.log(level, msg); } /** Creates and binds a shortcut such that when key is pressed in * sender's context, receiver's slot will be called. */ -void RsApplication::createShortcut(const QKeySequence &key, QWidget *sender, QWidget *receiver, const char *slot) +void +Rshare::createShortcut(const QKeySequence &key, QWidget *sender, + QWidget *receiver, const char *slot) { QShortcut *s = new QShortcut(key, sender); connect(s, SIGNAL(activated()), receiver, slot); } #ifdef __APPLE__ -bool RsApplication::event(QEvent *event) +bool Rshare::event(QEvent *event) { switch (event->type()) { case QEvent::FileOpen:{ @@ -604,7 +928,7 @@ bool RsApplication::event(QEvent *event) } #endif -void RsApplication::blinkTimer() +void Rshare::blinkTimer() { mBlink = !mBlink; emit blink(mBlink); @@ -615,7 +939,7 @@ void RsApplication::blinkTimer() } } -bool RsApplication::loadCertificate(const RsPeerId &accountId, bool autoLogin) +bool Rshare::loadCertificate(const RsPeerId &accountId, bool autoLogin) { if (!RsAccounts::SelectAccount(accountId)) { @@ -656,14 +980,14 @@ bool RsApplication::loadCertificate(const RsPeerId &accountId, bool autoLogin) // QObject::tr("Login Failure"), // QObject::tr("Maybe password is wrong") ); return false; - default: std::cerr << "RsApplication::loadCertificate() unexpected switch value " << retVal << std::endl; + default: std::cerr << "Rshare::loadCertificate() unexpected switch value " << retVal << std::endl; return false; } return true; } -bool RsApplication::updateLocalServer() +bool Rshare::updateLocalServer() { if (localServer) { QString serverName = QString(TARGET); diff --git a/retroshare-gui/src/rshare.h b/retroshare-gui/src/rshare.h index be6af336c..2b59b7875 100644 --- a/retroshare-gui/src/rshare.h +++ b/retroshare-gui/src/rshare.h @@ -36,10 +36,9 @@ #include "util/log.h" #include "retroshare/rstypes.h" -#include "retroshare/rsinit.h" /** Pointer to this RetroShare application instance. */ -#define rApp (static_cast(qApp)) +#define rApp (static_cast(qApp)) #define rDebug(fmt) (rApp->log(Log::Debug, (fmt))) #define rInfo(fmt) (rApp->log(Log::Info, (fmt))) @@ -47,40 +46,33 @@ #define rWarn(fmt) (rApp->log(Log::Warn, (fmt))) #define rError(fmt) (rApp->log(Log::Error, (fmt))) -struct RsGUIConfigOptions: public RsConfigOptions -{ - RsGUIConfigOptions() - : optResetParams(false), logLevel("Off"), argc(0) - {} - bool optResetParams; // reset all GUI parameters - - QString dateformat; // The format for dates in feed items etc. - QString language; // The current language. - - QString logFileName; // output filename for log - QString logLevel; // severity threshold for log output - - QString guiStyle; // CSS Style for the GUI - QString guiStyleSheetFile; // CSS Style for the GUI - - int argc ; // stores argc parameter. Only used by the creator of QApplication - char *argv[1] ; // stores argv parameter. Only used by the creator of QApplication -}; - -class RsApplication : public QApplication +class Rshare : public QApplication { Q_OBJECT public: /** Constructor. */ - RsApplication(const RsGUIConfigOptions& conf); + Rshare(QStringList args, int &argc, char **argv, const QString &dir); /** Destructor. */ - ~RsApplication(); + ~Rshare(); /** Return the version info */ static QString retroshareVersion(bool=true); + /** Return the map of command-line arguments and values. */ + static QMap arguments() { return _args; } + /** Parse the list of command-line arguments. */ + static void parseArguments(QStringList args, bool firstRun = true); + /** Validates that all arguments were well-formed. */ + bool validateArguments(QString &errmsg); + /** Prints usage information to the given text stream. */ + //void printUsage(QString errmsg = QString()); + /** Displays usage information for command-line args. */ + static void showUsageMessageBox(); + /** Returns true if the user wants to see usage information. */ + static bool showUsage(); + /** Sets the current language. */ static bool setLanguage(QString languageCode = QString()); /** Sets the current locale. */ @@ -113,22 +105,17 @@ public: static void initPlugins(); /** Returns the current GUI style. */ - static QString style() { return options.guiStyle; } + static QString style() { return _style; } /** Returns the current GUI stylesheet. */ - static QString stylesheet() { return options.guiStyleSheetFile; } + static QString stylesheet() { return _stylesheet; } /** Returns the current language. */ - static QString language() { return options.language; } - - /** Sets/Returns the operating mode. */ - static void setOpMode(const QString& op ) { options.opModeStr = op.toStdString(); } - static QString opmode() { return QString::fromStdString(options.opModeStr); } - -#ifdef __APPLE__ + static QString language() { return _language; } + /** Returns the operating mode. */ + static QString opmode() { return _opmode; } /** Returns links passed by arguments. */ static QStringList* links() { return &_links; } /** Returns files passed by arguments. */ static QStringList* files() {return &_files; } -#endif /** Returns Rshare's application startup time. */ static QDateTime startupTime(); @@ -189,20 +176,24 @@ private: /** customize the date format (defaultlongformat) */ static void customizeDateFormat(); -#ifdef TO_REMOVE /** Returns true if the specified arguments wants a value. */ static bool argNeedsValue(const QString &argName); -#endif -#ifdef __APPLE__ + static QMap _args; /**< List of command-line arguments. */ + static Log _log; /**< Logs debugging messages to file or stdout. */ + static QString _style; /**< The current GUI style. */ + static QString _stylesheet; /**< The current GUI stylesheet. */ + static QString _language; /**< The current language. */ + static QString _dateformat; /**< The format for dates in feed items etc. */ + static QString _opmode; /**< The operating mode passed by args. */ static QStringList _links; /**< List of links passed by arguments. */ static QStringList _files; /**< List of files passed by arguments. */ -#endif static QDateTime mStartupTime; // startup time + + static bool useConfigDir; + static QString configDir; bool mBlink; static QLocalServer* localServer; - static RsGUIConfigOptions options; - static Log log_output; }; #endif diff --git a/retroshare-gui/src/util/DateTime.cpp b/retroshare-gui/src/util/DateTime.cpp index 658772c5a..b93a4dfe1 100644 --- a/retroshare-gui/src/util/DateTime.cpp +++ b/retroshare-gui/src/util/DateTime.cpp @@ -30,7 +30,7 @@ QString DateTime::formatLongDate(time_t dateValue) QString DateTime::formatLongDate(const QDate &dateValue) { - QString customDateFormat = RsApplication::customDateFormat(); + QString customDateFormat = Rshare::customDateFormat(); if (customDateFormat.isEmpty()) { return dateValue.toString(Qt::ISODate); diff --git a/retroshare-gui/src/util/FontSizeHandler.cpp b/retroshare-gui/src/util/FontSizeHandler.cpp deleted file mode 100644 index c184da0de..000000000 --- a/retroshare-gui/src/util/FontSizeHandler.cpp +++ /dev/null @@ -1,210 +0,0 @@ -/******************************************************************************* - * util/FontSizeHandler.cpp * - * * - * Copyright (C) 2025, Retroshare Team * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#include -#include -#include - -#include "rshare.h" -#include "FontSizeHandler.h" -#include "gui/settings/rsharesettings.h" -#include "gui/notifyqt.h" - -// Data for QAbstractItemView -struct FontSizeHandlerWidgetData -{ - std::function callback; -}; - -// Data for QWidget -struct FontSizeHandlerViewData -{ - float iconHeightFactor; - std::function callback; -}; - -class FontSizeHandlerObject : public QObject -{ -public: - FontSizeHandlerObject(FontSizeHandlerBase *fontSizeHandler): QObject() - { - mFontSizeHandlerBase = fontSizeHandler; - } - - bool eventFilter(QObject* object, QEvent* event) - { - if (event->type() == QEvent::StyleChange) { - QMap::iterator itView = mView.find((QAbstractItemView*) object); - if (itView != mView.end()) { - mFontSizeHandlerBase->updateFontSize(itView.key(), itView.value().iconHeightFactor, itView.value().callback); - } - - QMap::iterator itWidget = mWidget.find((QWidget*) object); - if (itWidget != mWidget.end()) { - mFontSizeHandlerBase->updateFontSize(itWidget.key(), itWidget.value().callback); - } - } - - return false; - } - - void registerFontSize(QWidget *widget, std::function callback) - { - FontSizeHandlerWidgetData data; - data.callback = callback; - mWidget.insert(widget, data); - - QObject::connect(NotifyQt::getInstance(), &NotifyQt::settingsChanged, widget, [this, widget, callback]() { - mFontSizeHandlerBase->updateFontSize(widget, callback); - }); - - widget->installEventFilter(this); - QObject::connect(widget, &QObject::destroyed, this, [this, widget](QObject *object) { - if (widget == object) { - mWidget.remove(widget); - widget->removeEventFilter(this); - } - }); - - mFontSizeHandlerBase->updateFontSize(widget, callback, true); - } - - void registerFontSize(QAbstractItemView *view, float iconHeightFactor, std::function callback) - { - FontSizeHandlerViewData data; - data.iconHeightFactor = iconHeightFactor; - data.callback = callback; - mView.insert(view, data); - - QObject::connect(NotifyQt::getInstance(), &NotifyQt::settingsChanged, view, [this, view, iconHeightFactor, callback]() { - mFontSizeHandlerBase->updateFontSize(view, iconHeightFactor, callback); - }); - - view->installEventFilter(this); - QObject::connect(view, &QObject::destroyed, this, [this, view](QObject *object) { - if (view == object) { - mView.remove(view); - view->removeEventFilter(this); - } - }); - - mFontSizeHandlerBase->updateFontSize(view, iconHeightFactor, callback, true); - } - -private: - FontSizeHandlerBase *mFontSizeHandlerBase; - QMap mView; - QMap mWidget; -}; - -FontSizeHandlerBase::FontSizeHandlerBase(Type type) -{ - mType = type; - mObject = nullptr; -} - -FontSizeHandlerBase::~FontSizeHandlerBase() -{ - if (mObject) { - mObject->deleteLater(); - mObject = nullptr; - } -} - -int FontSizeHandlerBase::getFontSize() -{ - switch (mType) { - case FONT_SIZE: - return Settings->getFontSize(); - - case MESSAGE_FONT_SIZE: - return Settings->getMessageFontSize(); - } - - return 0; -} - -void FontSizeHandlerBase::registerFontSize(QWidget *widget, std::function callback) -{ - if (!widget) { - return; - } - - if (!mObject) { - mObject = new FontSizeHandlerObject(this); - } - - mObject->registerFontSize(widget, callback); -} - -void FontSizeHandlerBase::registerFontSize(QAbstractItemView *view, float iconHeightFactor, std::function callback) -{ - if (!view) { - return; - } - - if (!mObject) { - mObject = new FontSizeHandlerObject(this); - } - - mObject->registerFontSize(view, iconHeightFactor, callback); -} - -void FontSizeHandlerBase::updateFontSize(QWidget *widget, std::function callback, bool force) -{ - if (!widget) { - return; - } - - int fontSize = getFontSize(); - QFont font = widget->font(); - if (force || font.pointSize() != fontSize) { - font.setPointSize(fontSize); - widget->setFont(font); - - if (callback) { - callback(widget, fontSize); - } - } -} - -void FontSizeHandlerBase::updateFontSize(QAbstractItemView *view, float iconHeightFactor, std::function callback, bool force) -{ - if (!view) { - return; - } - - int fontSize = getFontSize(); - QFont font = view->font(); - if (force || font.pointSize() != fontSize) { - font.setPointSize(fontSize); - view->setFont(font); - - if (iconHeightFactor) { - QFontMetricsF fontMetrics(font); - int iconHeight = fontMetrics.height() * iconHeightFactor; - view->setIconSize(QSize(iconHeight, iconHeight)); - } - - if (callback) { - callback(view, fontSize); - } - } -} diff --git a/retroshare-gui/src/util/FontSizeHandler.h b/retroshare-gui/src/util/FontSizeHandler.h deleted file mode 100644 index bf9c8058b..000000000 --- a/retroshare-gui/src/util/FontSizeHandler.h +++ /dev/null @@ -1,73 +0,0 @@ -/******************************************************************************* - * util/FontSizeHandler.h * - * * - * Copyright (C) 2025, Retroshare Team * - * * - * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with this program. If not, see . * - * * - *******************************************************************************/ - -#ifndef _FONTSIZEHANDLER_H -#define _FONTSIZEHANDLER_H - -#include - -class QWidget; -class QAbstractItemView; -class FontSizeHandlerObject; - -// Class to handle font size and message font size setting -class FontSizeHandlerBase -{ - friend class FontSizeHandlerObject; - -public: - virtual ~FontSizeHandlerBase(); - - int getFontSize(); - - void registerFontSize(QWidget *widget, std::function callback = nullptr); - void registerFontSize(QAbstractItemView *view, float iconHeightFactor = 0.0f, std::function callback = nullptr); - - void updateFontSize(QWidget *widget, std::function callback = nullptr, bool force = false); - void updateFontSize(QAbstractItemView *view, float iconHeightFactor, std::function callback, bool force = false); - -protected: - enum Type { - FONT_SIZE, - MESSAGE_FONT_SIZE - }; - - FontSizeHandlerBase(Type type); - -private: - Type mType; - FontSizeHandlerObject *mObject; -}; - -// Class to handle font size setting -class FontSizeHandler : public FontSizeHandlerBase -{ -public: - FontSizeHandler() : FontSizeHandlerBase(FONT_SIZE) {} -}; - -// Class to handle message font size setting -class MessageFontSizeHandler : public FontSizeHandlerBase -{ -public: - MessageFontSizeHandler() : FontSizeHandlerBase(MESSAGE_FONT_SIZE) {} -}; - -#endif // FONTSIZEHANDLER diff --git a/retroshare-gui/src/util/RichTextEdit.cpp b/retroshare-gui/src/util/RichTextEdit.cpp index 020b13db9..9d4596a82 100644 --- a/retroshare-gui/src/util/RichTextEdit.cpp +++ b/retroshare-gui/src/util/RichTextEdit.cpp @@ -167,7 +167,7 @@ RichTextEdit::RichTextEdit(QWidget *parent) : QWidget(parent) { QFontDatabase db; foreach(int size, db.standardSizes()) - f_fontsize->addItem(QString::number(size), size); + f_fontsize->addItem(QString::number(size)); connect(f_fontsize, SIGNAL(activated(QString)), this, SLOT(textSize(QString))); @@ -195,9 +195,6 @@ RichTextEdit::RichTextEdit(QWidget *parent) : QWidget(parent) { // check message length connect(f_textedit, SIGNAL(textChanged()), this, SLOT(checkLength())); - mMessageFontSizeHandler.registerFontSize(f_textedit, [this] (QWidget*, int fontSize) { - f_fontsize->setCurrentIndex(f_fontsize->findData(fontSize)); - }); } diff --git a/retroshare-gui/src/util/RichTextEdit.h b/retroshare-gui/src/util/RichTextEdit.h index 6e4869838..aae9d20ab 100644 --- a/retroshare-gui/src/util/RichTextEdit.h +++ b/retroshare-gui/src/util/RichTextEdit.h @@ -23,7 +23,6 @@ #include #include "ui_RichTextEdit.h" -#include "util/FontSizeHandler.h" /** * @Brief A simple rich-text editor @@ -94,9 +93,6 @@ signals: ParagraphMonospace }; QPointer m_lastBlockList; - -private: - MessageFontSizeHandler mMessageFontSizeHandler; }; #endif diff --git a/retroshare-gui/src/util/RichTextEdit.ui b/retroshare-gui/src/util/RichTextEdit.ui index 5bb57a792..63e624b5e 100644 --- a/retroshare-gui/src/util/RichTextEdit.ui +++ b/retroshare-gui/src/util/RichTextEdit.ui @@ -6,7 +6,7 @@ 0 0 - 784 + 703 312 @@ -566,6 +566,7 @@ MS Sans Serif + 9 @@ -589,16 +590,16 @@
+ + MimeTextEdit + QTextEdit +
gui/common/MimeTextEdit.h
+
RSComboBox QComboBox
gui/common/RSComboBox.h
- - MimeTextEdit - QTextEdit -
gui/common/MimeTextEdit.h
-
f_textedit @@ -607,6 +608,7 @@ f_menu + diff --git a/retroshare-gui/src/util/imageutil.cpp b/retroshare-gui/src/util/imageutil.cpp index 690872bdb..612387724 100644 --- a/retroshare-gui/src/util/imageutil.cpp +++ b/retroshare-gui/src/util/imageutil.cpp @@ -274,9 +274,7 @@ bool ImageUtil::optimizeSizeHtml(QString &html, const QImage& original, QImage & if(optimizeSizeBytes(bytearray, original, optimized,has_transparency?"PNG":"JPG",maxPixels, maxBytes)) { QByteArray encodedByteArray = bytearray.toBase64(); - html = ""); return true; diff --git a/retroshare-service/CMakeLists.txt b/retroshare-service/CMakeLists.txt index 97562c91e..672644369 100644 --- a/retroshare-service/CMakeLists.txt +++ b/retroshare-service/CMakeLists.txt @@ -10,11 +10,6 @@ project(retroshare-service) include(CMakeDependentOption) -if(APPLE) - include_directories("/usr/local/include") - LINK_DIRECTORIES("/usr/local/lib") -endif() - set( RS_BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin" @@ -100,7 +95,7 @@ if(EXISTS "${LIBRETROSHARE_DEVEL_DIR}/CMakeLists.txt" ) else() FetchContent_Declare( libretroshare - GIT_REPOSITORY "https://github.com/RetroShare/libretroshare.git" + GIT_REPOSITORY "https://gitlab.com/RetroShare/libretroshare.git" GIT_TAG "origin/master" GIT_SHALLOW TRUE GIT_PROGRESS TRUE @@ -121,17 +116,15 @@ if(RS_SERVICE_DESKTOP) install( FILES data/retroshare-service_48x48.png - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps/ - RENAME retroshare-service.png) + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps/retroshare-service.png ) install( FILES data/retroshare-service_128x128.png - DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/128x128/apps/ - RENAME retroshare-service.png ) + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/128x128/apps/retroshare-service.png ) install( FILES data/retroshare-service.desktop - DESTINATION ${CMAKE_INSTALL_PREFIX}/data/ ) + DESTINATION ${CMAKE_INSTALL_PREFIX}/data/retroshare-service.desktop ) endif(UNIX AND NOT APPLE) endif(RS_SERVICE_DESKTOP) @@ -156,7 +149,7 @@ if(RS_WEBUI) else() FetchContent_Declare( webui - GIT_REPOSITORY "https://github.com/RetroShare/RSNewWebUI.git" + GIT_REPOSITORY "https://gitlab.com/RetroShare/RetroShareWebUI.git" GIT_TAG "origin/master" GIT_SHALLOW TRUE GIT_PROGRESS TRUE diff --git a/retroshare-service/data/retroshare-service.desktop b/retroshare-service/data/retroshare-service.desktop index fc8135e05..5d077597b 100644 --- a/retroshare-service/data/retroshare-service.desktop +++ b/retroshare-service/data/retroshare-service.desktop @@ -7,4 +7,4 @@ Exec=retroshare-service %U Icon=retroshare-service Terminal=false Type=Application -Categories=Network; +Categories=Application;Network; diff --git a/retroshare-service/src/logo.icns b/retroshare-service/src/logo.icns deleted file mode 100644 index cb105009d..000000000 Binary files a/retroshare-service/src/logo.icns and /dev/null differ diff --git a/retroshare-service/src/retroshare-service.cc b/retroshare-service/src/retroshare-service.cc index ac82593da..040a2012d 100644 --- a/retroshare-service/src/retroshare-service.cc +++ b/retroshare-service/src/retroshare-service.cc @@ -33,7 +33,6 @@ #include "retroshare/rsiface.h" #include "util/stacktrace.h" -#include "util/rsprint.h" #include "util/argstream.h" #include "util/rskbdinput.h" #include "util/rsdir.h" @@ -49,28 +48,6 @@ static CrashStackTrace gCrashStackTrace; -// We should move these functions to rsprint in libretroshare - -#define COLOR_GREEN 0 -#define COLOR_YELLOW 1 -#define COLOR_BLUE 2 -#define COLOR_PURPLE 3 -#define COLOR_RED 4 - -std::string colored(int color,const std::string& s) -{ - switch(color) - { - case COLOR_GREEN : return "\033[0;32m"+s+"\033[0m"; - case COLOR_YELLOW: return "\033[0;33m"+s+"\033[0m"; - case COLOR_BLUE : return "\033[0;36m"+s+"\033[0m"; - case COLOR_PURPLE: return "\033[0;35m"+s+"\033[0m"; - case COLOR_RED : return "\033[0;31m"+s+"\033[0m"; - default: - return s; - } -} - #ifdef RS_SERVICE_TERMINAL_LOGIN class RsServiceNotify: public NotifyClient { @@ -82,7 +59,9 @@ public: const std::string& title, const std::string& question, bool /*prev_is_bad*/, std::string& password, bool& cancel ) { - std::string question1 = title + colored(COLOR_GREEN,"Please enter your PGP password for key:\n ") + question + " :"; + std::string question1 = title + + "\nPlease enter your PGP password for key:\n " + + question + " :"; password = RsUtil::rs_getpass(question1.c_str()) ; cancel = false ; @@ -111,33 +90,6 @@ int main(int argc, char* argv[]) signal(SIGBREAK, signalHandler); #endif // ifdef SIGBREAK -#ifdef WINDOWS_SYS - // Enable ANSI color support in Windows console - { -#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING -#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x4 -#endif - - HANDLE hStdin = GetStdHandle(STD_OUTPUT_HANDLE); - if (hStdin) { - DWORD consoleMode; - if (GetConsoleMode(hStdin, &consoleMode)) { - if ((consoleMode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) == 0) { - if (SetConsoleMode(hStdin, consoleMode | ENABLE_VIRTUAL_TERMINAL_PROCESSING)) { - std::cout << "Enabled ANSI color support in console" << std::endl; - } else { - RsErr() << "Error getting console mode" << std::endl; - } - } - } else { - RsErr() << "Error getting console mode" << std::endl; - } - } else { - RsErr() << "Error getting stdin handle" << std::endl; - } - } -#endif - RsInfo() << "\n" << "+================================================================+\n" "| o---o o |\n" @@ -229,45 +181,31 @@ int main(int argc, char* argv[]) while(keepRunning) { - webui_pass1 = RsUtil::rs_getpass( colored(COLOR_GREEN,"Please register a password for the web interface: ")); - webui_pass2 = RsUtil::rs_getpass( colored(COLOR_GREEN,"Please enter the same password again : ")); + webui_pass1 = RsUtil::rs_getpass( + "Please register a password for the web interface: " ); + webui_pass2 = RsUtil::rs_getpass( + "Please enter the same password again : " ); if(webui_pass1 != webui_pass2) { - std::cout << colored(COLOR_RED,"Passwords do not match!") << std::endl; + std::cout << "Passwords do not match!" << std::endl; continue; } if(webui_pass1.empty()) { - std::cout << colored(COLOR_RED,"Password cannot be empty!") << std::endl; + std::cout << "Password cannot be empty!" << std::endl; continue; } break; } } -#ifdef RS_SERVICE_TERMINAL_WEBUI_PASSWORD - if(askWebUiPassword && !webui_pass1.empty()) - { - rsWebUi->setHtmlFilesDirectory(webui_base_directory); - conf.webUIPasswd = webui_pass1; // cannot be set using rsWebUI methods because it calls the still non-existent rsJsonApi - conf.enableWebUI = true; - - // JsonApi is started below in InitRetroShare(). Not calling restart here avoids multiple restart. - } -#endif #endif /* defined(RS_JSONAPI) && defined(RS_WEBUI) && defined(RS_SERVICE_TERMINAL_WEBUI_PASSWORD) */ conf.main_executable_path = argv[0]; int initResult = RsInit::InitRetroShare(conf); - -#ifdef RS_JSONAPI - RsInit::startupWebServices(conf,true); - rstime::rs_usleep(1000000); // waits for jas->restart to print stuff -#endif - if(initResult != RS_INIT_OK) { RsFatal() << "Retroshare core initalization failed with: " << initResult @@ -285,27 +223,28 @@ int main(int argc, char* argv[]) if(locations.size() == 0) { - RsErr() << colored(COLOR_RED,"No available accounts. You cannot use option -U list") << std::endl; + RsErr() << "No available accounts. You cannot use option -U list" << std::endl; return -RsInit::ERR_NO_AVAILABLE_ACCOUNT; } std::cout << std::endl << std::endl - << colored(COLOR_GREEN,"Available accounts:") << std::endl<( ceil(log(locations.size())/log(10.0)) ); for( uint32_t i=0; i= locations.size())) { - std::cout << colored(COLOR_GREEN,"Please enter account number: "); + std::cout << "Please enter account number: "; std::cout.flush(); std::string inputStr; @@ -325,7 +264,7 @@ int main(int argc, char* argv[]) RsPeerId ssl_id(prefUserString); if(ssl_id.isNull()) { - RsErr() << colored(COLOR_RED,"Invalid User location id: a hexadecimal ID is expected.") + RsErr() << "Invalid User location id: a hexadecimal ID is expected." << std::endl; return -EINVAL; } @@ -360,7 +299,7 @@ int main(int argc, char* argv[]) if(RsAccounts::isTorAuto()) { - std::cerr << colored(COLOR_GREEN,"(II) Hidden service is ready:") << std::endl; + std::cerr << "(II) Hidden service is ready:" << std::endl; std::string service_id ; std::string onion_address ; @@ -373,13 +312,13 @@ int main(int argc, char* argv[]) RsTor::getHiddenServiceInfo(service_id,onion_address,service_port,service_target_address,service_target_port); RsTor::getProxyServerInfo(proxy_server_address,proxy_server_port) ; - std::cerr << colored(COLOR_GREEN," onion address : ") << onion_address << std::endl; - std::cerr << colored(COLOR_GREEN," service_id : ") << service_id << std::endl; - std::cerr << colored(COLOR_GREEN," service port : ") << service_port << std::endl; - std::cerr << colored(COLOR_GREEN," target port : ") << service_target_port << std::endl; - std::cerr << colored(COLOR_GREEN," target address : ") << service_target_address << std::endl; + std::cerr << " onion address : " << onion_address << std::endl; + std::cerr << " service_id : " << service_id << std::endl; + std::cerr << " service port : " << service_port << std::endl; + std::cerr << " target port : " << service_target_port << std::endl; + std::cerr << " target address : " << service_target_address << std::endl; - std::cerr << colored(COLOR_GREEN,"Setting proxy server to ") << service_target_address << ":" << service_target_port << std::endl; + std::cerr << "Setting proxy server to " << service_target_address << ":" << service_target_port << std::endl; rsPeers->setLocalAddress(rsPeers->getOwnId(), service_target_address, service_target_port); rsPeers->setHiddenNode(rsPeers->getOwnId(), onion_address, service_port); @@ -388,6 +327,15 @@ int main(int argc, char* argv[]) } #endif // def RS_SERVICE_TERMINAL_LOGIN +#if (defined(RS_JSONAPI) && defined(RS_WEBUI)) && defined(RS_SERVICE_TERMINAL_WEBUI_PASSWORD) + if(rsJsonApi && !webui_pass1.empty()) + { + rsWebUi->setHtmlFilesDirectory(webui_base_directory); + rsWebUi->setUserPassword(webui_pass1); + rsWebUi->restart(); + } +#endif + rsControl->setShutdownCallback([&](int){keepRunning = false;}); while(keepRunning) diff --git a/retroshare-service/src/retroshare-service.pro b/retroshare-service/src/retroshare-service.pro index 275f868cc..6458e03ed 100644 --- a/retroshare-service/src/retroshare-service.pro +++ b/retroshare-service/src/retroshare-service.pro @@ -70,10 +70,6 @@ macx { #QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.4 LIBS += -lz #LIBS += -lssl -lcrypto -lz -lgpgme -lgpg-error -lassuan - RC_FILE = $$files($$PWD/logo.icns) - mac_icon.files = $$files($$PWD/logo.icns) - mac_icon.path = Contents/Resources - QMAKE_BUNDLE_DATA += mac_icon for(lib, LIB_DIR):exists($$lib/libminiupnpc.a){ LIBS += $$lib/libminiupnpc.a} diff --git a/retroshare-webui b/retroshare-webui index edfc638a6..b0ddb0918 160000 --- a/retroshare-webui +++ b/retroshare-webui @@ -1 +1 @@ -Subproject commit edfc638a6af87d0f60489632416105e1fa13fc4e +Subproject commit b0ddb09184e8fff86bd3325e00c6d4b329ae1790 diff --git a/retroshare.pri b/retroshare.pri index 2e8bb729a..9ed316b9a 100644 --- a/retroshare.pri +++ b/retroshare.pri @@ -52,9 +52,9 @@ CONFIG *= retroshare_service no_retroshare_service:CONFIG -= retroshare_service # To disable RetroShare FriendServer append the following assignation to -# qmake command line "CONFIG+=no_retroshare_friendserver" +# qmake command line "CONFIG+=no_rs_friendserver" CONFIG *= retroshare_friendserver -no_retroshare_friendserver:CONFIG -= retroshare_friendserver +no_rs_friendserver:CONFIG -= retroshare_friendserver # To disable SQLCipher support append the following assignation to qmake # command line "CONFIG+=no_sqlcipher" @@ -132,7 +132,7 @@ use_dht_stunner_ext_ip:CONFIG -= no_use_dht_stunner_ext_ip # To select your MacOsX version append the following assignation to qmake # command line "CONFIG+=rs_macos10.11" where 10.11 depends your version -macx:CONFIG *= rs_macos11.1 +macx:CONFIG *= rs_macos10.11 rs_macos10.8:CONFIG -= rs_macos10.11 rs_macos10.9:CONFIG -= rs_macos10.11 rs_macos10.10:CONFIG -= rs_macos10.11 @@ -182,12 +182,6 @@ rs_deep_files_index_taglib:CONFIG -= no_rs_deep_files_index_taglib CONFIG *= no_rs_use_native_dialogs rs_use_native_dialogs:CONFIG -= no_rs_use_native_dialogs -# By default, use RNP lib for RFC4880 PGP management. If not, compilation will -# default to openpgp-sdk, which is old and unmaintained, so probably not very secure. -CONFIG *= rs_rnplib -rs_no_rnplib:CONFIG -= rs_rnplib -rs_no_rnplib:CONFIG += rs_openpgpsdk - # To disable broadcast discovery append the following assignation to qmake # command line "CONFIG+=no_rs_broadcast_discovery" CONFIG *= rs_broadcast_discovery @@ -286,7 +280,7 @@ isEmpty(RS_THREAD_LIB):RS_THREAD_LIB = pthread # # V07_NON_BACKWARD_COMPATIBLE_CHANGE_002: # -# What: Use RSA+SHA256 instead of RSA+SHA1 for SSL certificates +# What: Use RSA+SHA256 instead of RSA+SHA1 for PGP certificate signatures # # Why: Sha1 is likely to be prone to primary collisions anytime soon, so it is urgent to turn to a more secure solution. # @@ -296,38 +290,16 @@ isEmpty(RS_THREAD_LIB):RS_THREAD_LIB = pthread # # What: Do not hash PGP certificate twice when signing # -# Why: hasing twice is not per se a security issue, but it makes it harder to change the settings for hashing. +# Why: hasing twice is not per se a security issue, but it makes it harder to change the settings for hashing. # -# Backward compat: patched peers cannot connect to non patched peers older than Nov 2017. +# Backward compat: patched peers cannot connect to non patched peers older than Nov 2017. # # V07_NON_BACKWARD_COMPATIBLE_CHANGE_004: # # What: Do not probe that GXS tunnels accept fast items. Just assume they do. -# # Why: Avoids sending probe packets -# # BackwardCompat: old RS before Mai 2019 will not be able to distant chat. # -# V07_NON_BACKWARD_COMPATIBLE_CHANGE_005: -# -# What: Stop accepting certificates signed with sha1 algorithm -# -# Why: Sha1 has been declared insecure and shouldn't be used anymore. -# -# BackwardCompat: Retroshare profiles generated before Nov.2024 with openpgp-sdk may still use sha1 -# -########################################################################################################################################################### - -########################################################################################################################################################### -# -# V06_EXPERIMENTAL_CHANGE_001: -# -# What: removes issuer fingerprint from signature subpackets -# Why: This type of subpacket is not part of RFC4880 and not recognised by OpenPGP-SDK -# BackwardCompat: old RS before Sept.2024 will not be able to exchange keys -# Note: Since signature subpacket 33 is part of the hashed section of the signature, this also invalidates the signature. -# Depending on the implementation, certificates with self-signature that miss this subpacket may not be accepted. -# ########################################################################################################################################################### @@ -341,7 +313,6 @@ rs_v07_changes { DEFINES += V07_NON_BACKWARD_COMPATIBLE_CHANGE_002 DEFINES += V07_NON_BACKWARD_COMPATIBLE_CHANGE_003 DEFINES += V07_NON_BACKWARD_COMPATIBLE_CHANGE_004 - DEFINES += V07_NON_BACKWARD_COMPATIBLE_CHANGE_005 DEFINES += V07_NON_BACKWARD_COMPATIBLE_CHANGE_UNNAMED } @@ -485,26 +456,13 @@ defined in command line") RS_MINOR_VERSION = $$member(RS_GIT_DESCRIBE_SPLIT, 1) RS_GIT_DESCRIBE_SPLIT = $$member(RS_GIT_DESCRIBE_SPLIT, 2) - RS_GIT_DESCRIBE_SPLIT = $$split(RS_GIT_DESCRIBE_SPLIT, ) + RS_GIT_DESCRIBE_SPLIT = $$split(RS_GIT_DESCRIBE_SPLIT, -) - # Split string into mini version (leading numbers) and extra version (string after the numbers) - RS_MINI_VERSION = - RS_EXTRA_VERSION = - for(CHAR, RS_GIT_DESCRIBE_SPLIT) { - isEqual(CHAR, 0) | greaterThan(CHAR, 0):lessThan(CHAR, 9) | isEqual(CHAR, 9) { - # Number - isEmpty(RS_EXTRA_VERSION) { - # Add leading numbers to mini version - RS_MINI_VERSION = $${RS_MINI_VERSION}$${CHAR} - } else { - # Add to extra version - RS_EXTRA_VERSION = $${RS_EXTRA_VERSION}$${CHAR} - } - } else { - # Add to extra version - RS_EXTRA_VERSION = $${RS_EXTRA_VERSION}$${CHAR} - } - } + RS_MINI_VERSION = $$member(RS_GIT_DESCRIBE_SPLIT, 0) + + RS_GIT_DESCRIBE_SPLIT = $$member(RS_GIT_DESCRIBE_SPLIT, 1, -1) + + RS_EXTRA_VERSION = $$join(RS_GIT_DESCRIBE_SPLIT,-,-) message("RetroShare version\ $${RS_MAJOR_VERSION}.$${RS_MINOR_VERSION}.$${RS_MINI_VERSION}$${RS_EXTRA_VERSION}\ @@ -852,9 +810,6 @@ macx-* { QMAKE_LIBDIR += "/usr/local/opt/openssl/lib" QMAKE_LIBDIR += "/usr/local/opt/sqlcipher/lib" QMAKE_LIBDIR += "/usr/local/opt/miniupnpc/lib" - INCLUDEPATH += "/usr/local/opt/libxml2/include/libxml2" - INCLUDEPATH += "/usr/local/opt/libxslt/include" - QMAKE_LIBDIR += "/usr/local/opt/libxslt/lib" } # If not yet defined attempt UPnP library autodetection should works at least @@ -881,19 +836,6 @@ isEmpty(RS_UPNP_LIB) { } } -rs_openpgpsdk { - SUBDIRS += openpgpsdk - openpgpsdk.file = openpgpsdk/src/openpgpsdk.pro - libretroshare.depends += openpgpsdk - message("Using OpenPGP-SDK for PGP") -} - -rs_rnplib { - DEFINES += USE_RNP_LIB - message("Using RNP lib for PGP") -} - - equals(RS_UPNP_LIB, none):RS_UPNP_LIB= equals(RS_UPNP_LIB, miniupnpc):DEFINES*=RS_USE_LIBMINIUPNPC contains(RS_UPNP_LIB, upnp):DEFINES*=RS_USE_LIBUPNP diff --git a/supportlibs/cmark b/supportlibs/cmark index 3460cd809..b9c7a496b 160000 --- a/supportlibs/cmark +++ b/supportlibs/cmark @@ -1 +1 @@ -Subproject commit 3460cd809b6dd311b58e92733ece2fc956224fd2 +Subproject commit b9c7a496ba7dd9c3495bae2ff2855899e47b245d diff --git a/supportlibs/librnp b/supportlibs/librnp deleted file mode 160000 index ec7811726..000000000 --- a/supportlibs/librnp +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ec78117269461b2cdce15a085033a8c6bff6d7e3 diff --git a/supportlibs/libsam3 b/supportlibs/libsam3 index f90555ba4..8623304b6 160000 --- a/supportlibs/libsam3 +++ b/supportlibs/libsam3 @@ -1 +1 @@ -Subproject commit f90555ba4d6f9fadb6f0fbb1e2253e13557aad34 +Subproject commit 8623304b62294dafbe477573f321a464fef721dd diff --git a/supportlibs/rapidjson b/supportlibs/rapidjson index 24b5e7a8b..f54b0e47a 160000 --- a/supportlibs/rapidjson +++ b/supportlibs/rapidjson @@ -1 +1 @@ -Subproject commit 24b5e7a8b27f42fa16b96fc70aade9106cf7102f +Subproject commit f54b0e47a08782a6131cc3d60f94d038fa6e0a51 diff --git a/supportlibs/restbed b/supportlibs/restbed index 8b99a9699..c27c6726d 160000 --- a/supportlibs/restbed +++ b/supportlibs/restbed @@ -1 +1 @@ -Subproject commit 8b99a9699172cc718e164964f48a1ba27551c86d +Subproject commit c27c6726d28c42e2e1b7537ba63eeb23e944789d