diff --git a/.gitignore b/.gitignore index 7a0b1717..38dba2bf 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ qml_without_webengine.qrc # auto-gen files resources.qrc -src/constant/JamiResources.qml +src/app/constant/JamiResources.qml # macOS .DS_Store diff --git a/CMakeLists.txt b/CMakeLists.txt index d9732cfe..be5132a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,7 +63,7 @@ foreach(MODULE ${QT_MODULES}) list(APPEND QT_LIBS "Qt::${MODULE}") endforeach() -set(SRC_DIR ${PROJECT_SOURCE_DIR}/src) +set(APP_SRC_DIR ${PROJECT_SOURCE_DIR}/src/app) set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}) set(CMAKE_INSTALL_RPATH_USE_LINK_PATH true) @@ -112,115 +112,115 @@ execute_process( add_definitions(-DQT_NO_KEYWORDS) set(COMMON_SOURCES - ${SRC_DIR}/bannedlistmodel.cpp - ${SRC_DIR}/accountlistmodel.cpp - ${SRC_DIR}/networkmanager.cpp - ${SRC_DIR}/instancemanager.cpp - ${SRC_DIR}/main.cpp - ${SRC_DIR}/smartlistmodel.cpp - ${SRC_DIR}/utils.cpp - ${SRC_DIR}/mainapplication.cpp - ${SRC_DIR}/messagesadapter.cpp - ${SRC_DIR}/accountadapter.cpp - ${SRC_DIR}/calladapter.cpp - ${SRC_DIR}/conversationsadapter.cpp - ${SRC_DIR}/avadapter.cpp - ${SRC_DIR}/contactadapter.cpp - ${SRC_DIR}/pluginadapter.cpp - ${SRC_DIR}/deviceitemlistmodel.cpp - ${SRC_DIR}/pluginlistmodel.cpp - ${SRC_DIR}/pluginhandlerlistmodel.cpp - ${SRC_DIR}/preferenceitemlistmodel.cpp - ${SRC_DIR}/mediacodeclistmodel.cpp - ${SRC_DIR}/currentaccounttomigrate.cpp - ${SRC_DIR}/audiodevicemodel.cpp - ${SRC_DIR}/pluginlistpreferencemodel.cpp - ${SRC_DIR}/audiomanagerlistmodel.cpp - ${SRC_DIR}/qmlregister.cpp - ${SRC_DIR}/utilsadapter.cpp - ${SRC_DIR}/moderatorlistmodel.cpp - ${SRC_DIR}/screensaver.cpp - ${SRC_DIR}/systemtray.cpp - ${SRC_DIR}/appsettingsmanager.cpp - ${SRC_DIR}/lrcinstance.cpp - ${SRC_DIR}/selectablelistproxymodel.cpp - ${SRC_DIR}/conversationlistmodelbase.cpp - ${SRC_DIR}/conversationlistmodel.cpp - ${SRC_DIR}/searchresultslistmodel.cpp - ${SRC_DIR}/calloverlaymodel.cpp - ${SRC_DIR}/filestosendlistmodel.cpp - ${SRC_DIR}/wizardviewstepmodel.cpp - ${SRC_DIR}/avatarregistry.cpp - ${SRC_DIR}/currentconversation.cpp - ${SRC_DIR}/currentaccount.cpp - ${SRC_DIR}/videodevices.cpp - ${SRC_DIR}/videoprovider.cpp - ${SRC_DIR}/callparticipantsmodel.cpp + ${APP_SRC_DIR}/bannedlistmodel.cpp + ${APP_SRC_DIR}/accountlistmodel.cpp + ${APP_SRC_DIR}/networkmanager.cpp + ${APP_SRC_DIR}/instancemanager.cpp + ${APP_SRC_DIR}/main.cpp + ${APP_SRC_DIR}/smartlistmodel.cpp + ${APP_SRC_DIR}/utils.cpp + ${APP_SRC_DIR}/mainapplication.cpp + ${APP_SRC_DIR}/messagesadapter.cpp + ${APP_SRC_DIR}/accountadapter.cpp + ${APP_SRC_DIR}/calladapter.cpp + ${APP_SRC_DIR}/conversationsadapter.cpp + ${APP_SRC_DIR}/avadapter.cpp + ${APP_SRC_DIR}/contactadapter.cpp + ${APP_SRC_DIR}/pluginadapter.cpp + ${APP_SRC_DIR}/deviceitemlistmodel.cpp + ${APP_SRC_DIR}/pluginlistmodel.cpp + ${APP_SRC_DIR}/pluginhandlerlistmodel.cpp + ${APP_SRC_DIR}/preferenceitemlistmodel.cpp + ${APP_SRC_DIR}/mediacodeclistmodel.cpp + ${APP_SRC_DIR}/currentaccounttomigrate.cpp + ${APP_SRC_DIR}/audiodevicemodel.cpp + ${APP_SRC_DIR}/pluginlistpreferencemodel.cpp + ${APP_SRC_DIR}/audiomanagerlistmodel.cpp + ${APP_SRC_DIR}/qmlregister.cpp + ${APP_SRC_DIR}/utilsadapter.cpp + ${APP_SRC_DIR}/moderatorlistmodel.cpp + ${APP_SRC_DIR}/screensaver.cpp + ${APP_SRC_DIR}/systemtray.cpp + ${APP_SRC_DIR}/appsettingsmanager.cpp + ${APP_SRC_DIR}/lrcinstance.cpp + ${APP_SRC_DIR}/selectablelistproxymodel.cpp + ${APP_SRC_DIR}/conversationlistmodelbase.cpp + ${APP_SRC_DIR}/conversationlistmodel.cpp + ${APP_SRC_DIR}/searchresultslistmodel.cpp + ${APP_SRC_DIR}/calloverlaymodel.cpp + ${APP_SRC_DIR}/filestosendlistmodel.cpp + ${APP_SRC_DIR}/wizardviewstepmodel.cpp + ${APP_SRC_DIR}/avatarregistry.cpp + ${APP_SRC_DIR}/currentconversation.cpp + ${APP_SRC_DIR}/currentaccount.cpp + ${APP_SRC_DIR}/videodevices.cpp + ${APP_SRC_DIR}/videoprovider.cpp + ${APP_SRC_DIR}/callparticipantsmodel.cpp ) set(COMMON_HEADERS - ${SRC_DIR}/avatarimageprovider.h - ${SRC_DIR}/networkmanager.h - ${SRC_DIR}/smartlistmodel.h - ${SRC_DIR}/updatemanager.h - ${SRC_DIR}/utils.h - ${SRC_DIR}/bannedlistmodel.h - ${SRC_DIR}/version.h - ${SRC_DIR}/accountlistmodel.h - ${SRC_DIR}/instancemanager.h - ${SRC_DIR}/connectivitymonitor.h - ${SRC_DIR}/jamiavatartheme.h - ${SRC_DIR}/mainapplication.h - ${SRC_DIR}/qrimageprovider.h - ${SRC_DIR}/messagesadapter.h - ${SRC_DIR}/accountadapter.h - ${SRC_DIR}/calladapter.h - ${SRC_DIR}/conversationsadapter.h - ${SRC_DIR}/qmladapterbase.h - ${SRC_DIR}/avadapter.h - ${SRC_DIR}/contactadapter.h - ${SRC_DIR}/pluginadapter.h - ${SRC_DIR}/deviceitemlistmodel.h - ${SRC_DIR}/pluginlistmodel.h - ${SRC_DIR}/pluginhandlerlistmodel.h - ${SRC_DIR}/preferenceitemlistmodel.h - ${SRC_DIR}/mediacodeclistmodel.h - ${SRC_DIR}/currentaccounttomigrate.h - ${SRC_DIR}/audiodevicemodel.h - ${SRC_DIR}/pluginlistpreferencemodel.h - ${SRC_DIR}/audiomanagerlistmodel.h - ${SRC_DIR}/qmlregister.h - ${SRC_DIR}/abstractlistmodelbase.h - ${SRC_DIR}/quickimageproviderbase.h - ${SRC_DIR}/qtutils.h - ${SRC_DIR}/utilsadapter.h - ${SRC_DIR}/moderatorlistmodel.h - ${SRC_DIR}/screensaver.h - ${SRC_DIR}/systemtray.h - ${SRC_DIR}/appsettingsmanager.h - ${SRC_DIR}/lrcinstance.h - ${SRC_DIR}/selectablelistproxymodel.h - ${SRC_DIR}/conversationlistmodelbase.h - ${SRC_DIR}/conversationlistmodel.h - ${SRC_DIR}/searchresultslistmodel.h - ${SRC_DIR}/calloverlaymodel.h - ${SRC_DIR}/filestosendlistmodel.h - ${SRC_DIR}/wizardviewstepmodel.h - ${SRC_DIR}/avatarregistry.h - ${SRC_DIR}/currentconversation.h - ${SRC_DIR}/currentaccount.h - ${SRC_DIR}/videodevices.h - ${SRC_DIR}/videoprovider.h - ${SRC_DIR}/callparticipantsmodel.h + ${APP_SRC_DIR}/avatarimageprovider.h + ${APP_SRC_DIR}/networkmanager.h + ${APP_SRC_DIR}/smartlistmodel.h + ${APP_SRC_DIR}/updatemanager.h + ${APP_SRC_DIR}/utils.h + ${APP_SRC_DIR}/bannedlistmodel.h + ${APP_SRC_DIR}/version.h + ${APP_SRC_DIR}/accountlistmodel.h + ${APP_SRC_DIR}/instancemanager.h + ${APP_SRC_DIR}/connectivitymonitor.h + ${APP_SRC_DIR}/jamiavatartheme.h + ${APP_SRC_DIR}/mainapplication.h + ${APP_SRC_DIR}/qrimageprovider.h + ${APP_SRC_DIR}/messagesadapter.h + ${APP_SRC_DIR}/accountadapter.h + ${APP_SRC_DIR}/calladapter.h + ${APP_SRC_DIR}/conversationsadapter.h + ${APP_SRC_DIR}/qmladapterbase.h + ${APP_SRC_DIR}/avadapter.h + ${APP_SRC_DIR}/contactadapter.h + ${APP_SRC_DIR}/pluginadapter.h + ${APP_SRC_DIR}/deviceitemlistmodel.h + ${APP_SRC_DIR}/pluginlistmodel.h + ${APP_SRC_DIR}/pluginhandlerlistmodel.h + ${APP_SRC_DIR}/preferenceitemlistmodel.h + ${APP_SRC_DIR}/mediacodeclistmodel.h + ${APP_SRC_DIR}/currentaccounttomigrate.h + ${APP_SRC_DIR}/audiodevicemodel.h + ${APP_SRC_DIR}/pluginlistpreferencemodel.h + ${APP_SRC_DIR}/audiomanagerlistmodel.h + ${APP_SRC_DIR}/qmlregister.h + ${APP_SRC_DIR}/abstractlistmodelbase.h + ${APP_SRC_DIR}/quickimageproviderbase.h + ${APP_SRC_DIR}/qtutils.h + ${APP_SRC_DIR}/utilsadapter.h + ${APP_SRC_DIR}/moderatorlistmodel.h + ${APP_SRC_DIR}/screensaver.h + ${APP_SRC_DIR}/systemtray.h + ${APP_SRC_DIR}/appsettingsmanager.h + ${APP_SRC_DIR}/lrcinstance.h + ${APP_SRC_DIR}/selectablelistproxymodel.h + ${APP_SRC_DIR}/conversationlistmodelbase.h + ${APP_SRC_DIR}/conversationlistmodel.h + ${APP_SRC_DIR}/searchresultslistmodel.h + ${APP_SRC_DIR}/calloverlaymodel.h + ${APP_SRC_DIR}/filestosendlistmodel.h + ${APP_SRC_DIR}/wizardviewstepmodel.h + ${APP_SRC_DIR}/avatarregistry.h + ${APP_SRC_DIR}/currentconversation.h + ${APP_SRC_DIR}/currentaccount.h + ${APP_SRC_DIR}/videodevices.h + ${APP_SRC_DIR}/videoprovider.h + ${APP_SRC_DIR}/callparticipantsmodel.h ) if(WITH_WEBENGINE) list(APPEND COMMON_SOURCES - ${SRC_DIR}/previewengine.cpp) + ${APP_SRC_DIR}/previewengine.cpp) add_definitions(-DWITH_WEBENGINE) else() list(APPEND COMMON_SOURCES - ${SRC_DIR}/nowebengine/previewengine.cpp) + ${APP_SRC_DIR}/nowebengine/previewengine.cpp) endif() # For libavutil/avframe. @@ -250,8 +250,8 @@ if(MSVC) ) list(APPEND COMMON_SOURCES - ${SRC_DIR}/connectivitymonitor.cpp - ${SRC_DIR}/updatemanager.cpp + ${APP_SRC_DIR}/connectivitymonitor.cpp + ${APP_SRC_DIR}/updatemanager.cpp ) # preprocessor defines add_definitions(-DUNICODE -DQT_NO_DEBUG -DNDEBUG) @@ -305,13 +305,13 @@ if(MSVC) ) elseif (NOT APPLE) list(APPEND COMMON_SOURCES - ${SRC_DIR}/xrectsel.c - ${SRC_DIR}/dbuserrorhandler.cpp - ${SRC_DIR}/connectivitymonitor.cpp - ${SRC_DIR}/updatemanager.cpp) + ${APP_SRC_DIR}/xrectsel.c + ${APP_SRC_DIR}/dbuserrorhandler.cpp + ${APP_SRC_DIR}/connectivitymonitor.cpp + ${APP_SRC_DIR}/updatemanager.cpp) list(APPEND COMMON_HEADERS - ${SRC_DIR}/dbuserrorhandler.h - ${SRC_DIR}/xrectsel.h) + ${APP_SRC_DIR}/dbuserrorhandler.h + ${APP_SRC_DIR}/xrectsel.h) list(APPEND QT_LIBS Qt::DBus) list(APPEND QT_MODULES DBus) @@ -389,11 +389,11 @@ elseif (NOT APPLE) find_library(X11 X11) else() # APPLE list(APPEND COMMON_SOURCES - ${SRC_DIR}/os/macos/updatemanager.mm - ${SRC_DIR}/os/macos/connectivitymonitor.mm - ${SRC_DIR}/os/macos/macutils.mm) + ${APP_SRC_DIR}/os/macos/updatemanager.mm + ${APP_SRC_DIR}/os/macos/connectivitymonitor.mm + ${APP_SRC_DIR}/os/macos/macutils.mm) list(APPEND COMMON_HEADERS - ${SRC_DIR}/os/macos/macutils.h) + ${APP_SRC_DIR}/os/macos/macutils.h) if(NOT DEFINED LRC) if(EXISTS ${PROJECT_SOURCE_DIR}/../install/lrc) set(LRC ${PROJECT_SOURCE_DIR}/../install/lrc) @@ -465,11 +465,11 @@ endif() # common include include_directories(${PROJECT_SOURCE_DIR} - ${SRC_DIR}) + ${APP_SRC_DIR}) # common executable sources qt_add_executable(${PROJECT_NAME} MANUAL_FINALIZATION - ${SRC_DIR}/main.cpp + ${APP_SRC_DIR}/main.cpp ${COMMON_HEADERS} ${COMMON_SOURCES} ${QML_RESOURCES} @@ -540,7 +540,7 @@ if(MSVC) WORKING_DIRECTORY "$" COMMAND ${CMAKE_COMMAND} -DTIME_STAMP_FILE=${TIME_STAMP_FILE} -DWIN_DEPLOY_QT_PATH=${CMAKE_PREFIX_PATH}/bin - -DQML_SRC_DIR=${SRC_DIR} + -DQML_SRC_DIR=${APP_SRC_DIR} -DEXE_NAME=$ -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/windows_qt_deploy.cmake) @@ -613,7 +613,7 @@ elseif (NOT APPLE) # install jami launcher that selects between clients install( FILES - "${PROJECT_SOURCE_DIR}/src/jami" + "${PROJECT_SOURCE_DIR}/src/app/jami" DESTINATION ${CMAKE_INSTALL_PREFIX}/bin PERMISSIONS @@ -711,7 +711,7 @@ else() XCODE_ATTRIBUTE_ENABLE_HARDENED_RUNTIME TRUE) if(DEPLOY) add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -DQML_SRC_DIR=${SRC_DIR} + COMMAND ${CMAKE_COMMAND} -DQML_SRC_DIR=${APP_SRC_DIR} -DMAC_DEPLOY_QT_PATH=${CMAKE_PREFIX_PATH}/bin -DEXE_NAME="${CMAKE_BINARY_DIR}/${PROJECT_NAME}.app" -DSPARKLE_PATH=${SPARKLE_FRAMEWORK} diff --git a/gen-resources.py b/gen-resources.py index 176b6d2f..9bf912e3 100644 --- a/gen-resources.py +++ b/gen-resources.py @@ -3,7 +3,7 @@ import sys import re resdir = 'resources' -qmlfile = os.path.join('src', 'constant', 'JamiResources.qml') +qmlfile = os.path.join('src', 'app', 'constant', 'JamiResources.qml') sep = '_' print("Generating resource files ...") @@ -32,4 +32,4 @@ with open('resources.qrc', 'w') as qrc, open(qmlfile, 'w') as qml: % (formatProp(filename), filepath.split('/', 1)[1])) qrc.write('\t\n') qml.write('}') - qrc.write('') \ No newline at end of file + qrc.write('') diff --git a/qml.qrc b/qml.qrc index 1e587633..a2811172 100644 --- a/qml.qrc +++ b/qml.qrc @@ -1,193 +1,193 @@ - src/MainApplicationWindow.qml - src/DaemonReconnectWindow.qml - src/constant/JamiQmlUtils.qml - src/constant/JamiStrings.qml - src/constant/JamiTheme.qml - src/commoncomponents/VideoView.qml - src/commoncomponents/LocalVideo.qml - src/commoncomponents/SettingParaCombobox.qml - src/commoncomponents/PreferenceItemDelegate.qml - src/commoncomponents/PasswordDialog.qml - src/commoncomponents/EditableLineEdit.qml - src/commoncomponents/MaterialLineEdit.qml - src/commoncomponents/PhotoboothView.qml - src/commoncomponents/JamiListView.qml - src/commoncomponents/DeleteAccountDialog.qml - src/commoncomponents/CustomBorder.qml - src/commoncomponents/PushButton.qml - src/commoncomponents/JamiFileDialog.qml - src/commoncomponents/MaterialButton.qml - src/commoncomponents/ElidedTextLabel.qml - src/commoncomponents/SpinnerButton.qml - src/commoncomponents/UsernameLineEdit.qml - src/commoncomponents/Scaffold.qml - src/commoncomponents/LineEditContextMenu.qml - src/commoncomponents/BaseModalDialog.qml - src/commoncomponents/SimpleMessageDialog.qml - src/commoncomponents/ResponsiveImage.qml - src/commoncomponents/PresenceIndicator.qml - src/commoncomponents/DaemonReconnectPopup.qml - src/commoncomponents/SpinningAnimation.qml - src/commoncomponents/MediaPreviewBase.qml - src/settingsview/SettingsView.qml - src/settingsview/components/ChatviewSettings.qml - src/settingsview/components/FileTransferSettings.qml - src/settingsview/components/SettingsMenu.qml - src/settingsview/components/SettingsMenuButton.qml - src/settingsview/components/SettingsHeader.qml - src/settingsview/components/SystemSettings.qml - src/settingsview/components/RecordingSettings.qml - src/settingsview/components/UpdateSettings.qml - src/settingsview/components/AvSettingPage.qml - src/settingsview/components/AudioSettings.qml - src/settingsview/components/VideoSettings.qml - src/settingsview/components/GeneralSettingsPage.qml - src/settingsview/components/PluginSettingsPage.qml - src/settingsview/components/PluginListView.qml - src/settingsview/components/PluginPreferencesView.qml - src/settingsview/components/PluginPreferencesListView.qml - src/settingsview/components/CurrentAccountSettings.qml - src/settingsview/components/UserIdentity.qml - src/settingsview/components/JamiUserIdentity.qml - src/settingsview/components/SIPUserIdentity.qml - src/settingsview/components/AccountProfile.qml - src/settingsview/components/LinkedDevices.qml - src/settingsview/components/BannedContacts.qml - src/settingsview/components/AdvancedSettings.qml - src/settingsview/components/AdvancedJamiSecuritySettings.qml - src/settingsview/components/AdvancedSIPSecuritySettings.qml - src/settingsview/components/AdvancedMediaSettings.qml - src/settingsview/components/MediaSettings.qml - src/settingsview/components/AdvancedSDPSettings.qml - src/settingsview/components/AdvancedNameServerSettings.qml - src/settingsview/components/AdvancedVoiceMailSettings.qml - src/settingsview/components/AdvancedOpenDHTSettings.qml - src/settingsview/components/AdvancedPublicAddressSettings.qml - src/settingsview/components/AdvancedConnectivitySettings.qml - src/settingsview/components/AdvancedCallSettings.qml - src/settingsview/components/AdvancedChatSettings.qml - src/settingsview/components/SettingMaterialButton.qml - src/settingsview/components/ToggleSwitch.qml - src/settingsview/components/SettingSpinBox.qml - src/settingsview/components/SettingsComboBox.qml - src/settingsview/components/SettingsMaterialLineEdit.qml - src/settingsview/components/LevelMeter.qml - src/settingsview/components/DeviceItemDelegate.qml - src/settingsview/components/PluginItemDelegate.qml - src/settingsview/components/ContactItemDelegate.qml - src/settingsview/components/MediaCodecDelegate.qml - src/settingsview/components/NameRegistrationDialog.qml - src/settingsview/components/LinkDeviceDialog.qml - src/settingsview/components/RevokeDevicePasswordDialog.qml - src/wizardview/WizardView.qml - src/wizardview/components/WelcomePage.qml - src/wizardview/components/CreateAccountPage.qml - src/wizardview/components/CreateSIPAccountPage.qml - src/wizardview/components/ImportFromBackupPage.qml - src/wizardview/components/BackupKeyPage.qml - src/wizardview/components/ImportFromDevicePage.qml - src/wizardview/components/ConnectToAccountManagerPage.qml - src/wizardview/components/ProfilePage.qml - src/wizardview/components/AccountCreationStepIndicator.qml - src/mainview/MainView.qml - src/mainview/components/PluginHandlerItemDelegate.qml - src/mainview/components/AboutPopUp.qml - src/mainview/components/SidePanel.qml - src/mainview/components/WelcomePage.qml - src/mainview/components/ChatView.qml - src/mainview/components/NewSwarmPage.qml - src/mainview/components/ChatViewHeader.qml - src/mainview/components/AccountComboBox.qml - src/mainview/components/CallStackView.qml - src/mainview/components/InitialCallPage.qml - src/mainview/components/CallOverlay.qml - src/mainview/components/ContactSearchBar.qml - src/mainview/components/OngoingCallPage.qml - src/mainview/components/ParticipantOverlay.qml - src/mainview/components/ProjectCreditsScrollView.qml - src/mainview/components/AccountComboBoxPopup.qml - src/mainview/components/SidePanelTabBar.qml - src/mainview/components/WelcomePageQrDialog.qml - src/mainview/components/ConversationSmartListContextMenu.qml - src/mainview/components/SwarmParticipantContextMenu.qml - src/mainview/components/CallViewContextMenu.qml - src/mainview/components/UserProfile.qml - src/mainview/components/SwarmDetailsPanel.qml - src/mainview/components/AddMemberPanel.qml - src/mainview/components/SelectScreen.qml - src/mainview/components/ScreenRubberBand.qml - src/mainview/components/ContactPicker.qml - src/mainview/components/PluginHandlerPicker.qml - src/mainview/components/ContactPickerItemDelegate.qml - src/mainview/components/RecordBox.qml - src/mainview/components/SipInputPanel.qml - src/mainview/components/ParticipantOverlayMenu.qml - src/mainview/js/selectscreenwindowcreation.js - src/mainview/js/screenrubberbandcreation.js - src/mainview/js/contactpickercreation.js - src/mainview/js/pluginhandlerpickercreation.js - src/mainview/components/FilterTabButton.qml - src/mainview/components/AccountItemDelegate.qml - src/mainview/components/ConversationListView.qml - src/mainview/components/SmartListItemDelegate.qml - src/mainview/components/BadgeNotifier.qml - src/mainview/components/ParticipantsLayer.qml - src/mainview/components/MainOverlay.qml - src/mainview/components/CallButtonDelegate.qml - src/mainview/components/CallActionBar.qml - src/commoncomponents/HalfPill.qml - src/commoncomponents/MaterialToolTip.qml - src/mainview/components/ParticipantCallInStatusDelegate.qml - src/mainview/components/ParticipantCallInStatusView.qml - src/settingsview/components/TroubleshootSettings.qml - src/settingsview/components/LogsView.qml - src/commoncomponents/contextmenu/ContextMenuAutoLoader.qml - src/commoncomponents/contextmenu/BaseContextMenu.qml - src/commoncomponents/contextmenu/GeneralMenuItem.qml - src/commoncomponents/contextmenu/GeneralMenuSeparator.qml - src/mainview/components/ParticipantOverlayButton.qml - src/mainview/components/ParticipantControlLayout.qml - src/mainview/components/ChatViewFooter.qml - src/commoncomponents/emojipicker/EmojiPicker.qml - src/commoncomponents/emojipicker/emojiPickerLoader.js - src/commoncomponents/emojipicker/emojiPickerLoader.html - src/commoncomponents/emojipicker/emoji.js - src/mainview/components/MessageBarTextArea.qml - src/mainview/components/FilesToSendDelegate.qml - src/mainview/components/MessageBar.qml - src/mainview/components/FilesToSendContainer.qml - src/commoncomponents/Avatar.qml - src/mainview/components/ConversationAvatar.qml - src/mainview/components/InvitationView.qml - src/commoncomponents/GeneralWebEngineView.qml - src/constant/JamiResources.qml - src/commoncomponents/BubbleLabel.qml - src/commoncomponents/BackButton.qml - src/commoncomponents/JamiSwitch.qml - src/mainview/components/ReadOnlyFooter.qml - src/commoncomponents/TextMessageDelegate.qml - src/mainview/components/MessageListView.qml - src/commoncomponents/MessageBubble.qml - src/constant/MsgSeq.qml - src/commoncomponents/SBSContextMenu.qml - src/commoncomponents/SBSMessageBase.qml - src/commoncomponents/ReadStatus.qml - src/commoncomponents/GeneratedMessageDelegate.qml - src/commoncomponents/DataTransferMessageDelegate.qml - src/commoncomponents/ContactMessageDelegate.qml - src/mainview/components/ScrollToBottomButton.qml - src/commoncomponents/TypingDots.qml - src/commoncomponents/JamiScrollBar.qml + src/app/MainApplicationWindow.qml + src/app/DaemonReconnectWindow.qml + src/app/constant/JamiQmlUtils.qml + src/app/constant/JamiStrings.qml + src/app/constant/JamiTheme.qml + src/app/commoncomponents/VideoView.qml + src/app/commoncomponents/LocalVideo.qml + src/app/commoncomponents/SettingParaCombobox.qml + src/app/commoncomponents/PreferenceItemDelegate.qml + src/app/commoncomponents/PasswordDialog.qml + src/app/commoncomponents/EditableLineEdit.qml + src/app/commoncomponents/MaterialLineEdit.qml + src/app/commoncomponents/PhotoboothView.qml + src/app/commoncomponents/JamiListView.qml + src/app/commoncomponents/DeleteAccountDialog.qml + src/app/commoncomponents/CustomBorder.qml + src/app/commoncomponents/PushButton.qml + src/app/commoncomponents/JamiFileDialog.qml + src/app/commoncomponents/MaterialButton.qml + src/app/commoncomponents/ElidedTextLabel.qml + src/app/commoncomponents/SpinnerButton.qml + src/app/commoncomponents/UsernameLineEdit.qml + src/app/commoncomponents/Scaffold.qml + src/app/commoncomponents/LineEditContextMenu.qml + src/app/commoncomponents/BaseModalDialog.qml + src/app/commoncomponents/SimpleMessageDialog.qml + src/app/commoncomponents/ResponsiveImage.qml + src/app/commoncomponents/PresenceIndicator.qml + src/app/commoncomponents/DaemonReconnectPopup.qml + src/app/commoncomponents/SpinningAnimation.qml + src/app/commoncomponents/MediaPreviewBase.qml + src/app/settingsview/SettingsView.qml + src/app/settingsview/components/ChatviewSettings.qml + src/app/settingsview/components/FileTransferSettings.qml + src/app/settingsview/components/SettingsMenu.qml + src/app/settingsview/components/SettingsMenuButton.qml + src/app/settingsview/components/SettingsHeader.qml + src/app/settingsview/components/SystemSettings.qml + src/app/settingsview/components/RecordingSettings.qml + src/app/settingsview/components/UpdateSettings.qml + src/app/settingsview/components/AvSettingPage.qml + src/app/settingsview/components/AudioSettings.qml + src/app/settingsview/components/VideoSettings.qml + src/app/settingsview/components/GeneralSettingsPage.qml + src/app/settingsview/components/PluginSettingsPage.qml + src/app/settingsview/components/PluginListView.qml + src/app/settingsview/components/PluginPreferencesView.qml + src/app/settingsview/components/PluginPreferencesListView.qml + src/app/settingsview/components/CurrentAccountSettings.qml + src/app/settingsview/components/UserIdentity.qml + src/app/settingsview/components/JamiUserIdentity.qml + src/app/settingsview/components/SIPUserIdentity.qml + src/app/settingsview/components/AccountProfile.qml + src/app/settingsview/components/LinkedDevices.qml + src/app/settingsview/components/BannedContacts.qml + src/app/settingsview/components/AdvancedSettings.qml + src/app/settingsview/components/AdvancedJamiSecuritySettings.qml + src/app/settingsview/components/AdvancedSIPSecuritySettings.qml + src/app/settingsview/components/AdvancedMediaSettings.qml + src/app/settingsview/components/MediaSettings.qml + src/app/settingsview/components/AdvancedSDPSettings.qml + src/app/settingsview/components/AdvancedNameServerSettings.qml + src/app/settingsview/components/AdvancedVoiceMailSettings.qml + src/app/settingsview/components/AdvancedOpenDHTSettings.qml + src/app/settingsview/components/AdvancedPublicAddressSettings.qml + src/app/settingsview/components/AdvancedConnectivitySettings.qml + src/app/settingsview/components/AdvancedCallSettings.qml + src/app/settingsview/components/AdvancedChatSettings.qml + src/app/settingsview/components/SettingMaterialButton.qml + src/app/settingsview/components/ToggleSwitch.qml + src/app/settingsview/components/SettingSpinBox.qml + src/app/settingsview/components/SettingsComboBox.qml + src/app/settingsview/components/SettingsMaterialLineEdit.qml + src/app/settingsview/components/LevelMeter.qml + src/app/settingsview/components/DeviceItemDelegate.qml + src/app/settingsview/components/PluginItemDelegate.qml + src/app/settingsview/components/ContactItemDelegate.qml + src/app/settingsview/components/MediaCodecDelegate.qml + src/app/settingsview/components/NameRegistrationDialog.qml + src/app/settingsview/components/LinkDeviceDialog.qml + src/app/settingsview/components/RevokeDevicePasswordDialog.qml + src/app/wizardview/WizardView.qml + src/app/wizardview/components/WelcomePage.qml + src/app/wizardview/components/CreateAccountPage.qml + src/app/wizardview/components/CreateSIPAccountPage.qml + src/app/wizardview/components/ImportFromBackupPage.qml + src/app/wizardview/components/BackupKeyPage.qml + src/app/wizardview/components/ImportFromDevicePage.qml + src/app/wizardview/components/ConnectToAccountManagerPage.qml + src/app/wizardview/components/ProfilePage.qml + src/app/wizardview/components/AccountCreationStepIndicator.qml + src/app/mainview/MainView.qml + src/app/mainview/components/PluginHandlerItemDelegate.qml + src/app/mainview/components/AboutPopUp.qml + src/app/mainview/components/SidePanel.qml + src/app/mainview/components/WelcomePage.qml + src/app/mainview/components/ChatView.qml + src/app/mainview/components/NewSwarmPage.qml + src/app/mainview/components/ChatViewHeader.qml + src/app/mainview/components/AccountComboBox.qml + src/app/mainview/components/CallStackView.qml + src/app/mainview/components/InitialCallPage.qml + src/app/mainview/components/CallOverlay.qml + src/app/mainview/components/ContactSearchBar.qml + src/app/mainview/components/OngoingCallPage.qml + src/app/mainview/components/ParticipantOverlay.qml + src/app/mainview/components/ProjectCreditsScrollView.qml + src/app/mainview/components/AccountComboBoxPopup.qml + src/app/mainview/components/SidePanelTabBar.qml + src/app/mainview/components/WelcomePageQrDialog.qml + src/app/mainview/components/ConversationSmartListContextMenu.qml + src/app/mainview/components/SwarmParticipantContextMenu.qml + src/app/mainview/components/CallViewContextMenu.qml + src/app/mainview/components/UserProfile.qml + src/app/mainview/components/SwarmDetailsPanel.qml + src/app/mainview/components/AddMemberPanel.qml + src/app/mainview/components/SelectScreen.qml + src/app/mainview/components/ScreenRubberBand.qml + src/app/mainview/components/ContactPicker.qml + src/app/mainview/components/PluginHandlerPicker.qml + src/app/mainview/components/ContactPickerItemDelegate.qml + src/app/mainview/components/RecordBox.qml + src/app/mainview/components/SipInputPanel.qml + src/app/mainview/components/ParticipantOverlayMenu.qml + src/app/mainview/js/selectscreenwindowcreation.js + src/app/mainview/js/screenrubberbandcreation.js + src/app/mainview/js/contactpickercreation.js + src/app/mainview/js/pluginhandlerpickercreation.js + src/app/mainview/components/FilterTabButton.qml + src/app/mainview/components/AccountItemDelegate.qml + src/app/mainview/components/ConversationListView.qml + src/app/mainview/components/SmartListItemDelegate.qml + src/app/mainview/components/BadgeNotifier.qml + src/app/mainview/components/ParticipantsLayer.qml + src/app/mainview/components/MainOverlay.qml + src/app/mainview/components/CallButtonDelegate.qml + src/app/mainview/components/CallActionBar.qml + src/app/commoncomponents/HalfPill.qml + src/app/commoncomponents/MaterialToolTip.qml + src/app/mainview/components/ParticipantCallInStatusDelegate.qml + src/app/mainview/components/ParticipantCallInStatusView.qml + src/app/settingsview/components/TroubleshootSettings.qml + src/app/settingsview/components/LogsView.qml + src/app/commoncomponents/contextmenu/ContextMenuAutoLoader.qml + src/app/commoncomponents/contextmenu/BaseContextMenu.qml + src/app/commoncomponents/contextmenu/GeneralMenuItem.qml + src/app/commoncomponents/contextmenu/GeneralMenuSeparator.qml + src/app/mainview/components/ParticipantOverlayButton.qml + src/app/mainview/components/ParticipantControlLayout.qml + src/app/mainview/components/ChatViewFooter.qml + src/app/commoncomponents/emojipicker/EmojiPicker.qml + src/app/commoncomponents/emojipicker/emojiPickerLoader.js + src/app/commoncomponents/emojipicker/emojiPickerLoader.html + src/app/commoncomponents/emojipicker/emoji.js + src/app/mainview/components/MessageBarTextArea.qml + src/app/mainview/components/FilesToSendDelegate.qml + src/app/mainview/components/MessageBar.qml + src/app/mainview/components/FilesToSendContainer.qml + src/app/commoncomponents/Avatar.qml + src/app/mainview/components/ConversationAvatar.qml + src/app/mainview/components/InvitationView.qml + src/app/commoncomponents/GeneralWebEngineView.qml + src/app/constant/JamiResources.qml + src/app/commoncomponents/BubbleLabel.qml + src/app/commoncomponents/BackButton.qml + src/app/commoncomponents/JamiSwitch.qml + src/app/mainview/components/ReadOnlyFooter.qml + src/app/commoncomponents/TextMessageDelegate.qml + src/app/mainview/components/MessageListView.qml + src/app/commoncomponents/MessageBubble.qml + src/app/constant/MsgSeq.qml + src/app/commoncomponents/SBSContextMenu.qml + src/app/commoncomponents/SBSMessageBase.qml + src/app/commoncomponents/ReadStatus.qml + src/app/commoncomponents/GeneratedMessageDelegate.qml + src/app/commoncomponents/DataTransferMessageDelegate.qml + src/app/commoncomponents/ContactMessageDelegate.qml + src/app/mainview/components/ScrollToBottomButton.qml + src/app/commoncomponents/TypingDots.qml + src/app/commoncomponents/JamiScrollBar.qml qtquickcontrols2.conf - src/commoncomponents/JamiFlickable.qml - src/AccountMigrationView.qml - src/settingsview/js/logviewwindowcreation.js - src/mainview/js/keyboardshortcuttablecreation.js - src/mainview/components/KeyboardShortcutTable.qml - src/mainview/components/KeyboardShortcutKeyDelegate.qml - src/mainview/components/KeyboardShortcutTabButton.qml - src/LayoutManager.qml + src/app/commoncomponents/JamiFlickable.qml + src/app/AccountMigrationView.qml + src/app/settingsview/js/logviewwindowcreation.js + src/app/mainview/js/keyboardshortcuttablecreation.js + src/app/mainview/components/KeyboardShortcutTable.qml + src/app/mainview/components/KeyboardShortcutKeyDelegate.qml + src/app/mainview/components/KeyboardShortcutTabButton.qml + src/app/LayoutManager.qml diff --git a/scripts/gen-qrc-without-webengine.py b/scripts/gen-qrc-without-webengine.py index 7cce660a..f043da76 100755 --- a/scripts/gen-qrc-without-webengine.py +++ b/scripts/gen-qrc-without-webengine.py @@ -23,9 +23,9 @@ with open('qml_without_webengine.qrc', 'w') as outfile: line = infile.readline() while line: if 'EmojiPicker.qml' in line: - outfile.write('\tsrc/nowebengine/EmojiPicker.qml\n') + outfile.write('\tsrc/app/nowebengine/EmojiPicker.qml\n') elif 'MediaPreviewBase.qml' in line: - outfile.write('\tsrc/nowebengine/MediaPreviewBase.qml\n') + outfile.write('\tsrc/app/nowebengine/MediaPreviewBase.qml\n') else: outfile.write(line) line = infile.readline() diff --git a/src/AccountMigrationView.qml b/src/app/AccountMigrationView.qml similarity index 100% rename from src/AccountMigrationView.qml rename to src/app/AccountMigrationView.qml diff --git a/src/DaemonReconnectWindow.qml b/src/app/DaemonReconnectWindow.qml similarity index 100% rename from src/DaemonReconnectWindow.qml rename to src/app/DaemonReconnectWindow.qml diff --git a/src/LayoutManager.qml b/src/app/LayoutManager.qml similarity index 100% rename from src/LayoutManager.qml rename to src/app/LayoutManager.qml diff --git a/src/MainApplicationWindow.qml b/src/app/MainApplicationWindow.qml similarity index 100% rename from src/MainApplicationWindow.qml rename to src/app/MainApplicationWindow.qml diff --git a/src/abstractlistmodelbase.h b/src/app/abstractlistmodelbase.h similarity index 100% rename from src/abstractlistmodelbase.h rename to src/app/abstractlistmodelbase.h diff --git a/src/accountadapter.cpp b/src/app/accountadapter.cpp similarity index 100% rename from src/accountadapter.cpp rename to src/app/accountadapter.cpp diff --git a/src/accountadapter.h b/src/app/accountadapter.h similarity index 100% rename from src/accountadapter.h rename to src/app/accountadapter.h diff --git a/src/accountlistmodel.cpp b/src/app/accountlistmodel.cpp similarity index 100% rename from src/accountlistmodel.cpp rename to src/app/accountlistmodel.cpp diff --git a/src/accountlistmodel.h b/src/app/accountlistmodel.h similarity index 100% rename from src/accountlistmodel.h rename to src/app/accountlistmodel.h diff --git a/src/appsettingsmanager.cpp b/src/app/appsettingsmanager.cpp similarity index 100% rename from src/appsettingsmanager.cpp rename to src/app/appsettingsmanager.cpp diff --git a/src/appsettingsmanager.h b/src/app/appsettingsmanager.h similarity index 100% rename from src/appsettingsmanager.h rename to src/app/appsettingsmanager.h diff --git a/src/audiodevicemodel.cpp b/src/app/audiodevicemodel.cpp similarity index 100% rename from src/audiodevicemodel.cpp rename to src/app/audiodevicemodel.cpp diff --git a/src/audiodevicemodel.h b/src/app/audiodevicemodel.h similarity index 100% rename from src/audiodevicemodel.h rename to src/app/audiodevicemodel.h diff --git a/src/audiomanagerlistmodel.cpp b/src/app/audiomanagerlistmodel.cpp similarity index 100% rename from src/audiomanagerlistmodel.cpp rename to src/app/audiomanagerlistmodel.cpp diff --git a/src/audiomanagerlistmodel.h b/src/app/audiomanagerlistmodel.h similarity index 100% rename from src/audiomanagerlistmodel.h rename to src/app/audiomanagerlistmodel.h diff --git a/src/avadapter.cpp b/src/app/avadapter.cpp similarity index 100% rename from src/avadapter.cpp rename to src/app/avadapter.cpp diff --git a/src/avadapter.h b/src/app/avadapter.h similarity index 100% rename from src/avadapter.h rename to src/app/avadapter.h diff --git a/src/avatarimageprovider.h b/src/app/avatarimageprovider.h similarity index 100% rename from src/avatarimageprovider.h rename to src/app/avatarimageprovider.h diff --git a/src/avatarregistry.cpp b/src/app/avatarregistry.cpp similarity index 100% rename from src/avatarregistry.cpp rename to src/app/avatarregistry.cpp diff --git a/src/avatarregistry.h b/src/app/avatarregistry.h similarity index 100% rename from src/avatarregistry.h rename to src/app/avatarregistry.h diff --git a/src/bannedlistmodel.cpp b/src/app/bannedlistmodel.cpp similarity index 100% rename from src/bannedlistmodel.cpp rename to src/app/bannedlistmodel.cpp diff --git a/src/bannedlistmodel.h b/src/app/bannedlistmodel.h similarity index 100% rename from src/bannedlistmodel.h rename to src/app/bannedlistmodel.h diff --git a/src/calladapter.cpp b/src/app/calladapter.cpp similarity index 100% rename from src/calladapter.cpp rename to src/app/calladapter.cpp diff --git a/src/calladapter.h b/src/app/calladapter.h similarity index 100% rename from src/calladapter.h rename to src/app/calladapter.h diff --git a/src/calloverlaymodel.cpp b/src/app/calloverlaymodel.cpp similarity index 100% rename from src/calloverlaymodel.cpp rename to src/app/calloverlaymodel.cpp diff --git a/src/calloverlaymodel.h b/src/app/calloverlaymodel.h similarity index 100% rename from src/calloverlaymodel.h rename to src/app/calloverlaymodel.h diff --git a/src/callparticipantsmodel.cpp b/src/app/callparticipantsmodel.cpp similarity index 100% rename from src/callparticipantsmodel.cpp rename to src/app/callparticipantsmodel.cpp diff --git a/src/callparticipantsmodel.h b/src/app/callparticipantsmodel.h similarity index 100% rename from src/callparticipantsmodel.h rename to src/app/callparticipantsmodel.h diff --git a/src/commoncomponents/Avatar.qml b/src/app/commoncomponents/Avatar.qml similarity index 100% rename from src/commoncomponents/Avatar.qml rename to src/app/commoncomponents/Avatar.qml diff --git a/src/commoncomponents/BackButton.qml b/src/app/commoncomponents/BackButton.qml similarity index 100% rename from src/commoncomponents/BackButton.qml rename to src/app/commoncomponents/BackButton.qml diff --git a/src/commoncomponents/BaseModalDialog.qml b/src/app/commoncomponents/BaseModalDialog.qml similarity index 100% rename from src/commoncomponents/BaseModalDialog.qml rename to src/app/commoncomponents/BaseModalDialog.qml diff --git a/src/commoncomponents/BubbleLabel.qml b/src/app/commoncomponents/BubbleLabel.qml similarity index 100% rename from src/commoncomponents/BubbleLabel.qml rename to src/app/commoncomponents/BubbleLabel.qml diff --git a/src/commoncomponents/ContactMessageDelegate.qml b/src/app/commoncomponents/ContactMessageDelegate.qml similarity index 100% rename from src/commoncomponents/ContactMessageDelegate.qml rename to src/app/commoncomponents/ContactMessageDelegate.qml diff --git a/src/commoncomponents/CustomBorder.qml b/src/app/commoncomponents/CustomBorder.qml similarity index 100% rename from src/commoncomponents/CustomBorder.qml rename to src/app/commoncomponents/CustomBorder.qml diff --git a/src/commoncomponents/DaemonReconnectPopup.qml b/src/app/commoncomponents/DaemonReconnectPopup.qml similarity index 100% rename from src/commoncomponents/DaemonReconnectPopup.qml rename to src/app/commoncomponents/DaemonReconnectPopup.qml diff --git a/src/commoncomponents/DataTransferMessageDelegate.qml b/src/app/commoncomponents/DataTransferMessageDelegate.qml similarity index 99% rename from src/commoncomponents/DataTransferMessageDelegate.qml rename to src/app/commoncomponents/DataTransferMessageDelegate.qml index c451e730..c6fd0e92 100644 --- a/src/commoncomponents/DataTransferMessageDelegate.qml +++ b/src/app/commoncomponents/DataTransferMessageDelegate.qml @@ -265,7 +265,7 @@ Loader { id: avComp Loader { Component.onCompleted: { - var qml = WITH_WEBENGINE ? "qrc:/src/commoncomponents/MediaPreviewBase.qml" : "qrc:/src/nowebengine/MediaPreviewBase.qml" + var qml = WITH_WEBENGINE ? "qrc:/src/app/commoncomponents/MediaPreviewBase.qml" : "qrc:/src/app/nowebengine/MediaPreviewBase.qml" setSource( qml, { isVideo: mediaInfo.isVideo, html:mediaInfo.html } ) } } diff --git a/src/commoncomponents/DeleteAccountDialog.qml b/src/app/commoncomponents/DeleteAccountDialog.qml similarity index 100% rename from src/commoncomponents/DeleteAccountDialog.qml rename to src/app/commoncomponents/DeleteAccountDialog.qml diff --git a/src/commoncomponents/EditableLineEdit.qml b/src/app/commoncomponents/EditableLineEdit.qml similarity index 100% rename from src/commoncomponents/EditableLineEdit.qml rename to src/app/commoncomponents/EditableLineEdit.qml diff --git a/src/commoncomponents/ElidedTextLabel.qml b/src/app/commoncomponents/ElidedTextLabel.qml similarity index 100% rename from src/commoncomponents/ElidedTextLabel.qml rename to src/app/commoncomponents/ElidedTextLabel.qml diff --git a/src/commoncomponents/GeneralWebEngineView.qml b/src/app/commoncomponents/GeneralWebEngineView.qml similarity index 100% rename from src/commoncomponents/GeneralWebEngineView.qml rename to src/app/commoncomponents/GeneralWebEngineView.qml diff --git a/src/commoncomponents/GeneratedMessageDelegate.qml b/src/app/commoncomponents/GeneratedMessageDelegate.qml similarity index 100% rename from src/commoncomponents/GeneratedMessageDelegate.qml rename to src/app/commoncomponents/GeneratedMessageDelegate.qml diff --git a/src/commoncomponents/HalfPill.qml b/src/app/commoncomponents/HalfPill.qml similarity index 100% rename from src/commoncomponents/HalfPill.qml rename to src/app/commoncomponents/HalfPill.qml diff --git a/src/commoncomponents/JamiFileDialog.qml b/src/app/commoncomponents/JamiFileDialog.qml similarity index 100% rename from src/commoncomponents/JamiFileDialog.qml rename to src/app/commoncomponents/JamiFileDialog.qml diff --git a/src/commoncomponents/JamiFlickable.qml b/src/app/commoncomponents/JamiFlickable.qml similarity index 100% rename from src/commoncomponents/JamiFlickable.qml rename to src/app/commoncomponents/JamiFlickable.qml diff --git a/src/commoncomponents/JamiListView.qml b/src/app/commoncomponents/JamiListView.qml similarity index 100% rename from src/commoncomponents/JamiListView.qml rename to src/app/commoncomponents/JamiListView.qml diff --git a/src/commoncomponents/JamiScrollBar.qml b/src/app/commoncomponents/JamiScrollBar.qml similarity index 100% rename from src/commoncomponents/JamiScrollBar.qml rename to src/app/commoncomponents/JamiScrollBar.qml diff --git a/src/commoncomponents/JamiSwitch.qml b/src/app/commoncomponents/JamiSwitch.qml similarity index 100% rename from src/commoncomponents/JamiSwitch.qml rename to src/app/commoncomponents/JamiSwitch.qml diff --git a/src/commoncomponents/LineEditContextMenu.qml b/src/app/commoncomponents/LineEditContextMenu.qml similarity index 100% rename from src/commoncomponents/LineEditContextMenu.qml rename to src/app/commoncomponents/LineEditContextMenu.qml diff --git a/src/commoncomponents/LocalVideo.qml b/src/app/commoncomponents/LocalVideo.qml similarity index 100% rename from src/commoncomponents/LocalVideo.qml rename to src/app/commoncomponents/LocalVideo.qml diff --git a/src/commoncomponents/MaterialButton.qml b/src/app/commoncomponents/MaterialButton.qml similarity index 100% rename from src/commoncomponents/MaterialButton.qml rename to src/app/commoncomponents/MaterialButton.qml diff --git a/src/commoncomponents/MaterialLineEdit.qml b/src/app/commoncomponents/MaterialLineEdit.qml similarity index 100% rename from src/commoncomponents/MaterialLineEdit.qml rename to src/app/commoncomponents/MaterialLineEdit.qml diff --git a/src/commoncomponents/MaterialToolTip.qml b/src/app/commoncomponents/MaterialToolTip.qml similarity index 100% rename from src/commoncomponents/MaterialToolTip.qml rename to src/app/commoncomponents/MaterialToolTip.qml diff --git a/src/commoncomponents/MediaPreviewBase.qml b/src/app/commoncomponents/MediaPreviewBase.qml similarity index 100% rename from src/commoncomponents/MediaPreviewBase.qml rename to src/app/commoncomponents/MediaPreviewBase.qml diff --git a/src/commoncomponents/MessageBubble.qml b/src/app/commoncomponents/MessageBubble.qml similarity index 100% rename from src/commoncomponents/MessageBubble.qml rename to src/app/commoncomponents/MessageBubble.qml diff --git a/src/commoncomponents/PasswordDialog.qml b/src/app/commoncomponents/PasswordDialog.qml similarity index 100% rename from src/commoncomponents/PasswordDialog.qml rename to src/app/commoncomponents/PasswordDialog.qml diff --git a/src/commoncomponents/PhotoboothView.qml b/src/app/commoncomponents/PhotoboothView.qml similarity index 100% rename from src/commoncomponents/PhotoboothView.qml rename to src/app/commoncomponents/PhotoboothView.qml diff --git a/src/commoncomponents/PreferenceItemDelegate.qml b/src/app/commoncomponents/PreferenceItemDelegate.qml similarity index 100% rename from src/commoncomponents/PreferenceItemDelegate.qml rename to src/app/commoncomponents/PreferenceItemDelegate.qml diff --git a/src/commoncomponents/PresenceIndicator.qml b/src/app/commoncomponents/PresenceIndicator.qml similarity index 100% rename from src/commoncomponents/PresenceIndicator.qml rename to src/app/commoncomponents/PresenceIndicator.qml diff --git a/src/commoncomponents/PushButton.qml b/src/app/commoncomponents/PushButton.qml similarity index 100% rename from src/commoncomponents/PushButton.qml rename to src/app/commoncomponents/PushButton.qml diff --git a/src/commoncomponents/ReadStatus.qml b/src/app/commoncomponents/ReadStatus.qml similarity index 100% rename from src/commoncomponents/ReadStatus.qml rename to src/app/commoncomponents/ReadStatus.qml diff --git a/src/commoncomponents/ResponsiveImage.qml b/src/app/commoncomponents/ResponsiveImage.qml similarity index 100% rename from src/commoncomponents/ResponsiveImage.qml rename to src/app/commoncomponents/ResponsiveImage.qml diff --git a/src/commoncomponents/SBSContextMenu.qml b/src/app/commoncomponents/SBSContextMenu.qml similarity index 100% rename from src/commoncomponents/SBSContextMenu.qml rename to src/app/commoncomponents/SBSContextMenu.qml diff --git a/src/commoncomponents/SBSMessageBase.qml b/src/app/commoncomponents/SBSMessageBase.qml similarity index 100% rename from src/commoncomponents/SBSMessageBase.qml rename to src/app/commoncomponents/SBSMessageBase.qml diff --git a/src/commoncomponents/Scaffold.qml b/src/app/commoncomponents/Scaffold.qml similarity index 100% rename from src/commoncomponents/Scaffold.qml rename to src/app/commoncomponents/Scaffold.qml diff --git a/src/commoncomponents/SettingParaCombobox.qml b/src/app/commoncomponents/SettingParaCombobox.qml similarity index 100% rename from src/commoncomponents/SettingParaCombobox.qml rename to src/app/commoncomponents/SettingParaCombobox.qml diff --git a/src/commoncomponents/SimpleMessageDialog.qml b/src/app/commoncomponents/SimpleMessageDialog.qml similarity index 100% rename from src/commoncomponents/SimpleMessageDialog.qml rename to src/app/commoncomponents/SimpleMessageDialog.qml diff --git a/src/commoncomponents/SpinnerButton.qml b/src/app/commoncomponents/SpinnerButton.qml similarity index 100% rename from src/commoncomponents/SpinnerButton.qml rename to src/app/commoncomponents/SpinnerButton.qml diff --git a/src/commoncomponents/SpinningAnimation.qml b/src/app/commoncomponents/SpinningAnimation.qml similarity index 100% rename from src/commoncomponents/SpinningAnimation.qml rename to src/app/commoncomponents/SpinningAnimation.qml diff --git a/src/commoncomponents/TextMessageDelegate.qml b/src/app/commoncomponents/TextMessageDelegate.qml similarity index 100% rename from src/commoncomponents/TextMessageDelegate.qml rename to src/app/commoncomponents/TextMessageDelegate.qml diff --git a/src/commoncomponents/TypingDots.qml b/src/app/commoncomponents/TypingDots.qml similarity index 100% rename from src/commoncomponents/TypingDots.qml rename to src/app/commoncomponents/TypingDots.qml diff --git a/src/commoncomponents/UsernameLineEdit.qml b/src/app/commoncomponents/UsernameLineEdit.qml similarity index 100% rename from src/commoncomponents/UsernameLineEdit.qml rename to src/app/commoncomponents/UsernameLineEdit.qml diff --git a/src/commoncomponents/VideoView.qml b/src/app/commoncomponents/VideoView.qml similarity index 100% rename from src/commoncomponents/VideoView.qml rename to src/app/commoncomponents/VideoView.qml diff --git a/src/commoncomponents/contextmenu/BaseContextMenu.qml b/src/app/commoncomponents/contextmenu/BaseContextMenu.qml similarity index 100% rename from src/commoncomponents/contextmenu/BaseContextMenu.qml rename to src/app/commoncomponents/contextmenu/BaseContextMenu.qml diff --git a/src/commoncomponents/contextmenu/ContextMenuAutoLoader.qml b/src/app/commoncomponents/contextmenu/ContextMenuAutoLoader.qml similarity index 100% rename from src/commoncomponents/contextmenu/ContextMenuAutoLoader.qml rename to src/app/commoncomponents/contextmenu/ContextMenuAutoLoader.qml diff --git a/src/commoncomponents/contextmenu/GeneralMenuItem.qml b/src/app/commoncomponents/contextmenu/GeneralMenuItem.qml similarity index 100% rename from src/commoncomponents/contextmenu/GeneralMenuItem.qml rename to src/app/commoncomponents/contextmenu/GeneralMenuItem.qml diff --git a/src/commoncomponents/contextmenu/GeneralMenuSeparator.qml b/src/app/commoncomponents/contextmenu/GeneralMenuSeparator.qml similarity index 100% rename from src/commoncomponents/contextmenu/GeneralMenuSeparator.qml rename to src/app/commoncomponents/contextmenu/GeneralMenuSeparator.qml diff --git a/src/commoncomponents/emojipicker/EmojiPicker.qml b/src/app/commoncomponents/emojipicker/EmojiPicker.qml similarity index 91% rename from src/commoncomponents/emojipicker/EmojiPicker.qml rename to src/app/commoncomponents/emojipicker/EmojiPicker.qml index 518c39e7..10fb6a4b 100644 --- a/src/commoncomponents/emojipicker/EmojiPicker.qml +++ b/src/app/commoncomponents/emojipicker/EmojiPicker.qml @@ -74,7 +74,7 @@ Rectangle { webChannel.registeredObjects: [jsBridgeObject] - onCompletedLoadHtml: ":/src/commoncomponents/emojipicker/emojiPickerLoader.html" + onCompletedLoadHtml: ":/src/app/commoncomponents/emojipicker/emojiPickerLoader.html" onActiveFocusChanged: { if (visible) { @@ -88,10 +88,10 @@ Rectangle { ":qwebchannel.js")) emojiPickerWebView.runJavaScript( UtilsAdapter.qStringFromFile( - ":/src/commoncomponents/emojipicker/emoji.js")) + ":/src/app/commoncomponents/emojipicker/emoji.js")) emojiPickerWebView.runJavaScript( UtilsAdapter.qStringFromFile( - ":/src/commoncomponents/emojipicker/emojiPickerLoader.js")) + ":/src/app/commoncomponents/emojipicker/emojiPickerLoader.js")) emojiPickerWebView.runJavaScript( "init_emoji_picker(" + JamiTheme.darkTheme + ");") } diff --git a/src/commoncomponents/emojipicker/emoji.js b/src/app/commoncomponents/emojipicker/emoji.js similarity index 100% rename from src/commoncomponents/emojipicker/emoji.js rename to src/app/commoncomponents/emojipicker/emoji.js diff --git a/src/commoncomponents/emojipicker/emojiPickerLoader.html b/src/app/commoncomponents/emojipicker/emojiPickerLoader.html similarity index 100% rename from src/commoncomponents/emojipicker/emojiPickerLoader.html rename to src/app/commoncomponents/emojipicker/emojiPickerLoader.html diff --git a/src/commoncomponents/emojipicker/emojiPickerLoader.js b/src/app/commoncomponents/emojipicker/emojiPickerLoader.js similarity index 100% rename from src/commoncomponents/emojipicker/emojiPickerLoader.js rename to src/app/commoncomponents/emojipicker/emojiPickerLoader.js diff --git a/src/connectivitymonitor.cpp b/src/app/connectivitymonitor.cpp similarity index 100% rename from src/connectivitymonitor.cpp rename to src/app/connectivitymonitor.cpp diff --git a/src/connectivitymonitor.h b/src/app/connectivitymonitor.h similarity index 100% rename from src/connectivitymonitor.h rename to src/app/connectivitymonitor.h diff --git a/src/constant/JamiQmlUtils.qml b/src/app/constant/JamiQmlUtils.qml similarity index 93% rename from src/constant/JamiQmlUtils.qml rename to src/app/constant/JamiQmlUtils.qml index d3cba980..94928443 100644 --- a/src/constant/JamiQmlUtils.qml +++ b/src/app/constant/JamiQmlUtils.qml @@ -26,9 +26,9 @@ import net.jami.Adapters 1.1 Item { property string qmlFilePrefix: "file:/" - readonly property string mainViewLoadPath: "qrc:/src/mainview/MainView.qml" - readonly property string wizardViewLoadPath: "qrc:/src/wizardview/WizardView.qml" - readonly property string accountMigrationViewLoadPath: "qrc:/src/AccountMigrationView.qml" + readonly property string mainViewLoadPath: "qrc:/src/app/mainview/MainView.qml" + readonly property string wizardViewLoadPath: "qrc:/src/app/wizardview/WizardView.qml" + readonly property string accountMigrationViewLoadPath: "qrc:/src/app/AccountMigrationView.qml" readonly property string base64StringTitle: "data:image/png;base64," property var accountCreationInputParaObject: ({}) diff --git a/src/constant/JamiStrings.qml b/src/app/constant/JamiStrings.qml similarity index 100% rename from src/constant/JamiStrings.qml rename to src/app/constant/JamiStrings.qml diff --git a/src/constant/JamiTheme.qml b/src/app/constant/JamiTheme.qml similarity index 100% rename from src/constant/JamiTheme.qml rename to src/app/constant/JamiTheme.qml diff --git a/src/constant/MsgSeq.qml b/src/app/constant/MsgSeq.qml similarity index 100% rename from src/constant/MsgSeq.qml rename to src/app/constant/MsgSeq.qml diff --git a/src/contactadapter.cpp b/src/app/contactadapter.cpp similarity index 100% rename from src/contactadapter.cpp rename to src/app/contactadapter.cpp diff --git a/src/contactadapter.h b/src/app/contactadapter.h similarity index 100% rename from src/contactadapter.h rename to src/app/contactadapter.h diff --git a/src/conversationlistmodel.cpp b/src/app/conversationlistmodel.cpp similarity index 100% rename from src/conversationlistmodel.cpp rename to src/app/conversationlistmodel.cpp diff --git a/src/conversationlistmodel.h b/src/app/conversationlistmodel.h similarity index 100% rename from src/conversationlistmodel.h rename to src/app/conversationlistmodel.h diff --git a/src/conversationlistmodelbase.cpp b/src/app/conversationlistmodelbase.cpp similarity index 100% rename from src/conversationlistmodelbase.cpp rename to src/app/conversationlistmodelbase.cpp diff --git a/src/conversationlistmodelbase.h b/src/app/conversationlistmodelbase.h similarity index 100% rename from src/conversationlistmodelbase.h rename to src/app/conversationlistmodelbase.h diff --git a/src/conversationsadapter.cpp b/src/app/conversationsadapter.cpp similarity index 100% rename from src/conversationsadapter.cpp rename to src/app/conversationsadapter.cpp diff --git a/src/conversationsadapter.h b/src/app/conversationsadapter.h similarity index 100% rename from src/conversationsadapter.h rename to src/app/conversationsadapter.h diff --git a/src/currentaccount.cpp b/src/app/currentaccount.cpp similarity index 100% rename from src/currentaccount.cpp rename to src/app/currentaccount.cpp diff --git a/src/currentaccount.h b/src/app/currentaccount.h similarity index 100% rename from src/currentaccount.h rename to src/app/currentaccount.h diff --git a/src/currentaccounttomigrate.cpp b/src/app/currentaccounttomigrate.cpp similarity index 100% rename from src/currentaccounttomigrate.cpp rename to src/app/currentaccounttomigrate.cpp diff --git a/src/currentaccounttomigrate.h b/src/app/currentaccounttomigrate.h similarity index 100% rename from src/currentaccounttomigrate.h rename to src/app/currentaccounttomigrate.h diff --git a/src/currentconversation.cpp b/src/app/currentconversation.cpp similarity index 100% rename from src/currentconversation.cpp rename to src/app/currentconversation.cpp diff --git a/src/currentconversation.h b/src/app/currentconversation.h similarity index 100% rename from src/currentconversation.h rename to src/app/currentconversation.h diff --git a/src/dbuserrorhandler.cpp b/src/app/dbuserrorhandler.cpp similarity index 100% rename from src/dbuserrorhandler.cpp rename to src/app/dbuserrorhandler.cpp diff --git a/src/dbuserrorhandler.h b/src/app/dbuserrorhandler.h similarity index 100% rename from src/dbuserrorhandler.h rename to src/app/dbuserrorhandler.h diff --git a/src/deviceitemlistmodel.cpp b/src/app/deviceitemlistmodel.cpp similarity index 100% rename from src/deviceitemlistmodel.cpp rename to src/app/deviceitemlistmodel.cpp diff --git a/src/deviceitemlistmodel.h b/src/app/deviceitemlistmodel.h similarity index 100% rename from src/deviceitemlistmodel.h rename to src/app/deviceitemlistmodel.h diff --git a/src/filestosendlistmodel.cpp b/src/app/filestosendlistmodel.cpp similarity index 100% rename from src/filestosendlistmodel.cpp rename to src/app/filestosendlistmodel.cpp diff --git a/src/filestosendlistmodel.h b/src/app/filestosendlistmodel.h similarity index 100% rename from src/filestosendlistmodel.h rename to src/app/filestosendlistmodel.h diff --git a/src/instancemanager.cpp b/src/app/instancemanager.cpp similarity index 100% rename from src/instancemanager.cpp rename to src/app/instancemanager.cpp diff --git a/src/instancemanager.h b/src/app/instancemanager.h similarity index 100% rename from src/instancemanager.h rename to src/app/instancemanager.h diff --git a/src/jami b/src/app/jami similarity index 100% rename from src/jami rename to src/app/jami diff --git a/src/jamiavatartheme.h b/src/app/jamiavatartheme.h similarity index 100% rename from src/jamiavatartheme.h rename to src/app/jamiavatartheme.h diff --git a/src/lrcinstance.cpp b/src/app/lrcinstance.cpp similarity index 100% rename from src/lrcinstance.cpp rename to src/app/lrcinstance.cpp diff --git a/src/lrcinstance.h b/src/app/lrcinstance.h similarity index 100% rename from src/lrcinstance.h rename to src/app/lrcinstance.h diff --git a/src/main.cpp b/src/app/main.cpp similarity index 100% rename from src/main.cpp rename to src/app/main.cpp diff --git a/src/mainapplication.cpp b/src/app/mainapplication.cpp similarity index 98% rename from src/mainapplication.cpp rename to src/app/mainapplication.cpp index 7528966c..fdf96462 100644 --- a/src/mainapplication.cpp +++ b/src/app/mainapplication.cpp @@ -152,7 +152,7 @@ MainApplication::init() auto dBusErrorHandlerQObject = dynamic_cast(&GlobalInstances::dBusErrorHandler()); QML_REGISTERSINGLETONTYPE_CUSTOM(NS_MODELS, DBusErrorHandler, dBusErrorHandlerQObject); if ((!lrc::api::Lrc::isConnected()) || (!lrc::api::Lrc::dbusIsValid())) { - engine_->load(QUrl(QStringLiteral("qrc:/src/DaemonReconnectWindow.qml"))); + engine_->load(QUrl(QStringLiteral("qrc:/src/app/DaemonReconnectWindow.qml"))); exec(); if ((!lrc::api::Lrc::isConnected()) || (!lrc::api::Lrc::dbusIsValid())) { @@ -348,7 +348,7 @@ MainApplication::initQmlLayer() auto videoProvider = new VideoProvider(lrcInstance_->avModel(), this); engine_->rootContext()->setContextProperty("videoProvider", videoProvider); - engine_->load(QUrl(QStringLiteral("qrc:/src/MainApplicationWindow.qml"))); + engine_->load(QUrl(QStringLiteral("qrc:/src/app/MainApplicationWindow.qml"))); qWarning().noquote() << "Main window loaded using" << getRenderInterfaceString(); } diff --git a/src/mainapplication.h b/src/app/mainapplication.h similarity index 100% rename from src/mainapplication.h rename to src/app/mainapplication.h diff --git a/src/mainview/MainView.qml b/src/app/mainview/MainView.qml similarity index 100% rename from src/mainview/MainView.qml rename to src/app/mainview/MainView.qml diff --git a/src/mainview/components/AboutPopUp.qml b/src/app/mainview/components/AboutPopUp.qml similarity index 100% rename from src/mainview/components/AboutPopUp.qml rename to src/app/mainview/components/AboutPopUp.qml diff --git a/src/mainview/components/AccountComboBox.qml b/src/app/mainview/components/AccountComboBox.qml similarity index 100% rename from src/mainview/components/AccountComboBox.qml rename to src/app/mainview/components/AccountComboBox.qml diff --git a/src/mainview/components/AccountComboBoxPopup.qml b/src/app/mainview/components/AccountComboBoxPopup.qml similarity index 100% rename from src/mainview/components/AccountComboBoxPopup.qml rename to src/app/mainview/components/AccountComboBoxPopup.qml diff --git a/src/mainview/components/AccountItemDelegate.qml b/src/app/mainview/components/AccountItemDelegate.qml similarity index 100% rename from src/mainview/components/AccountItemDelegate.qml rename to src/app/mainview/components/AccountItemDelegate.qml diff --git a/src/mainview/components/AddMemberPanel.qml b/src/app/mainview/components/AddMemberPanel.qml similarity index 100% rename from src/mainview/components/AddMemberPanel.qml rename to src/app/mainview/components/AddMemberPanel.qml diff --git a/src/mainview/components/BadgeNotifier.qml b/src/app/mainview/components/BadgeNotifier.qml similarity index 100% rename from src/mainview/components/BadgeNotifier.qml rename to src/app/mainview/components/BadgeNotifier.qml diff --git a/src/mainview/components/CallActionBar.qml b/src/app/mainview/components/CallActionBar.qml similarity index 100% rename from src/mainview/components/CallActionBar.qml rename to src/app/mainview/components/CallActionBar.qml diff --git a/src/mainview/components/CallButtonDelegate.qml b/src/app/mainview/components/CallButtonDelegate.qml similarity index 100% rename from src/mainview/components/CallButtonDelegate.qml rename to src/app/mainview/components/CallButtonDelegate.qml diff --git a/src/mainview/components/CallOverlay.qml b/src/app/mainview/components/CallOverlay.qml similarity index 100% rename from src/mainview/components/CallOverlay.qml rename to src/app/mainview/components/CallOverlay.qml diff --git a/src/mainview/components/CallStackView.qml b/src/app/mainview/components/CallStackView.qml similarity index 100% rename from src/mainview/components/CallStackView.qml rename to src/app/mainview/components/CallStackView.qml diff --git a/src/mainview/components/CallViewContextMenu.qml b/src/app/mainview/components/CallViewContextMenu.qml similarity index 100% rename from src/mainview/components/CallViewContextMenu.qml rename to src/app/mainview/components/CallViewContextMenu.qml diff --git a/src/mainview/components/ChatView.qml b/src/app/mainview/components/ChatView.qml similarity index 100% rename from src/mainview/components/ChatView.qml rename to src/app/mainview/components/ChatView.qml diff --git a/src/mainview/components/ChatViewFooter.qml b/src/app/mainview/components/ChatViewFooter.qml similarity index 98% rename from src/mainview/components/ChatViewFooter.qml rename to src/app/mainview/components/ChatViewFooter.qml index 5a241b18..ae97243d 100644 --- a/src/mainview/components/ChatViewFooter.qml +++ b/src/app/mainview/components/ChatViewFooter.qml @@ -91,7 +91,7 @@ Rectangle { Loader { id: empjiLoader - source: WITH_WEBENGINE ? "qrc:/src/commoncomponents/emojipicker/EmojiPicker.qml" : "qrc:/src/nowebengine/EmojiPicker.qml" + source: WITH_WEBENGINE ? "qrc:/src/app/commoncomponents/emojipicker/EmojiPicker.qml" : "qrc:/src/app/nowebengine/EmojiPicker.qml" function openEmojiPicker() { item.openEmojiPicker() diff --git a/src/mainview/components/ChatViewHeader.qml b/src/app/mainview/components/ChatViewHeader.qml similarity index 100% rename from src/mainview/components/ChatViewHeader.qml rename to src/app/mainview/components/ChatViewHeader.qml diff --git a/src/mainview/components/ContactPicker.qml b/src/app/mainview/components/ContactPicker.qml similarity index 100% rename from src/mainview/components/ContactPicker.qml rename to src/app/mainview/components/ContactPicker.qml diff --git a/src/mainview/components/ContactPickerItemDelegate.qml b/src/app/mainview/components/ContactPickerItemDelegate.qml similarity index 100% rename from src/mainview/components/ContactPickerItemDelegate.qml rename to src/app/mainview/components/ContactPickerItemDelegate.qml diff --git a/src/mainview/components/ContactSearchBar.qml b/src/app/mainview/components/ContactSearchBar.qml similarity index 100% rename from src/mainview/components/ContactSearchBar.qml rename to src/app/mainview/components/ContactSearchBar.qml diff --git a/src/mainview/components/ConversationAvatar.qml b/src/app/mainview/components/ConversationAvatar.qml similarity index 100% rename from src/mainview/components/ConversationAvatar.qml rename to src/app/mainview/components/ConversationAvatar.qml diff --git a/src/mainview/components/ConversationListView.qml b/src/app/mainview/components/ConversationListView.qml similarity index 100% rename from src/mainview/components/ConversationListView.qml rename to src/app/mainview/components/ConversationListView.qml diff --git a/src/mainview/components/ConversationSmartListContextMenu.qml b/src/app/mainview/components/ConversationSmartListContextMenu.qml similarity index 100% rename from src/mainview/components/ConversationSmartListContextMenu.qml rename to src/app/mainview/components/ConversationSmartListContextMenu.qml diff --git a/src/mainview/components/FilesToSendContainer.qml b/src/app/mainview/components/FilesToSendContainer.qml similarity index 100% rename from src/mainview/components/FilesToSendContainer.qml rename to src/app/mainview/components/FilesToSendContainer.qml diff --git a/src/mainview/components/FilesToSendDelegate.qml b/src/app/mainview/components/FilesToSendDelegate.qml similarity index 100% rename from src/mainview/components/FilesToSendDelegate.qml rename to src/app/mainview/components/FilesToSendDelegate.qml diff --git a/src/mainview/components/FilterTabButton.qml b/src/app/mainview/components/FilterTabButton.qml similarity index 100% rename from src/mainview/components/FilterTabButton.qml rename to src/app/mainview/components/FilterTabButton.qml diff --git a/src/mainview/components/InitialCallPage.qml b/src/app/mainview/components/InitialCallPage.qml similarity index 100% rename from src/mainview/components/InitialCallPage.qml rename to src/app/mainview/components/InitialCallPage.qml diff --git a/src/mainview/components/InvitationView.qml b/src/app/mainview/components/InvitationView.qml similarity index 100% rename from src/mainview/components/InvitationView.qml rename to src/app/mainview/components/InvitationView.qml diff --git a/src/mainview/components/KeyboardShortcutKeyDelegate.qml b/src/app/mainview/components/KeyboardShortcutKeyDelegate.qml similarity index 100% rename from src/mainview/components/KeyboardShortcutKeyDelegate.qml rename to src/app/mainview/components/KeyboardShortcutKeyDelegate.qml diff --git a/src/mainview/components/KeyboardShortcutTabButton.qml b/src/app/mainview/components/KeyboardShortcutTabButton.qml similarity index 100% rename from src/mainview/components/KeyboardShortcutTabButton.qml rename to src/app/mainview/components/KeyboardShortcutTabButton.qml diff --git a/src/mainview/components/KeyboardShortcutTable.qml b/src/app/mainview/components/KeyboardShortcutTable.qml similarity index 100% rename from src/mainview/components/KeyboardShortcutTable.qml rename to src/app/mainview/components/KeyboardShortcutTable.qml diff --git a/src/mainview/components/MainOverlay.qml b/src/app/mainview/components/MainOverlay.qml similarity index 100% rename from src/mainview/components/MainOverlay.qml rename to src/app/mainview/components/MainOverlay.qml diff --git a/src/mainview/components/MessageBar.qml b/src/app/mainview/components/MessageBar.qml similarity index 100% rename from src/mainview/components/MessageBar.qml rename to src/app/mainview/components/MessageBar.qml diff --git a/src/mainview/components/MessageBarTextArea.qml b/src/app/mainview/components/MessageBarTextArea.qml similarity index 100% rename from src/mainview/components/MessageBarTextArea.qml rename to src/app/mainview/components/MessageBarTextArea.qml diff --git a/src/mainview/components/MessageListView.qml b/src/app/mainview/components/MessageListView.qml similarity index 100% rename from src/mainview/components/MessageListView.qml rename to src/app/mainview/components/MessageListView.qml diff --git a/src/mainview/components/NewSwarmPage.qml b/src/app/mainview/components/NewSwarmPage.qml similarity index 100% rename from src/mainview/components/NewSwarmPage.qml rename to src/app/mainview/components/NewSwarmPage.qml diff --git a/src/mainview/components/OngoingCallPage.qml b/src/app/mainview/components/OngoingCallPage.qml similarity index 100% rename from src/mainview/components/OngoingCallPage.qml rename to src/app/mainview/components/OngoingCallPage.qml diff --git a/src/mainview/components/ParticipantCallInStatusDelegate.qml b/src/app/mainview/components/ParticipantCallInStatusDelegate.qml similarity index 100% rename from src/mainview/components/ParticipantCallInStatusDelegate.qml rename to src/app/mainview/components/ParticipantCallInStatusDelegate.qml diff --git a/src/mainview/components/ParticipantCallInStatusView.qml b/src/app/mainview/components/ParticipantCallInStatusView.qml similarity index 100% rename from src/mainview/components/ParticipantCallInStatusView.qml rename to src/app/mainview/components/ParticipantCallInStatusView.qml diff --git a/src/mainview/components/ParticipantControlLayout.qml b/src/app/mainview/components/ParticipantControlLayout.qml similarity index 100% rename from src/mainview/components/ParticipantControlLayout.qml rename to src/app/mainview/components/ParticipantControlLayout.qml diff --git a/src/mainview/components/ParticipantOverlay.qml b/src/app/mainview/components/ParticipantOverlay.qml similarity index 100% rename from src/mainview/components/ParticipantOverlay.qml rename to src/app/mainview/components/ParticipantOverlay.qml diff --git a/src/mainview/components/ParticipantOverlayButton.qml b/src/app/mainview/components/ParticipantOverlayButton.qml similarity index 100% rename from src/mainview/components/ParticipantOverlayButton.qml rename to src/app/mainview/components/ParticipantOverlayButton.qml diff --git a/src/mainview/components/ParticipantOverlayMenu.qml b/src/app/mainview/components/ParticipantOverlayMenu.qml similarity index 100% rename from src/mainview/components/ParticipantOverlayMenu.qml rename to src/app/mainview/components/ParticipantOverlayMenu.qml diff --git a/src/mainview/components/ParticipantsLayer.qml b/src/app/mainview/components/ParticipantsLayer.qml similarity index 100% rename from src/mainview/components/ParticipantsLayer.qml rename to src/app/mainview/components/ParticipantsLayer.qml diff --git a/src/mainview/components/PluginHandlerItemDelegate.qml b/src/app/mainview/components/PluginHandlerItemDelegate.qml similarity index 100% rename from src/mainview/components/PluginHandlerItemDelegate.qml rename to src/app/mainview/components/PluginHandlerItemDelegate.qml diff --git a/src/mainview/components/PluginHandlerPicker.qml b/src/app/mainview/components/PluginHandlerPicker.qml similarity index 100% rename from src/mainview/components/PluginHandlerPicker.qml rename to src/app/mainview/components/PluginHandlerPicker.qml diff --git a/src/mainview/components/ProjectCreditsScrollView.qml b/src/app/mainview/components/ProjectCreditsScrollView.qml similarity index 100% rename from src/mainview/components/ProjectCreditsScrollView.qml rename to src/app/mainview/components/ProjectCreditsScrollView.qml diff --git a/src/mainview/components/ReadOnlyFooter.qml b/src/app/mainview/components/ReadOnlyFooter.qml similarity index 100% rename from src/mainview/components/ReadOnlyFooter.qml rename to src/app/mainview/components/ReadOnlyFooter.qml diff --git a/src/mainview/components/RecordBox.qml b/src/app/mainview/components/RecordBox.qml similarity index 100% rename from src/mainview/components/RecordBox.qml rename to src/app/mainview/components/RecordBox.qml diff --git a/src/mainview/components/ScreenRubberBand.qml b/src/app/mainview/components/ScreenRubberBand.qml similarity index 100% rename from src/mainview/components/ScreenRubberBand.qml rename to src/app/mainview/components/ScreenRubberBand.qml diff --git a/src/mainview/components/ScrollToBottomButton.qml b/src/app/mainview/components/ScrollToBottomButton.qml similarity index 100% rename from src/mainview/components/ScrollToBottomButton.qml rename to src/app/mainview/components/ScrollToBottomButton.qml diff --git a/src/mainview/components/SelectScreen.qml b/src/app/mainview/components/SelectScreen.qml similarity index 100% rename from src/mainview/components/SelectScreen.qml rename to src/app/mainview/components/SelectScreen.qml diff --git a/src/mainview/components/SidePanel.qml b/src/app/mainview/components/SidePanel.qml similarity index 100% rename from src/mainview/components/SidePanel.qml rename to src/app/mainview/components/SidePanel.qml diff --git a/src/mainview/components/SidePanelTabBar.qml b/src/app/mainview/components/SidePanelTabBar.qml similarity index 100% rename from src/mainview/components/SidePanelTabBar.qml rename to src/app/mainview/components/SidePanelTabBar.qml diff --git a/src/mainview/components/SipInputPanel.qml b/src/app/mainview/components/SipInputPanel.qml similarity index 100% rename from src/mainview/components/SipInputPanel.qml rename to src/app/mainview/components/SipInputPanel.qml diff --git a/src/mainview/components/SmartListItemDelegate.qml b/src/app/mainview/components/SmartListItemDelegate.qml similarity index 100% rename from src/mainview/components/SmartListItemDelegate.qml rename to src/app/mainview/components/SmartListItemDelegate.qml diff --git a/src/mainview/components/SwarmDetailsPanel.qml b/src/app/mainview/components/SwarmDetailsPanel.qml similarity index 100% rename from src/mainview/components/SwarmDetailsPanel.qml rename to src/app/mainview/components/SwarmDetailsPanel.qml diff --git a/src/mainview/components/SwarmParticipantContextMenu.qml b/src/app/mainview/components/SwarmParticipantContextMenu.qml similarity index 100% rename from src/mainview/components/SwarmParticipantContextMenu.qml rename to src/app/mainview/components/SwarmParticipantContextMenu.qml diff --git a/src/mainview/components/UserProfile.qml b/src/app/mainview/components/UserProfile.qml similarity index 100% rename from src/mainview/components/UserProfile.qml rename to src/app/mainview/components/UserProfile.qml diff --git a/src/mainview/components/WelcomePage.qml b/src/app/mainview/components/WelcomePage.qml similarity index 100% rename from src/mainview/components/WelcomePage.qml rename to src/app/mainview/components/WelcomePage.qml diff --git a/src/mainview/components/WelcomePageQrDialog.qml b/src/app/mainview/components/WelcomePageQrDialog.qml similarity index 100% rename from src/mainview/components/WelcomePageQrDialog.qml rename to src/app/mainview/components/WelcomePageQrDialog.qml diff --git a/src/mainview/js/contactpickercreation.js b/src/app/mainview/js/contactpickercreation.js similarity index 100% rename from src/mainview/js/contactpickercreation.js rename to src/app/mainview/js/contactpickercreation.js diff --git a/src/mainview/js/keyboardshortcuttablecreation.js b/src/app/mainview/js/keyboardshortcuttablecreation.js similarity index 100% rename from src/mainview/js/keyboardshortcuttablecreation.js rename to src/app/mainview/js/keyboardshortcuttablecreation.js diff --git a/src/mainview/js/pluginhandlerpickercreation.js b/src/app/mainview/js/pluginhandlerpickercreation.js similarity index 100% rename from src/mainview/js/pluginhandlerpickercreation.js rename to src/app/mainview/js/pluginhandlerpickercreation.js diff --git a/src/mainview/js/screenrubberbandcreation.js b/src/app/mainview/js/screenrubberbandcreation.js similarity index 100% rename from src/mainview/js/screenrubberbandcreation.js rename to src/app/mainview/js/screenrubberbandcreation.js diff --git a/src/mainview/js/selectscreenwindowcreation.js b/src/app/mainview/js/selectscreenwindowcreation.js similarity index 100% rename from src/mainview/js/selectscreenwindowcreation.js rename to src/app/mainview/js/selectscreenwindowcreation.js diff --git a/src/mediacodeclistmodel.cpp b/src/app/mediacodeclistmodel.cpp similarity index 100% rename from src/mediacodeclistmodel.cpp rename to src/app/mediacodeclistmodel.cpp diff --git a/src/mediacodeclistmodel.h b/src/app/mediacodeclistmodel.h similarity index 100% rename from src/mediacodeclistmodel.h rename to src/app/mediacodeclistmodel.h diff --git a/src/messagesadapter.cpp b/src/app/messagesadapter.cpp similarity index 100% rename from src/messagesadapter.cpp rename to src/app/messagesadapter.cpp diff --git a/src/messagesadapter.h b/src/app/messagesadapter.h similarity index 100% rename from src/messagesadapter.h rename to src/app/messagesadapter.h diff --git a/src/moderatorlistmodel.cpp b/src/app/moderatorlistmodel.cpp similarity index 100% rename from src/moderatorlistmodel.cpp rename to src/app/moderatorlistmodel.cpp diff --git a/src/moderatorlistmodel.h b/src/app/moderatorlistmodel.h similarity index 100% rename from src/moderatorlistmodel.h rename to src/app/moderatorlistmodel.h diff --git a/src/networkmanager.cpp b/src/app/networkmanager.cpp similarity index 100% rename from src/networkmanager.cpp rename to src/app/networkmanager.cpp diff --git a/src/networkmanager.h b/src/app/networkmanager.h similarity index 100% rename from src/networkmanager.h rename to src/app/networkmanager.h diff --git a/src/nowebengine/EmojiPicker.qml b/src/app/nowebengine/EmojiPicker.qml similarity index 100% rename from src/nowebengine/EmojiPicker.qml rename to src/app/nowebengine/EmojiPicker.qml diff --git a/src/nowebengine/MediaPreviewBase.qml b/src/app/nowebengine/MediaPreviewBase.qml similarity index 100% rename from src/nowebengine/MediaPreviewBase.qml rename to src/app/nowebengine/MediaPreviewBase.qml diff --git a/src/nowebengine/previewengine.cpp b/src/app/nowebengine/previewengine.cpp similarity index 100% rename from src/nowebengine/previewengine.cpp rename to src/app/nowebengine/previewengine.cpp diff --git a/src/os/macos/connectivitymonitor.mm b/src/app/os/macos/connectivitymonitor.mm similarity index 100% rename from src/os/macos/connectivitymonitor.mm rename to src/app/os/macos/connectivitymonitor.mm diff --git a/src/os/macos/macutils.h b/src/app/os/macos/macutils.h similarity index 100% rename from src/os/macos/macutils.h rename to src/app/os/macos/macutils.h diff --git a/src/os/macos/macutils.mm b/src/app/os/macos/macutils.mm similarity index 100% rename from src/os/macos/macutils.mm rename to src/app/os/macos/macutils.mm diff --git a/src/os/macos/updatemanager.mm b/src/app/os/macos/updatemanager.mm similarity index 100% rename from src/os/macos/updatemanager.mm rename to src/app/os/macos/updatemanager.mm diff --git a/src/pluginadapter.cpp b/src/app/pluginadapter.cpp similarity index 100% rename from src/pluginadapter.cpp rename to src/app/pluginadapter.cpp diff --git a/src/pluginadapter.h b/src/app/pluginadapter.h similarity index 100% rename from src/pluginadapter.h rename to src/app/pluginadapter.h diff --git a/src/pluginhandlerlistmodel.cpp b/src/app/pluginhandlerlistmodel.cpp similarity index 100% rename from src/pluginhandlerlistmodel.cpp rename to src/app/pluginhandlerlistmodel.cpp diff --git a/src/pluginhandlerlistmodel.h b/src/app/pluginhandlerlistmodel.h similarity index 100% rename from src/pluginhandlerlistmodel.h rename to src/app/pluginhandlerlistmodel.h diff --git a/src/pluginlistmodel.cpp b/src/app/pluginlistmodel.cpp similarity index 100% rename from src/pluginlistmodel.cpp rename to src/app/pluginlistmodel.cpp diff --git a/src/pluginlistmodel.h b/src/app/pluginlistmodel.h similarity index 100% rename from src/pluginlistmodel.h rename to src/app/pluginlistmodel.h diff --git a/src/pluginlistpreferencemodel.cpp b/src/app/pluginlistpreferencemodel.cpp similarity index 100% rename from src/pluginlistpreferencemodel.cpp rename to src/app/pluginlistpreferencemodel.cpp diff --git a/src/pluginlistpreferencemodel.h b/src/app/pluginlistpreferencemodel.h similarity index 100% rename from src/pluginlistpreferencemodel.h rename to src/app/pluginlistpreferencemodel.h diff --git a/src/preferenceitemlistmodel.cpp b/src/app/preferenceitemlistmodel.cpp similarity index 100% rename from src/preferenceitemlistmodel.cpp rename to src/app/preferenceitemlistmodel.cpp diff --git a/src/preferenceitemlistmodel.h b/src/app/preferenceitemlistmodel.h similarity index 100% rename from src/preferenceitemlistmodel.h rename to src/app/preferenceitemlistmodel.h diff --git a/src/previewengine.cpp b/src/app/previewengine.cpp similarity index 100% rename from src/previewengine.cpp rename to src/app/previewengine.cpp diff --git a/src/previewengine.h b/src/app/previewengine.h similarity index 100% rename from src/previewengine.h rename to src/app/previewengine.h diff --git a/src/qmladapterbase.h b/src/app/qmladapterbase.h similarity index 100% rename from src/qmladapterbase.h rename to src/app/qmladapterbase.h diff --git a/src/qmlregister.cpp b/src/app/qmlregister.cpp similarity index 95% rename from src/qmlregister.cpp rename to src/app/qmlregister.cpp index 64b8a757..4c78a08d 100644 --- a/src/qmlregister.cpp +++ b/src/app/qmlregister.cpp @@ -171,11 +171,11 @@ registerTypes(QQmlEngine* engine, QML_REGISTERNAMESPACE(NS_MODELS, MessageList::staticMetaObject, "MessageList"); // Qml singleton components - QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/constant/JamiTheme.qml", JamiTheme); - QML_REGISTERSINGLETONTYPE_URL(NS_MODELS, "qrc:/src/constant/JamiQmlUtils.qml", JamiQmlUtils); - QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/constant/JamiStrings.qml", JamiStrings); - QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/constant/JamiResources.qml", JamiResources); - QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/constant/MsgSeq.qml", MsgSeq); + QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/app/constant/JamiTheme.qml", JamiTheme); + QML_REGISTERSINGLETONTYPE_URL(NS_MODELS, "qrc:/src/app/constant/JamiQmlUtils.qml", JamiQmlUtils); + QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/app/constant/JamiStrings.qml", JamiStrings); + QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/app/constant/JamiResources.qml", JamiResources); + QML_REGISTERSINGLETONTYPE_URL(NS_CONSTANTS, "qrc:/src/app/constant/MsgSeq.qml", MsgSeq); QML_REGISTERSINGLETONTYPE_POBJECT(NS_CONSTANTS, parent, "MainApplication") QML_REGISTERSINGLETONTYPE_POBJECT(NS_CONSTANTS, screenInfo, "CurrentScreenInfo") diff --git a/src/qmlregister.h b/src/app/qmlregister.h similarity index 100% rename from src/qmlregister.h rename to src/app/qmlregister.h diff --git a/src/qrimageprovider.h b/src/app/qrimageprovider.h similarity index 100% rename from src/qrimageprovider.h rename to src/app/qrimageprovider.h diff --git a/src/qtutils.h b/src/app/qtutils.h similarity index 100% rename from src/qtutils.h rename to src/app/qtutils.h diff --git a/src/quickimageproviderbase.h b/src/app/quickimageproviderbase.h similarity index 100% rename from src/quickimageproviderbase.h rename to src/app/quickimageproviderbase.h diff --git a/src/screensaver.cpp b/src/app/screensaver.cpp similarity index 100% rename from src/screensaver.cpp rename to src/app/screensaver.cpp diff --git a/src/screensaver.h b/src/app/screensaver.h similarity index 100% rename from src/screensaver.h rename to src/app/screensaver.h diff --git a/src/searchresultslistmodel.cpp b/src/app/searchresultslistmodel.cpp similarity index 100% rename from src/searchresultslistmodel.cpp rename to src/app/searchresultslistmodel.cpp diff --git a/src/searchresultslistmodel.h b/src/app/searchresultslistmodel.h similarity index 100% rename from src/searchresultslistmodel.h rename to src/app/searchresultslistmodel.h diff --git a/src/selectablelistproxymodel.cpp b/src/app/selectablelistproxymodel.cpp similarity index 100% rename from src/selectablelistproxymodel.cpp rename to src/app/selectablelistproxymodel.cpp diff --git a/src/selectablelistproxymodel.h b/src/app/selectablelistproxymodel.h similarity index 100% rename from src/selectablelistproxymodel.h rename to src/app/selectablelistproxymodel.h diff --git a/src/settingsview/SettingsView.qml b/src/app/settingsview/SettingsView.qml similarity index 100% rename from src/settingsview/SettingsView.qml rename to src/app/settingsview/SettingsView.qml diff --git a/src/settingsview/components/AccountProfile.qml b/src/app/settingsview/components/AccountProfile.qml similarity index 100% rename from src/settingsview/components/AccountProfile.qml rename to src/app/settingsview/components/AccountProfile.qml diff --git a/src/settingsview/components/AdvancedCallSettings.qml b/src/app/settingsview/components/AdvancedCallSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedCallSettings.qml rename to src/app/settingsview/components/AdvancedCallSettings.qml diff --git a/src/settingsview/components/AdvancedChatSettings.qml b/src/app/settingsview/components/AdvancedChatSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedChatSettings.qml rename to src/app/settingsview/components/AdvancedChatSettings.qml diff --git a/src/settingsview/components/AdvancedConnectivitySettings.qml b/src/app/settingsview/components/AdvancedConnectivitySettings.qml similarity index 100% rename from src/settingsview/components/AdvancedConnectivitySettings.qml rename to src/app/settingsview/components/AdvancedConnectivitySettings.qml diff --git a/src/settingsview/components/AdvancedJamiSecuritySettings.qml b/src/app/settingsview/components/AdvancedJamiSecuritySettings.qml similarity index 100% rename from src/settingsview/components/AdvancedJamiSecuritySettings.qml rename to src/app/settingsview/components/AdvancedJamiSecuritySettings.qml diff --git a/src/settingsview/components/AdvancedMediaSettings.qml b/src/app/settingsview/components/AdvancedMediaSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedMediaSettings.qml rename to src/app/settingsview/components/AdvancedMediaSettings.qml diff --git a/src/settingsview/components/AdvancedNameServerSettings.qml b/src/app/settingsview/components/AdvancedNameServerSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedNameServerSettings.qml rename to src/app/settingsview/components/AdvancedNameServerSettings.qml diff --git a/src/settingsview/components/AdvancedOpenDHTSettings.qml b/src/app/settingsview/components/AdvancedOpenDHTSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedOpenDHTSettings.qml rename to src/app/settingsview/components/AdvancedOpenDHTSettings.qml diff --git a/src/settingsview/components/AdvancedPublicAddressSettings.qml b/src/app/settingsview/components/AdvancedPublicAddressSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedPublicAddressSettings.qml rename to src/app/settingsview/components/AdvancedPublicAddressSettings.qml diff --git a/src/settingsview/components/AdvancedSDPSettings.qml b/src/app/settingsview/components/AdvancedSDPSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedSDPSettings.qml rename to src/app/settingsview/components/AdvancedSDPSettings.qml diff --git a/src/settingsview/components/AdvancedSIPSecuritySettings.qml b/src/app/settingsview/components/AdvancedSIPSecuritySettings.qml similarity index 100% rename from src/settingsview/components/AdvancedSIPSecuritySettings.qml rename to src/app/settingsview/components/AdvancedSIPSecuritySettings.qml diff --git a/src/settingsview/components/AdvancedSettings.qml b/src/app/settingsview/components/AdvancedSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedSettings.qml rename to src/app/settingsview/components/AdvancedSettings.qml diff --git a/src/settingsview/components/AdvancedVoiceMailSettings.qml b/src/app/settingsview/components/AdvancedVoiceMailSettings.qml similarity index 100% rename from src/settingsview/components/AdvancedVoiceMailSettings.qml rename to src/app/settingsview/components/AdvancedVoiceMailSettings.qml diff --git a/src/settingsview/components/AudioSettings.qml b/src/app/settingsview/components/AudioSettings.qml similarity index 100% rename from src/settingsview/components/AudioSettings.qml rename to src/app/settingsview/components/AudioSettings.qml diff --git a/src/settingsview/components/AvSettingPage.qml b/src/app/settingsview/components/AvSettingPage.qml similarity index 100% rename from src/settingsview/components/AvSettingPage.qml rename to src/app/settingsview/components/AvSettingPage.qml diff --git a/src/settingsview/components/BannedContacts.qml b/src/app/settingsview/components/BannedContacts.qml similarity index 100% rename from src/settingsview/components/BannedContacts.qml rename to src/app/settingsview/components/BannedContacts.qml diff --git a/src/settingsview/components/ChatviewSettings.qml b/src/app/settingsview/components/ChatviewSettings.qml similarity index 100% rename from src/settingsview/components/ChatviewSettings.qml rename to src/app/settingsview/components/ChatviewSettings.qml diff --git a/src/settingsview/components/ContactItemDelegate.qml b/src/app/settingsview/components/ContactItemDelegate.qml similarity index 100% rename from src/settingsview/components/ContactItemDelegate.qml rename to src/app/settingsview/components/ContactItemDelegate.qml diff --git a/src/settingsview/components/CurrentAccountSettings.qml b/src/app/settingsview/components/CurrentAccountSettings.qml similarity index 100% rename from src/settingsview/components/CurrentAccountSettings.qml rename to src/app/settingsview/components/CurrentAccountSettings.qml diff --git a/src/settingsview/components/DeviceItemDelegate.qml b/src/app/settingsview/components/DeviceItemDelegate.qml similarity index 100% rename from src/settingsview/components/DeviceItemDelegate.qml rename to src/app/settingsview/components/DeviceItemDelegate.qml diff --git a/src/settingsview/components/FileTransferSettings.qml b/src/app/settingsview/components/FileTransferSettings.qml similarity index 100% rename from src/settingsview/components/FileTransferSettings.qml rename to src/app/settingsview/components/FileTransferSettings.qml diff --git a/src/settingsview/components/GeneralSettingsPage.qml b/src/app/settingsview/components/GeneralSettingsPage.qml similarity index 100% rename from src/settingsview/components/GeneralSettingsPage.qml rename to src/app/settingsview/components/GeneralSettingsPage.qml diff --git a/src/settingsview/components/JamiUserIdentity.qml b/src/app/settingsview/components/JamiUserIdentity.qml similarity index 100% rename from src/settingsview/components/JamiUserIdentity.qml rename to src/app/settingsview/components/JamiUserIdentity.qml diff --git a/src/settingsview/components/LevelMeter.qml b/src/app/settingsview/components/LevelMeter.qml similarity index 100% rename from src/settingsview/components/LevelMeter.qml rename to src/app/settingsview/components/LevelMeter.qml diff --git a/src/settingsview/components/LinkDeviceDialog.qml b/src/app/settingsview/components/LinkDeviceDialog.qml similarity index 100% rename from src/settingsview/components/LinkDeviceDialog.qml rename to src/app/settingsview/components/LinkDeviceDialog.qml diff --git a/src/settingsview/components/LinkedDevices.qml b/src/app/settingsview/components/LinkedDevices.qml similarity index 100% rename from src/settingsview/components/LinkedDevices.qml rename to src/app/settingsview/components/LinkedDevices.qml diff --git a/src/settingsview/components/LogsView.qml b/src/app/settingsview/components/LogsView.qml similarity index 100% rename from src/settingsview/components/LogsView.qml rename to src/app/settingsview/components/LogsView.qml diff --git a/src/settingsview/components/MediaCodecDelegate.qml b/src/app/settingsview/components/MediaCodecDelegate.qml similarity index 100% rename from src/settingsview/components/MediaCodecDelegate.qml rename to src/app/settingsview/components/MediaCodecDelegate.qml diff --git a/src/settingsview/components/MediaSettings.qml b/src/app/settingsview/components/MediaSettings.qml similarity index 100% rename from src/settingsview/components/MediaSettings.qml rename to src/app/settingsview/components/MediaSettings.qml diff --git a/src/settingsview/components/NameRegistrationDialog.qml b/src/app/settingsview/components/NameRegistrationDialog.qml similarity index 100% rename from src/settingsview/components/NameRegistrationDialog.qml rename to src/app/settingsview/components/NameRegistrationDialog.qml diff --git a/src/settingsview/components/PluginItemDelegate.qml b/src/app/settingsview/components/PluginItemDelegate.qml similarity index 100% rename from src/settingsview/components/PluginItemDelegate.qml rename to src/app/settingsview/components/PluginItemDelegate.qml diff --git a/src/settingsview/components/PluginListView.qml b/src/app/settingsview/components/PluginListView.qml similarity index 100% rename from src/settingsview/components/PluginListView.qml rename to src/app/settingsview/components/PluginListView.qml diff --git a/src/settingsview/components/PluginPreferencesListView.qml b/src/app/settingsview/components/PluginPreferencesListView.qml similarity index 100% rename from src/settingsview/components/PluginPreferencesListView.qml rename to src/app/settingsview/components/PluginPreferencesListView.qml diff --git a/src/settingsview/components/PluginPreferencesView.qml b/src/app/settingsview/components/PluginPreferencesView.qml similarity index 100% rename from src/settingsview/components/PluginPreferencesView.qml rename to src/app/settingsview/components/PluginPreferencesView.qml diff --git a/src/settingsview/components/PluginSettingsPage.qml b/src/app/settingsview/components/PluginSettingsPage.qml similarity index 100% rename from src/settingsview/components/PluginSettingsPage.qml rename to src/app/settingsview/components/PluginSettingsPage.qml diff --git a/src/settingsview/components/RecordingSettings.qml b/src/app/settingsview/components/RecordingSettings.qml similarity index 100% rename from src/settingsview/components/RecordingSettings.qml rename to src/app/settingsview/components/RecordingSettings.qml diff --git a/src/settingsview/components/RevokeDevicePasswordDialog.qml b/src/app/settingsview/components/RevokeDevicePasswordDialog.qml similarity index 100% rename from src/settingsview/components/RevokeDevicePasswordDialog.qml rename to src/app/settingsview/components/RevokeDevicePasswordDialog.qml diff --git a/src/settingsview/components/SIPUserIdentity.qml b/src/app/settingsview/components/SIPUserIdentity.qml similarity index 100% rename from src/settingsview/components/SIPUserIdentity.qml rename to src/app/settingsview/components/SIPUserIdentity.qml diff --git a/src/settingsview/components/SettingMaterialButton.qml b/src/app/settingsview/components/SettingMaterialButton.qml similarity index 100% rename from src/settingsview/components/SettingMaterialButton.qml rename to src/app/settingsview/components/SettingMaterialButton.qml diff --git a/src/settingsview/components/SettingSpinBox.qml b/src/app/settingsview/components/SettingSpinBox.qml similarity index 100% rename from src/settingsview/components/SettingSpinBox.qml rename to src/app/settingsview/components/SettingSpinBox.qml diff --git a/src/settingsview/components/SettingsComboBox.qml b/src/app/settingsview/components/SettingsComboBox.qml similarity index 100% rename from src/settingsview/components/SettingsComboBox.qml rename to src/app/settingsview/components/SettingsComboBox.qml diff --git a/src/settingsview/components/SettingsHeader.qml b/src/app/settingsview/components/SettingsHeader.qml similarity index 100% rename from src/settingsview/components/SettingsHeader.qml rename to src/app/settingsview/components/SettingsHeader.qml diff --git a/src/settingsview/components/SettingsMaterialLineEdit.qml b/src/app/settingsview/components/SettingsMaterialLineEdit.qml similarity index 100% rename from src/settingsview/components/SettingsMaterialLineEdit.qml rename to src/app/settingsview/components/SettingsMaterialLineEdit.qml diff --git a/src/settingsview/components/SettingsMenu.qml b/src/app/settingsview/components/SettingsMenu.qml similarity index 100% rename from src/settingsview/components/SettingsMenu.qml rename to src/app/settingsview/components/SettingsMenu.qml diff --git a/src/settingsview/components/SettingsMenuButton.qml b/src/app/settingsview/components/SettingsMenuButton.qml similarity index 100% rename from src/settingsview/components/SettingsMenuButton.qml rename to src/app/settingsview/components/SettingsMenuButton.qml diff --git a/src/settingsview/components/SystemSettings.qml b/src/app/settingsview/components/SystemSettings.qml similarity index 100% rename from src/settingsview/components/SystemSettings.qml rename to src/app/settingsview/components/SystemSettings.qml diff --git a/src/settingsview/components/ToggleSwitch.qml b/src/app/settingsview/components/ToggleSwitch.qml similarity index 100% rename from src/settingsview/components/ToggleSwitch.qml rename to src/app/settingsview/components/ToggleSwitch.qml diff --git a/src/settingsview/components/TroubleshootSettings.qml b/src/app/settingsview/components/TroubleshootSettings.qml similarity index 100% rename from src/settingsview/components/TroubleshootSettings.qml rename to src/app/settingsview/components/TroubleshootSettings.qml diff --git a/src/settingsview/components/UpdateSettings.qml b/src/app/settingsview/components/UpdateSettings.qml similarity index 100% rename from src/settingsview/components/UpdateSettings.qml rename to src/app/settingsview/components/UpdateSettings.qml diff --git a/src/settingsview/components/UserIdentity.qml b/src/app/settingsview/components/UserIdentity.qml similarity index 100% rename from src/settingsview/components/UserIdentity.qml rename to src/app/settingsview/components/UserIdentity.qml diff --git a/src/settingsview/components/VideoSettings.qml b/src/app/settingsview/components/VideoSettings.qml similarity index 100% rename from src/settingsview/components/VideoSettings.qml rename to src/app/settingsview/components/VideoSettings.qml diff --git a/src/settingsview/js/logviewwindowcreation.js b/src/app/settingsview/js/logviewwindowcreation.js similarity index 100% rename from src/settingsview/js/logviewwindowcreation.js rename to src/app/settingsview/js/logviewwindowcreation.js diff --git a/src/smartlistmodel.cpp b/src/app/smartlistmodel.cpp similarity index 100% rename from src/smartlistmodel.cpp rename to src/app/smartlistmodel.cpp diff --git a/src/smartlistmodel.h b/src/app/smartlistmodel.h similarity index 100% rename from src/smartlistmodel.h rename to src/app/smartlistmodel.h diff --git a/src/systemtray.cpp b/src/app/systemtray.cpp similarity index 100% rename from src/systemtray.cpp rename to src/app/systemtray.cpp diff --git a/src/systemtray.h b/src/app/systemtray.h similarity index 100% rename from src/systemtray.h rename to src/app/systemtray.h diff --git a/src/updatemanager.cpp b/src/app/updatemanager.cpp similarity index 100% rename from src/updatemanager.cpp rename to src/app/updatemanager.cpp diff --git a/src/updatemanager.h b/src/app/updatemanager.h similarity index 100% rename from src/updatemanager.h rename to src/app/updatemanager.h diff --git a/src/utils.cpp b/src/app/utils.cpp similarity index 100% rename from src/utils.cpp rename to src/app/utils.cpp diff --git a/src/utils.h b/src/app/utils.h similarity index 100% rename from src/utils.h rename to src/app/utils.h diff --git a/src/utilsadapter.cpp b/src/app/utilsadapter.cpp similarity index 100% rename from src/utilsadapter.cpp rename to src/app/utilsadapter.cpp diff --git a/src/utilsadapter.h b/src/app/utilsadapter.h similarity index 100% rename from src/utilsadapter.h rename to src/app/utilsadapter.h diff --git a/src/version.h b/src/app/version.h similarity index 100% rename from src/version.h rename to src/app/version.h diff --git a/src/videodevices.cpp b/src/app/videodevices.cpp similarity index 100% rename from src/videodevices.cpp rename to src/app/videodevices.cpp diff --git a/src/videodevices.h b/src/app/videodevices.h similarity index 100% rename from src/videodevices.h rename to src/app/videodevices.h diff --git a/src/videoprovider.cpp b/src/app/videoprovider.cpp similarity index 100% rename from src/videoprovider.cpp rename to src/app/videoprovider.cpp diff --git a/src/videoprovider.h b/src/app/videoprovider.h similarity index 100% rename from src/videoprovider.h rename to src/app/videoprovider.h diff --git a/src/wizardview/WizardView.qml b/src/app/wizardview/WizardView.qml similarity index 100% rename from src/wizardview/WizardView.qml rename to src/app/wizardview/WizardView.qml diff --git a/src/wizardview/components/AccountCreationStepIndicator.qml b/src/app/wizardview/components/AccountCreationStepIndicator.qml similarity index 100% rename from src/wizardview/components/AccountCreationStepIndicator.qml rename to src/app/wizardview/components/AccountCreationStepIndicator.qml diff --git a/src/wizardview/components/BackupKeyPage.qml b/src/app/wizardview/components/BackupKeyPage.qml similarity index 100% rename from src/wizardview/components/BackupKeyPage.qml rename to src/app/wizardview/components/BackupKeyPage.qml diff --git a/src/wizardview/components/ConnectToAccountManagerPage.qml b/src/app/wizardview/components/ConnectToAccountManagerPage.qml similarity index 100% rename from src/wizardview/components/ConnectToAccountManagerPage.qml rename to src/app/wizardview/components/ConnectToAccountManagerPage.qml diff --git a/src/wizardview/components/CreateAccountPage.qml b/src/app/wizardview/components/CreateAccountPage.qml similarity index 100% rename from src/wizardview/components/CreateAccountPage.qml rename to src/app/wizardview/components/CreateAccountPage.qml diff --git a/src/wizardview/components/CreateSIPAccountPage.qml b/src/app/wizardview/components/CreateSIPAccountPage.qml similarity index 100% rename from src/wizardview/components/CreateSIPAccountPage.qml rename to src/app/wizardview/components/CreateSIPAccountPage.qml diff --git a/src/wizardview/components/ImportFromBackupPage.qml b/src/app/wizardview/components/ImportFromBackupPage.qml similarity index 100% rename from src/wizardview/components/ImportFromBackupPage.qml rename to src/app/wizardview/components/ImportFromBackupPage.qml diff --git a/src/wizardview/components/ImportFromDevicePage.qml b/src/app/wizardview/components/ImportFromDevicePage.qml similarity index 100% rename from src/wizardview/components/ImportFromDevicePage.qml rename to src/app/wizardview/components/ImportFromDevicePage.qml diff --git a/src/wizardview/components/ProfilePage.qml b/src/app/wizardview/components/ProfilePage.qml similarity index 100% rename from src/wizardview/components/ProfilePage.qml rename to src/app/wizardview/components/ProfilePage.qml diff --git a/src/wizardview/components/WelcomePage.qml b/src/app/wizardview/components/WelcomePage.qml similarity index 100% rename from src/wizardview/components/WelcomePage.qml rename to src/app/wizardview/components/WelcomePage.qml diff --git a/src/wizardviewstepmodel.cpp b/src/app/wizardviewstepmodel.cpp similarity index 100% rename from src/wizardviewstepmodel.cpp rename to src/app/wizardviewstepmodel.cpp diff --git a/src/wizardviewstepmodel.h b/src/app/wizardviewstepmodel.h similarity index 100% rename from src/wizardviewstepmodel.h rename to src/app/wizardviewstepmodel.h diff --git a/src/xrectsel.c b/src/app/xrectsel.c similarity index 100% rename from src/xrectsel.c rename to src/app/xrectsel.c diff --git a/src/xrectsel.h b/src/app/xrectsel.h similarity index 100% rename from src/xrectsel.h rename to src/app/xrectsel.h diff --git a/tests/qml/src/tst_ChatViewFooter.qml b/tests/qml/src/tst_ChatViewFooter.qml index 47719e31..84316d78 100644 --- a/tests/qml/src/tst_ChatViewFooter.qml +++ b/tests/qml/src/tst_ChatViewFooter.qml @@ -25,7 +25,7 @@ import QtTest import net.jami.Models 1.1 import net.jami.Constants 1.1 -import "qrc:/src/mainview/components" +import "qrc:/src/app/mainview/components" ColumnLayout { id: root @@ -64,7 +64,7 @@ ColumnLayout { // File added into filesToSendContainer will cause sendMessageButton to show filesToSendContainer.filesToSendListModel.addToPending( - ":/src/resources/png_test.png") + ":/src/app/resources/png_test.png") compare(filesToSendContainer.filesToSendCount, 1) compare(sendMessageButton.visible, true) @@ -77,7 +77,7 @@ ColumnLayout { // clear one of them will still make sendMessageButton to show messageBarTextArea.insertText("test") filesToSendContainer.filesToSendListModel.addToPending( - ":/src/resources/png_test.png") + ":/src/app/resources/png_test.png") messageBarTextArea.clearText() compare(sendMessageButton.visible, true) diff --git a/tests/qml/src/tst_FilesToSendContainer.qml b/tests/qml/src/tst_FilesToSendContainer.qml index 90c10802..b7f4810a 100644 --- a/tests/qml/src/tst_FilesToSendContainer.qml +++ b/tests/qml/src/tst_FilesToSendContainer.qml @@ -25,7 +25,7 @@ import QtTest import net.jami.Models 1.1 import net.jami.Constants 1.1 -import "qrc:/src/mainview/components" +import "qrc:/src/app/mainview/components" ColumnLayout { id: root @@ -50,15 +50,15 @@ ColumnLayout { function test_add_remove_file_test() { // Add animated image file - uut.filesToSendListModel.addToPending(":/src/resources/gif_test.gif") + uut.filesToSendListModel.addToPending(":/src/app/resources/gif_test.gif") compare(uut.filesToSendCount, 1) // Add image file - uut.filesToSendListModel.addToPending(":/src/resources/png_test.png") + uut.filesToSendListModel.addToPending(":/src/app/resources/png_test.png") compare(uut.filesToSendCount, 2) // Add normal file - uut.filesToSendListModel.addToPending(":/src/resources/gz_test.gz") + uut.filesToSendListModel.addToPending(":/src/app/resources/gz_test.gz") compare(uut.filesToSendCount, 3) // Flush diff --git a/tests/qml/src/tst_PresenceIndicator.qml b/tests/qml/src/tst_PresenceIndicator.qml index 1f6eeda0..0eda9169 100644 --- a/tests/qml/src/tst_PresenceIndicator.qml +++ b/tests/qml/src/tst_PresenceIndicator.qml @@ -22,7 +22,7 @@ import QtTest import net.jami.Models 1.1 import net.jami.Constants 1.1 -import "qrc:/src/commoncomponents" +import "qrc:/src/app/commoncomponents" PresenceIndicator { id: uut diff --git a/tests/qml/src/tst_WizardView.qml b/tests/qml/src/tst_WizardView.qml index 24aa7486..ea31ccd7 100644 --- a/tests/qml/src/tst_WizardView.qml +++ b/tests/qml/src/tst_WizardView.qml @@ -24,8 +24,8 @@ import net.jami.Models 1.1 import net.jami.Constants 1.1 import net.jami.Enums 1.1 -import "qrc:/src/wizardview" -import "qrc:/src/commoncomponents" +import "qrc:/src/app/wizardview" +import "qrc:/src/app/commoncomponents" WizardView { id: uut diff --git a/translations/ring_client_windows.ts b/translations/ring_client_windows.ts index 5c7b70b7..308ce930 100644 --- a/translations/ring_client_windows.ts +++ b/translations/ring_client_windows.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_ar.ts b/translations/ring_client_windows_ar.ts index 9dd8e137..af33a947 100644 --- a/translations/ring_client_windows_ar.ts +++ b/translations/ring_client_windows_ar.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile ملف شخصي @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File ملف الشهادة - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File ملف الشهادة - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts جهات الاتصال المحظورة @@ -89,32 +89,32 @@ CallAdapter - + Missed call مكالمة فائتة - + Missed call with %1 - + me - + Incoming call مكالمة واردة - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok موافق - - + + Success نجاح - - + + Error خطأ - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok موافق @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations الدعوات - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version الإصدار - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits الأطراف الداعمة - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account حذف الحساب - + Authentication failed - + Password كلمة السر - + Username اسم مستخدم - + Alias الاسم المستعار - + Call Settings - + Allow incoming calls from unknown contacts السماح بمكالمات واردة من جهات إتصال غير معروفة - + In progress… - + Accept اقبل - + Refuse أرفض - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail البريد الصوتي - + Voicemail dial code - + Security تأمين - + Encrypt media streams (SRTP) نظام تشفير تدفق الوسائط (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) نظام تشفير التفاوض (TLS) - + CA certificate شهادة CA - + User certificate شهادة المستخدم - + Private key المفتاح الخاص - + Private key password كلمة سر المفتاح الخاص - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method نهج نظام TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) إنقضاء فترة التفاوض (ثواني) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port استخدام عنوان ونقطة عبور مخصصين - + Enable local peer discovery تمكين اكتشاف النظراء المحلي - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call إنهاء المكالمة - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password تشفير حساب بكلمة مرور - + Create a rendezvous point إنشاء نقطة اجتماع - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point اختر اسماً لنقطة الاجتماع - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators تمكين مؤشرات الكتابة - - + + Network error خطأ في الشبكة - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device اربط جهاز - + Conversations محادثات - + Enable تفعيل - + Display or hide preferences - + Add new plugin - + Select a file إختار ملف - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account إنشاء حساب جامي - + About Jami حول جامي - + Decline contact request - + Accept contact request - + Automatically check for updates بحث تلقائي عن التحديثات - + Ok موافق - - + + Cancel إلغاء - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts تمكين إيصالات القراءة - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity الاتصال - + Auto Registration After Expired - + Network interface واجهة الشبكة - + Use UPnP - + Use TURN إستعمل خادم TURN - + TURN address عنوان بروتوكول TURN - + TURN username اسم المستخدم لبروتوكول TURN - + TURN password كلمة المرور لبروتوكول TURN - + TURN Realm - + Use STUN إستعمل خادم STUN - + STUN address عنوان STUN - + Allow IP Auto Rewrite - + Public address - + Address العنوان - + Port منفذ عبور - + Media وسائط - + Enable video فعل الفيديو - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) جلسة تفاوض SDP (حل تعويض ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy تفعيل البروكسي - + Proxy address - + Bootstrap تشغيل ذاتي - + Back السابق - + Account Settings - + Account الحساب - - + + General عام - + Plugin - + Audio/Video صوت/فيديو - + Audio صوت - + Microphone الميكرفون - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video فيديو - + Select video device - + Device جهاز - + Resolution دقة العرض (resolution) - + Select video resolution - + Enable hardware acceleration تمكين تسريع الأجهزة - + Preview unavailable - + Screen Sharing مشاركة الشاشة - + Select screen sharing frame rate (frames per second) حدد معدل إطارات مشاركة الشاشة ﴿إطارات في الثانية﴾ - + no video لا يوجد فيديو - + Backup account here - + Backup your account! - + Backup account - + Skip تخطي - + Success نجاح - + Error خطأ - + Never show me this again لا تظهر لي هذا مرة أخرى - + Recommended موصى به - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute كتم - - + + Unmute إعادة الصوت - + Add participant أضف مشارك - + Add participants - + Chat محادثة كتابية - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut إقطتاع - + Paste لصق - + Start video call بدء مكالمة فيديو - + Start audio call بدأ مكالمة صوتية - + Clear conversation مسح المحادثة - + Remove conversation إزالة المحادثة - + Remove contact - + Block contact حظر جهة إتصال - + Contact details تفاصيل جهة الأتصال - + Hold تعليق - + Sip input panel - + Transfer call - + Stop recording إيقاف التسجيل - + Start recording - + Exit full screen إنهاء طريقة عرض ملء الشاشة - + Share screen مشاركة الشاشة - + Share window مشاركة النافذة - + Share screen area تقاسم منطقة من الشاشة - + Share file مشاركة ملف - + Select sharing method - + View plugin - + No video device - + N/A غير متوفر - + Lower hand - + Raise hand رفع اليد - + Hide chat view - + Place audio call إجراء مكالمة صوتية - + Place video call إجراء مكالمة فيديو - + Show available plugins - + Add to conversations إضافة إلى المحادثات - + Jump to latest التمرير إلى نهاية المحادثة - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required مطلوب - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect إتصال - + Back to welcome page - + Choose name - + Choose username - + Create account إنشاء حساب - + Confirm password - + Optional اختياري - + Choose a username for your account إختار إسم مستخدم لحسابك - + Choose a name - + Choose your username اختر اسم مستخدمك - + Invalid name - + Invalid username اسم مستخدم غير صالح - + Name already taken - + Username already taken اسم المستخدم مستخدم بالفعل - + Proxy الوكيل - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password تغيير كلمة المرور - - + + Set password تعيين كلمة المرور - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device اربط جهازاً آخر - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices الأجهزة المرتبطة - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close أبقي مصغر عند الغلق - + Run application on system startup - + Downloads directory مجلد التنزيلات - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview إظهار معاينات الارتباط - + User interface language لغة واجهة المستخدم - + File transfer نقل ملف - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register سجل - + Incorrect password - + Save file حفظ ملف - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update التحديث - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled تم إلغاء تنزيل المثبِّت - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop توقف - + Generating account… - + Import from backup استيراد من النسخ الاحتياطي - + PIN رمز الأمان - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts الملف الشخصي تتم مشاركته فقط مع جهات الإتصال - + Enter your name إدخال إسمك - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file إرسال ملف - + Leave audio message - + Leave video message - + Send إرسال - + Remove احذف - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy نسخ - + Participant is still muted on their device - + You are still muted on your device - + View full screen طريقة عرض ملء الشاشة - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout تخطيط - + Vertical view طريقة عرض عمودية - + Horizontal view طريقة عرض أفقية - + Keyboard Shortcut Table - + Conversation - + Call مكالمة - + Settings الإعدادات - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file فتح ملف - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close إغلاق - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export تصدير - + Choose a picture as avatar - + Import avatar from image file - + Take photo التقاط صورة - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share حدد شاشة للمشاركة - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account إضافة حساب SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results نتائج البحث - + Delete حذف - + Set moderator - + Unset moderator - + Maximize تكبير - + Minimize خفض - + Hangup إنهاء المكالمة - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen ملء الشاشة - + Start an audio call - + Start a video call - + Clear history حذف المحفوظات - + Block contact حظر جهة إتصال - + Remove conversation إزالة المحادثة - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call إنهاء المكالمة - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok موافق - + Cancel إلغاء - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: قام بإنشاءه: - + Artwork by: مصمم العمل الفني: - + Based on the SFLPhone project يستند على مشروع SFLPhone - + Sending جاري الإرسال - + Failure إخفاق - + Sent - + Connecting يتم الإتصال - + Accept اقبل - + Canceled تم الإلغاء - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished تم الإنتهاء - + %1 days ago - + one day ago منذ يوم - + %1 hours ago - + one hour ago منذ ساعة - + %1 minutes ago - + just now في هذه اللحظة @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls تسجيل المكالمات دائمًا - + Quality الجودة - + Save in سجل في @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove احذف @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls مكالمات - - - - - - + + + + + + Contacts جهات إتصال @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System نظام - + Enable dark theme - + Enable desktop notifications إظهار الإعلامات @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer أجب - + Decline رفض - + Open conversation - + Accept اقبل - + Refuse أرفض @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity الهوية @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 ميجابت/ثانية - + Default افتراضي - + System نظام diff --git a/translations/ring_client_windows_ar_EG.ts b/translations/ring_client_windows_ar_EG.ts index 4ff7b13e..a1f299c7 100644 --- a/translations/ring_client_windows_ar_EG.ts +++ b/translations/ring_client_windows_ar_EG.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile ملف شخصي @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File ملف الشهادة - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File ملف الشهادة - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts جهات الاتصال المحظورة @@ -89,32 +89,32 @@ CallAdapter - + Missed call مكالمة فائتة - + Missed call with %1 - + me - + Incoming call مكالمة واردة - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok موافق - - + + Success نجاح - - + + Error خطأ - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok موافق @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations الدعوات - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version الإصدار - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits الأطراف الداعمة - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account حذف الحساب - + Authentication failed - + Password كلمة السر - + Username اسم مستخدم - + Alias الاسم المستعار - + Call Settings - + Allow incoming calls from unknown contacts السماح بمكالمات واردة من جهات إتصال غير معروفة - + In progress… - + Accept اقبل - + Refuse أرفض - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail البريد الصوتي - + Voicemail dial code - + Security تأمين - + Encrypt media streams (SRTP) نظام تشفير تدفق الوسائط (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) نظام تشفير التفاوض (TLS) - + CA certificate شهادة CA - + User certificate شهادة المستخدم - + Private key المفتاح الخاص - + Private key password كلمة سر المفتاح الخاص - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method نهج نظام TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) إنقضاء فترة التفاوض (ثواني) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port استخدام عنوان ونقطة عبور مخصصين - + Enable local peer discovery تمكين اكتشاف النظراء المحلي - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call إنهاء المكالمة - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password تشفير حساب بكلمة مرور - + Create a rendezvous point إنشاء نقطة اجتماع - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point اختر اسماً لنقطة الاجتماع - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators تمكين مؤشرات الكتابة - - + + Network error خطأ في الشبكة - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device اربط جهاز - + Conversations محادثات - + Enable تفعيل - + Display or hide preferences - + Add new plugin - + Select a file إختار ملف - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account إنشاء حساب جامي - + About Jami حول جامي - + Decline contact request - + Accept contact request - + Automatically check for updates بحث تلقائي عن التحديثات - + Ok موافق - - + + Cancel إلغاء الأمر - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts تمكين إيصالات القراءة - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity الاتصال - + Auto Registration After Expired - + Network interface واجهة الشبكة - + Use UPnP - + Use TURN إستعمل خادم TURN - + TURN address عنوان بروتوكول TURN - + TURN username اسم المستخدم لبروتوكول TURN - + TURN password كلمة المرور لبروتوكول TURN - + TURN Realm - + Use STUN إستعمل خادم STUN - + STUN address عنوان STUN - + Allow IP Auto Rewrite - + Public address - + Address العنوان - + Port منفذ عبور - + Media وسائط - + Enable video فعل الفيديو - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) جلسة تفاوض SDP (حل تعويض ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy تفعيل البروكسي - + Proxy address - + Bootstrap تشغيل ذاتي - + Back السابق - + Account Settings - + Account الحساب - - + + General عام - + Plugin - + Audio/Video صوت/فيديو - + Audio صوت - + Microphone الميكرفون - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video فيديو - + Select video device - + Device جهاز - + Resolution دقة العرض (resolution) - + Select video resolution - + Enable hardware acceleration تمكين تسريع الأجهزة - + Preview unavailable - + Screen Sharing مشاركة الشاشة - + Select screen sharing frame rate (frames per second) حدد معدل إطارات مشاركة الشاشة ﴿إطارات في الثانية﴾ - + no video لا يوجد فيديو - + Backup account here - + Backup your account! - + Backup account - + Skip تخطي - + Success نجاح - + Error خطأ - + Never show me this again لا تظهر لي هذا مرة أخرى - + Recommended موصى به - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute كتم - - + + Unmute إعادة الصوت - + Add participant أضف مشارك - + Add participants - + Chat محادثة كتابية - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut إقطتاع - + Paste لصق - + Start video call بدء مكالمة فيديو - + Start audio call بدأ مكالمة صوتية - + Clear conversation مسح المحادثة - + Remove conversation إزالة المحادثة - + Remove contact - + Block contact حظر جهة إتصال - + Contact details تفاصيل جهة الأتصال - + Hold تعليق - + Sip input panel - + Transfer call - + Stop recording إيقاف التسجيل - + Start recording - + Exit full screen إنهاء طريقة عرض ملء الشاشة - + Share screen مشاركة الشاشة - + Share window مشاركة النافذة - + Share screen area تقاسم منطقة من الشاشة - + Share file مشاركة ملف - + Select sharing method - + View plugin - + No video device - + N/A غير متوفر - + Lower hand - + Raise hand رفع اليد - + Hide chat view - + Place audio call إجراء مكالمة صوتية - + Place video call إجراء مكالمة فيديو - + Show available plugins - + Add to conversations إضافة إلى المحادثات - + Jump to latest التمرير إلى نهاية المحادثة - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required مطلوب - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect إتصال - + Back to welcome page - + Choose name - + Choose username - + Create account إنشاء حساب - + Confirm password - + Optional اختياري - + Choose a username for your account إختار إسم مستخدم لحسابك - + Choose a name - + Choose your username اختر اسم مستخدمك - + Invalid name - + Invalid username اسم مستخدم غير صالح - + Name already taken - + Username already taken اسم المستخدم مستخدم بالفعل - + Proxy الوكيل - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password تغيير كلمة المرور - - + + Set password تعيين كلمة المرور - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device اربط جهازاً آخر - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices الأجهزة المرتبطة - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close أبقي مصغر عند الغلق - + Run application on system startup - + Downloads directory مجلد التنزيلات - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview إظهار معاينات الارتباط - + User interface language لغة واجهة المستخدم - + File transfer نقل ملف - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register سجل - + Incorrect password - + Save file حفظ ملف - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update التحديث - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled تم إلغاء تنزيل المثبِّت - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop توقف - + Generating account… - + Import from backup استيراد من النسخ الاحتياطي - + PIN رمز الأمان - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts الملف الشخصي تتم مشاركته فقط مع جهات الإتصال - + Enter your name إدخال إسمك - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file إرسال ملف - + Leave audio message - + Leave video message - + Send إرسال - + Remove احذف - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy نسخ - + Participant is still muted on their device - + You are still muted on your device - + View full screen طريقة عرض ملء الشاشة - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout تخطيط - + Vertical view طريقة عرض عمودية - + Horizontal view طريقة عرض أفقية - + Keyboard Shortcut Table - + Conversation - + Call مكالمة - + Settings الإعدادات - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file فتح ملف - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close إغلاق - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export تصدير - + Choose a picture as avatar - + Import avatar from image file - + Take photo التقاط صورة - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share حدد شاشة للمشاركة - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account إضافة حساب SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results نتائج البحث - + Delete حذف - + Set moderator - + Unset moderator - + Maximize تكبير - + Minimize خفض - + Hangup إنهاء المكالمة - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen ملء الشاشة - + Start an audio call - + Start a video call - + Clear history حذف المحفوظات - + Block contact حظر جهة إتصال - + Remove conversation إزالة المحادثة - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call إنهاء المكالمة - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok موافق - + Cancel إلغاء الأمر - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: قام بإنشاءه: - + Artwork by: مصمم العمل الفني: - + Based on the SFLPhone project يستند على مشروع SFLPhone - + Sending جاري الإرسال - + Failure إخفاق - + Sent - + Connecting يتم الإتصال - + Accept اقبل - + Canceled تم الإلغاء - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished تم الإنتهاء - + %1 days ago - + one day ago منذ يوم - + %1 hours ago - + one hour ago منذ ساعة - + %1 minutes ago - + just now في هذه اللحظة @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls تسجيل المكالمات دائمًا - + Quality الجودة - + Save in سجل في @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove احذف @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls مكالمات - - - - - - + + + + + + Contacts جهات إتصال @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System نظام - + Enable dark theme - + Enable desktop notifications إظهار الإعلامات @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer أجب - + Decline رفض - + Open conversation - + Accept اقبل - + Refuse أرفض @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity الهوية @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 ميجابت/ثانية - + Default افتراضي - + System نظام diff --git a/translations/ring_client_windows_az.ts b/translations/ring_client_windows_az.ts index 14673dd2..a4b82c67 100644 --- a/translations/ring_client_windows_az.ts +++ b/translations/ring_client_windows_az.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Tamam - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Tamam @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Zəngi bitir - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Tamam - - + + Cancel Ləğv et - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone Mikrofon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing Ekran Paylaşması - + Select screen sharing frame rate (frames per second) Ekran paylaşma kadr sürətini seçin (bir saniyədə olan kadrlar) - + no video video yoxdur - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Tam ekran görünüşündən çıxın - + Share screen Ekranı paylaş - + Share window Paylaşım pəncərəsi - + Share screen area Ekran sahəsini paylaşın - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Endirilənlər qovluğu - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Keçid önbaxışlarını göstər - + User interface language İstifadəçi interfeysi dili - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Quraşdırıcı yükləmə ləğv edildi - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Fayl göndər - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Tam ekranı aç - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Düzən - + Vertical view Şaquli görünüş - + Horizontal view Üfüqi görünüş - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Paylaşmaq üçün ekran seçin - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Tam ekran - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Zəngi bitir - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Tamam - + Cancel Ləğv et - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Ləğv edilib - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Bildirişləri göstər @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Defolt - + System Sistem diff --git a/translations/ring_client_windows_be.ts b/translations/ring_client_windows_be.ts index fc4289dd..99d59330 100644 --- a/translations/ring_client_windows_be.ts +++ b/translations/ring_client_windows_be.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Добра - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Добра @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Скончыць выклік - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Добра - - + + Cancel Скасаваць - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video відэа няма - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Выйсці з поўнаэкраннага рэжыму - + Share screen Дэманстраваць экран - + Share window Падзяліцца акном - + Share screen area Дэманстраваць вобласць экрана - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Папка спамповак - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Паказаць перадпрагляд спасылак - + User interface language Мова карыстальніцкага інтэрфейсу - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Спампоўка ўсталёўніка скасаваная - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Адправіць файл - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Прагляд на ўвесь экран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Макет - + Vertical view Вертыкальны выгляд - + Horizontal view Гарызантальны выгляд - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Выберыце экран для дэманстрацыі - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen На ўвесь экран - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Скончыць выклік - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Добра - + Cancel Скасаваць - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Скасавана - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Паказаць апавяшчэнні @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбіт/с - + Default Па змаўчанні - + System Система diff --git a/translations/ring_client_windows_be@tarask.ts b/translations/ring_client_windows_be@tarask.ts index 85a4452f..1a324c19 100644 --- a/translations/ring_client_windows_be@tarask.ts +++ b/translations/ring_client_windows_be@tarask.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Добра - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Добра @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Скончыць выклік - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Добра - - + + Cancel Скасаваць - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video відэа няма - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Выйсці з поўнаэкраннага рэжыму - + Share screen Дэманстраваць экран - + Share window Падзяліцца акном - + Share screen area Дэманстраваць вобласць экрана - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Папка спамповак - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Паказаць перадпрагляд спасылак - + User interface language Мова карыстальніцкага інтэрфейсу - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Спампоўка ўсталёўніка скасаваная - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Адправіць файл - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Прагляд на ўвесь экран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Макет - + Vertical view Вертыкальны выгляд - + Horizontal view Гарызантальны выгляд - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Выберыце экран для дэманстрацыі - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen На ўвесь экран - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Скончыць выклік - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Добра - + Cancel Скасаваць - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Скасавана - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Паказаць апавяшчэнні @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбіт/с - + Default Па змаўчанні - + System Система diff --git a/translations/ring_client_windows_be_BY.ts b/translations/ring_client_windows_be_BY.ts index 9f88e23c..9fcb9b3d 100644 --- a/translations/ring_client_windows_be_BY.ts +++ b/translations/ring_client_windows_be_BY.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Добра - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Добра @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Скончыць выклік - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Добра - - + + Cancel Скасаваць - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video відэа няма - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Выйсці з поўнаэкраннага рэжыму - + Share screen Дэманстраваць экран - + Share window Падзяліцца акном - + Share screen area Дэманстраваць вобласць экрана - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Папка спамповак - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Паказаць перадпрагляд спасылак - + User interface language Мова карыстальніцкага інтэрфейсу - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Спампоўка ўсталёўніка скасаваная - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Адправіць файл - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Прагляд на ўвесь экран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Макет - + Vertical view Вертыкальны выгляд - + Horizontal view Гарызантальны выгляд - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Выберыце экран для дэманстрацыі - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen На ўвесь экран - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Скончыць выклік - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Добра - + Cancel Скасаваць - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Скасавана - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Паказаць апавяшчэнні @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбіт/с - + Default Па змаўчанні - + System Система diff --git a/translations/ring_client_windows_bg.ts b/translations/ring_client_windows_bg.ts index 3f8b1953..af4de9ed 100644 --- a/translations/ring_client_windows_bg.ts +++ b/translations/ring_client_windows_bg.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Профил @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Файл със сертификат - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Файл със сертификат - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Блокирани контакти @@ -89,32 +89,32 @@ CallAdapter - + Missed call Пропуснато обаждане - + Missed call with %1 - + me - + Incoming call Входящо обаждане - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Добре - - + + Success Успешно - - + + Error Грешка - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Добре @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Покани - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Версия - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Заслуги - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Парола - + Username Потребителско име - + Alias Псевдоним - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Приемане - + Refuse Отказ - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail Гласова поща - + Voicemail dial code - + Security Сигурност - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Шифроване на договарянето (TLS) - + CA certificate Сертификат от център за сертифициране - + User certificate Потребителски сертификат - + Private key Частен ключ - + Private key password Парола за частен ключ - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Протоколен метод на TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Време за изчакване на договарянето (секунди) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Край на разговора - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Мрежова грешка - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Свързване на устройство - + Conversations Разговори - + Enable - + Display or hide preferences - + Add new plugin - + Select a file Изберете файл - + Select Избери - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Създаване на профил в Jami - + About Jami Относно Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Автоматична проверка за обновления - + Ok Добре - - + + Cancel Отказ - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Използване на TURN - + TURN address - + TURN username Потребителско име за TURN - + TURN password Парола за TURN - + TURN Realm - + Use STUN Използване на STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Адрес - + Port Порт - + Media Звук и видео - + Enable video Включване на видеото - + Video Codecs Видео кодеци - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Начална установка - + Back Назад - + Account Settings - + Account Профил - - + + General Общи - + Plugin - + Audio/Video Звук/видео - + Audio Звук - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Видео - + Select video device - + Device Устройство - + Resolution Разделителна способност - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video няма видео - + Backup account here - + Backup your account! - + Backup account - + Skip Пропускане - + Success Успешно - + Error Грешка - + Never show me this again Това да не се показва повече - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Добавяне на участник - + Add participants - + Chat Съобщения - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Изрязване - + Paste Поставяне - + Start video call Започване на видео разговор - + Start audio call Започване на гласов разговор - + Clear conversation Изчистване на разговора - + Remove conversation Премахване на разговора - + Remove contact - + Block contact Блокиране на контакт - + Contact details Подробности за контакта - + Hold Задържане - + Sip input panel - + Transfer call Прехвърляне на обаждането - + Stop recording Спиране на записа - + Start recording - + Exit full screen Излизане от изглед на цял екран - + Share screen Споделяне на екрана - + Share window Сподели прозорец - + Share screen area Споделяне на област от екрана - + Share file Споделяне на файл - + Select sharing method - + View plugin - + No video device - + N/A Няма - + Lower hand - + Raise hand Вдигнете ръка - + Hide chat view Скрий чат изгледа - + Place audio call Започване на гласов разговор - + Place video call Започване на видео разговор - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Създаване на профил - + Confirm password Потвърдете паролата - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Изберете потребителско име - + Invalid name - + Invalid username Грешно потребителско име - + Name already taken - + Username already taken Потребителското име вече е заето - + Proxy Посредник - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Неуспешно възстановяване - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Промяна на парола - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username Регистриране на потребителско име - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Минимизиране при затваряне - + Run application on system startup - + Downloads directory Папка „Изтегляния“ - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Показване на визуализации на връзки - + User interface language Език на потребителския интерфейс - + File transfer Прехвърляне на файлове - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Регистриране - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Обновяване - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Изтеглянето на инсталатора е отменено - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Спиране - + Generating account… - + Import from backup Внасяне от резервно копие - + PIN ПИН - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Изпращане на файл - + Leave audio message - + Leave video message - + Send Изпращане - + Remove Премахване - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Копиране - + Participant is still muted on their device - + You are still muted on your device - + View full screen Преглед на цял екран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Оформление - + Vertical view Вертикален изглед - + Horizontal view Хоризонтален изглед - + Keyboard Shortcut Table - + Conversation - + Call Обаждане - + Settings Настройки - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Отваряне на файл - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Затваряне - + Enter your account password - + Add Device Добавяне на устройство - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Изнасяне - + Choose a picture as avatar - + Import avatar from image file - + Take photo Направи снимка - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Изберете екран за споделяне - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account Свържи това устройство със съществуващ акаунт - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Резултати от търсенето - + Delete Изтриване - + Set moderator - + Unset moderator - + Maximize - + Minimize Минимизиране - + Hangup Затваряне - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Отваряне на списъка с акаунти - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Цял екран - + Start an audio call Започване на гласов разговор - + Start a video call Започване на видео разговор - + Clear history Изчистване на историята - + Block contact Блокиране на контакт - + Remove conversation Премахване на разговора - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Край на разговора - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Добре - + Cancel Отказ - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Създаден от: - + Artwork by: С изображения от: - + Based on the SFLPhone project Основан на проекта „SFLPhone“ - + Sending - + Failure - + Sent - + Connecting Свързване - + Accept Приемане - + Canceled Отменено - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality Качество - + Save in Запазване в @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Премахване @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Обаждания - - - - - - + + + + + + Contacts Контакти @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Показване на известията @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer Отговор - + Decline Отказ - + Open conversation - + Accept Приемане - + Refuse Отказ @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/сек - + Default По подразбиране - + System Система diff --git a/translations/ring_client_windows_bg_BG.ts b/translations/ring_client_windows_bg_BG.ts index b8289bdc..a8d1ec11 100644 --- a/translations/ring_client_windows_bg_BG.ts +++ b/translations/ring_client_windows_bg_BG.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Профил @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Файл със сертификат - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Файл със сертификат - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Блокирани контакти @@ -89,32 +89,32 @@ CallAdapter - + Missed call Пропуснато обаждане - + Missed call with %1 - + me - + Incoming call Входящо обаждане - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Добре - - + + Success Успешно - - + + Error Грешка - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Добре @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Покани - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Версия - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Заслуги - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Парола - + Username Потребителско име - + Alias Псевдоним - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Приемане - + Refuse Отказ - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail Гласова поща - + Voicemail dial code - + Security Сигурност - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Шифроване на договарянето (TLS) - + CA certificate Сертификат от център за сертифициране - + User certificate Потребителски сертификат - + Private key Частен ключ - + Private key password Парола за частен ключ - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Протоколен метод на TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Време за изчакване на договарянето (секунди) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Край на разговора - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Мрежова грешка - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Свързване на устройство - + Conversations Разговори - + Enable - + Display or hide preferences - + Add new plugin - + Select a file Изберете файл - + Select Избери - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Създаване на профил в Jami - + About Jami Относно Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Автоматична проверка за обновления - + Ok Добре - - + + Cancel Отказ - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Използване на TURN - + TURN address - + TURN username Потребителско име за TURN - + TURN password Парола за TURN - + TURN Realm - + Use STUN Използване на STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Адрес - + Port Порт - + Media Звук и видео - + Enable video Включване на видеото - + Video Codecs Видео кодеци - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Начална установка - + Back Назад - + Account Settings - + Account Профил - - + + General Общи - + Plugin - + Audio/Video Звук/видео - + Audio Звук - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Видео - + Select video device - + Device Устройство - + Resolution Разделителна способност - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video няма видео - + Backup account here - + Backup your account! - + Backup account - + Skip Пропускане - + Success Успешно - + Error Грешка - + Never show me this again Това да не се показва повече - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Добавяне на участник - + Add participants - + Chat Съобщения - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Изрязване - + Paste Поставяне - + Start video call Започване на видео разговор - + Start audio call Започване на гласов разговор - + Clear conversation Изчистване на разговора - + Remove conversation Премахване на разговора - + Remove contact - + Block contact Блокиране на контакт - + Contact details Подробности за контакта - + Hold Задържане - + Sip input panel - + Transfer call Прехвърляне на обаждането - + Stop recording Спиране на записа - + Start recording - + Exit full screen Излизане от изглед на цял екран - + Share screen Споделяне на екрана - + Share window Сподели прозорец - + Share screen area Споделяне на област от екрана - + Share file Споделяне на файл - + Select sharing method - + View plugin - + No video device - + N/A Няма - + Lower hand - + Raise hand Вдигнете ръка - + Hide chat view Скрий чат изгледа - + Place audio call Започване на гласов разговор - + Place video call Започване на видео разговор - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Създаване на профил - + Confirm password Потвърдете паролата - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Изберете потребителско име - + Invalid name - + Invalid username Грешно потребителско име - + Name already taken - + Username already taken Потребителското име вече е заето - + Proxy Посредник - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Неуспешно възстановяване - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Промяна на парола - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username Регистриране на потребителско име - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Минимизиране при затваряне - + Run application on system startup - + Downloads directory Папка „Изтегляния“ - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Показване на визуализации на връзки - + User interface language Език на потребителския интерфейс - + File transfer Прехвърляне на файлове - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Регистриране - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Обновяване - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Изтеглянето на инсталатора е отменено - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Спиране - + Generating account… - + Import from backup Внасяне от резервно копие - + PIN ПИН - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Изпращане на файл - + Leave audio message - + Leave video message - + Send Изпращане - + Remove Премахване - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Копиране - + Participant is still muted on their device - + You are still muted on your device - + View full screen Преглед на цял екран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Оформление - + Vertical view Вертикален изглед - + Horizontal view Хоризонтален изглед - + Keyboard Shortcut Table - + Conversation - + Call Обаждане - + Settings Настройки - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Отваряне на файл - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Затваряне - + Enter your account password - + Add Device Добавяне на устройство - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Изнасяне - + Choose a picture as avatar - + Import avatar from image file - + Take photo Направи снимка - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Изберете екран за споделяне - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account Свържи това устройство със съществуващ акаунт - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Резултати от търсенето - + Delete Изтриване - + Set moderator - + Unset moderator - + Maximize - + Minimize Минимизиране - + Hangup Затваряне - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Отваряне на списъка с акаунти - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Цял екран - + Start an audio call Започване на гласов разговор - + Start a video call Започване на видео разговор - + Clear history Изчистване на историята - + Block contact Блокиране на контакт - + Remove conversation Премахване на разговора - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Край на разговора - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Добре - + Cancel Отказ - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Създаден от: - + Artwork by: С изображения от: - + Based on the SFLPhone project Основан на проекта „SFLPhone“ - + Sending - + Failure - + Sent - + Connecting Свързване - + Accept Приемане - + Canceled Отменено - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality Качество - + Save in Запазване в @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Премахване @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Обаждания - - - - - - + + + + + + Contacts Контакти @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Показване на известията @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer Отговор - + Decline Отказ - + Open conversation - + Accept Приемане - + Refuse Отказ @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/сек - + Default По подразбиране - + System Система diff --git a/translations/ring_client_windows_bn.ts b/translations/ring_client_windows_bn.ts index f2210acf..c00a5413 100644 --- a/translations/ring_client_windows_bn.ts +++ b/translations/ring_client_windows_bn.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ঠিক আছে - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ঠিক আছে @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call কল শেষ - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ঠিক আছে - - + + Cancel বাতিল করুন - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video কোন ভিডিও - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen পূর্ণ স্ক্রীন থেকে প্রস্থান করুন - + Share screen ভাগ পর্দা - + Share window শেয়ার উইন্ডো - + Share screen area স্ক্রীন এরিয়া শেয়ার করুন - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ডাউনলোড ফোল্ডার - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview লিঙ্ক প্রিভিউ দেখান - + User interface language ইউজার ইন্টারফেস ভাষা - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ইনস্টলার ডাউনলোড বাতিল হয়েছে৷ - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ফাইল পাঠান - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen পূর্ণ পর্দায় দেখান - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout লেআউট - + Vertical view উল্লম্ব দৃশ্য - + Horizontal view অনুভূমিক দৃশ্য - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share শেয়ার করার জন্য একটি স্ক্রিন নির্বাচন করুন - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen পূর্ণ পর্দা - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call কল শেষ - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ঠিক আছে - + Cancel বাতিল করুন - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled বাতিল হয়েছে - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System পদ্ধতি - + Enable dark theme - + Enable desktop notifications বিজ্ঞপ্তি দেখান @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps প্রতি সেকেন্ডে %1 মেগাবিট - + Default ডিফল্ট - + System পদ্ধতি diff --git a/translations/ring_client_windows_ca.ts b/translations/ring_client_windows_ca.ts index 63d5974b..69d71881 100644 --- a/translations/ring_client_windows_ca.ts +++ b/translations/ring_client_windows_ca.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Afegeix compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fitxers de so - + All files Tots els fitxers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fitxer del certificat - - - + + + All files Tots els fitxers - + Key File Fitxer de clau @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fitxer del certificat - - - + + + All files Tots els fitxers - + Key File Fitxer de clau @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Preferències avançades del compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactes blocats @@ -89,32 +89,32 @@ CallAdapter - + Missed call Trucada perduda - + Missed call with %1 - + me jo - + Incoming call Trucada entrant - + %1 is calling you %1 t'està trucant - + is calling you t'està trucant @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Afegir a conferència - + Transfer this call Transferir aquesta trucada - + Add default moderator Afegir moderador per defecte @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nou missatge - + Trust request Petició de confiança @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok D'acord - - + + Success Èxit - - + + Error Error - + Jami archive files Arxiu de fitxers de Jami - + All files Tots els fitxers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok D'acord @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Id del dispositiu @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Invitacions - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versió - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Crèdits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Esborrar compte - + Authentication failed - + Password Contrasenya - + Username Nom d'usuari - + Alias Àlies - + Call Settings Preferències de trucada - + Allow incoming calls from unknown contacts Permet trucades entrants de contactes desconeguts - + In progress… - + Accept Accepta - + Refuse Rebutja - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Afegeix un to de trucada personalitzat - + Select a new ringtone - + Voicemail Correu de veu - + Voicemail dial code - + Security Seguretat - + Encrypt media streams (SRTP) Xifra el flux de mitjans (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Negociació de xifrat (TLS) - + CA certificate Certificat CA - + User certificate Certificat d'usuari - + Private key Clau privada - + Private key password Contrasenya de la clau privada - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Mètode del protocol TLS - + Audio input device selector Selector de dispositiu d'entrada d'àudio - + TLS server name - + Negotiation timeout (seconds) Temps d'espera de la negociació (segons) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Utilitza una adreça i port personalitzats - + Enable local peer discovery Activa el descobriment local de parells - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Finalitza la trucada - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Error de xarxa - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Converses - + Enable Habilita - + Display or hide preferences - + Add new plugin - + Select a file - + Select Selecciona - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Crear un compte Jami - + About Jami Sobre Jami... - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok D'acord - - + + Cancel Canceŀla - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Connectivitat - + Auto Registration After Expired - + Network interface Interfície de xarxa - + Use UPnP Utilitza UPnP - + Use TURN Utilitza TURN - + TURN address - + TURN username Usuari de TURN - + TURN password Contrasenya de TURN - + TURN Realm - + Use STUN Utilitza STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adreça - + Port Port - + Media Mitjans - + Enable video Habilita vídeo - + Video Codecs Còdecs de vídeo - + Audio Codecs Còdecs d'àudio - + Name Server Servidor de noms - + SDP Session Negotiation (ICE Fallback) Negociació de la sessió SDP (alternativa ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration Configuració de OpenDHT - + Enable proxy - + Proxy address - + Bootstrap Bootstrap - + Back Enrere - + Account Settings - + Account Compte - - + + General General - + Plugin - + Audio/Video - + Audio Àudio - + Microphone Micròfon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Vídeo - + Select video device - + Device Dispositiu - + Resolution Resolució - + Select video resolution - + Enable hardware acceleration - + Preview unavailable Previsualització no disponible - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video cap vídeo - + Backup account here - + Backup your account! Fes còpia de seguretat del compte - + Backup account Fes còpia de seguretat del compte - + Skip Salta - + Success Èxit - + Error Error - + Never show me this again No mostris mai més això. - + Recommended - + Jami archive files Arxiu de fitxers de Jami - + All files Tots els fitxers - + Reinstate as contact - + name nom - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you t'està trucant - - + + Mute - - + + Unmute - + Add participant Afegir participant - + Add participants - + Chat Xat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call Comença una videotrucada - + Start audio call Comença una trucada de veu. - + Clear conversation Neteja la conversa - + Remove conversation Esborra conversa - + Remove contact Elimina el contacte - + Block contact Bloqueja el contacte - + Contact details Detalls de contacte - + Hold En espera - + Sip input panel - + Transfer call - + Stop recording Para d'enregistrar. - + Start recording - + Exit full screen Surt del mode de pantalla sencera - + Share screen Comparteix la pantalla - + Share window Comparteix la finestra - + Share screen area Comparteix àrea de pantalla - + Share file Comparteix fitxer - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view Amaga finestra de xat - + Place audio call Fes una trucada de veu - + Place video call Fes una video trucada - + Show available plugins - + Add to conversations Afegir a les converses - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Connectar - + Back to welcome page - + Choose name - + Choose username - + Create account Crea compte - + Confirm password Confirmi contrasenya - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Esculli el vostre nom d'usuari - + Invalid name - + Invalid username Nom d'usuari invalid - + Name already taken - + Username already taken Nom d'usuari ja registrat. - + Proxy Intermediari - + Server Servidor - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Canvia la contrasenya - - + + Set password Estableix contrasenya - + Change current password - + Backup account to a .gz file - + Enable account Habilita el compte - + Set username - + Registering name - + Register a username - + Register username Registra nom d'usuari - + Link a new device to this account - + Link another device Vincula un altre dispositiu - + Exporting account… Exportant compte… - + Remove Device Elimini el dispositiu - + Are you sure you wish to remove this device? Esteu segur que voleu eliminar aquest dispositiu? - + Linked Devices Dispositius vinculats - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Desa el nou nom de dispositiu - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Manté minimitzat al tancar - + Run application on system startup - + Downloads directory Carpeta Descàrregues - + Choose download directory - + Record call Enregistra trucada - + Chatview Vista de xat - + Display hyperlink previews in the chatview Mostra visualitzacions prèvies dels enllaços - + User interface language Llengua de la interfície d'usuari - + File transfer Transferència de fitxers - + Allow incoming files from unknown contacts Permet fitxers entrants de contactes desconeguts - + Automatically accept incoming files Accepta automàticament fitxers entrants - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registra - + Incorrect password Contrasenya incorrecta - + Save file Desa fitxer - + Open location - + Install beta version - + Check for updates now Comprova actualitzacions immediatament - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Actualitzacions - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Descàrrega de l'instal·lador cancel·lada - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Alguna cosa ha anat malament - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Para - + Generating account… - + Import from backup Importa des d'una còpia de seguretat - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Benvingut a - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Envia el fitxer - + Leave audio message - + Leave video message - + Send Envia - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Copia - + Participant is still muted on their device - + You are still muted on your device - + View full screen Visualitza-ho a pantalla sencera - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Disposició - + Vertical view Visualització vertical - + Horizontal view Visualització horitzontal - + Keyboard Shortcut Table - + Conversation - + Call Trucada - + Settings Opcions - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive Arxiu - + Open file Obre fitxer - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Tanca - + Enter your account password Inseriu la contrasenya del vostre compte - + Add Device Afegir dispositiu - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Insereix la contrasenya d'aquest compte per confirmar l'eliminació d'aquest dispositiu - + Enter new password - + Confirm new password - + Change - + Confirm Confirma - + Export Exporta - + Choose a picture as avatar - + Import avatar from image file - + Take photo Fer foto - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Seleccioneu una pantalla per compartir - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Aquest es el seu nom d'usuari Jami. Copiï'l i comparteixi'l amb els seus amics! - + Link this device to an existing account Enllaça aquest dispositiu a un compte ja existent - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Resultats de cerca - + Delete Suprimeix - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup Penjar - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator Afegir moderador per defecte - + Remove default moderator @@ -2343,112 +2343,112 @@ Copiï'l i comparteixi'l amb els seus amics! KeyboardShortcutTable - + Open account list Obre la llista de comptes - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Pantalla sencera - + Start an audio call Comença una trucada de veu. - + Start a video call Comença una videotrucada - + Clear history Neteja historial - + Block contact Bloqueja el contacte - + Remove conversation Esborra conversa - + Accept contact request - + Media settings - + General settings Preferències generals - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Finalitza la trucada - + Decline the call request @@ -2456,17 +2456,17 @@ Copiï'l i comparteixi'l amb els seus amics! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Copiï'l i comparteixi'l amb els seus amics! PhotoboothView - + Image Files - + All files Tots els fitxers @@ -2487,7 +2487,7 @@ Copiï'l i comparteixi'l amb els seus amics! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Copiï'l i comparteixi'l amb els seus amics! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Copiï'l i comparteixi'l amb els seus amics! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Copiï'l i comparteixi'l amb els seus amics! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok D'acord - + Cancel Canceŀla - + Uninstall @@ -2544,17 +2544,17 @@ Copiï'l i comparteixi'l amb els seus amics! PluginListSettingsView - + Plugin Files - + All files Tots els fitxers - + Installed plugins @@ -2562,7 +2562,7 @@ Copiï'l i comparteixi'l amb els seus amics! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Copiï'l i comparteixi'l amb els seus amics! QObject - + Created by: Programat per: - + Artwork by: Art fet per: - + Based on the SFLPhone project Basat en el projecte SFLPhone - + Sending Enviant - + Failure Fallida - + Sent - + Connecting Connectant - + Accept Accepta - + Canceled Cancel·lada - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago Fa un dia - + %1 hours ago - + one hour ago Fa una hora - + %1 minutes ago - + just now Ara mateix @@ -2678,22 +2678,22 @@ Copiï'l i comparteixi'l amb els seus amics! RecordingSettings - + Call Recording Enregistrament de trucades - + Always record calls Enregistra trucades sempre - + Quality - + Save in Desa a @@ -2701,7 +2701,7 @@ Copiï'l i comparteixi'l amb els seus amics! RevokeDevicePasswordDialog - + Remove @@ -2709,7 +2709,7 @@ Copiï'l i comparteixi'l amb els seus amics! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Copiï'l i comparteixi'l amb els seus amics! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Copiï'l i comparteixi'l amb els seus amics! SmartListModel - - - - - - + + + + + + Calls Trucades - - - - - - + + + + + + Contacts Contactes @@ -2748,17 +2748,17 @@ Copiï'l i comparteixi'l amb els seus amics! SystemSettings - + System Sistema - + Enable dark theme - + Enable desktop notifications Mostra les notificacions @@ -2766,27 +2766,27 @@ Copiï'l i comparteixi'l amb els seus amics! SystemTray - + Answer Respon - + Decline Rebutja - + Open conversation Obre conversa - + Accept Accepta - + Refuse Rebutja @@ -2794,7 +2794,7 @@ Copiï'l i comparteixi'l amb els seus amics! UserIdentity - + Identity Identitat @@ -2802,17 +2802,17 @@ Copiï'l i comparteixi'l amb els seus amics! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Per defecte - + System Sistema diff --git a/translations/ring_client_windows_cs_CZ.ts b/translations/ring_client_windows_cs_CZ.ts index 2577ff22..43ce051b 100644 --- a/translations/ring_client_windows_cs_CZ.ts +++ b/translations/ring_client_windows_cs_CZ.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Přidat účet @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Zvukové soubory - + All files Všechny soubory @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Soubor certifikátu - - - + + + All files Všechny soubory - + Key File Soubor klíče @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Soubor certifikátu - - - + + + All files Všechny soubory - + Key File Soubor klíče @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Pokročilá nastavení účtu @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Zakázané kontakty @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Příchozí hovor - + %1 is calling you - + is calling you vám volá @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Přidat do konference - + Transfer this call Přesměrovat tento hovor - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nová zpráva - + Trust request Žádosti o důvěru @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok V pořádku - - + + Success Úspěch - - + + Error Chyba - + Jami archive files Archivní soubory Jami - + All files Všechny soubory @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok V pořádku @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id ID zařízení @@ -218,2126 +218,2126 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation Najít uživatele nebo hledat konverzaci - + Search your invitations Hledat vaše pozvání - + Invitations Pozvání - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami je svobodný software určený k univerzální komunikaci, který ctí svobody a soukromí svých uživatelů. - + Version Verze - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami je svobodný software určený k univerzální komunikaci, který ctí svobody a soukromí svých uživatelů. - + Credits Zásluhy - + Display QR code Zobrazit kód QR - + Open settings Otevřít nastavení - + Close settings Zavřít nastavení - + Authentication required Požadováno ověření - + Your session has expired or been revoked on this device. Please enter your password. Vaše sezení vypršelo nebo bylo zrušeno na tomto zařízení. Prosím zadejte své heslo. - + JAMS server Server JAMS - + Authenticate Ověřit - + Delete account Odstranit účet - + Authentication failed Ověření selhalo - + Password Heslo - + Username Uživatelské jméno - + Alias Přezdívka - + Call Settings Nastavení volání - + Allow incoming calls from unknown contacts Povolit příchozí hovory od neznámých kontaktů - + In progress… Probíhá… - + Accept Přijmout - + Refuse Odmítnout - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point Převést váš účet na místo schůzky - + Automatically answer calls Automaticky přijímat hovory - + Enable custom ringtone Povolit vlastní vyzváněcí tón - + Select custom ringtone Vybrat vlastní vyzváněcí tón - + Add a custom ringtone Přidat vlastní vyzváněcí tón - + Select a new ringtone Vybrat nový vyzváněcí tón - + Voicemail Hlasová schránka - + Voicemail dial code Vytáčecí kód hlasové schránky - + Security Zabezpečení - + Encrypt media streams (SRTP) Šifrovat datový tok (SRTP) - + Enable SDES key exchange Povolit výměnu klíčů pomocí SDES - + Allow fallback on RTP Povolit nouzově na RTP - + Encrypt negotiation (TLS) Šifrovat vyjednávání (TLS) - + CA certificate Certifikát CA - + User certificate Uživatelský certifikát - + Private key Soukromý klíč - + Private key password Heslo soukromého klíče - + Verify certificates for incoming TLS connections Ověřovat certifikáty pro příchozí spojení TLS - + Verify server TLS certificates Ověřit certifikáty TLS serverů - + Require certificate for incoming TLS connections Vyžadovat certifikáty pro příchozí spojení TLS - + TLS protocol method Metoda protokolu TLS - + Audio input device selector Výběr vstupního zvukového zařízení - + TLS server name Jméno serveru TLS - + Negotiation timeout (seconds) Omezení vyjednávání (v sekundách) - + Select a private key Vyberte soukromý klíč. - + Select a user certificate Vyberte uživatelský certifikát. - + Registration expiration time (seconds) - + Use custom address and port Použít veřejnou adresu a přípojku (port) - + Enable local peer discovery Povolit zjištění místních klientů - + Audio and Video Settings Nastavení zvuku a videa - + Frames per second Snímky za sekundu - + Select video frame rate (frames per second) Vybrat snímkovou frekvenci (snímky za sekundu) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Ukončit hovor - + Pause call - + Resume call Pokračovat v hovoru - + Pause video - + Resume video - + Creating account… Vytváří se účet... - + Encrypt account with password Šifrovat účet heslem - + Create a rendezvous point Vytvořit místo schůzky - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Zvolte si heslo k šifrování účtu na tomto zařízení. Mějte na vědomí, že heslo nelze obnovit. - + Choose a name for your rendezvous point Zvolte si název své schůzky. - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup Spouštět při spuštění systému - + Enable typing indicators - - + + Network error Chyba sítě - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Zadejte PIN z jiného nastaveného účtu Jami. Použijte funkci „Připojit další zařízení“ k získání PINu. - + Link device Připojit zařízení - + Conversations Konverzace - + Enable Povolit - + Display or hide preferences Zobrazit nebo skrýt předvolby - + Add new plugin Přidat nový zásuvný modul - + Select a file Vybrat soubor - + Select Vybrat - + Choose image file Zvolit soubor obrázku - + Enter the rendezvous point's name Zadejte název místa schůzky - + Creating rendezvous point… Vytváří se místo schůzky… - + Create account from Jami Account Management Server (JAMS) Vytvořit účet ze správcovského serveru účtů Jami (JAMS) - + Create new rendezvous point Vytvořit nové místo schůzky - + Create a Jami account Vytvořit účet Jami - + About Jami O Jami - + Decline contact request Zamítnout žádost o kontakt - + Accept contact request Přijmout žádost o kontakt - + Automatically check for updates Automaticky zkontrolovat aktualizace - + Ok V pořádku - - + + Cancel Zrušit - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate Vyberte certifikát CA. - + Connectivity Připojení - + Auto Registration After Expired - + Network interface Síťové rozhraní - + Use UPnP Použít UPnP - + Use TURN Použít TURN - + TURN address Adresa TURN - + TURN username Uživatelské jméno TURN - + TURN password Heslo TURN - + TURN Realm Oblast TURN - + Use STUN Použít STUN - + STUN address Adresa STUN - + Allow IP Auto Rewrite - + Public address Veřejná adresa - + Address Adresa - + Port Port - + Media Média - + Enable video Povolit video - + Video Codecs Obrazové kodeky - + Audio Codecs Zvukové kodeky - + Name Server Název serveru - + SDP Session Negotiation (ICE Fallback) Vyjednávání sezení SDP (ICE Fallback) - + Only used during negotiation in case ICE is not supported Použito jen během vyjednávání v případě, že ICE není podporováno. - + Audio RTP minimum Port Nejnižší port zvuku RTP - + Audio RTP maximum Port Nejvyšší port zvuku RTP - + Video RTP minimum Port Nejnižší port videa RTP - + Video RTP maximum port Nejvyšší port videa RTP - + Connect to other DHT nodes advertising on your local network. Připojit se k ostatním uzlům DHT vysílajícím na vaší místní síti - + OpenDHT Configuration Nastavení OpenDHT - + Enable proxy Povolit proxy - + Proxy address Adresa proxy - + Bootstrap Sada nástrojů pro tvorbu webu a webových aplikací - + Back Zpět - + Account Settings Nastavení účtu - + Account Účet - - + + General Obecné - + Plugin Zásuvný modul - + Audio/Video Zvuk/Video - + Audio Zvuk - + Microphone Mikrofon - + Select audio input device Vybrat vstupní zvukové zařízení - + Output device Výstupní zařízení - + Select audio output device Vybrat výstupní zvukové zařízení - + Ringtone device Vyzváněcí zařízení - + Select ringtone output device Vybrat výstupní vyzváněcí zařízení - + Audio manager Správce zvuku - + Video Video - + Select video device Vybrat video zařízení - + Device Zařízení - + Resolution Rozlišení - + Select video resolution Vybrat rozlišení videa - + Enable hardware acceleration Povolit hardwarové zrychlení - + Preview unavailable Náhled není dostupný. - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video žádné video - + Backup account here Zálohovat účet zde - + Backup your account! Zálohujte svůj účet! - + Backup account Zálohovat účet - + Skip Přeskočit - + Success Úspěch - + Error Chyba - + Never show me this again Již nikdy nezobrazovat - + Recommended Doporučeno - + Jami archive files Archivní soubory Jami - + All files Všechny soubory - + Reinstate as contact Obnovit jako kontakt - + name Jméno - + Identifier Identifikátor - + is recording - + are recording - + Peer stopped recording - + is calling you vám volá - - + + Mute Ztlumit - - + + Unmute Zrušit ztlumení - + Add participant Přidat účastníka - + Add participants Přidat účastníka - + Chat Rozhovor - + More options Více možností - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Vyjmout - + Paste Vložit - + Start video call Začít video hovor - + Start audio call Začít audio hovor - + Clear conversation Vyprázdnit konverzaci - + Remove conversation Odstranit konverzaci - + Remove contact Odstranit kontakt - + Block contact Blokovat spojení - + Contact details Podrobnosti spojení - + Hold Pozastavit - + Sip input panel Vstupní panel SIP - + Transfer call Přesměrovat hovor - + Stop recording Zastavit nahrávání - + Start recording Začít nahrávání - + Exit full screen Opustit režim celé obrazovky - + Share screen Sdílet obrazovku - + Share window Sdílet okno - + Share screen area Sdílet část obrazovky - + Share file Sdílet soubor - + Select sharing method - + View plugin Zobrazit zásuvný modul - + No video device Žádné video zařízení - + N/A N/A - + Lower hand - + Raise hand Zvednout ruku - + Hide chat view Skrýt zprávy - + Place audio call Uskutečnit audio hovor - + Place video call Uskutečnit video hovor - + Show available plugins - + Add to conversations Přidat do konverzací - + Jump to latest Posunout se na konec konverzace - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL Zadat URL správcovského serveru účtů Jami (JAMS) - + Required Vyžadováno - + Jami Account Management Server URL URL správcovského serveru účtů Jami - + Enter your JAMS credentials Zadejte přihlašovací údaje JAMS - + Connect Připojit - + Back to welcome page Zpět na uvítací stránku - + Choose name Zvolit si jméno - + Choose username Zvolit si uživatelské jméno - + Create account Vytvořit účet - + Confirm password Potvrdit heslo - + Optional Volitelné - + Choose a username for your account Zvolte si uživatelské jméno ke svému účtu - + Choose a name Zvolit si jméno - + Choose your username Zvolte si uživatelské jméno - + Invalid name Neplatné jméno - + Invalid username Neplatné uživatelské jméno - + Name already taken Uživatelské jméno je již zabrané. - + Username already taken Uživatelské jméno je již zabrané. - + Proxy Proxy - + Server Server - + Create SIP account Vytvořit účet SIP - + Configure an existing SIP account Nastavit existující účet SIP. - + Backup successful Zálohování se podařilo. - + Backup failed Zálohování selhalo - + Password changed successfully Heslo bylo úspěšně změněno - + Password change failed Změna hesla selhala. - + Password set successfully Heslo bylo úspěšně nastaveno. - + Password set failed Nastavení hesla selhalo. - + Change password Změnit heslo - - + + Set password Nastavit heslo - + Change current password Změnit současné heslo - + Backup account to a .gz file Zálohovat účet do souboru .gz - + Enable account Povolit účet - + Set username Nastavit uživatelské jméno - + Registering name Zaregistrovat jméno - + Register a username Zaregistrovat uživatelské jméno - + Register username Zaregistrovat uživatelské jméno - + Link a new device to this account Připojit k tomuto účtu nové zařízení - + Link another device Připojit další zařízení - + Exporting account… Exportovat účet… - + Remove Device Odstranit zařízení - + Are you sure you wish to remove this device? Jste si jistí, že chcete odstranit toto zařízení? - + Linked Devices Připojená zařízení - + Your PIN is: Váš kód PIN je: - + Error connecting to the network. Please try again later. Chyba připojení k síti. Zkuste to, prosím, později znovu. - + Do you really want to delete this account? Jste si jisti, že chcete smazat tento účet? - + Save new device name Uložit název nového zařízení - + Edit device name Upravit název zařízení - + Unlink device from account Odpojit zařízení od účtu - + Select a folder Vybrat složku - + Enable notifications Povolit oznámení - + Enable dark theme - + Keep minimized on close Neukončovat Ring po uzavření okna - + Run application on system startup Spustit aplikaci při spuštění systému - + Downloads directory Složka Stažené soubory - + Choose download directory Zvolit adresář stažených souborů - + Record call Nahrávat vše - + Chatview Okno zpráv - + Display hyperlink previews in the chatview Zobrazit náhledy odkazů - + User interface language Jazyk uživatelského rozhraní - + File transfer Přenos souboru - + Allow incoming files from unknown contacts Povolit příchozí soubory od neznámých kontaktů - + Automatically accept incoming files Automaticky přijmout příchozí soubory - + Accept transfer limit - + in MB, 0 = unlimited - + Register Zaregistrovat - + Incorrect password Nesprávné heslo - + Save file Uložit soubor - + Open location - + Install beta version Instalovat verzi beta - + Check for updates now Zkontrolovat aktualizace nyní - + Enable/Disable automatic updates Povolit/Zakázat automatické aktualizace - + toggle automatic updates přepnout nastavení automatických aktualizací - + Updates Aktualizace - + Update Aktualizovat - + A new version of Jami was found Would you like to update now? Byla nalezena nová verze Jami. Přejete si nyní provést aktualizaci? - + No new version of Jami was found Nebyla nalezena žádná nová verze Jami. - + An error occured when checking for a new version Při zjišťování dostupnosti nové verze došlo k chybě. - + Installer download canceled Stažení instalačního souboru bylo zrušeno. - + This will uninstall your current Release version and you can always download the latest Release version on our website Tímto bude odinstalována vaše současná verze vydání. Nejnovější verzi vydání můžete vždy stáhnout z naší webové stránky. - + Network disconnected Síť odpojena. - - + + Something went wrong Něco se podělalo. - + Troubleshoot - + Open logs - + Get logs - + Select a record directory Vybrat adresář nahrávek - + Debug - + Show Stats - + Start - + Stop Zastavit - + Generating account… Vytváří se účet… - + Import from backup Importovat ze zálohy - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list Přejít zpět na seznam zásuvných modulů - + Profile is only shared with contacts Profil je sdílen jen s kontakty - + Enter your name Zadejte své jméno - + Import account from other device Importovat účet z jiného zařízení - + Import account from backup file Importovat účet ze záložního souboru - + Hide advanced features - + Create new Jami account Vytvořit nový účet Jami - + Create new SIP account Vytvořit nový účet SIP - + Welcome to Vítejte v - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Poslat soubor - + Leave audio message - + Leave video message - + Send Odeslat - + Remove Odstranit - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Zkopírovat - + Participant is still muted on their device - + You are still muted on your device - + View full screen Zobrazit v režimu celé obrazovky - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Skrýt zakázané kontakty - + Layout Rozložení - + Vertical view Svislé zobrazení - + Horizontal view Vodorovné zobrazení - + Keyboard Shortcut Table - + Conversation - + Call Volat - + Settings Nastavení - + Report Bug - + Clear Vyprázdnit - + Copied to clipboard! - + Receive Logs - + Archive Archiv - + Open file Otevřít soubor - + Create your account from a backup Vytvořit váš účet ze zálohy - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Archiv získáte kliknutím na „Zálohovat účet“ v nastavení účtu. Vytvoří se tím soubor .gz na vašem zařízení. - + Restore an account from backup Obnovit účet ze zálohy - + Enter Jami account password Zadejte heslo k účtu Jami. - + The PIN and the account password should be entered in your device within 10 minutes. Kód PIN a heslo k účtu je třeba zadat do 10 minut na vašem zařízení. - + Close Zavřít - + Enter your account password Zadejte své heslo k účtu. - + Add Device Přidat zařízení - + Enter the password Zadejte heslo - + Enter current password Zadejte současné heslo - + Enter this account's password to confirm the removal of this device Zadejte heslo k tomuto účtu pro potvrzení odebrání tohoto zařízení. - + Enter new password Zadejte nové heslo. - + Confirm new password Potvrďte nové heslo - + Change Změnit - + Confirm Potvrdit - + Export Exportovat - + Choose a picture as avatar Zvolit si profilový obrázek - + Import avatar from image file Importovat profilový obrázek - + Take photo Vyfotit - + Reset Resetovat - + Select a plugin to install Vybrat zásuvný modul k instalaci. - + Install plugin Nainstalovat zásuvný modul - + Save profile Uložit profil - + Information Informace - + Enter the account password to confirm the removal of this device Zadejte heslo k účtu pro potvrzení odebrání tohoto zařízení. - + Select a screen to share Vybrat obrazovku ke sdílení - + Select a window to share - + All Screens - + Screens - + Windows - + QR code Kód QR - + Account QR Kód QR účtu - + This is your Jami username. Copy and share it with your friends! Toto je vaše uživatelské jméno pro Jami. Zkopírujte je a sdílejte je se svými přáteli! - + Link this device to an existing account Propojit zařízení s již existujícím účtem - + Advanced features Pokročilé funkce - + Show advanced features Ukázat rozšířené funkce - + Connect to a JAMS server Připojit se k serveru JAMS - + Add a SIP account Přidat účet SIP - + Error while creating your account. Check your credentials. Při vytváření účtu došlo k chybě. Zkontrolujte své přihlašovací údaje. - + Clear Text - + Search Results Výsledky hledání - + Delete Odstranit - + Set moderator - + Unset moderator - + Maximize Maximalizovat - + Minimize Zmenšit - + Hangup Zavěsit - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2345,112 +2345,112 @@ Zkopírujte je a sdílejte je se svými přáteli! KeyboardShortcutTable - + Open account list Otevřít seznam účtů - + Focus conversations list Přepnout na seznam konverzací - + Requests list Seznam žádostí - + Previous conversation Předchozí konverzace - + Next conversation Následující konverzace - + Search bar Vyhledávací lišta - + Full screen Celá obrazovka - + Start an audio call Uskutečnit audio hovor - + Start a video call Uskutečnit video hovor - + Clear history Vymazat historii - + Block contact Blokovat spojení - + Remove conversation Odstranit konverzaci - + Accept contact request Přijmout žádost o kontakt - + Media settings Nastavení médií - + General settings Obecná nastavení - + Account settings Nastavení účtu - + Plugin settings - + Open account creation wizard Otevřít pomocníka pro vytváření účtu - + Open keyboard shortcut table - + Answer an incoming call Přijmout příchozí hovor - + End call Ukončit hovor - + Decline the call request Zamítnout žádost o hovor @@ -2458,17 +2458,17 @@ Zkopírujte je a sdílejte je se svými přáteli! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2476,12 +2476,12 @@ Zkopírujte je a sdílejte je se svými přáteli! PhotoboothView - + Image Files Soubory obrázků - + All files Všechny soubory @@ -2489,7 +2489,7 @@ Zkopírujte je a sdílejte je se svými přáteli! PluginHandlerItemDelegate - + On/Off Zapnuto/Vypnuto @@ -2497,12 +2497,12 @@ Zkopírujte je a sdílejte je se svými přáteli! PluginHandlerPicker - + Choose plugin Zvolit zásuvný modul - + Preferences Předvolby @@ -2510,7 +2510,7 @@ Zkopírujte je a sdílejte je se svými přáteli! PluginItemDelegate - + Load/Unload Načíst/vysunout @@ -2518,27 +2518,27 @@ Zkopírujte je a sdílejte je se svými přáteli! PluginListPreferencesView - + Uninstall plugin Odinstalovat zásuvný modul - + Reset preferences Resetovat předvolby - + Ok V pořádku - + Cancel Zrušit - + Uninstall Odinstalovat @@ -2546,17 +2546,17 @@ Zkopírujte je a sdílejte je se svými přáteli! PluginListSettingsView - + Plugin Files Soubory zásuvných modulů - + All files Všechny soubory - + Installed plugins Nainstalované zásuvné moduly @@ -2564,7 +2564,7 @@ Zkopírujte je a sdílejte je se svými přáteli! PreferenceItemDelegate - + Edit preference Upravit předvolbu @@ -2572,107 +2572,107 @@ Zkopírujte je a sdílejte je se svými přáteli! QObject - + Created by: Vytvořili: - + Artwork by: Grafika: - + Based on the SFLPhone project Postaveno na projektu SFLPhone - + Sending Posílání - + Failure Selhání - + Sent - + Connecting Spojuje se - + Accept Přijmout - + Canceled Zrušeno - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Dokončeno - + %1 days ago - + one day ago včera - + %1 hours ago - + one hour ago před hodinou - + %1 minutes ago - + just now teď @@ -2680,22 +2680,22 @@ Zkopírujte je a sdílejte je se svými přáteli! RecordingSettings - + Call Recording Nahrávání hovorů - + Always record calls Vždy nahrávat hovory - + Quality Kvalita - + Save in Uložit do @@ -2703,7 +2703,7 @@ Zkopírujte je a sdílejte je se svými přáteli! RevokeDevicePasswordDialog - + Remove Odstranit @@ -2711,7 +2711,7 @@ Zkopírujte je a sdílejte je se svými přáteli! SelectScreen - + Screen Obrazovka @@ -2719,7 +2719,7 @@ Zkopírujte je a sdílejte je se svými přáteli! SettingParaCombobox - + @@ -2727,22 +2727,22 @@ Zkopírujte je a sdílejte je se svými přáteli! SmartListModel - - - - - - + + + + + + Calls Hovory - - - - - - + + + + + + Contacts Kontakty @@ -2750,17 +2750,17 @@ Zkopírujte je a sdílejte je se svými přáteli! SystemSettings - + System Systém - + Enable dark theme - + Enable desktop notifications Zobrazit oznámení @@ -2768,27 +2768,27 @@ Zkopírujte je a sdílejte je se svými přáteli! SystemTray - + Answer Přijmout - + Decline Nepřijmout - + Open conversation Otevřít konverzaci - + Accept Přijmout - + Refuse Odmítnout @@ -2796,7 +2796,7 @@ Zkopírujte je a sdílejte je se svými přáteli! UserIdentity - + Identity Totožnost @@ -2804,17 +2804,17 @@ Zkopírujte je a sdílejte je se svými přáteli! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Výchozí - + System Systém diff --git a/translations/ring_client_windows_da.ts b/translations/ring_client_windows_da.ts index ff8c93d7..bddff742 100644 --- a/translations/ring_client_windows_da.ts +++ b/translations/ring_client_windows_da.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Tilføj konto @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Tilføj filer - + All files Alle filer @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certifikatfil - - - + + + All files Alle filer - + Key File Nøglefil @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certifikatfil - - - + + + All files Alle filer - + Key File Nøglefil @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Avancerede kontoindstillinger @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Blokerede kontakter @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me mig - + Incoming call Indgående opkald - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Tilføj til konference - + Transfer this call Overfør denne samtale - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Ny besked - + Trust request Hav tillid til anmodning @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Lykkedes - - + + Error Fejl - + Jami archive files Jami-arkivfiler - + All files Alle filer @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Invitationer - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Krediteringer - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Slet konto - + Authentication failed Autentificering fejlede - + Password Adgangskode - + Username Brugernavn - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Tillad indkomne opkald fra ukendte kontakter - + In progress… - + Accept Accepter - + Refuse Afvis - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail Telefonsvarer - + Voicemail dial code - + Security Sikkerhed - + Encrypt media streams (SRTP) Krypter mediestrømme (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Kryptér forhandling (TLS) - + CA certificate CA-certifikat - + User certificate Brugercertifikat - + Private key Privat nøgle - + Private key password Adgangskode til privat nøgle - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS-protokolmetode - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Forhandlingstidsgrænse (sekunder) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Brug brugervalgt adresse og port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Afslut opkald - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Krypter konto med kodeord - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Netværksfejl - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Tilknyt enhed - + Conversations Samtaler - + Enable Tillad - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Opret en Jami-konto - + About Jami Om Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Søg automatisk efter opdateringer - + Ok Ok - - + + Cancel Annuller - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Forbindelse - + Auto Registration After Expired - + Network interface Netværksgrænseflade - + Use UPnP - + Use TURN Brug TURN - + TURN address - + TURN username TURN-brugernavn - + TURN password TURN-adgangskode - + TURN Realm - + Use STUN Brug STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adresse - + Port Port - + Media Medier - + Enable video Aktivér video - + Video Codecs - + Audio Codecs - + Name Server Navneserver - + SDP Session Negotiation (ICE Fallback) SDP Sessions-forhandling (ICE-tilbagefald) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address Proxy-adresse - + Bootstrap Bootstrap - + Back Tilbage - + Account Settings - + Account Konto - - + + General Generelt - + Plugin - + Audio/Video Lyd/video - + Audio Lyd - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Enhed - + Resolution Opløsning - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ingen video - + Backup account here - + Backup your account! - + Backup account - + Skip Spring over - + Success Lykkedes - + Error Fejl - + Never show me this again - + Recommended Anbefalet - + Jami archive files Jami-arkivfiler - + All files Alle filer - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Tilføj deltager - + Add participants - + Chat Beskeder - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Klip - + Paste Indsæt - + Start video call Start et video opkald - + Start audio call Start et audio opkald - + Clear conversation Ryd samtale - + Remove conversation - + Remove contact Fjern kontakt - + Block contact Bloker kontakt - + Contact details Kontakt-detajler - + Hold I kø - + Sip input panel - + Transfer call Overfør samtale - + Stop recording Stop optagelse - + Start recording - + Exit full screen Afslut fuld skærm - + Share screen Del skærm - + Share window Del vindue - + Share screen area Del skærmområde - + Share file Del fil - + Select sharing method - + View plugin - + No video device - + N/A N/A - + Lower hand - + Raise hand - + Hide chat view Gem chatvisning - + Place audio call - + Place video call - + Show available plugins - + Add to conversations Tilføj til samtaler - + Jump to latest Rul til slutning af samtale - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Krævet - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Opret konto - + Confirm password Bekræft adgangskode - + Optional Valgfri - + Choose a username for your account Vælg et brugernavn til din konto - + Choose a name Vælg et navn - + Choose your username Vælg dit brugernavn - + Invalid name Ugyldigt navn - + Invalid username Ugyldigt brugernavn - + Name already taken Navnet er allerede taget - + Username already taken Brugernavn er allerede taget - + Proxy Stedfortræder - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Skift adgangskode - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account Aktivér konto - + Set username - + Registering name - + Register a username Registrér et brugernavn - + Register username Registrer brugernavn - + Link a new device to this account - + Link another device Tilknyt en anden enhed - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Tilknyttede enheder - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications Aktiver notifikationer - + Enable dark theme - + Keep minimized on close Hold minimeret ved lukning - + Run application on system startup - + Downloads directory Mappen Overførsler - + Choose download directory - + Record call Optag opkald - + Chatview Chatvisning - + Display hyperlink previews in the chatview Vis linkeksempler - + User interface language Brugergrænsefladesprog - + File transfer Filoverførsler - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registrér - + Incorrect password Forkert adgangskode - + Save file Gem fil - + Open location - + Install beta version - + Check for updates now Søg efter for opdateringer nu - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Opdatér - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Download af installationsprogrammet blev annulleret - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Profilen bliver kun delt med kontakterne - + Enter your name Indtast dit navn - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Velkommen til - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Send fil - + Leave audio message - + Leave video message - + Send Send - + Remove Fjern - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiér - + Participant is still muted on their device - + You are still muted on your device - + View full screen Vis fuld skærm - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Skjul blokerede kontakter - + Layout Layout - + Vertical view Lodret visning - + Horizontal view Vandret visning - + Keyboard Shortcut Table - + Conversation - + Call Ring op - + Settings Indstillinger - + Report Bug - + Clear Ryd - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Åbn fil - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Luk - + Enter your account password - + Add Device Tilføj enhed - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Eksport - + Choose a picture as avatar - + Import avatar from image file - + Take photo Tag billede - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Vælg en skærm at dele - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Dette er dit Jami brugernanv. Kopier og del det med dine venner! - + Link this device to an existing account Tilnyt denne enhed til en eksisterende konto - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account Tilføj en SIP-konto - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Søgeresultater - + Delete Slet - + Set moderator - + Unset moderator - + Maximize Maksimer - + Minimize Minimer - + Hangup Læg på - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Kopier og del det med dine venner! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Fuld skærm - + Start an audio call Start et opkald - + Start a video call Start et videoopkald - + Clear history Ryd historiken - + Block contact Bloker kontakt - + Remove conversation - + Accept contact request - + Media settings - + General settings Generelle indstillinger - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Afslut opkald - + Decline the call request @@ -2456,17 +2456,17 @@ Kopier og del det med dine venner! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Kopier og del det med dine venner! PhotoboothView - + Image Files - + All files Alle filer @@ -2487,7 +2487,7 @@ Kopier og del det med dine venner! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Kopier og del det med dine venner! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Kopier og del det med dine venner! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Kopier og del det med dine venner! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Ok - + Cancel Annuller - + Uninstall @@ -2544,17 +2544,17 @@ Kopier og del det med dine venner! PluginListSettingsView - + Plugin Files - + All files Alle filer - + Installed plugins @@ -2562,7 +2562,7 @@ Kopier og del det med dine venner! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Kopier og del det med dine venner! QObject - + Created by: Skabt af: - + Artwork by: Grafik af: - + Based on the SFLPhone project Baseret på SFLPhone-projektet - + Sending - + Failure - + Sent - + Connecting Forbinder - + Accept Accepter - + Canceled Annulleret - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Afsluttet - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2678,22 +2678,22 @@ Kopier og del det med dine venner! RecordingSettings - + Call Recording - + Always record calls - + Quality Kvalitet - + Save in Gem i @@ -2701,7 +2701,7 @@ Kopier og del det med dine venner! RevokeDevicePasswordDialog - + Remove Fjern @@ -2709,7 +2709,7 @@ Kopier og del det med dine venner! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Kopier og del det med dine venner! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Kopier og del det med dine venner! SmartListModel - - - - - - + + + + + + Calls Opkald - - - - - - + + + + + + Contacts Kontakter @@ -2748,17 +2748,17 @@ Kopier og del det med dine venner! SystemSettings - + System System - + Enable dark theme - + Enable desktop notifications Vis meddelelser @@ -2766,27 +2766,27 @@ Kopier og del det med dine venner! SystemTray - + Answer Besvar - + Decline Afvis - + Open conversation Åbn samtale - + Accept Accepter - + Refuse Afvis @@ -2794,7 +2794,7 @@ Kopier og del det med dine venner! UserIdentity - + Identity Identitet @@ -2802,17 +2802,17 @@ Kopier og del det med dine venner! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Standard - + System System diff --git a/translations/ring_client_windows_da_DK.ts b/translations/ring_client_windows_da_DK.ts index d6b9fc0c..5d8d7d68 100644 --- a/translations/ring_client_windows_da_DK.ts +++ b/translations/ring_client_windows_da_DK.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Adgangskode - + Username Brugernavn - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Sikkerhed - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel Annuller - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Brug TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN Brug STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adresse - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account Konto - - + + General Generelt - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area Del skærmområde - + Share file Del fil - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Vælg dit brugernavn - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy Stedfortræder - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel Annuller - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: Skabt af: - + Artwork by: Grafik af: - + Based on the SFLPhone project Baseret på SFLPhone-projektet - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_de.ts b/translations/ring_client_windows_de.ts index 20f7a838..096419ef 100644 --- a/translations/ring_client_windows_de.ts +++ b/translations/ring_client_windows_de.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Konto hinzufügen @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Audiodateien - + All files Alle Dateien @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Zertifikatsdatei - - - + + + All files Alle Dateien - + Key File Schlüsseldatei @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Zertifikatsdatei - - - + + + All files Alle Dateien - + Key File Schlüsseldatei @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Erweiterte Kontoeinstellungen @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Gesperrte Kontakte @@ -89,32 +89,32 @@ CallAdapter - + Missed call Verpasster Anruf - + Missed call with %1 entgangener Anruf mit %1 - + me Ich - + Incoming call Eingehender Anruf - + %1 is calling you %1 ruft Sie an - + is calling you ruft Sie an @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Zur Konferenz hinzufügen - + Transfer this call Diesen Anruf weiterleiten - + Add default moderator Standardmoderator hinzufügen @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Neue Nachricht - + Trust request Anfrage vertrauen @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Erfolgreich - - + + Error Fehler - + Jami archive files Jami-Archivdateien - + All files Alle Dateien @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Die Verbindung zum Jami-Daemon (jamid) konnte nicht erneut hergestellt werden. Jami wird jetzt beendet. - + Trying to reconnect to the Jami daemon (jamid)… Versuch, sich wieder mit dem Jami-Daemon (jamid) zu verbinden… - + Ok Ok @@ -211,7 +211,7 @@ Jami wird jetzt beendet. DeviceItemDelegate - + Device Id Gerätekennung @@ -219,2131 +219,2131 @@ Jami wird jetzt beendet. JamiStrings - + Find a user or search for a conversation Nach einem Benutzer oder einer Unterhaltung suchen - + Search your invitations Durchsuchen Sie Ihre Einladungen - + Invitations Einladungen - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami ist eine freie Software für universelle Kommunikation und respektiert die Freiheiten und Privatsphäre der Benutzer. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami ist eine freie Software für universelle Kommunikation und respektiert die Freiheiten und Privatsphäre der Benutzer. - + Credits Würdigung - + Display QR code QR-Code anzeigen - + Open settings Einstellungen öffnen - + Close settings Einstellungen schließen - + Authentication required Authentifizierung erforderlich - + Your session has expired or been revoked on this device. Please enter your password. Ihre Sitzung ist auf diesem Gerät abgelaufen oder wurde widerrufen. Bitte geben Sie Ihr Passwort ein. - + JAMS server JAMS-Server - + Authenticate Authentifizieren - + Delete account Konto löschen - + Authentication failed Authentifikation fehlgeschlagen - + Password Passwort - + Username Benutzername - + Alias Alias - + Call Settings Anrufeinstellungen - + Allow incoming calls from unknown contacts Erlaube eingehende Anrufe von unbekannten Kontakten - + In progress… In Bearbeitung ... - + Accept Annehmen - + Refuse Ablehnen - + Incoming audio call from {} eingehender Audioanruf von {} - + Incoming video call from {} eingehender Videoanruf von {} - + Convert your account into a rendezvous point Wandeln Sie ihren Benutzernamen in einen Treffpunkt um - + Automatically answer calls Anrufe automatisch annehmen - + Enable custom ringtone Benutzerdefinierten Klingelton aktivieren - + Select custom ringtone Benutzerdefinierten Klingelton auswählen - + Add a custom ringtone Eigenen Klingelton hinzufügen - + Select a new ringtone Einen neuen Klingelton auswählen - + Voicemail Sprachnachricht - + Voicemail dial code Einwahlcode der Sprachnachricht - + Security Sicherheit - + Encrypt media streams (SRTP) Medienströme verschlüsseln (SRTP) - + Enable SDES key exchange SDES-Schlüsselaustausch aktivieren - + Allow fallback on RTP Ausweichen auf RTP erlauben - + Encrypt negotiation (TLS) Verhandlung verschlüsseln (TLS) - + CA certificate CA-Zertifikat - + User certificate Benutzerzertifikat - + Private key Privater Schlüssel - + Private key password Passwort für den privaten Schlüssel - + Verify certificates for incoming TLS connections Zertifikate für eingehende TLS-Verbindungen überprüfen - + Verify server TLS certificates Server-TLS-Zertifikate überprüfen - + Require certificate for incoming TLS connections Zertifikat für eingehende TLS-Verbindungen erforderlich machen - + TLS protocol method TLS-Protokollmethode - + Audio input device selector Auswahl des Audio-Eingabe-Geräts - + TLS server name TLS-Servername - + Negotiation timeout (seconds) Verhandlungstimeout (Sekunden) - + Select a private key Einen privaten Schlüssel auswählen - + Select a user certificate Ein Benutzerzertifikat auswählen - + Registration expiration time (seconds) Ablaufzeit der Registrierung (Sekunden) - + Use custom address and port Eigene Adresse und Port benutzen - + Enable local peer discovery Erlaube das Finden von lokalen Teilnehmern - + Audio and Video Settings Audio- und Videoeinstellungen - + Frames per second Bilder pro Sekunde - + Select video frame rate (frames per second) Videobildrate auswählen (Bilder pro Sekunde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ihr Konto existiert nur auf diesem Gerät. Wenn Sie Ihr Gerät verlieren oder die Anwendung deinstallieren, wird Ihr Konto gelöscht und kann nicht wiederhergestellt werden. Sie können Ihr Konto jetzt oder später sichern. - - + + End call Anruf beenden - + Pause call Anruf pausieren - + Resume call Anruf fortsetzen - + Pause video Video pausieren - + Resume video Video fortsetzen - + Creating account… Erstelle Account … - + Encrypt account with password Konto mit Passwort verschlüsseln - + Create a rendezvous point Treffpunkt erstellen - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Wählen Sie ein Passwort, um Ihr Konto auf diesem Gerät zu verschlüsseln. Beachten Sie, dass das Passwort nicht wiederhergestellt werden kann. - + Choose a name for your rendezvous point Einen Namen für den Treffpunkt wählen - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Wenn Ihr Konto nicht gesichert oder zu einem anderen Gerät hinzugefügt wurde, gehen Ihr Konto und Ihr registrierter Name unwiderruflich verloren. - + Launch at startup Autostart beim Systemstart - + Enable typing indicators Tipp-Indikatoren aktivieren - - + + Network error Netzwerkfehler - + SSL error SSL-Fehler - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Geben Sie die PIN eines anderen konfigurierten Jami-Kontos ein. Verwenden Sie die Funktion "Anderes Gerät verknüpfen", um eine PIN zu erhalten. - + Link device Gerät verbinden - + Conversations Unterhaltungen - + Enable Aktivieren - + Display or hide preferences Voreinstellungen anzeigen oder ausblenden - + Add new plugin Neues Plugin hinzufügen - + Select a file Datei auswählen - + Select Auswählen - + Choose image file Bilddatei auswählen - + Enter the rendezvous point's name Geben Sie den Namen des Treffpunkts ein - + Creating rendezvous point… Treffpunkt wird erstellt… - + Create account from Jami Account Management Server (JAMS) Konto über Jami Account Management Server (JAMS) erstellen - + Create new rendezvous point Neuen Treffpunkt erstellen - + Create a Jami account Ein Jami-Konto erstellen - + About Jami Über Jami - + Decline contact request Kontaktanfrage ablehnen - + Accept contact request Kontaktanfrage annehmen - + Automatically check for updates Automatisch auf Aktualisierungen prüfen - + Ok Ok - - + + Cancel Abbrechen - + Accept in audio Mit Audio antworten - + Accept in video Mit Video antworten - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Sie sehen eine Unterhaltung, die alle Teilnehmer außer Ihnen verlassen haben. Neue Interaktionen werden nicht möglich sein. - + Start new conversation Neues Unterhaltung starten - + Chat Settings Chat Einstellungen - + Enable read receipts Lesebestätigungen aktivieren - + Send and receive receipts indicating that a message have been displayed Senden und Empfangen von Bestätigungen, die anzeigen, dass eine Nachricht angezeigt wurde - + Select a CA certificate CA-Zertifikat auswählen - + Connectivity Verbindung - + Auto Registration After Expired Automatische Registrierung nach Ablauf - + Network interface Netzwerkschnittstelle - + Use UPnP UPnP benutzen - + Use TURN TURN benutzen - + TURN address TURN-Adresse - + TURN username TURN-Benutzer - + TURN password TURN-Passwort - + TURN Realm TURN Realm - + Use STUN STUN benutzen - + STUN address STUN-Adresse - + Allow IP Auto Rewrite IP-Auto-Rewrite zulassen - + Public address Öffentliche Adresse - + Address Adresse - + Port Port - + Media Medium - + Enable video Video aktivieren - + Video Codecs Video Codecs - + Audio Codecs Audio Codecs - + Name Server Server für Benutzernamen - + SDP Session Negotiation (ICE Fallback) SDP-Sitzungsverhandlung (ICE-Fallback) - + Only used during negotiation in case ICE is not supported Wird nur während der Übetragung verwendet, falls ICE nicht unterstützt wird - + Audio RTP minimum Port RTP Audio minimaler Port - + Audio RTP maximum Port RTP Audio maximaler Port - + Video RTP minimum Port RTP Video minimaler Port - + Video RTP maximum port RTP Video maximaler Port - + Connect to other DHT nodes advertising on your local network. Verbinden Sie sich mit anderen DHT-Knoten, die in Ihrem lokalen Netzwerk sind. - + OpenDHT Configuration OpenDHT-Einstellungen - + Enable proxy Proxy aktivieren - + Proxy address Proxy-Adresse - + Bootstrap Bootstrap - + Back Zurück - + Account Settings Kontoeinstellungen - + Account Konto - - + + General Allgemein - + Plugin Plugin - + Audio/Video Audio/Video - + Audio Audio - + Microphone Mikrofon - + Select audio input device Audio-Eingabegerät auswählen - + Output device Ausgabegerät - + Select audio output device Audio-Ausgabegerät auswählen - + Ringtone device Klingeltongerät - + Select ringtone output device Klingelton-Ausgabegerät auswählen - + Audio manager Audiomanager - + Video Video - + Select video device Videogerät auswählen - + Device Gerät - + Resolution Auflösung - + Select video resolution Videoauflösung auswählen - + Enable hardware acceleration Hardwarebeschleunigung aktivieren - + Preview unavailable Keine Vorschau verfügbar - + Screen Sharing Bildschirmfreigabe - + Select screen sharing frame rate (frames per second) Bildrate für die Bildschirmfreigabe auswählen (Bilder pro Sekunde) - + no video kein Video - + Backup account here Backup des Kontos hier - + Backup your account! Sichern Sie Ihr Konto! - + Backup account Konto sichern - + Skip Überspringen - + Success Erfolgreich - + Error Fehler - + Never show me this again Nicht wieder anzeigen - + Recommended Empfohlen - + Jami archive files Jami-Archivdateien - + All files Alle Dateien - + Reinstate as contact Als Kontakt wiederherstellen - + name Name - + Identifier Identifikator - + is recording nimmt auf - + are recording nehmen auf - + Peer stopped recording Teilnehmer hat die Aufnahme beendet - + is calling you ruft Sie an - - + + Mute Stummschalten - - + + Unmute Stummschaltung aufheben - + Add participant Teilnehmer hinzufügen - + Add participants Teilnehmer hinzufügen - + Chat Chat - + More options Weitere Optionen - + Mosaic Mosaik - + You are still muted by moderator Sie sind immer noch vom Moderator stummgeschaltet - + You are muted by a moderator Sie sind von einem Moderator stummgeschaltet - + Moderator Moderator - + Host Veranstalter - + Local and Moderator muted Teilnehmer und Moderator stummgeschaltet - + Moderator muted Moderator stummgeschaltet - + Not muted Nicht stummgeschaltet - + Cut Ausschneiden - + Paste Einfügen - + Start video call Videoanruf starten - + Start audio call Audioanruf starten - + Clear conversation Unterhaltungsverlauf löschen - + Remove conversation Unterhaltung entfernen - + Remove contact Entferne Kontakt - + Block contact Kontakt blockieren - + Contact details Kontaktdetails - + Hold Halten - + Sip input panel Sip-Eingabefeld - + Transfer call Anruf weiterleiten - + Stop recording Aufnahme stoppen - + Start recording Aufnahme starten - + Exit full screen Vollbildmodus beenden - + Share screen Bildschirm freigeben - + Share window Fenster freigeben - + Share screen area Bildschirmbereich freigeben - + Share file Datei freigeben - + Select sharing method Freigabemethode auswählen - + View plugin Plug-in anzeigen - + No video device Kein Videogerät - + N/A N/V - + Lower hand Hand senken - + Raise hand Hand heben - + Hide chat view Chatansicht ausblenden - + Place audio call Starte Audioanruf - + Place video call Starte Videoanruf - + Show available plugins Verfügbare Plugins anzeigen - + Add to conversations Zur Unterhaltung hinzufügen - + Jump to latest Zum Ende der Unterhaltung scrollen - + {} is typing… {} tippt... - + {} are typing… {} tippen... - + Several people are typing… Mehrere Personen tippen... - + and und - + Enter Jami Account Management Server (JAMS) URL Geben Sie die URL des Jami Account Management Servers (JAMS) ein - + Required Erforderlich - + Jami Account Management Server URL Jami Account Management Server-URL - + Enter your JAMS credentials Geben Sie Ihre JAMS-Anmeldedaten ein - + Connect Verbinden - + Back to welcome page Zurück zur Willkommensseite - + Choose name Namen erstellen - + Choose username Benutzernamen erstellen - + Create account Konto erstellen - + Confirm password Passwort bestätigen - + Optional Optional - + Choose a username for your account Benutzernamen für Ihr Konto wählen - + Choose a name Einen Namen wählen - + Choose your username Benutzernamen wählen - + Invalid name Ungültiger Name - + Invalid username Ungültiger Benutzername - + Name already taken Name bereits vergeben - + Username already taken Dieser Benutzername ist bereits vergeben - + Proxy Proxy - + Server Server - + Create SIP account SIP-Konto erstellen - + Configure an existing SIP account Ein vorhandenes SIP-Konto konfigurieren - + Backup successful Backup erfolgreich - + Backup failed Backup fehlgeschlagen - + Password changed successfully Passwort wurde erfolgreich geändert - + Password change failed Änderung des Passworts fehlgeschlagen - + Password set successfully Passwort erfolgreich gesetzt - + Password set failed Passwortsetzung fehlgeschlagen - + Change password Passwort ändern - - + + Set password Passwort festlegen - + Change current password Aktuelles Passwort ändern - + Backup account to a .gz file Konto in einer .gz-Datei sichern - + Enable account Konto aktivieren - + Set username Benutzernamen festlegen - + Registering name Registrierungsname - + Register a username Einen Benutzername registrieren - + Register username Benutzernamen registrieren - + Link a new device to this account Ein neues Gerät mit diesem Konto verknüpfen - + Link another device Weiteres Gerät verknüpfen - + Exporting account… Konto wird exportiert... - + Remove Device Gerät entfernen - + Are you sure you wish to remove this device? Sicher, dass Sie das Gerät entfernen wollen? - + Linked Devices Verbundene Geräte - + Your PIN is: Ihre PIN lautet: - + Error connecting to the network. Please try again later. Fehler beim Verbinden mit dem Netzwerk. Bitte versuchen Sie es später erneut. - + Do you really want to delete this account? Möchten Sie dieses Konto wirklich löschen? - + Save new device name Neuen Gerätenamen speichern - + Edit device name Gerätenamen bearbeiten - + Unlink device from account Konto vom Gerät entfernen - + Select a folder Einen Ordner wählen - + Enable notifications Benachrichtigungen aktivieren - + Enable dark theme Dunkles Design aktivieren - + Keep minimized on close Beim Schließen minimiert bleiben - + Run application on system startup Anwendung beim Systemstart ausführen - + Downloads directory Download-Ordner - + Choose download directory Downloadverzeichnis auswählen - + Record call Anruf aufzeichnen - + Chatview Chatansicht - + Display hyperlink previews in the chatview Hyperlink-Vorschauen in der Chatansicht anzeigen - + User interface language Sprache der Benutzeroberfläche - + File transfer Dateitransfer - + Allow incoming files from unknown contacts Eingehende Dateien von unbekannten Kontakten zulassen - + Automatically accept incoming files Eingehende Dateien automatisch annehmen - + Accept transfer limit Akzeptiertes Transferlimit - + in MB, 0 = unlimited in MB, 0 = unbegrenzt - + Register Registrieren - + Incorrect password Falsches Passwort - + Save file Datei speichern - + Open location Speicherort öffnen - + Install beta version Betaversion installieren - + Check for updates now Jetzt nach Aktualisierungen suchen - + Enable/Disable automatic updates Automatische Updates aktivieren/deaktivieren - + toggle automatic updates auf automatische Updates umschalten - + Updates Updates - + Update Aktualisieren - + A new version of Jami was found Would you like to update now? Eine neue Version von Jami wurde gefunden. Möchten Sie jetzt updaten? - + No new version of Jami was found Es wurde keine neue Version von Jami gefunden - + An error occured when checking for a new version Beim Suchen nach einer neuen Version ist ein Fehler aufgetreten - + Installer download canceled Download des Installationsprogramms abgebrochen - + This will uninstall your current Release version and you can always download the latest Release version on our website Dadurch wird Ihre aktuelle Release-Version deinstalliert und Sie können jederzeit die neueste Release-Version von unserer Website herunterladen - + Network disconnected Netzwerk getrennt - - + + Something went wrong Irgendetwas ist schief gelaufen - + Troubleshoot Fehlerbehebung - + Open logs Logs öffnen - + Get logs Logs erhalten - + Select a record directory Ein Aufnahmeverzeichnis auswählen - + Debug Debuggen - + Show Stats Statistiken anzeigen - + Start Start - + Stop Stop - + Generating account… Konto wird erstellt… - + Import from backup Aus Backup importieren - + PIN PIN - + Stop taking photo Fotoaufnahme stoppen - + Clear avatar image Avatar-Bild löschen - + Go back to plugins list Zurück zur Plugin-Liste - + Profile is only shared with contacts Profil wird nur mit Kontakten geteilt - + Enter your name Geben Sie Ihren Namen ein - + Import account from other device Konto von anderem Gerät importieren - + Import account from backup file Konto aus Backupdatei importieren - + Hide advanced features Erweiterte Funktionen ausblenden - + Create new Jami account Neues Jami-Konto erstellen - + Create new SIP account Neues SIP-Konto erstellen - + Welcome to Willkommen bei - + Upgrade Aktualisieren - + Later Später - + Local muted Teilnehmer stummgeschaltet - + Trying to reconnect to the Jami daemon (jamid)… Versuch, sich wieder mit dem Jami-Daemon (jamid) zu verbinden… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Die Verbindung zum Jami-Daemon (jamid) konnte nicht erneut hergestellt werden. Jami wird jetzt beendet. - + Is swarm: Ist Schwarm: - + True Richtig - + False Falsch - + Add emoji Emoji einfügen - + Send file Datei senden - + Leave audio message Sprachnachricht hinterlassen - + Leave video message Videonachricht hinterlassen - + Send Senden - + Remove Entfernen - + Write to %1 An %1 schreiben - + %1 has sent you a request for a conversation. %1 hat Ihnen eine Unterhaltungsanfrage gesendet. - + Hello, Would you like to join the conversation? Hallo, Möchten Sie der Unterhaltung beitreten? - + You have accepted the conversation request Sie haben die Unterhaltungsanfrage angenommen - + Waiting until %1 connects to synchronize the conversation. Warten bis %1 eine Verbindung herstellt, um die Unterhaltung zu synchronisieren. - - + + Copy Kopieren - + Participant is still muted on their device Der Teilnehmer ist auf seinem Gerät immer noch stummgeschaltet - + You are still muted on your device Sie sind auf Ihrem Gerät immer noch stummgeschaltet - + View full screen Vollbild-Ansicht - + Stop sharing screen or file Freigabe des Bildschirms oder der Datei beenden - + Display advanced settings Erweiterte Einstellungen anzeigen - + Hide advanced settings Erweiterte Einstellungen ausblenden - + Display banned contacts Gesperrte Kontakte anzeigen - + Hide banned contacts Gesperrte Kontakte ausblenden - + Layout Anordnung - + Vertical view vertikale Ansicht - + Horizontal view horizontale Ansicht - + Keyboard Shortcut Table Tastaturkürzeltabelle - + Conversation Unterhaltung - + Call Anruf - + Settings Einstellungen - + Report Bug Fehler melden - + Clear Löschen - + Copied to clipboard! In die Zwischenablage kopiert! - + Receive Logs Logs erhalten - + Archive Archiv - + Open file Datei öffnen - + Create your account from a backup Konto aus einem Backup erstellen - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Sie können ein Archiv erstellen, indem Sie in den Kontoeinstellungen auf "Konto sichern" klicken. Dadurch wird eine .gz-Datei auf Ihrem Gerät erstellt. - + Restore an account from backup Einen Benutzernamen aus dem Backup wiederherstellen - + Enter Jami account password Passwort des Jami-Kontos eingeben - + The PIN and the account password should be entered in your device within 10 minutes. Die PIN und das Kontopasswort sollten innerhalb von 10 Minuten in Ihr Gerät eingegeben werden. - + Close Schließen - + Enter your account password Geben Sie Ihr Kontopasswort ein - + Add Device Gerät hinzufügen - + Enter the password Geben Sie das Passwort ein - + Enter current password Aktuelles Passwort eingeben - + Enter this account's password to confirm the removal of this device Geben Sie das Kontopasswort ein um die Entfernung dieses Gerätes zu bestätigen - + Enter new password Neues Passwort eingeben - + Confirm new password Neues Passwort bestätigen - + Change Ändern - + Confirm Bestätigen - + Export Export - + Choose a picture as avatar Ein Bild als Avatar auswählen - + Import avatar from image file Avatar aus Bilddatei importieren - + Take photo Ein Foto aufnehmen - + Reset Zurücksetzen - + Select a plugin to install Ein zu installierendes Plugin auswählen - + Install plugin PIugin installieren - + Save profile Profil speichern - + Information Information - + Enter the account password to confirm the removal of this device Geben Sie das Kontopasswort ein, um das Entfernen dieses Geräts zu bestätigen - + Select a screen to share Einen Bildschirm zum Freigeben auswählen - + Select a window to share Ein Fenster zur Freigabe auswählen - + All Screens Alle Bildschirme - + Screens Bildschirme - + Windows Fenster - + QR code QR-Code - + Account QR Konto QR - + This is your Jami username. Copy and share it with your friends! Dies ist Ihr Jami-Benutzername. Kopieren und teilen Sie diesen mit Ihren Freunden! - + Link this device to an existing account Dieses Gerät mit einem vorhandenen Konto verknüpfen - + Advanced features Erweiterte Funktionen - + Show advanced features Erweiterte Funktionen anzeigen - + Connect to a JAMS server Verbindung zum JAMS Server herstellen - + Add a SIP account SIP-Konto hinzufügen - + Error while creating your account. Check your credentials. Fehler beim Erstellen Ihres Kontos. Überprüfen Sie Ihre Anmeldedaten. - + Clear Text Text löschen - + Search Results Suchergebnisse - + Delete Löschen - + Set moderator Moderator festlegen - + Unset moderator Moderator entfernen - + Maximize Maximieren - + Minimize Minimieren - + Hangup Auflegen - + Conference moderation Konferenzmoderation - + Default moderators Standardmoderatoren - + Enable local moderators Teilnehmer als Moderatoren aktivieren - + Make all participants moderators Alle Teilnehmer zu Moderatoren machen - + Add default moderator Standardmoderator hinzufügen - + Remove default moderator Standardmoderator entfernen @@ -2351,112 +2351,112 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! KeyboardShortcutTable - + Open account list Kontoliste öffnen - + Focus conversations list Unterhaltungsliste fokussieren - + Requests list Anfrageliste - + Previous conversation Vorherige Unterhaltung - + Next conversation Nächste Unterhaltung - + Search bar Suchleiste - + Full screen Vollbild - + Start an audio call Audioanruf starten - + Start a video call Videoanruf starten - + Clear history Verlauf leeren - + Block contact Kontakt blockieren - + Remove conversation Unterhaltung entfernen - + Accept contact request Kontaktanfrage annehmen - + Media settings Medieneinstellungen - + General settings Allgemeine Einstellungen - + Account settings Kontoeinstellungen - + Plugin settings Plugin-Einstellungen - + Open account creation wizard Assistent zur Kontoerstellung öffnen - + Open keyboard shortcut table Tastaturkürzeltabelle öffnen - + Answer an incoming call Einen eingehenden Anruf annehmen - + End call Anruf beenden - + Decline the call request Anrufanfrage ablehnen @@ -2464,17 +2464,17 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! MainApplication - + E&xit Schließen - + &Quit Beenden - + &Show Jami &Jami anzeigen @@ -2482,12 +2482,12 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PhotoboothView - + Image Files Bilddateien - + All files Alle Dateien @@ -2495,7 +2495,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PluginHandlerItemDelegate - + On/Off An/Aus @@ -2503,12 +2503,12 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PluginHandlerPicker - + Choose plugin Plugin wählen - + Preferences Einstellungen @@ -2516,7 +2516,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PluginItemDelegate - + Load/Unload Laden/Entladen @@ -2524,27 +2524,27 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PluginListPreferencesView - + Uninstall plugin Plugin deinstallieren - + Reset preferences Einstellungen zurücksetzen - + Ok Ok - + Cancel Abbrechen - + Uninstall Deinstallieren @@ -2552,17 +2552,17 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PluginListSettingsView - + Plugin Files Plugin-Dateien - + All files Alle Dateien - + Installed plugins Installierte Plugins @@ -2570,7 +2570,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! PreferenceItemDelegate - + Edit preference Einstellung bearbeiten @@ -2578,107 +2578,107 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! QObject - + Created by: Erstellt von: - + Artwork by: Visuelle Gestaltung: - + Based on the SFLPhone project Basierend auf dem SFLPhone-Projekt - + Sending Wird gesendet - + Failure Fehler - + Sent Gesendet - + Connecting Verbindet - + Accept Annehmen - + Canceled Abgebrochen - + Unable to make contact Kein Kontakt möglich - + Ongoing Laufend - + Waiting for contact Warte auf Kontakt - + Incoming transfer Eingehende Übertragung - + Timed out waiting for contact Zeitüberschreitung beim Warten auf Kontakt - + Finished Abgeschlossen - + %1 days ago vor %1 Tagen - + one day ago vor einem Tag - + %1 hours ago vor %1 Stunde - + one hour ago vor einer Stunde - + %1 minutes ago vor %1 Minute - + just now gerade eben @@ -2686,22 +2686,22 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! RecordingSettings - + Call Recording Anrufaufzeichnung - + Always record calls Anrufe immer aufzeichnen - + Quality Qualität - + Save in Speichern in @@ -2709,7 +2709,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! RevokeDevicePasswordDialog - + Remove Entfernen @@ -2717,7 +2717,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! SelectScreen - + Screen Bildschirm @@ -2725,7 +2725,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! SettingParaCombobox - + @@ -2733,22 +2733,22 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! SmartListModel - - - - - - + + + + + + Calls Anrufe - - - - - - + + + + + + Contacts Kontakte @@ -2756,17 +2756,17 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! SystemSettings - + System System - + Enable dark theme Dunkles Design aktivieren - + Enable desktop notifications Desktopbenachrichtigungen aktivieren @@ -2774,27 +2774,27 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! SystemTray - + Answer Antwort - + Decline Ablehnen - + Open conversation Unterhaltung öffnen - + Accept Annehmen - + Refuse Ablehnen @@ -2802,7 +2802,7 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! UserIdentity - + Identity Identität @@ -2810,17 +2810,17 @@ Kopieren und teilen Sie diesen mit Ihren Freunden! UtilsAdapter - + %1 Mbps %1 MBit/s - + Default Standard - + System System diff --git a/translations/ring_client_windows_de_DE.ts b/translations/ring_client_windows_de_DE.ts index 1f61d162..1e6a47f5 100644 --- a/translations/ring_client_windows_de_DE.ts +++ b/translations/ring_client_windows_de_DE.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Konto hinzufügen @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Audio-Dateien - + All files Alle Dateien @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Zertifikatsdatei - - - + + + All files Alle Dateien - + Key File Schlüsseldatei @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Zertifikatsdatei - - - + + + All files Alle Dateien - + Key File Schlüsseldatei @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Erweiterte Konto-Einstellungen @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Gesperrte Kontake @@ -89,32 +89,32 @@ CallAdapter - + Missed call Anruf verpasst - + Missed call with %1 entgangener Anruf mit %1 - + me ich - + Incoming call Eingehender Anruf - + %1 is calling you %1 ruft dich an - + is calling you ruft Sie an @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Zur Konferenz hinzufügen - + Transfer this call Diesen Anruf übergeben - + Add default moderator Standard Moderator hinzufügen @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Neue Nachricht - + Trust request Vertrauensbeweis gefordert @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Erfolg - - + + Error Fehler - + Jami archive files Jami-Archiv-Dateien - + All files Alle Dateien @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Konnte die Verbindung zum Jami-Hintergrundprozess (jamid) nicht wiederherstellen. Jami wird nun beendet. - + Trying to reconnect to the Jami daemon (jamid)… Neuer Verbindungsversuch zum Jami-Daemon (dring)... - + Ok Ok @@ -211,7 +211,7 @@ Jami wird nun beendet. DeviceItemDelegate - + Device Id Geräte-Kennung @@ -219,2130 +219,2130 @@ Jami wird nun beendet. JamiStrings - + Find a user or search for a conversation Einen Benutzer oder eine Konversation suchen - + Search your invitations Einladungen durchsuchen - + Invitations Einladungen - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami ist Freie Software für universelle Kommunikation, die die Freiheiten und die Privatsphäre ihrer Nutzer respektiert. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami ist Freie Software für universelle Kommunikation, die die Freiheiten und die Privatsphäre ihrer Nutzer respektiert. - + Credits Abspann - + Display QR code QR-Code anzeigen - + Open settings Einstellungen öffnen - + Close settings Einstellungen schließen - + Authentication required Anmeldung erforderlich - + Your session has expired or been revoked on this device. Please enter your password. Ihre Sitzung ist abgelaufen oder ist auf diesem Gerät widerrufen worden. Bitte geben Sie Ihr Passwort ein. - + JAMS server JAMS-Server - + Authenticate Authentifizieren - + Delete account Konto löschen - + Authentication failed Authentifizierung fehlgeschlagen - + Password Kennwort - + Username Benutzername - + Alias Alias - + Call Settings Anruf-Einstellungen - + Allow incoming calls from unknown contacts Anrufe von unbekannten zulassen - + In progress… Wird bearbeitet... - + Accept Akzeptieren - + Refuse Ablehnen - + Incoming audio call from {} Eingehender Audioanruf von {} - + Incoming video call from {} Eingehender Videoanruf von {} - + Convert your account into a rendezvous point Mein Konto in einen Rendezvous-Treffpunkt umwandeln - + Automatically answer calls Automatische Anrufannahme - + Enable custom ringtone Den eigenen Klingelton einschalten - + Select custom ringtone Eigenen Klingelton auswählen - + Add a custom ringtone Eigenen Klingelton hinzufügen - + Select a new ringtone Einen neuen Klingelton auswählen - + Voicemail Sprachnachricht - + Voicemail dial code Wähl-Code für Sprachnachricht-Aufzeichnung - + Security Sicherheit - + Encrypt media streams (SRTP) Media-Stream verschlüsseln (SRTP) - + Enable SDES key exchange SDES als Schlüsselaustausch-Protokoll einschalten - + Allow fallback on RTP Ausweichen auf RTP erlauben - + Encrypt negotiation (TLS) Aushandlung der Verbindung verschlüsseln (TLS) - + CA certificate CA-Zertifikat - + User certificate Benutzer-Zertifikat - + Private key Privater Schlüssel - + Private key password Kennwort für privaten Schlüssel - + Verify certificates for incoming TLS connections Für eingehende TLS-Verbindungen Zertifikate überprüfen - + Verify server TLS certificates Server-TLS-zertifikate überprüfen - + Require certificate for incoming TLS connections Für eingehende TLS-Verbindungen Zertifikate erzwingen - + TLS protocol method TLS-Protokoll - + Audio input device selector Auswahl des Audio-Eingabe-Geräts - + TLS server name TLS-Servername - + Negotiation timeout (seconds) Timeout für Verbindungsaushandlung (Sek.) - + Select a private key Den privaten Schlüssel wählen - + Select a user certificate Ein Benutzerzertifikat auswählen - + Registration expiration time (seconds) Ablaufzeit der Registrierung (Sekunden) - + Use custom address and port Eigene Adresse und Port benutzen - + Enable local peer discovery Entdeckung lokaler Gesprächspartner erlauben - + Audio and Video Settings Audio- und Video-Einstellungen - + Frames per second Bilder pro Sekunde - + Select video frame rate (frames per second) Video-Bildrate auswählen (Bilder pro Sekunde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ihr Konto existiert nur auf diesem Gerät. Wenn Sie Ihr Gerät verlieren oder die Anwendung deinstallieren, wird Ihr Konto gelöscht und kann nicht wiederhergestellt werden. Sie können Ihr Konto jetzt oder später sichern. - - + + End call Anruf beenden - + Pause call Gespräch Halten - + Resume call Gespräch wieder aufnehmen - + Pause video Video Pausieren - + Resume video Video fortsetzen - + Creating account… Konto wird angelegt... - + Encrypt account with password Sichern Sie Ihre Anmeldedaten mit einem Passwort ab! - + Create a rendezvous point Einen Rendezvous-Treffpunkt erstellen - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Wählen Sie ein sicheres Passwort um den Schlüssel für Ihre Anmeldedaten auf diesem Gerät sicher zu verschlüsseln. Beachten Sie, dass dieses Passwort nicht wiederhergestellt werden kann, wenn Sie es verlieren. - + Choose a name for your rendezvous point Wählen Sie einen Namen für das Renzezvous. - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Wenn Ihr Konto nicht gesichert oder zu einem anderen Gerät hinzugefügt wurde, gehen Ihr Konto und Ihr registrierter Name unwiderruflich verloren. - + Launch at startup Beim Hochlauf starten - + Enable typing indicators aktiviere Tipp-Indikatoren - - + + Network error Netzwerkfehler - + SSL error SSL-Fehler - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Geben Sie die PIN eines anderen konfigurierten Jami-Kontos ein. Verwenden Sie die Funktion "Mit einem anderen Gerät verknüpfen", um eine PIN zu erhalten. - + Link device Gerät verknüpfen - + Conversations Gespräche - + Enable Einschalten - + Display or hide preferences Einstellungen anzeigen oder verbergen - + Add new plugin Ein Plugin hinzufügen - + Select a file Datei wählen - + Select Auswählen - + Choose image file Bilddatei auswählen - + Enter the rendezvous point's name Geben Sie den Namen des Rendezvous-Treffpunkts ein - + Creating rendezvous point… Erstelle Rendezvous-Treffpunkt... - + Create account from Jami Account Management Server (JAMS) Ein Konto vom Jami Account Management Server (JAMS) anlegen - + Create new rendezvous point Einen neuen Rendezvous-Treffpunkt anlegen - + Create a Jami account Jami-Konto erstellen - + About Jami Über Jami - + Decline contact request Kontaktanfrage ablehnen - + Accept contact request Kontaktanfrage akzeptieren - + Automatically check for updates Automatisch nach Updates suchen - + Ok Ok - - + + Cancel Abbrechen - + Accept in audio Mit Audio antworten - + Accept in video Mit Video antworten - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Sie sehen eine Unterhaltung, die alle Teilnehmer außer Ihnen verlassen haben. Neue Interaktionen werden nicht möglich sein. - + Start new conversation Neues Unterhaltung starten - + Chat Settings Chat Einstellungen - + Enable read receipts Lesebestätigungen aktivieren - + Send and receive receipts indicating that a message have been displayed Senden und Empfangen von Bestätigungen, die anzeigen, dass eine Nachricht angezeigt wurde - + Select a CA certificate Ein CA-Zertifikat auswählen - + Connectivity Verbindung - + Auto Registration After Expired Nach Ablauf automatisch registrieren - + Network interface Netzwerk-Schnittstelle - + Use UPnP UPnP benutzen - + Use TURN TURN benutzen - + TURN address TURN-Adresse - + TURN username TURN-Benutzername - + TURN password TURN-Kennwort - + TURN Realm TURN-Bereich - + Use STUN STUN benutzen - + STUN address STUN-Adresse - + Allow IP Auto Rewrite IP-Auto-Rewrite zulassen - + Public address Öffentliche Adresse - + Address Adresse - + Port Port - + Media Media - + Enable video Video aktivieren - + Video Codecs Video Codecs - + Audio Codecs Audio Codecs - + Name Server Name-Server - + SDP Session Negotiation (ICE Fallback) SDP-Sitzungsverhandlung (ICE-Rückfallebene) - + Only used during negotiation in case ICE is not supported Wird nur während der Aushandlung verwendet, falls ICE nicht unterstützt wird. - + Audio RTP minimum Port Audio-RTP Minimaler Port - + Audio RTP maximum Port Audio-RTP Maximaler Port - + Video RTP minimum Port Video-RTP Minimaler Port - + Video RTP maximum port Video-RTP Maximaler Port - + Connect to other DHT nodes advertising on your local network. Mit anderen DHT-Knoten verbinden, die im lokalen Netzwerk sind - + OpenDHT Configuration OpenDHT-Konfiguration - + Enable proxy Proxy einschalten - + Proxy address Proxy-Adresse - + Bootstrap Bootstrap - + Back Zurück - + Account Settings Konto-Einstellungen - + Account Konto - - + + General Allgemein - + Plugin Plugin - + Audio/Video Audio/Video - + Audio Audio - + Microphone Mikrofon - + Select audio input device Audio-Eingabegerät wählen - + Output device Ausgabegerät - + Select audio output device Audio-Ausgabegerät wählen - + Ringtone device Klingelton-Gerät - + Select ringtone output device Klingelton-Gerät auswählen - + Audio manager Audio-Verwaltung - + Video Video - + Select video device Kamera auswählen - + Device Gerät - + Resolution Auflösung - + Select video resolution Video-Auflösung auswählen - + Enable hardware acceleration Hardwarebeschleunigung verwenden - + Preview unavailable Vorschau nicht möglich - + Screen Sharing Bildschirmfreigabe - + Select screen sharing frame rate (frames per second) Bildrate für die Bildschirmfreigabe auswählen (Bilder pro Sekunde) - + no video kein Video - + Backup account here Konto hier sichern - + Backup your account! Erstellen Sie eine Sicherheitskopie Ihres Kontos! - + Backup account Konto sichern - + Skip Überspringen - + Success Erfolg - + Error Fehler - + Never show me this again Das nie wieder zeigen - + Recommended Empfohlen - + Jami archive files Jami-Archiv-Dateien - + All files Alle Dateien - + Reinstate as contact Kontakt wieder herstellen - + name Name - + Identifier Kennung - + is recording nimmt auf - + are recording nehmen auf - + Peer stopped recording Peer hat die Aufnahme gestoppt - + is calling you ruft Sie an - - + + Mute Stumm - - + + Unmute Wieder laut - + Add participant Teilnehmer hinzufügen - + Add participants Teilnehmer hinzufügen - + Chat Chat - + More options Weitere Einstellungen - + Mosaic Mosaik - + You are still muted by moderator Sie sind immer noch vom Moderator stummgeschaltet - + You are muted by a moderator Sie sind von einem Moderator stummgeschaltet - + Moderator Moderator - + Host Veranstalter - + Local and Moderator muted Teilnehmer und Moderator stummgeschaltet - + Moderator muted Moderator stummgeschaltet - + Not muted Nicht stummgeschaltet - + Cut Ausschneiden - + Paste Einfügen - + Start video call Video-Anruf beginnen - + Start audio call Einen Audioanruf beginnen - + Clear conversation Konversation löschen - + Remove conversation Entferne Gespräch - + Remove contact Kontakt entfernen - + Block contact Kontakt blockieren - + Contact details Kontaktdetails - + Hold Gehalten - + Sip input panel Sip-Eingabe-Konsole - + Transfer call Anruf übergeben - + Stop recording Aufnahme beenden - + Start recording Aufnahme beginnen - + Exit full screen Vollbild verlassen - + Share screen Bildschirm freigeben - + Share window Fenster teilen - + Share screen area Bildschirmausschnitt teilen - + Share file Datei teilen - + Select sharing method Freigabemethode wählen - + View plugin Plugin anschauen - + No video device Keine Kamera - + N/A N/V - + Lower hand Hand senken - + Raise hand Ihre Hand heben - + Hide chat view Chat verbergen - + Place audio call Audio-Anruf beginnen - + Place video call Starte Videoanruf - + Show available plugins Verfügbare Plugins anzeigen - + Add to conversations Zur Unterhaltung hinzufügen - + Jump to latest Zum Ende der Unterhaltung scrollen - + {} is typing… {} tippt... - + {} are typing… {} tippen... - + Several people are typing… Mehrere Personen tippen... - + and und - + Enter Jami Account Management Server (JAMS) URL URL des Jami Account Management Servers (JAMS) eingeben - + Required Benötigt - + Jami Account Management Server URL Jami Account Management Server URL - + Enter your JAMS credentials Geben Sie Ihre JAMS-Zugangsdaten ein - + Connect Verbinden - + Back to welcome page Zurück zur Begrüßungsseite - + Choose name Wählen Sie einen Namen - + Choose username Benutzername wählen - + Create account Konto erstellen - + Confirm password Konto bestätigen - + Optional Nicht zwingend erforderlich - + Choose a username for your account Wähle einen Benutzernamen für dein Konto - + Choose a name Wählen Sie einen Namen - + Choose your username Wählen Sie einen Benutzernamen - + Invalid name Ungültiger Name - + Invalid username Ungültiger Benutzername - + Name already taken Dieser Name ist schon vergeben - + Username already taken Benutzername bereits vergeben - + Proxy Proxy - + Server Server - + Create SIP account SIP-Konto erstellen - + Configure an existing SIP account Ein bestehendes SIP-Konto konfigurieren - + Backup successful Sicherungskopie erfolgreich - + Backup failed Sicherungskopie fehlgeschlagen - + Password changed successfully Passwort erfolgreich geändert - + Password change failed Passwortänderung fehlgeschlagen - + Password set successfully Passwort erfolgreich festgelegt - + Password set failed Setzen des Passworts fehlgeschlagen - + Change password Passwort ändern - - + + Set password Passwort festlegen - + Change current password Das aktuelle Passwort ändern - + Backup account to a .gz file Konto in .gz-Datei sichern - + Enable account Konto aktivieren - + Set username Benutzernamen festlegen - + Registering name Namen registrieren - + Register a username Einen Benutzernamen registrieren - + Register username Benutzernamen registrieren - + Link a new device to this account Ein neues Gerät mit diesem Konto verknüpfen - + Link another device Neues Gerät verbinden - + Exporting account… Konto wird exportiert... - + Remove Device Gerät entfernen - + Are you sure you wish to remove this device? Sind Sie sicher, dass Sie dieses Gerät entfernen wollen? - + Linked Devices Verknüpfte Geräte - + Your PIN is: Ihre PIN lautet: - + Error connecting to the network. Please try again later. Netzwerkfehler Versuchen Sie es später erneut. - + Do you really want to delete this account? Wollen Sie dieses Konto wirklich löschen? - + Save new device name Neuen Gerätenamen sichern - + Edit device name Gerätenamen ändern - + Unlink device from account Verknüpfung des Gerät mit dem Konto auflösen - + Select a folder Ordner auswählen - + Enable notifications Benachrichtigungen einschalten - + Enable dark theme Dunkles Thema einschalten - + Keep minimized on close Beim Schließen minimiert lassen - + Run application on system startup Applikation beim Systemstart starten - + Downloads directory Download-Ordner - + Choose download directory Download-Ordner auswählen - + Record call Anruf aufzeichnen - + Chatview Konversationsansicht - + Display hyperlink previews in the chatview Linkvorschauen anzeigen - + User interface language Sprache der Benutzeroberfläche - + File transfer Dateiübertragung - + Allow incoming files from unknown contacts Eingehende Dateien von Unbekannten erlauben - + Automatically accept incoming files Automatisch eingehende Dateien annehmen - + Accept transfer limit Akzeptiertes Transferlimit - + in MB, 0 = unlimited in MB, 0 = unbegrenzt - + Register Registrieren - + Incorrect password Falsches Passwort - + Save file Datei speichern - + Open location Speicherort öffnen - + Install beta version Beta-Version installieren - + Check for updates now Jetzt nach Aktualisierungen suchen - + Enable/Disable automatic updates Automatische Aktualisierung Ein/Aus - + toggle automatic updates Automatische Aktualisierung umschalten - + Updates Aktualisierungen - + Update Aktualisieren - + A new version of Jami was found Would you like to update now? Eine neue Version von Jami ist verfügbar Möchten Sie jetzt aktualisieren? - + No new version of Jami was found Es liegt keine neue Jami-Version vor. - + An error occured when checking for a new version Bei der Suche nach einer neuen Version ist ein Fehler aufgetreten - + Installer download canceled Herunterladen des Installationsprogramms abgebrochen - + This will uninstall your current Release version and you can always download the latest Release version on our website Dies wird ihre momentane Version entfernen. Sie können jederzeit die aktuell freigegebene Version auf der Website herunterladen - + Network disconnected Netzwerk nicht erreichbar - - + + Something went wrong Ein Fehler ist aufgetreten. - + Troubleshoot Fehlerbehebung - + Open logs Protokolle öffnen - + Get logs Protokolle abrufen - + Select a record directory Einen Aufzeichnungsordner wählen - + Debug Debuggen - + Show Stats Statistiken anzeigen - + Start Start - + Stop Beenden - + Generating account… Lege Konto an... - + Import from backup Aus Backup importieren - + PIN PIN - + Stop taking photo Fotoaufnahme stoppen - + Clear avatar image Avatar-Bild löschen - + Go back to plugins list Zu der Plugin-Liste zurück - + Profile is only shared with contacts Profil wird nur mit Kontakten geteilt - + Enter your name Gib deinen Namen ein - + Import account from other device Konto von einem anderen Gerät importieren - + Import account from backup file Konto aus Backup importieren - + Hide advanced features Erweiterte Funktionen ausblenden - + Create new Jami account Neues Jami-Konto erstellen - + Create new SIP account Neues SIP-Konto anlegen - + Welcome to Willkommen bei - + Upgrade Aktualisieren - + Later Später - + Local muted Teilnehmer stummgeschaltet - + Trying to reconnect to the Jami daemon (jamid)… Neuer Verbindungsversuch zum Jami-Daemon (dring)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Konnte die Verbindung zum Jami-Hintergrundprozess (jamid) nicht wiederherstellen. Jami wird nun beendet. - + Is swarm: Ist Schwarm: - + True Wahr - + False Falsch - + Add emoji Emoji hinzufügen - + Send file Datei senden - + Leave audio message Audio-Nachricht hinterlassen - + Leave video message Video-Nachricht hinterlassen - + Send Senden - + Remove Entfernen - + Write to %1 An %1 schreiben - + %1 has sent you a request for a conversation. %1 hat Ihnen eine Unterhaltungsanfrage gesendet. - + Hello, Would you like to join the conversation? Hallo, Möchten Sie der Unterhaltung beitreten? - + You have accepted the conversation request Sie haben die Unterhaltungsanfrage angenommen - + Waiting until %1 connects to synchronize the conversation. Warten bis %1 eine Verbindung herstellt, um die Unterhaltung zu synchronisieren. - - + + Copy Kopieren - + Participant is still muted on their device Der Teilnehmer ist auf seinem Gerät immer noch stummgeschaltet - + You are still muted on your device Sie sind auf Ihrem Gerät immer noch stummgeschaltet - + View full screen Vollbild-Ansicht - + Stop sharing screen or file Bildschirm oder Datei nicht mehr freigeben - + Display advanced settings Erweiterte Einstellungen anzeigen - + Hide advanced settings Erweiterte Einstellungen ausblenden - + Display banned contacts Gesperrte Kontakte anzeigen - + Hide banned contacts Gesperrte Kontakte verbergen - + Layout Anordnung - + Vertical view Vertikale ansicht - + Horizontal view Horizontale ansicht - + Keyboard Shortcut Table Tastaturkürzeltabelle - + Conversation Unterhaltung - + Call Anrufen - + Settings Einstellungen - + Report Bug Fehler melden - + Clear Löschen - + Copied to clipboard! In die Zwischenablage kopiert! - + Receive Logs Protokolle empfangen - + Archive Archiv - + Open file Datei öffnen - + Create your account from a backup Konto aus Backup erstellen - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Sie können ein Archiv erstellen, indem Sie in den Kontoeinstellungen "Konto sichern" auswählen. So erstellen Sie eine .gz-Datei auf Ihrem Gerät. - + Restore an account from backup Ein Konto aus einer Sicherung wiederherstellen - + Enter Jami account password Jami-Konto-Passwort eingeben - + The PIN and the account password should be entered in your device within 10 minutes. Die PIN und das Konto-Passwort sollten auf dem Gerät innerhalb von 10 Minuten eingegeben werden. - + Close Schließen - + Enter your account password Konto-Passwort eingeben - + Add Device Gerät hinzufügen - + Enter the password Passwort eingeben - + Enter current password Aktuelles Passwort eingeben - + Enter this account's password to confirm the removal of this device Geben Sie das Konto-Passwort ein, um die Entfernung dieses Geräts zu bestätigen - + Enter new password Neues Passwort eingeben - + Confirm new password Neues Passwort bestätigen - + Change Ändern - + Confirm Bestätigen - + Export Exportieren - + Choose a picture as avatar Wählen Sie ein Bild als Avatar - + Import avatar from image file Ein Bild für einen Avatar importieren - + Take photo Bild aufnehmen - + Reset Zurücksetzen - + Select a plugin to install Wählen Sie ein Plugin, um es zu installieren - + Install plugin Plugin installieren - + Save profile Profil speichern - + Information Information - + Enter the account password to confirm the removal of this device Geben Sie das Konto-Passwort ein, um die Entfernung dieses Geräts zu bestätigen - + Select a screen to share Einen Bildschirm zum Teilen auswählen - + Select a window to share Ein Fenster zur Freigabe auswählen - + All Screens Alle Bildschirme - + Screens Bildschirme - + Windows Fenster - + QR code QR-Code - + Account QR Konto-QR-Code - + This is your Jami username. Copy and share it with your friends! Dies ist Ihr Jami-Benutzername. Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! - + Link this device to an existing account Dieses Gerät mit einem bestehenden Konto verknüpfen - + Advanced features Erweiterte Einstellungen - + Show advanced features Erweiterte Funktionen anzeigen - + Connect to a JAMS server Mit einem JAMS-Server verbinden - + Add a SIP account SIP-Konto hinzufügen - + Error while creating your account. Check your credentials. Fehler beim Erstellen des Kontos. Prüfen Sie Ihre Zugangsdaten. - + Clear Text Text löschen - + Search Results Suchergebnisse - + Delete Löschen - + Set moderator Moderator festlegen - + Unset moderator Moderator freistellen - + Maximize Maximale Größe - + Minimize Minimieren - + Hangup Auflegen - + Conference moderation Konferenz-Moderation - + Default moderators Standard Moderatoren - + Enable local moderators Lokale Moderatoren einschalten - + Make all participants moderators Alle Teilnehmer zu Moderatoren machen - + Add default moderator Standard Moderator hinzufügen - + Remove default moderator Standardmoderator entfernen @@ -2350,112 +2350,112 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! KeyboardShortcutTable - + Open account list Kontenliste öffnen - + Focus conversations list Die Liste der Gespräche fokussieren - + Requests list Anfrage-Liste - + Previous conversation Vorherige Konversation - + Next conversation Nächste Unterhaltung - + Search bar Suchleiste - + Full screen Vollbild - + Start an audio call Einen Audioanruf beginnen - + Start a video call Einen Videoanruf beginnen - + Clear history Verlauf löschen - + Block contact Kontakt blockieren - + Remove conversation Entferne Gespräch - + Accept contact request Kontaktanfrage akzeptieren - + Media settings Medien-Einstellungen - + General settings Allgemeine Einstellungen - + Account settings Konto-Einstellungen - + Plugin settings Plugin-Einstellungen - + Open account creation wizard Konto-Erstellungs-Hilfe öffnen - + Open keyboard shortcut table Tastaturkürzeltabelle öffnen - + Answer an incoming call Anruf annehmen - + End call Anruf beenden - + Decline the call request Den Anruf ablehnen @@ -2463,17 +2463,17 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! MainApplication - + E&xit B%eenden - + &Quit &Beenden - + &Show Jami &Jami anzeigen @@ -2481,12 +2481,12 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PhotoboothView - + Image Files Bilder - + All files Alle Dateien @@ -2494,7 +2494,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PluginHandlerItemDelegate - + On/Off Ein/Aus @@ -2502,12 +2502,12 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PluginHandlerPicker - + Choose plugin Plugin auswählen - + Preferences Einstellungen @@ -2515,7 +2515,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PluginItemDelegate - + Load/Unload Laden/Entladen @@ -2523,27 +2523,27 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PluginListPreferencesView - + Uninstall plugin Plugin entfernen - + Reset preferences Voreinstellungen zurücksetzen - + Ok Ok - + Cancel Abbrechen - + Uninstall Deinstallieren @@ -2551,17 +2551,17 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PluginListSettingsView - + Plugin Files Plugin-Dateien - + All files Alle Dateien - + Installed plugins Installierte Plugins @@ -2569,7 +2569,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! PreferenceItemDelegate - + Edit preference Einstellungen ändern @@ -2577,107 +2577,107 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! QObject - + Created by: Erstellt von: - + Artwork by: Grafik-Design: - + Based on the SFLPhone project Basiert auf dem SFLPhone-Projekt - + Sending Sende - + Failure Fehlgeschlagen - + Sent Gesendet - + Connecting Verbinden - + Accept Akzeptieren - + Canceled Abgebrochen - + Unable to make contact Kontakt kann nicht hergestellt werden - + Ongoing Übertragung läuft - + Waiting for contact Auf Kontakt warten - + Incoming transfer Eingehende Übertragung - + Timed out waiting for contact Frist für das Warten auf Kontakt verstrichen - + Finished Erledigt - + %1 days ago vor %1 Tagen - + one day ago vor einem Tag - + %1 hours ago vor %1 Stunde - + one hour ago vor einer Stunde - + %1 minutes ago vor %1 Minute - + just now gerade eben @@ -2685,22 +2685,22 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! RecordingSettings - + Call Recording Anruf wird aufgezeichnet - + Always record calls Erlaube die Aufzeichnung von Anrufen - + Quality Qualität - + Save in Speichern @@ -2708,7 +2708,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! RevokeDevicePasswordDialog - + Remove Entfernen @@ -2716,7 +2716,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! SelectScreen - + Screen Bildschirm @@ -2724,7 +2724,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! SmartListModel - - - - - - + + + + + + Calls Anrufe - - - - - - + + + + + + Contacts Kontakte @@ -2755,17 +2755,17 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! SystemSettings - + System System - + Enable dark theme Dunkles Thema einschalten - + Enable desktop notifications Benachrichtigungen anzeigen @@ -2773,27 +2773,27 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! SystemTray - + Answer Antwort - + Decline Ablehnen - + Open conversation Konversation öffnen - + Accept Akzeptieren - + Refuse Ablehnen @@ -2801,7 +2801,7 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! UserIdentity - + Identity Identität @@ -2809,17 +2809,17 @@ Kopieren Sie ihn und teilen Sie ihn mit Ihren Freunden! UtilsAdapter - + %1 Mbps %1 MBit/s - + Default Standard - + System System diff --git a/translations/ring_client_windows_el.ts b/translations/ring_client_windows_el.ts index d0257092..11524d30 100644 --- a/translations/ring_client_windows_el.ts +++ b/translations/ring_client_windows_el.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Προφίλ @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Εισερχόμενη κλήση - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Εντάξει - - + + Success Επιτυχής - - + + Error Σφάλμα - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Εντάξει @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Έκδοση - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Συντελεστές - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Συνθηματικό - + Username Όνομα χρήστη - + Alias Ψευδώνυμο - + Call Settings - + Allow incoming calls from unknown contacts Να επιτρέπονται κλήσεις από άγνωστες επαφές - + In progress… - + Accept Αποδοχή - + Refuse Άρνηση - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Ασφάλεια - + Encrypt media streams (SRTP) Κρυπτογράφηση ροών μέσων (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Κρυπτογράφηση διαπραγμάτευσης (TLS) - + CA certificate Πιστοποιητικό CA - + User certificate Πιστοποιητικό χρήστη - + Private key Ιδιωτικό κλειδί - + Private key password Συνθηματικό ιδιωτικού κλειδιού - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Μέθοδος προτοκόλου TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Χρονική λήξη διαπραγματευσης (δευτερόλεπτα) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Τερματισμός κλήσης - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Κρυπτογράφηση λογαριασμού με κωδικό - + Create a rendezvous point Δημιουργεία σημείου συνάντησης - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Σφάλμα δικτύου - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Συνομιλίες - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select Επιλογή - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Δημιουργία λογαριασμού Jami - + About Jami Σχετικά με το Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Εντάξει - - + + Cancel Ακύρωση - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Συνδεσιμότητα - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Χρήση TURN - + TURN address Διεύθυνση TURN - + TURN username Όνομα χρήστη TURN - + TURN password Κωδικός TURN - + TURN Realm - + Use STUN Χρήση STUN - + STUN address Διεύθυνση STUN - + Allow IP Auto Rewrite - + Public address - + Address Διεύθυνση - + Port Θύρα - + Media Μέσα - + Enable video - + Video Codecs Κωδικοποιητές βίντεο - + Audio Codecs Κωδικοποιητές ήχου - + Name Server - + SDP Session Negotiation (ICE Fallback) Διαπραγμάτευση συνεδρίας SDP (εφεδρικό του ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Πίσω - + Account Settings - + Account Λογαριασμός - - + + General Γενικά - + Plugin - + Audio/Video Ήχος/Βίντεο - + Audio Ήχος - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Βίντεο - + Select video device - + Device Συσκευή - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video δεν υπάρχει βίντεο - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success Επιτυχής - + Error Σφάλμα - + Never show me this again - + Recommended Προτεινόμενα - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat Συνομιλία - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Αποκοπή - + Paste Επικόλληση - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Μπλοκάρισμα επαφής - + Contact details Λεπτομέρειες επαφών - + Hold Αναμονή - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Έξοδος από πλήρη οθόνη για - + Share screen Κοινή χρήση οθόνης - + Share window Κοινή χρήση παραθύρου - + Share screen area Κοινή χρήση περιοχής οθόνης - + Share file Μοίρασμα αρχείου - + Select sharing method - + View plugin - + No video device - + N/A N/A - + Lower hand - + Raise hand Σηκώστε το χέρι σας - + Hide chat view Απόκρυψη προβολής συνομιλίας - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Κύλιση στο τέλος της συνομιλίας - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Υποχρεωτικό - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Δημιουργία λογαριασμού - + Confirm password - + Optional Προεραιτικό - + Choose a username for your account Επιλέξτε ένα όνομα χρήστη για τον λογαριασμό σας - + Choose a name - + Choose your username - + Invalid name - + Invalid username Μη έγκυρο όνομα χρήστη - + Name already taken - + Username already taken Το όνομα χρήστη ήδη χρησιμοποιείται - + Proxy Διαμεσολαβητής - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Συνδεδεμένες Συσκευές - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Φάκελος "Στοιχεία λήψης" - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Εμφάνιση προεπισκοπήσεων συνδέσεων - + User interface language Γλώσσα περιβάλλοντος εργασίας χρήστη - + File transfer Μεταφορά Αρχείων - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Εγγραφή - + Incorrect password - + Save file Αποθήκευση αρχείου - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Η λήψη του προγράμματος εγκατάστασης ακυρώθηκε - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Τερματισμός - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Το προφίλ σας διαμοιράζεται μόνο με τις επαφές σας - + Enter your name Εισάγετε το όνομά σας - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Αποστολή αρχείου - + Leave audio message - + Leave video message - + Send Αποστολή - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Αντιγραφή - + Participant is still muted on their device - + You are still muted on your device - + View full screen Προβολή πλήρους οθόνης - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Διάταξη - + Vertical view Κατακόρυφη προβολή - + Horizontal view Οριζόντια προβολή - + Keyboard Shortcut Table - + Conversation - + Call Κλήση - + Settings Ρυθμίσεις - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Άνοιγμα αρχείου - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Κλείσιμο - + Enter your account password - + Add Device Προσθήκη συσκευής - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Εξαγωγή - + Choose a picture as avatar - + Import avatar from image file - + Take photo Λήψη φωτογραφίας - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Επιλέξτε μια οθόνη για κοινή χρήση - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account Σύνδεση αυτής της συσκευής σε έναν λογαριασμό που ήδη υπάρχει - + Advanced features - + Show advanced features - + Connect to a JAMS server Σύνδεση σε έναν διακομιστή JAMS - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Αποτελέσματα αναζήτησης - + Delete Διαγραφή - + Set moderator - + Unset moderator - + Maximize - + Minimize Ελαχιστοποίηση - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Πλήρη&ς οθόνη - + Start an audio call - + Start a video call - + Clear history Διαγραφή ιστορικού - + Block contact Μπλοκάρισμα επαφής - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Τερματισμός κλήσης - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Εντάξει - + Cancel Ακύρωση - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Συνδέεται - + Accept Αποδοχή - + Canceled Ακυρώθηκε - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in Αποθήκευση σε @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Κλήσεις - - - - - - + + + + + + Contacts Επαφές @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Σύστημα - + Enable dark theme - + Enable desktop notifications Εμφάνιση ειδοποιήσεων @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Απόρριψη κλήσης - + Open conversation - + Accept Αποδοχή - + Refuse Άρνηση @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Ταυτότητα @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 megabit/δευτερόλεπτο - + Default Προεπιλογή - + System Σύστημα diff --git a/translations/ring_client_windows_en_CA.ts b/translations/ring_client_windows_en_CA.ts index 0eb671b4..6e8cb82e 100644 --- a/translations/ring_client_windows_en_CA.ts +++ b/translations/ring_client_windows_en_CA.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Scroll to end of conversation - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Downloads folder - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Show link previews - + User interface language User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System System - + Enable dark theme - + Enable desktop notifications Show notifications @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System System diff --git a/translations/ring_client_windows_en_GB.ts b/translations/ring_client_windows_en_GB.ts index 4c48774e..a40bbc51 100644 --- a/translations/ring_client_windows_en_GB.ts +++ b/translations/ring_client_windows_en_GB.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Scroll to end of conversation - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Downloads folder - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Show link previews - + User interface language User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System System - + Enable dark theme - + Enable desktop notifications Show notifications @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System System diff --git a/translations/ring_client_windows_en_IE.ts b/translations/ring_client_windows_en_IE.ts index 55d84377..d5684607 100644 --- a/translations/ring_client_windows_en_IE.ts +++ b/translations/ring_client_windows_en_IE.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Scroll to end of conversation - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Downloads folder - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Show link previews - + User interface language User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System System - + Enable dark theme - + Enable desktop notifications Show notifications @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System System diff --git a/translations/ring_client_windows_eo.ts b/translations/ring_client_windows_eo.ts index 3b1a623d..40e1f7b5 100644 --- a/translations/ring_client_windows_eo.ts +++ b/translations/ring_client_windows_eo.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profilo @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Dosiero de Atestilo - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Dosiero de Atestilo - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Eniranta voko - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Bone - - + + Success - - + + Error Eraro - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Bone @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Invitoj - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Eldono - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Kredito - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Pasvorto - + Username Uzantnomo - + Alias Kaŝnomo - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Akcepti - + Refuse Rifuzi - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Sekuro - + Encrypt media streams (SRTP) Ĉifri aŭdvidfuojn (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Ĉifri intertraktadon (TLS) - + CA certificate CA atestilo - + User certificate Uzanta atestilo - + Private key Privata ŝlosilo - + Private key password Pasvorto de privata ŝlosilo - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Metodo de TLS protokolo - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Intertraktada tempolimo (sekunde) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Finigi vokon - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Reta eraro - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Ligi aparaton - + Conversations Konversacioj - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select Elekti - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami Pri Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Aŭtomate kontroli ĝisdatigojn - + Ok Bone - - + + Cancel Rezigni - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Uzi TURN - + TURN address - + TURN username TURN uzantnomo - + TURN password TURN pasvorto - + TURN Realm - + Use STUN Uzi STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adreso - + Port Pordo - + Media Aŭdvidaĵoj - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) Intertraktado de SDP seanco (ICE retropaŝo) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Praŝarĝo - + Back - + Account Settings - + Account Konto - - + + General Ĝeneralaj - + Plugin - + Audio/Video Aŭdio/Video - + Audio Aŭdio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Aparato - + Resolution Distingivo - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video neniu video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error Eraro - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Aldoni partoprenanton - + Add participants - + Chat Babilo - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Eltondi - + Paste Alglui - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold Deteni - + Sip input panel - + Transfer call Transigi vokon - + Stop recording - + Start recording - + Exit full screen Fermu la plenan ekranon - + Share screen Kunhavigi ekranon - + Share window Kunhavigi fenestron - + Share screen area Kunhavigi ekranan areon - + Share file Kunhavigi dosieron - + Select sharing method - + View plugin - + No video device - + N/A N/A - + Lower hand - + Raise hand - + Hide chat view Kaŝi babilejon - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password Konfirmu pasvorton - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Elektu vian uzantnomon - + Invalid name - + Invalid username Nevalida uzantnomo - + Name already taken - + Username already taken Uzantnomo jam prenita - + Proxy Prokura Servilo - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Ne ĉesu pro fermado fenestron - + Run application on system startup - + Downloads directory Elŝuta dosierujo - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Montru ligilajn antaŭrigardojn - + User interface language Uzantinterfaco lingvo - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registri - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Ĝisdatigi - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Elŝuto de instalilo nuligita - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Stopi - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name Entajpu vian nomon - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send Sendi - + Remove Forigi - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopii - + Participant is still muted on their device - + You are still muted on your device - + View full screen Montru plenan ekranon - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Aranĝo - + Vertical view Vertikala vido - + Horizontal view Horizontala vido - + Keyboard Shortcut Table - + Conversation - + Call Voko - + Settings Agordoj - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Elporti - + Choose a picture as avatar - + Import avatar from image file - + Take photo Foti - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Elektu ekranon por kunhavigi - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account Ligi ĉi tiun aparaton al ekzistanta konto - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete Forigi - + Set moderator - + Unset moderator - + Maximize - + Minimize Plejetigi - + Hangup Finigi vokon - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Malfermi konto-liston - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Plenekrane - + Start an audio call Komenci sonan vokon - + Start a video call Komenci videan vokon - + Clear history Vakigi historion - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Finigi vokon - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Bone - + Cancel Nuligi - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Kreita de: - + Artwork by: Grafiko de: - + Based on the SFLPhone project Surbaze de la SFLPhone projekto - + Sending - + Failure - + Sent - + Connecting - + Accept Akcepti - + Canceled Nuligita - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality Kvalito - + Save in Konservi en @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Forigi @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Vokoj - - - - - - + + + + + + Contacts Kontaktoj @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistemo - + Enable dark theme - + Enable desktop notifications Montru sciigojn @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer Respondi - + Decline Rifuzi - + Open conversation - + Accept Akcepti - + Refuse Rifuzi @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Defaŭlta - + System Sistemo diff --git a/translations/ring_client_windows_es.ts b/translations/ring_client_windows_es.ts index b584b278..c0ae6999 100644 --- a/translations/ring_client_windows_es.ts +++ b/translations/ring_client_windows_es.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Añadir cuenta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Ficheros de audio - + All files Todos los archivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configuraciones de cuenta avanzadas @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos bloqueados @@ -89,32 +89,32 @@ CallAdapter - + Missed call Llamada perdida - + Missed call with %1 Llamada perdida con %1 - + me yo - + Incoming call Llamada entrante - + %1 is calling you %1 te está llamando - + is calling you te está llamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Agregar a la conferencia - + Transfer this call Transferir esta llamada - + Add default moderator Añadir moderador por defecto @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nuevo mensaje - + Trust request Solicitud de confianza @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Aceptar - - + + Success Hecho - - + + Error Error - + Jami archive files Archivos de archivo de Jami - + All files Todos los archivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Ok Aceptar @@ -211,7 +211,7 @@ Jami se cerrará. DeviceItemDelegate - + Device Id Identificador de dispositivo @@ -219,2130 +219,2130 @@ Jami se cerrará. JamiStrings - + Find a user or search for a conversation Buscar usuario o conversación - + Search your invitations Busca tus invitaciones - + Invitations Invitaciones - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami es un software libre para comunicarse de forma universal, que respeta la libertad y privacidad de sus usuarios. - + Version Versión - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami es un software libre para comunicarse de forma universal, que respeta la libertad y privacidad de sus usuarios - + Credits Créditos - + Display QR code Mostrar código QR - + Open settings Abrir configuración - + Close settings Cerrar configuración - + Authentication required Autenticación requerida - + Your session has expired or been revoked on this device. Please enter your password. Tu sesión ha expirado o ha sido revocada en este dispositivo. Por favor, introduce tu contraseña. - + JAMS server Servidor JAMS - + Authenticate Autentícate - + Delete account Borrar cuenta - + Authentication failed Autenticación Fallida - + Password Contraseña - + Username Nombre de usuario - + Alias Alias - + Call Settings Configuración de llamada - + Allow incoming calls from unknown contacts Permitir llamadas entrantes de contactos desconocidos - + In progress… En progreso... - + Accept Aceptar - + Refuse No aceptar - + Incoming audio call from {} Llamada entrante de {} - + Incoming video call from {} Videollamada entrante de {} - + Convert your account into a rendezvous point Convierte tu cuenta en un punto de encuentro - + Automatically answer calls Responder automáticamente las llamadas - + Enable custom ringtone Habilitar tono de llamada personalizado - + Select custom ringtone Seleccionar tono de llamada personalizado - + Add a custom ringtone Añadir un timbre a elección - + Select a new ringtone Seleccionar un nuevo tono de llamada - + Voicemail Mensaje de voz - + Voicemail dial code Código de marcación del correo de voz - + Security Seguridad - + Encrypt media streams (SRTP) Flujo de medio cifrado (SRTP) - + Enable SDES key exchange Activar intercambio de claves SDES - + Allow fallback on RTP Permitir respaldo usando RTP - + Encrypt negotiation (TLS) Encriptar Negociación (TLS) - + CA certificate Certificado CA - + User certificate Certificado de usuario - + Private key Clave privada - + Private key password Contraseña de clave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexiones TLS entrantes - + Verify server TLS certificates Verificar certificados TLS de servidor - + Require certificate for incoming TLS connections Requerir certificados para conexiones TLS entrantes - + TLS protocol method Método de Protocolo TLS - + Audio input device selector Selector de dispositivo de entrada de audio - + TLS server name Nombre de servidor TLS - + Negotiation timeout (seconds) Tiempo de espera de negociación (seg) - + Select a private key Seleccione una clave privada - + Select a user certificate Seleccione un certificado de usuario - + Registration expiration time (seconds) Tiempo de expiración del registro (segundos) - + Use custom address and port Usar dirección y puerto personalizados - + Enable local peer discovery Habilitar descubrimiento local de pares - + Audio and Video Settings Configuración de Audio y Vídeo - + Frames per second Cuadros por segundo - + Select video frame rate (frames per second) Seleccione la tasa de cuadros de vídeo (cuadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Esta cuenta sólo existe en este dispositivo. Si lo pierdes o desinstalas la aplicación, tu cuenta se borrará y no se podrá recuperar. Puedes crear un archivo de respaldo de tu cuenta ahora o más adelante. - - + + End call Finalizar llamada - + Pause call Pausar llamada - + Resume call Reanudar llamada - + Pause video Pausar video - + Resume video Reanudar video - + Creating account… Creando cuenta... - + Encrypt account with password Cifrar cuenta con contraseña - + Create a rendezvous point Crear un punto de encuentro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Elija una contraseña para encriptar tu cuenta en este dispositivo. Tenga en cuenta que la contraseña no podrá ser recuperada - + Choose a name for your rendezvous point Elija un nombre para tu punto de encuentro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si no has creado un archivo de respaldo ni has vinculado tu cuenta a otro dispositivo, tu cuenta y nombre de usuario se perderán irrevocablemente. - + Launch at startup Lanzar al iniciar - + Enable typing indicators Habilitar indicadores de tipeo - - + + Network error Error en la red - + SSL error Error de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Introduce el PIN de la cuenta de Jami configurada en el otro dispositivo. Usa la opción "Vincular otro dispositivo" para obtener el PIN. - + Link device Vincular dispositivo - + Conversations Conversaciones - + Enable Activar - + Display or hide preferences Mostrar u ocultar las preferencias - + Add new plugin Añadir un nuevo complemento - + Select a file Selecciona un archivo - + Select Selección - + Choose image file Elige un fichero de imagen - + Enter the rendezvous point's name Introduzca el nombre del punto de encuentro - + Creating rendezvous point… Creando punto de encuentro... - + Create account from Jami Account Management Server (JAMS) Crear cuenta para Jami Account Management Server (JAMS) - + Create new rendezvous point Crear un nuevo punto de encuentro - + Create a Jami account Crear una cuenta en Jami - + About Jami Acerca de Jami - + Decline contact request Rechazar solicitud de contacto - + Accept contact request Aceptar solicitud de contacto - + Automatically check for updates Verificar actualizaciones automaticamente - + Ok Aceptar - - + + Cancel Cancelar - + Accept in audio Aceptar audio - + Accept in video Aceptar vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Estás viendo una conversación en la que todos los participantes excepto tú se han ido. Nuevas interacciones no serán posibles. - + Start new conversation Iniciar nueva conversación - + Chat Settings Preferencias del chat - + Enable read receipts Habilitar confirmaciones de lectura - + Send and receive receipts indicating that a message have been displayed Enviar y recibir confirmaciones de lectura indicando que se ha visto un mensaje - + Select a CA certificate Seleccionar un certificado de CA - + Connectivity Conectividad - + Auto Registration After Expired Registro automático luego de haber expirado - + Network interface Interfaz de red - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Dirección TURN - + TURN username Nombre de usuario en TURN - + TURN password Contraseña TURN - + TURN Realm TURN Realm - + Use STUN Utilizar STUN - + STUN address Dirección STUN - + Allow IP Auto Rewrite Habilitar Reescritura Automática de IP - + Public address Dirección pública - + Address Dirección - + Port Puerto - + Media Medios - + Enable video Habilitar Video - + Video Codecs Codecs de vídeo - + Audio Codecs Codecs de audio - + Name Server Nombrar Servidor - + SDP Session Negotiation (ICE Fallback) Negociación de sesión SDP (Retorna a ICE) - + Only used during negotiation in case ICE is not supported Usado sólo durante la negociación en caso de que no se admita ICE. - + Audio RTP minimum Port Puerto RTP de audio mínimo - + Audio RTP maximum Port Puerto RTP de audio máximo - + Video RTP minimum Port Puerto RTP de video mínimo - + Video RTP maximum port Puerto RTP de video máximo - + Connect to other DHT nodes advertising on your local network. Conectarse a otros nodos DHT que se anuncian en tu red local. - + OpenDHT Configuration Configuración de OpenDHT - + Enable proxy Habilitar proxy - + Proxy address Dirección proxy - + Bootstrap Cargador de inicio - + Back Volver - + Account Settings Configuración de la cuenta - + Account Cuenta - - + + General General - + Plugin Complemento - + Audio/Video Audio/Video - + Audio Audio - + Microphone Micrófono - + Select audio input device Elige el dispositivo de entrada de audio - + Output device Dispositivo de salida - + Select audio output device Elige el dispositivo de salida de audio - + Ringtone device Dispositivo de tono de llamada - + Select ringtone output device Elige el dispositivo de salida del tono de llamada - + Audio manager Gestor de sonido - + Video Vídeo - + Select video device Elige el dispositivo de video - + Device Dispositivo - + Resolution Resolución - + Select video resolution Elige la resolución de video - + Enable hardware acceleration Habilitar aceleración de hardware - + Preview unavailable Previsualización no disponible - + Screen Sharing Compartir Pantalla - + Select screen sharing frame rate (frames per second) Elige la tasa de cuadros para la compartición de pantalla (cuadros por segundo) - + no video sin video - + Backup account here Crear archivo de respaldo aquí - + Backup your account! ¡Crea un archivo de respaldo para tu cuenta! - + Backup account Cuenta de respaldo - + Skip Saltar - + Success Hecho - + Error Error - + Never show me this again No mostrarme esto de nuevo - + Recommended Recomendado - + Jami archive files Archivos de archivo de Jami - + All files Todos los archivos - + Reinstate as contact Volver a añadir como contacto - + name Nombre - + Identifier Identificador - + is recording está grabando - + are recording están grabando - + Peer stopped recording El par detuvo la grabación - + is calling you te está llamando - - + + Mute Silenciar - - + + Unmute Reactivar sonido - + Add participant Agregar participante - + Add participants Añadir participantes - + Chat Chat - + More options Más opciones - + Mosaic Mosaico - + You are still muted by moderator Continúas silenciada/o por un moderador - + You are muted by a moderator Has sido silenciada/o por un moderador - + Moderator Moderador - + Host Anfitrión - + Local and Moderator muted Dispositivo local y Moderador silenciados - + Moderator muted Moderador silenciado - + Not muted No silenciada/o - + Cut Cortar - + Paste Pegar - + Start video call Iniciar videollamada - + Start audio call Empezar llamada de audio - + Clear conversation Limpiar conversación - + Remove conversation Eliminar conversación - + Remove contact Eliminar contacto - + Block contact Bloquear contacto - + Contact details Detalles del contacto - + Hold Espera - + Sip input panel Panel de entrada SIP - + Transfer call Transferir llamada - + Stop recording Detener la grabación - + Start recording Iniciar la grabación - + Exit full screen Salir de pantalla completa - + Share screen Compartir pantalla - + Share window Compartir ventana - + Share screen area Compartir la ventana - + Share file Compartir el archivo - + Select sharing method Seleccionar método para compartir - + View plugin Ver complemento - + No video device No hay dispositivo de vídeo - + N/A N/D - + Lower hand Bajar la mano - + Raise hand Levanta tu mano - + Hide chat view Ocultar el chat - + Place audio call Realizar llamada de audio - + Place video call Realizar videollamada - + Show available plugins Mostrar complementos disponibles - + Add to conversations Añadir a conversaciones - + Jump to latest Desplazar hasta el final de la conversación - + {} is typing… {} está escribiendo... - + {} are typing… {} están escribiendo... - + Several people are typing… Varias personas están escribiendo... - + and y - + Enter Jami Account Management Server (JAMS) URL Ingresa la URL del JAMS (Jami Account Management Server) - + Required Requerido - + Jami Account Management Server URL URL del Servidor de Gestión de Cuentas de Jami (JAMS en inglés) - + Enter your JAMS credentials Ingresa las credenciales de tu JAMS - + Connect Conectar - + Back to welcome page Volver a la página de inicio - + Choose name Escoge un nombre - + Choose username Escoge un nombre de usuario - + Create account Crear cuenta - + Confirm password Confirmar contraseña - + Optional Opcional - + Choose a username for your account Elija un nombre de usuario para su cuenta - + Choose a name Escoge un nombre - + Choose your username Elije un nombre de usuario para ti - + Invalid name Nombre no válido - + Invalid username Nombre de usuario no válido - + Name already taken El nombre ya existe - + Username already taken El nombre de usuario ya está en uso - + Proxy Proxy - + Server Servidor - + Create SIP account Crear una cuenta SIP - + Configure an existing SIP account Configurar una cuenta SIP existente - + Backup successful Copia de respaldo actualizada correctamente - + Backup failed El respaldo ha fallado - + Password changed successfully La contraseña se ha actualizado correctamente - + Password change failed Falló el cambio de contraseña - + Password set successfully Contraseña establecida con éxito - + Password set failed Falló el establecimiento de la contraseña - + Change password Cambiar contraseña - - + + Set password Establecer Contraseña - + Change current password Cambiar contraseña actual - + Backup account to a .gz file Crear archivo (.gz) de respaldo - + Enable account Habilitar cuenta - + Set username Establecer nombre de usuario - + Registering name Registrando nombre - + Register a username Registrar nombre de usuario - + Register username Registrar nombre de usuario - + Link a new device to this account Conectar un nuevo dispositivo a esta cuenta - + Link another device Vincular otro dispositivo - + Exporting account… Exportando cuenta... - + Remove Device Quitar dispositivo - + Are you sure you wish to remove this device? ¿Está seguro de querer eliminar este dispositivo? - + Linked Devices Dispositivos vinculados - + Your PIN is: Tu PIN es: - + Error connecting to the network. Please try again later. Error al conectar a la red. Por favor inténtalo más tarde. - + Do you really want to delete this account? ¿Realmente deseas eliminar esta cuenta? - + Save new device name Guardar nuevo nombre de dispositivo - + Edit device name Editar nombre del dispositivo - + Unlink device from account Desvincular dispositivo de la cuenta - + Select a folder Seleccionar carpeta - + Enable notifications Habilitar notificaciones - + Enable dark theme Habilitar tema oscuro - + Keep minimized on close Mantener minimizado al cerrar - + Run application on system startup Ejecutar aplicación al iniciar el sistema - + Downloads directory Directorio de descargas - + Choose download directory Elige un directorio de descargas - + Record call Grabar llamada - + Chatview Chat - + Display hyperlink previews in the chatview Mostrar vistas previas de vínculos - + User interface language Idioma de interfaz de usuario - + File transfer Transferencia de archivos - + Allow incoming files from unknown contacts Permitir archivos entrantes de contactos desconocidos - + Automatically accept incoming files Aceptar automáticamente los archivos entrantes - + Accept transfer limit Aceptar límite de transferencia - + in MB, 0 = unlimited en MB, 0 = ilimitado - + Register Registrar - + Incorrect password Contraseña incorrecta - + Save file Guardar fichero - + Open location Abrir ubicación - + Install beta version Instalar la versión beta - + Check for updates now Buscar actualizaciones ahora - + Enable/Disable automatic updates Activar / Desactivar las actualizaciones automáticas - + toggle automatic updates Cambiar estado de las actualizaciones automáticas - + Updates Actualizaciones - + Update Actualizar - + A new version of Jami was found Would you like to update now? Se ha encontrado una nueva versión de Jami ¿Quieres actualizarla ahora? - + No new version of Jami was found No se han encontrado nuevas versiones de Jami - + An error occured when checking for a new version Un error ha ocurrido al comprobar si hay nuevas versiones - + Installer download canceled Descarga del instalador cancelada - + This will uninstall your current Release version and you can always download the latest Release version on our website Esto desinstalará la versión actual y siempre podrá descargar la última versión de nuestra página web - + Network disconnected Red desconectada - - + + Something went wrong Algo salió mal - + Troubleshoot Solucionar problemas - + Open logs Abrir registros - + Get logs Obtener registros - + Select a record directory Seleccione un directorio para grabaciones - + Debug Depurar - + Show Stats Mostrar Estadísticas - + Start Iniciar - + Stop Parar - + Generating account… Creando cuenta... - + Import from backup Importar desde archivo de respaldo - + PIN PIN - + Stop taking photo Dejar de tomar fotografía - + Clear avatar image Quitar imagen de avatar - + Go back to plugins list Volver a la lista de complementos - + Profile is only shared with contacts El perfil solamente es compartido con los contactos - + Enter your name Escribe tu nombre - + Import account from other device Importar cuenta de otro dispositivo - + Import account from backup file Importar cuenta desde archivo de respaldo - + Hide advanced features Ocultar características avanzadas - + Create new Jami account Crear una nueva cuenta Jami - + Create new SIP account Crear una nueva cuenta SIP - + Welcome to Bienvenido a - + Upgrade Actualizar - + Later Más tarde - + Local muted Silenciado localmente - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Is swarm: Es enjambre: - + True Verdadero - + False Falso - + Add emoji Añadir emoji - + Send file Enviar archivo - + Leave audio message Dejar mensaje de audio - + Leave video message Dejar mensaje de vídeo - + Send Enviar - + Remove Eliminar - + Write to %1 Escribirle a %1 - + %1 has sent you a request for a conversation. %1 te ha enviado una solicitud de conversación. - + Hello, Would you like to join the conversation? Hola, ¿Te gustaría unirte a la conversación? - + You have accepted the conversation request Has aceptado la solicitud de conversación. - + Waiting until %1 connects to synchronize the conversation. Esperando hasta que %1 se conecte para sincronizar la conversación. - - + + Copy Copiar - + Participant is still muted on their device El participante continúa silenciado en su dispositivo - + You are still muted on your device Todavía continúas silenciada/o en tu dispositivo - + View full screen Ver pantalla completa - + Stop sharing screen or file Dejar de compartir pantalla o archivo - + Display advanced settings Mostrar ajustes avanzados - + Hide advanced settings Ocultar ajustes avanzados - + Display banned contacts Mostrar contactos bloqueados - + Hide banned contacts Ocultar los usuarios bloqueados - + Layout Diseño - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table Tabla de atajos de teclado - + Conversation Conversación - + Call Llamar - + Settings Configuración - + Report Bug Reportar Error - + Clear Vaciar - + Copied to clipboard! ¡Copiado al portapapeles! - + Receive Logs Recibir registros - + Archive Archivo - + Open file Abrir fichero - + Create your account from a backup Crear una cuenta desde un archivo de respaldo - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Puedes obtener un archivo haciendo click en "Crear respaldo de la cuenta" dentro de configuración de la cuenta. Esto creará un archivo .gz en tu dispositivo. - + Restore an account from backup Recuperar una cuenta desde un respaldo - + Enter Jami account password Ingresa la contraseña de tu cuenta Jami - + The PIN and the account password should be entered in your device within 10 minutes. El PIN y la contraseña de la cuenta deben ingresarse en tu dispositivo en menos de 10 minutos. - + Close Cerrar - + Enter your account password Introduce la contraseña de tu cuenta - + Add Device Agregar dispositivo - + Enter the password Ingresa la contraseña - + Enter current password Ingresa la contraseña actual - + Enter this account's password to confirm the removal of this device Ingrese la contraseña de esta cuenta para confirmar la quita de este dispositivo - + Enter new password Ingrese su nueva contraseña - + Confirm new password Confirme la nueva contraseña - + Change Cambiar - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Elige una imagen de avatar - + Import avatar from image file Importar avatar desde una imagen - + Take photo Sacar una foto - + Reset Reiniciar - + Select a plugin to install Selecciona un complemento para instalar - + Install plugin Instalar complemento - + Save profile Guardar perfil - + Information Información - + Enter the account password to confirm the removal of this device Introduzca la contraseña de la cuenta para confirmar la eliminación de este dispositivo - + Select a screen to share Seleccione una pantalla a compartir - + Select a window to share Seleccione una pantalla a compartir - + All Screens Todas las pantallas - + Screens Pantallas - + Windows Ventanas - + QR code Código QR - + Account QR Cuenta QR - + This is your Jami username. Copy and share it with your friends! Este es tu nombre de usuario en Jami. ¡Cópialo y compártelo con tus amigos! - + Link this device to an existing account Vincular este dispositivo con una cuenta existente - + Advanced features Características avanzadas - + Show advanced features Mostrar características avanzadas - + Connect to a JAMS server Conectar a un servidor JAMS - + Add a SIP account Añadir una cuenta SIP - + Error while creating your account. Check your credentials. Error creando la cuenta. Comprueba las credenciales. - + Clear Text Borrar texto - + Search Results Resultados de búsqueda - + Delete Borrar - + Set moderator Asignar moderador - + Unset moderator Desasignar moderador - + Maximize Maximizar - + Minimize Minimizar - + Hangup Cortar - + Conference moderation Moderación de conferencia - + Default moderators Moderadores por defecto - + Enable local moderators Habilitar moderadores locales - + Make all participants moderators Asignar a todos los participantes como moderadores - + Add default moderator Añadir moderador por defecto - + Remove default moderator Eliminar moderador por defecto @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Abrir listado de cuentas - + Focus conversations list Enfocar lista de conversaciones - + Requests list Lista de solicitudes - + Previous conversation Conversación anterior - + Next conversation Siguiente conversación - + Search bar Barra de búsqueda - + Full screen Pantalla completa - + Start an audio call Iniciar una llamada de audio - + Start a video call Iniciar una videollamada - + Clear history Limpiar historial - + Block contact Bloquear contacto - + Remove conversation Eliminar conversación - + Accept contact request Aceptar solicitud de contacto - + Media settings Configuración de medios - + General settings Ajustes generales - + Account settings Configuración de la cuenta - + Plugin settings Ajustes de complementos - + Open account creation wizard Abrir el asistente de creación de cuenta - + Open keyboard shortcut table Abrir tabla de atajos de teclado - + Answer an incoming call Responder llamada entrante - + End call Finalizar llamada - + Decline the call request Rechazar petición de llamada @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Cerrar - + &Quit &Salir - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Archivos de imagen - + All files Todos los archivos @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Encender/Apagar @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Elegir complemento - + Preferences Preferencias @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Cargar/Descargar @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Desinstalar complemento - + Reset preferences Restablecer las preferencias - + Ok Aceptar - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Archivos de complementos - + All files Todos los archivos - + Installed plugins Complementos instalados @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Editar preferencias @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Creado por: - + Artwork by: Diseñado por: - + Based on the SFLPhone project Basado en el proyecto SFLPhone - + Sending Enviando - + Failure Error - + Sent Enviado - + Connecting Conectando - + Accept Aceptar - + Canceled Cancelado - + Unable to make contact No se pudo contactar - + Ongoing En curso - + Waiting for contact Esperando al contacto - + Incoming transfer Transferencia entrante - + Timed out waiting for contact Expiró el tiempo de espera al contacto - + Finished Terminado - + %1 days ago Hace %1 días - + one day ago hace un día - + %1 hours ago Hace %1 horas - + one hour ago hace una hora - + %1 minutes ago Hace %1 minutos - + just now justo ahora @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Grabador de llamadas - + Always record calls Siempre grabar llamadas - + Quality Calidad - + Save in guardar @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Eliminar @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Pantalla @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Llamadas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Sistema - + Enable dark theme Habilitar tema oscuro - + Enable desktop notifications Mostrar notificaciones @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Contestar - + Decline Rechazar - + Open conversation Conversación abierta - + Accept Aceptar - + Refuse No aceptar @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identidad @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Por defecto - + System Sistema diff --git a/translations/ring_client_windows_es_AR.ts b/translations/ring_client_windows_es_AR.ts index a52219aa..a72a08a5 100644 --- a/translations/ring_client_windows_es_AR.ts +++ b/translations/ring_client_windows_es_AR.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Añadir cuenta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Archivos de audio - + All files Todos los archivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Archivo de certificación - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Archivo de certificación - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Opciones avanzadas de cuenta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos bloqueados @@ -89,32 +89,32 @@ CallAdapter - + Missed call Llamada perdida - + Missed call with %1 Llamada perdida con %1 - + me yo - + Incoming call Llamada entrante - + %1 is calling you %1 te está llamando - + is calling you te está llamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Agregar a conferencia - + Transfer this call Transferir esta llamada - + Add default moderator Añadir moderador por defecto @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nuevo mensaje - + Trust request Solicitud de confianza @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Aceptar - - + + Success Éxito - - + + Error Error - + Jami archive files Ficheros de archivo de Jami - + All files Todos los archivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Ok Aceptar @@ -211,7 +211,7 @@ Jami se cerrará. DeviceItemDelegate - + Device Id ID del dispositivo @@ -219,2130 +219,2130 @@ Jami se cerrará. JamiStrings - + Find a user or search for a conversation Buscar usuario o conversación - + Search your invitations Buscá tus invitaciones - + Invitations Invitaciones - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami es software libre para una comunicación universal, que respeta la libertad y privacidad de sus usuarios. - + Version Versión - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami es un software libre para comunicarse de forma universal, que respeta la libertad y privacidad de sus usuarios. - + Credits Créditos - + Display QR code Mostrar código QR - + Open settings Abrir configuración - + Close settings Cerrar ajustes - + Authentication required Autenticación requerida - + Your session has expired or been revoked on this device. Please enter your password. Tu sesión ha expirado o ha sido revocada en este dispositivo. Por favor, introducí tu contraseña. - + JAMS server Servidor JAMS - + Authenticate Autenticate - + Delete account Eliminar cuenta - + Authentication failed Autenticación fallida - + Password Contraseña - + Username Nombre de usuario - + Alias Alias - + Call Settings Opciones de llamada - + Allow incoming calls from unknown contacts Permitir llamadas entrantes de contactos desconocidos - + In progress… En progreso... - + Accept Aceptar - + Refuse Rechazar - + Incoming audio call from {} Llamada entrante de {} - + Incoming video call from {} Videollamada entrante de {} - + Convert your account into a rendezvous point Convertir tu cuenta en un punto de encuentro - + Automatically answer calls Responder automáticamente las llamadas - + Enable custom ringtone Habilitar tono de llamada personalizado - + Select custom ringtone Seleccionar tono de llamada personalizado - + Add a custom ringtone Agregar un tono de llamada personalizado - + Select a new ringtone Seleccionar un nuevo tono de llamada - + Voicemail Correo de voz - + Voicemail dial code Código de marcación del correo de voz - + Security Seguridad - + Encrypt media streams (SRTP) Cifrar los flujos de medios (SRTP) - + Enable SDES key exchange Activar intercambio de claves SDES - + Allow fallback on RTP Permitir respaldo usando RTP - + Encrypt negotiation (TLS) Cifrar negociación (TLS) - + CA certificate Certificado CA - + User certificate Certificado de usuario - + Private key Clave privada - + Private key password Contraseña de clave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexiones TLS entrantes - + Verify server TLS certificates Verificar certificados TLS de servidor - + Require certificate for incoming TLS connections Requerir certificados para conexiones TLS entrantes - + TLS protocol method Protocolo TLS - + Audio input device selector Selector de dispositivo de entrada de audio - + TLS server name Nombre de servidor TLS - + Negotiation timeout (seconds) Tiempo de espera de negociación (segundos) - + Select a private key Seleccioná una clave privada - + Select a user certificate Seleccione un certificado de usuario - + Registration expiration time (seconds) Tiempo de expiración del registro (segundos) - + Use custom address and port Usar dirección y puerto personalizados - + Enable local peer discovery Habilitar descubrimiento de pares locales - + Audio and Video Settings Configuración de Audio y Vídeo - + Frames per second Cuadros por segundo - + Select video frame rate (frames per second) Seleccioná la tasa de cuadros de video (cuadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Esta cuenta sólo existe en este dispositivo. Si lo perdés o desinstalás la aplicación, tu cuenta se borrará y no se podrá recuperar. Podés crear un archivo de respaldo de tu cuenta ahora o más adelante. - - + + End call Finalizar llamada - + Pause call Pausar llamada - + Resume call Reanudar llamada - + Pause video Pausar video - + Resume video Reanudar video - + Creating account… Creando cuenta... - + Encrypt account with password Cifrar cuenta con contraseña - + Create a rendezvous point Crear un punto de encuentro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Elegí una contraseña para encriptar tu cuenta en este dispositivo. Tené en cuenta que la contraseña no podrá ser recuperada - + Choose a name for your rendezvous point Elegí un nombre para tu punto de encuentro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si no has creado un archivo de respaldo ni has vinculado tu cuenta a otro dispositivo, tu cuenta y nombre de usuario se perderán irrevocablemente. - + Launch at startup Lanzar al iniciar - + Enable typing indicators Habilitar indicadores de tipeo - - + + Network error Error de red - + SSL error Error de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Introducí el PIN de la cuenta de Jami configurada en el otro dispositivo. Usá la opción "Vincular otro dispositivo" para obtener el PIN. - + Link device Vincular dispositivo - + Conversations Conversaciones - + Enable Habilitar - + Display or hide preferences Mostrar u ocultar las preferencias - + Add new plugin Añadir un nuevo complemento - + Select a file Seleccioná un archivo - + Select Seleccionar - + Choose image file Elegí un archivo de imagen - + Enter the rendezvous point's name Introducí el nombre del punto de encuentro - + Creating rendezvous point… Creando punto de encuentro... - + Create account from Jami Account Management Server (JAMS) Crear cuenta de Jami Account Management Server (JAMS) - + Create new rendezvous point Crear un nuevo punto de encuentro - + Create a Jami account Crear una cuenta de Jami - + About Jami Acerca de Jami - + Decline contact request Rechazar solicitud de contacto - + Accept contact request Aceptar solicitud de contacto - + Automatically check for updates Comprobar actualizaciones automáticamente - + Ok Aceptar - - + + Cancel Cancelar - + Accept in audio Aceptar audio - + Accept in video Aceptar video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Estás viendo una conversación en la que todos los participantes excepto vos se han ido. Nuevas interacciones no serán posibles. - + Start new conversation Iniciar nueva conversación - + Chat Settings Preferencias del chat - + Enable read receipts Habilitar confirmaciones de lectura - + Send and receive receipts indicating that a message have been displayed Enviar y recibir confirmaciones de lectura indicando que se ha visto un mensaje - + Select a CA certificate Seleccionar un certificado de CA - + Connectivity Conectividad - + Auto Registration After Expired Registro automático luego de haber expirado - + Network interface Interfaz de red - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Dirección TURN - + TURN username Usuario TURN - + TURN password Contraseña TURN - + TURN Realm Reino TURN - + Use STUN Usar STUN - + STUN address Dirección STUN - + Allow IP Auto Rewrite Habilitar Reescritura Automática de IP - + Public address Dirección pública - + Address Dirección - + Port Puerto - + Media Medios - + Enable video Habilitar video - + Video Codecs Códecs de video - + Audio Codecs Códecs de audio - + Name Server Nombre del servidor - + SDP Session Negotiation (ICE Fallback) Negociación de sesión SDP (repliegue a ICE) - + Only used during negotiation in case ICE is not supported Usado sólo durante la negociación en caso de que no se admita ICE. - + Audio RTP minimum Port Puerto RTP de audio mínimo - + Audio RTP maximum Port Puerto RTP de audio máximo - + Video RTP minimum Port Puerto RTP de video mínimo - + Video RTP maximum port Puerto RTP de video máximo - + Connect to other DHT nodes advertising on your local network. Conectarse a otros nodos DHT que se anuncian en tu red local. - + OpenDHT Configuration Configuración de OpenDHT - + Enable proxy Habilitar Proxy - + Proxy address Dirección proxy - + Bootstrap Bootstrap - + Back Atrás - + Account Settings Configuración de la cuenta - + Account Cuenta - - + + General General - + Plugin Complemento - + Audio/Video Audio/Video - + Audio Audio - + Microphone Micrófono - + Select audio input device Elegí el dispositivo de entrada de audio - + Output device Dispositivo de salida - + Select audio output device Elegí el dispositivo de salida de audio - + Ringtone device Dispositivo de tono de llamada - + Select ringtone output device Elegí el dispositivo de salida del tono de llamada - + Audio manager Gestor de sonido - + Video Video - + Select video device Elegí el dispositivo de video - + Device Dispositivo - + Resolution Resolución - + Select video resolution Elegí la resolución de video - + Enable hardware acceleration Habilitar aceleración por hardware - + Preview unavailable Vista previa no disponible - + Screen Sharing Compartir Pantalla - + Select screen sharing frame rate (frames per second) Elegí la tasa de cuadros para la compartición de pantalla (cuadros por segundo) - + no video sin video - + Backup account here Respaldar cuenta aquí - + Backup your account! ¡Crear copia de respaldo de tu cuenta! - + Backup account Crear respaldo de la cuenta - + Skip Saltear - + Success Éxito - + Error Error - + Never show me this again No volver a mostrarme esto - + Recommended Recomendado - + Jami archive files Ficheros de archivo de Jami - + All files Todos los archivos - + Reinstate as contact Volver a añadir como contacto - + name nombre - + Identifier Identificador - + is recording está grabando - + are recording están grabando - + Peer stopped recording El par detuvo la grabación - + is calling you te está llamando - - + + Mute Silenciar - - + + Unmute Reactivar sonido - + Add participant Añadir participante - + Add participants Añadir participantes - + Chat Conversación - + More options Más opciones - + Mosaic Mosaico - + You are still muted by moderator Continuás silenciado por un moderador - + You are muted by a moderator Has sido silenciada/o por un moderador - + Moderator Moderador - + Host Anfitrión - + Local and Moderator muted Dispositivo local y Moderador silenciados - + Moderator muted Moderador silenciado - + Not muted No silenciada/o - + Cut Cortar - + Paste Pegar - + Start video call Iniciar una videollamada - + Start audio call Iniciar una llamada de voz - + Clear conversation Limpiar conversación - + Remove conversation Eliminar conversación - + Remove contact Eliminar contacto - + Block contact Bloquear contacto - + Contact details Detalles de contacto - + Hold Poner en espera - + Sip input panel Panel de entrada SIP - + Transfer call Transferir llamada - + Stop recording Detener grabación - + Start recording Iniciar la grabación - + Exit full screen Salir de pantalla completa - + Share screen Compartir pantalla - + Share window Compartir ventana - + Share screen area Compartir área de pantalla específica - + Share file Compartir archivo - + Select sharing method Seleccionar método para compartir - + View plugin Ver complemento - + No video device No hay dispositivo de video - + N/A N/A - + Lower hand Bajar la mano - + Raise hand Levanta tu mano - + Hide chat view Ocultar vista de conversación - + Place audio call Realizar audiollamada - + Place video call Realizar videollamada - + Show available plugins Mostrar complementos disponibles - + Add to conversations Agregar a conversaciones - + Jump to latest Desplazar hasta el final de la conversación - + {} is typing… {} está escribiendo... - + {} are typing… {} están escribiendo... - + Several people are typing… Varias personas están escribiendo... - + and y - + Enter Jami Account Management Server (JAMS) URL Ingresá la URL del JAMS (Jami Account Management Server) - + Required Requerido - + Jami Account Management Server URL URL del Servidor de Gestión de Cuentas de Jami (JAMS en inglés) - + Enter your JAMS credentials Ingresa tus credenciales del JAMS - + Connect Conectarse - + Back to welcome page Volver a la página de inicio - + Choose name Elegí un nombre - + Choose username Elegí un nombre de usuario - + Create account Crear cuenta - + Confirm password Confirmar contraseña - + Optional Opcional - + Choose a username for your account Elegir un nombre de usuario para tu cuenta - + Choose a name Elegí un nombre - + Choose your username Elegí tu nombre de usuario - + Invalid name Nombre no válido - + Invalid username Nombre de usuario inválido - + Name already taken Este nombre ya existe - + Username already taken Nombre de usuario ya en uso - + Proxy Proxy - + Server Servidor - + Create SIP account Crear una cuenta SIP - + Configure an existing SIP account Configurar una cuenta SIP existente - + Backup successful Respaldo realizado con éxito - + Backup failed El respaldo ha fallado - + Password changed successfully La contraseña se ha cambiado correctamente - + Password change failed Falló el cambio de contraseña - + Password set successfully Contraseña establecida con éxito - + Password set failed Falló el establecimiento de la contraseña - + Change password Cambiar contraseña - - + + Set password Establecer contraseña - + Change current password Cambiar contraseña actual - + Backup account to a .gz file Respaldar tu cuenta en un archivo .gz - + Enable account Habilitar cuenta - + Set username Establecer nombre de usuario - + Registering name Registrando nombre - + Register a username Registrá un nombre de usuario - + Register username Registrar nombre de usuario - + Link a new device to this account Vincular un nuevo dispositivo a esta cuenta - + Link another device Vincular otro dispositivo - + Exporting account… Exportando cuenta... - + Remove Device Remover dispositivo - + Are you sure you wish to remove this device? ¿Está seguro que desea remover este dispositivo? - + Linked Devices Dispositvos vinculados - + Your PIN is: Tu PIN es: - + Error connecting to the network. Please try again later. Error al conectar a la red. Por favor intentalo más tarde. - + Do you really want to delete this account? ¿Realmente querés eliminar esta cuenta? - + Save new device name Guardar el nuevo nombre del dispositivo - + Edit device name Editar nombre del dispositivo - + Unlink device from account Desvincular dispositivo de la cuenta - + Select a folder Seleccionar una carpeta - + Enable notifications Habilitar notificaciones - + Enable dark theme Habilitar tema oscuro - + Keep minimized on close Mantener minimizado al cerrar - + Run application on system startup Ejecutar aplicación al iniciar el sistema - + Downloads directory Directorio de descargas - + Choose download directory Elegí un directorio de descargas - + Record call Grabar llamada - + Chatview Chat - + Display hyperlink previews in the chatview Mostrar vistas previas de vínculos - + User interface language Idioma de interfaz de usuario - + File transfer Transferencia de archivos - + Allow incoming files from unknown contacts Permitir archivos entrantes de contactos desconocidos - + Automatically accept incoming files Aceptar automáticamente los archivos entrantes - + Accept transfer limit Límite de transferencia - + in MB, 0 = unlimited en MB, 0 = ilimitado - + Register Registrar - + Incorrect password Contraseña incorrecta - + Save file Guardar archivo - + Open location Abrir ubicación - + Install beta version Instalar la versión beta - + Check for updates now Comprobar actualizaciones ahora - + Enable/Disable automatic updates Activar/Desactivar actualizaciones automáticas - + toggle automatic updates Activar actualizaciones automáticas - + Updates Actualizaciones - + Update Actualizar - + A new version of Jami was found Would you like to update now? Se ha encontrado una nueva versión de Jami ¿Querés actualizarla ahora? - + No new version of Jami was found No se han encontrado nuevas versiones de Jami - + An error occured when checking for a new version Ocurrió un error al comprobar si hay una nueva versión - + Installer download canceled Descarga del instalador cancelada - + This will uninstall your current Release version and you can always download the latest Release version on our website Esto desinstalará la versión actual y siempre podrás descargar la última versión de nuestra página web - + Network disconnected Red desconectada - - + + Something went wrong Algo salió mal - + Troubleshoot Solucionar problemas - + Open logs Abrir registros - + Get logs Obtener registros - + Select a record directory Elegí un directorio para las grabaciones - + Debug Depurar - + Show Stats Mostrar Estadísticas - + Start Iniciar - + Stop Detener - + Generating account… Creando cuenta... - + Import from backup Importar desde copia de respaldo - + PIN PIN - + Stop taking photo Dejar de tomar fotografía - + Clear avatar image Quitar imagen de avatar - + Go back to plugins list Volver a la lista de complementos - + Profile is only shared with contacts Tu perfil sólo es compartido con tus contactos - + Enter your name Ingresá tu nombre - + Import account from other device Importar cuenta de otro dispositivo - + Import account from backup file Importar cuenta desde archivo de respaldo - + Hide advanced features Ocultar características avanzadas - + Create new Jami account Crear una nueva cuenta Jami - + Create new SIP account Crear una nueva cuenta SIP - + Welcome to Bienvenido a - + Upgrade Actualizar - + Later Más tarde - + Local muted Silenciado localmente - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Is swarm: Es enjambre: - + True Verdadero - + False Falso - + Add emoji Añadir emoji - + Send file Enviar archivo - + Leave audio message Dejar mensaje de audio - + Leave video message Dejar mensaje de video - + Send Enviar - + Remove Eliminar - + Write to %1 Escribirle a %1 - + %1 has sent you a request for a conversation. %1 te ha enviado una solicitud de conversación. - + Hello, Would you like to join the conversation? Hola, ¿Te gustaría unirte a la conversación? - + You have accepted the conversation request Has aceptado la solicitud de conversación. - + Waiting until %1 connects to synchronize the conversation. Esperando hasta que %1 se conecte para sincronizar la conversación. - - + + Copy Copiar - + Participant is still muted on their device El participante continúa silenciado en su dispositivo - + You are still muted on your device Todavía continuás silenciada/o en tu dispositivo - + View full screen Ver pantalla completa - + Stop sharing screen or file Dejar de compartir pantalla or archivo - + Display advanced settings Mostrar ajustes avanzados - + Hide advanced settings Ocultar ajustes avanzados - + Display banned contacts Mostrar contactos bloqueados - + Hide banned contacts Ocultar contactos bloqueados - + Layout Diseño - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table Tabla de atajos de teclado - + Conversation Conversación - + Call Llamar - + Settings Ajustes - + Report Bug Reportar Error - + Clear Limpiar - + Copied to clipboard! ¡Copiado al portapapeles! - + Receive Logs Recibir registros - + Archive Archivo - + Open file Abrir archivo - + Create your account from a backup Crear una cuenta desde un archivo de respaldo - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Podés obtener un archivo de respaldo haciendo click en "Crear respaldo de la cuenta" dentro de configuración de la cuenta. Esto creará un archivo .gz en tu dispositivo. - + Restore an account from backup Recuperar una cuenta desde un respaldo - + Enter Jami account password Ingresá la contraseña de tu cuenta Jami - + The PIN and the account password should be entered in your device within 10 minutes. El PIN y la contraseña de la cuenta deben ingresarse en tu dispositivo en menos de 10 minutos. - + Close Cerrar - + Enter your account password Ingresá la contraseña de la cuenta - + Add Device Añadir dispositivo - + Enter the password Ingresá la contraseña - + Enter current password Ingresá la contraseña actual - + Enter this account's password to confirm the removal of this device Ingresá la contraseña de la cuenta para confirmar la remoción del dispositivo - + Enter new password Ingresar nueva contraseña - + Confirm new password Confirmar nueva contraseña - + Change Cambiar - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Elegí una imagen de avatar - + Import avatar from image file Importar avatar desde una imagen - + Take photo Tomar foto - + Reset Reiniciar - + Select a plugin to install Seleccioná un complemento para instalar - + Install plugin Instalar complemento - + Save profile Guardar perfil - + Information Información - + Enter the account password to confirm the removal of this device Introducí la contraseña de la cuenta para confirmar su eliminación de este dispositivo - + Select a screen to share Seleccioná una pantalla para compartir - + Select a window to share Seleccionar la ventana a compartir - + All Screens Todas las pantallas - + Screens Pantallas - + Windows Ventanas - + QR code Código QR - + Account QR Cuenta QR - + This is your Jami username. Copy and share it with your friends! Este es tu nombre de usuario de Jami. ¡Copialo y compartilo con tus amigos! - + Link this device to an existing account Enlazar este dispositivo a una cuenta existente - + Advanced features Características avanzadas - + Show advanced features Mostrar características avanzadas - + Connect to a JAMS server Conectar a un servidor JAMS - + Add a SIP account Añadir una cuenta SIP - + Error while creating your account. Check your credentials. Error al crear la cuenta. Comprobá tus credenciales. - + Clear Text Borrar texto - + Search Results Resultados de la búsqueda - + Delete Eliminar - + Set moderator Asignar moderador - + Unset moderator Desasignar moderador - + Maximize Maximizar - + Minimize Minimizar - + Hangup Colgar - + Conference moderation Moderación de conferencia - + Default moderators Moderadores por defecto - + Enable local moderators Habilitar moderadores locales - + Make all participants moderators Asignar a todos los participantes como moderadores - + Add default moderator Añadir moderador por defecto - + Remove default moderator Eliminar moderador por defecto @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Abrir lista de cuentas - + Focus conversations list Enfocar lista de conversaciones - + Requests list Lista de solicitudes - + Previous conversation Conversación anterior - + Next conversation Siguiente conversación - + Search bar Barra de búsqueda - + Full screen Pantalla completa - + Start an audio call Iniciar una llamada de audio - + Start a video call Iniciar una videoconferencia - + Clear history Borrar historial - + Block contact Bloquear contacto - + Remove conversation Eliminar conversación - + Accept contact request Aceptar solicitud de contacto - + Media settings Configuración de medios - + General settings Configuración general - + Account settings Configuración de la cuenta - + Plugin settings Ajustes de complementos - + Open account creation wizard Abrir el asistente de creación de cuenta - + Open keyboard shortcut table Abrir tabla de atajos de teclado - + Answer an incoming call Responder llamada entrante - + End call Finalizar llamada - + Decline the call request Rechazar solicitud de llamada @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Cerrar - + &Quit &Salir - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Archivos de imagen - + All files Todos los archivos @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Encender/Apagar @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Elegir complemento - + Preferences Preferencias @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Cargar/Descargar @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Desinstalar plugin - + Reset preferences Restablecer las preferencias - + Ok Aceptar - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Archivos del complemento - + All files Todos los archivos - + Installed plugins Complementos instalados @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Editar preferencias @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Creado por: - + Artwork by: Ilustraciones realizadas por: - + Based on the SFLPhone project Basado en el projecto SFLPhone - + Sending Enviando - + Failure Falla - + Sent Enviado - + Connecting Conectando - + Accept Aceptar - + Canceled Cancelado - + Unable to make contact No se pudo contactar - + Ongoing En curso - + Waiting for contact Esperando al contacto - + Incoming transfer Transferencia entrante - + Timed out waiting for contact Expiró el tiempo de espera al contacto - + Finished Finalizado - + %1 days ago Hace %1 días - + one day ago hace un día - + %1 hours ago Hace %1 horas - + one hour ago hace una hora - + %1 minutes ago Hace %1 minutos - + just now hace un momento @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Grabaciones de llamadas - + Always record calls Siempre guardar llamadas - + Quality Calidad - + Save in Guardar en @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Eliminar @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Pantalla @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Llamadas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Sistema - + Enable dark theme Habilitar tema oscuro - + Enable desktop notifications Mostrar notificaciones @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Respuesta - + Decline Rechazar - + Open conversation Abrir conversación - + Accept Aceptar - + Refuse Rechazar @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identidad @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Por defecto - + System Sistema diff --git a/translations/ring_client_windows_es_CO.ts b/translations/ring_client_windows_es_CO.ts index 29b58ed9..fcd3ce23 100644 --- a/translations/ring_client_windows_es_CO.ts +++ b/translations/ring_client_windows_es_CO.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Añadir cuenta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Archivos de audio - + All files Todos los archivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configuraciones de cuenta avanzadas @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos bloqueados @@ -89,32 +89,32 @@ CallAdapter - + Missed call Llamada perdida - + Missed call with %1 Llamada perdida con %1 - + me yo - + Incoming call Llamada entrante - + %1 is calling you %1 te está llamando - + is calling you te está llamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Agregar a conferencia - + Transfer this call Transferir esta llamada - + Add default moderator Añadir moderador por defecto @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Mensaje nuevo - + Trust request Petición de confianza @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Aceptar - - + + Success Éxito - - + + Error Error - + Jami archive files Ficheros de archivo de Jami - + All files Todos los archivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Ok Aceptar @@ -211,7 +211,7 @@ Jami se cerrará. DeviceItemDelegate - + Device Id Identificador de dispositivo @@ -219,2130 +219,2130 @@ Jami se cerrará. JamiStrings - + Find a user or search for a conversation Buscar usuario o conversación - + Search your invitations Buscá tus invitaciones - + Invitations Invitaciones - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami es software libre para una comunicación universal, que respeta la libertad y privacidad de sus usuarios. - + Version Versión - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami es un software libre para comunicarse de forma universal, que respeta la libertad y privacidad de sus usuarios - + Credits Creditos - + Display QR code Mostrar código QR - + Open settings Abrir configuración - + Close settings Cerrar ajustes - + Authentication required Autenticación requerida - + Your session has expired or been revoked on this device. Please enter your password. Tu sesión ha expirado o ha sido revocada en este dispositivo. Por favor, introducí tu contraseña. - + JAMS server Servidor JAMS - + Authenticate Autenticate - + Delete account Borrar cuenta - + Authentication failed Autenticación fallida - + Password Contraseña - + Username Nombre de usuario - + Alias Alias - + Call Settings Configuración de llamada - + Allow incoming calls from unknown contacts Permitir llamadas entrantes de contactos desconocidos - + In progress… En progreso... - + Accept Aceptar - + Refuse Rechazar - + Incoming audio call from {} Llamada entrante de {} - + Incoming video call from {} Videollamada entrante de {} - + Convert your account into a rendezvous point Convertir su cuenta en un punto de encuentro - + Automatically answer calls Responder automáticamente las llamadas - + Enable custom ringtone Habilitar tono de llamada personalizado - + Select custom ringtone Seleccionar tono de llamada personalizado - + Add a custom ringtone Agregar un tono de llamada personalizado - + Select a new ringtone Seleccionar un nuevo tono de llamada - + Voicemail Correo de voz - + Voicemail dial code Código de marcación del correo de voz - + Security Seguridad - + Encrypt media streams (SRTP) Cifrar transmisión de medios (SRTP) - + Enable SDES key exchange Activar intercambio de claves SDES - + Allow fallback on RTP Permitir respaldo usando RTP - + Encrypt negotiation (TLS) Cifrar negociación (TLS) - + CA certificate Certificado CA - + User certificate Certificado de usuario - + Private key Clave privada - + Private key password Contraseña de clave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexiones TLS entrantes - + Verify server TLS certificates Verificar certificados TLS de servidor - + Require certificate for incoming TLS connections Requerir certificados para conexiones TLS entrantes - + TLS protocol method Método para el protocolo TLS - + Audio input device selector Selector de dispositivo de entrada de audio - + TLS server name Nombre de servidor TLS - + Negotiation timeout (seconds) Tiempo de negociación (segundos) - + Select a private key Seleccioná una clave privada - + Select a user certificate Seleccione un certificado de usuario - + Registration expiration time (seconds) Tiempo de expiración del registro (segundos) - + Use custom address and port Usar dirección y puerto personalizados - + Enable local peer discovery Habilitar descubrimiento local de pares - + Audio and Video Settings Configuración de Audio y Vídeo - + Frames per second Cuadros por segundo - + Select video frame rate (frames per second) Seleccioná la tasa de cuadros de video (cuadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Esta cuenta sólo existe en este dispositivo. Si lo perdés o desinstalás la aplicación, tu cuenta se borrará y no se podrá recuperar. Podés crear un archivo de respaldo de tu cuenta ahora o más adelante. - - + + End call Terminar llamada - + Pause call Pausar llamada - + Resume call Reanudar llamada - + Pause video Pausar video - + Resume video Reanudar video - + Creating account… Creando cuenta... - + Encrypt account with password Cifrar cuenta con una contraseña - + Create a rendezvous point Crear un punto de encuentro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Elija una contraseña para encriptar tu cuenta en este dispositivo. Tenga en cuenta que la contraseña no podrá ser recuperada - + Choose a name for your rendezvous point Elegí un nombre para tu punto de encuentro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si no has creado un archivo de respaldo ni has vinculado tu cuenta a otro dispositivo, tu cuenta y nombre de usuario se perderán irrevocablemente. - + Launch at startup Lanzar al iniciar - + Enable typing indicators Habilitar indicadores de tipeo - - + + Network error Error de red - + SSL error Error de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Ingrese el PIN de otra cuenta de Jami ya configurada. Use la opción «Conectar otro dispositivo» para obtener un PIN. - + Link device Conectar dispositivo - + Conversations Conversaciones - + Enable Habilitar - + Display or hide preferences Mostrar u ocultar las preferencias - + Add new plugin Añadir un nuevo complemento - + Select a file Seleccioná un archivo - + Select Seleccionar - + Choose image file Elegí un archivo de imagen - + Enter the rendezvous point's name Introducí el nombre del punto de encuentro - + Creating rendezvous point… Creando punto de encuentro... - + Create account from Jami Account Management Server (JAMS) Crear cuenta de Jami Account Management Server (JAMS) - + Create new rendezvous point Crear un nuevo punto de encuentro - + Create a Jami account Crear una cuenta de Jami - + About Jami Acerca de Jami - + Decline contact request Rechazar solicitud de contacto - + Accept contact request Aceptar solicitud de contacto - + Automatically check for updates Comprobar actualizaciones automáticamente - + Ok Aceptar - - + + Cancel Cancelar - + Accept in audio Aceptar audio - + Accept in video Aceptar vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Estás viendo una conversación en la que todos los participantes excepto tú se han ido. Nuevas interacciones no serán posibles. - + Start new conversation Iniciar nueva conversación - + Chat Settings Preferencias del chat - + Enable read receipts Habilitar confirmaciones de lectura - + Send and receive receipts indicating that a message have been displayed Enviar y recibir confirmaciones de lectura indicando que se ha visto un mensaje - + Select a CA certificate Seleccionar un certificado de CA - + Connectivity Conectividad - + Auto Registration After Expired Autoregistro después de expiración - + Network interface Interfaz de red - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Dirección TURN - + TURN username Nombre de usuario en TURN - + TURN password Contraseña TURN - + TURN Realm Reino TURN - + Use STUN Usar STUN - + STUN address Dirección STUN - + Allow IP Auto Rewrite Habilitar Reescritura Automática de IP - + Public address Dirección pública - + Address Dirección - + Port Puerto - + Media Medios - + Enable video Activar video - + Video Codecs Códecs de video - + Audio Codecs Codecs de audio - + Name Server Nombre del servidor - + SDP Session Negotiation (ICE Fallback) Negociación de sesión SDP (en su defecto, ICE) - + Only used during negotiation in case ICE is not supported Usado sólo durante la negociación en caso de que no se admita ICE. - + Audio RTP minimum Port Puerto RTP de audio mínimo - + Audio RTP maximum Port Puerto RTP de audio máximo - + Video RTP minimum Port Puerto RTP de video mínimo - + Video RTP maximum port Puerto RTP de video máximo - + Connect to other DHT nodes advertising on your local network. Conectarse a otros nodos DHT que se anuncian en tu red local. - + OpenDHT Configuration Configuración de OpenDHT - + Enable proxy Habilitar proxy - + Proxy address Dirección proxy - + Bootstrap Bootstrap - + Back Atrás - + Account Settings Configuración de la cuenta - + Account Cuenta - - + + General General - + Plugin Complemento - + Audio/Video Audio/Video - + Audio Sonido - + Microphone Micrófono - + Select audio input device Elegí el dispositivo de entrada de audio - + Output device Dispositivo de salida - + Select audio output device Elegí el dispositivo de salida de audio - + Ringtone device Dispositivo de timbre - + Select ringtone output device Elegí el dispositivo de salida del tono de llamada - + Audio manager Administrador de sonido - + Video Video - + Select video device Elegí el dispositivo de video - + Device Dispositivo - + Resolution Resolución - + Select video resolution Elegí la resolución de video - + Enable hardware acceleration Activar aceleración de hardware - + Preview unavailable Previsualización no disponible - + Screen Sharing Compartir Pantalla - + Select screen sharing frame rate (frames per second) Elige la tasa de cuadros para la compartición de pantalla (cuadros por segundo) - + no video sin video - + Backup account here Respaldar cuenta aquí - + Backup your account! ¡Respalde su cuenta! - + Backup account Crear respaldo de la cuenta - + Skip Omitir - + Success Éxito - + Error Error - + Never show me this again No mostrar esto otra vez - + Recommended Recomendado - + Jami archive files Archivos de archivo de Jami - + All files Todos los archivos - + Reinstate as contact Volver a añadir como contacto - + name Nombre - + Identifier Identificador - + is recording está grabando - + are recording están grabando - + Peer stopped recording El par detuvo la grabación - + is calling you te está llamando - - + + Mute Silenciar - - + + Unmute Reactivar sonido - + Add participant Agregar participante - + Add participants Añadir participantes - + Chat Conversación - + More options Más opciones - + Mosaic Mosaico - + You are still muted by moderator Continúas silenciada/o por un moderador - + You are muted by a moderator Has sido silenciada/o por un moderador - + Moderator Moderador - + Host Anfitrión - + Local and Moderator muted Dispositivo local y Moderador silenciados - + Moderator muted Moderador silenciado - + Not muted No silenciada/o - + Cut Cortar - + Paste Pegar - + Start video call Iniciar una videollamada - + Start audio call Iniciar una llamada de voz - + Clear conversation Limpiar conversación - + Remove conversation Eliminar conversación - + Remove contact Eliminar contacto - + Block contact Bloquear contacto - + Contact details Detalles del contacto - + Hold Poner en espera - + Sip input panel Panel de entrada SIP - + Transfer call Transferir llamada - + Stop recording Parar grabación - + Start recording Iniciar la grabación - + Exit full screen Salir de pantalla completa - + Share screen Compartir pantalla - + Share window Compartir ventana - + Share screen area Compartir área de pantalla específica - + Share file Compartir archivo - + Select sharing method Seleccionar método para compartir - + View plugin Ver complemento - + No video device No hay dispositivo de video - + N/A N/D - + Lower hand Bajar la mano - + Raise hand Levanta tu mano - + Hide chat view Ocultar vista de charla - + Place audio call Hacer llamada de voz - + Place video call Hacer videollamada - + Show available plugins Mostrar complementos disponibles - + Add to conversations Agregar a conversaciones - + Jump to latest Desplazar hasta el final de la conversación - + {} is typing… {} está escribiendo... - + {} are typing… {} están escribiendo... - + Several people are typing… Varias personas están escribiendo... - + and y - + Enter Jami Account Management Server (JAMS) URL Ingrese el URL del Servidor de Administración de Cuentas de Jami (JAMS) - + Required Requerido - + Jami Account Management Server URL URL del Servidor de Gestión de Cuentas de Jami (JAMS en inglés) - + Enter your JAMS credentials Ingrese sus credenciales de JAMS - + Connect Conectarse - + Back to welcome page Volver a la página de inicio - + Choose name Elegí un nombre - + Choose username Elegí un nombre de usuario - + Create account Crear una cuenta - + Confirm password Confirmar contraseña - + Optional Opcional - + Choose a username for your account Escoja un nombre de usuario para su cuenta - + Choose a name Escoge un nombre - + Choose your username Elije un nombre de usuario para ti - + Invalid name Nombre no válido - + Invalid username Nombre de usuario no válido - + Name already taken Este nombre ya existe - + Username already taken El nombre de usuario ya está ocupado - + Proxy Proxy - + Server Servidor - + Create SIP account Crear cuenta SIP - + Configure an existing SIP account Configurar una cuenta de SIP existente - + Backup successful Respaldo realizado con éxito - + Backup failed El respaldo ha fallado - + Password changed successfully La contraseña se ha cambiado correctamente - + Password change failed Falló el cambio de contraseña - + Password set successfully Contraseña establecida con éxito - + Password set failed Falló el establecimiento de la contraseña - + Change password Cambiar contraseña - - + + Set password Establecer contraseña - + Change current password Cambiar contraseña actual - + Backup account to a .gz file Respaldar tu cuenta en un archivo .gz - + Enable account Activar cuenta - + Set username Establecer nombre de usuario - + Registering name Registrando nombre - + Register a username Registrar nombre de usuario - + Register username Registrar nombre de usuario - + Link a new device to this account Vincular un nuevo dispositivo a esta cuenta - + Link another device Conectar otro dispositivo - + Exporting account… Exportando cuenta… - + Remove Device Quitar dispositivo - + Are you sure you wish to remove this device? ¿Está seguro que desea remover este dispositivo? - + Linked Devices Dispositivos vinculados - + Your PIN is: Tu PIN es: - + Error connecting to the network. Please try again later. Error al conectar a la red. Por favor intentalo más tarde. - + Do you really want to delete this account? ¿Realmente querés eliminar esta cuenta? - + Save new device name Guardar el nuevo nombre del dispositivo - + Edit device name Editar nombre del dispositivo - + Unlink device from account Desvincular dispositivo de la cuenta - + Select a folder Seleccionar una carpeta - + Enable notifications Habilitar notificaciones - + Enable dark theme Habilitar tema oscuro - + Keep minimized on close Mantener minimizado al cerrar - + Run application on system startup Ejecutar aplicación al iniciar el sistema - + Downloads directory Carpeta de descargas - + Choose download directory Elegí un directorio de descargas - + Record call Grabar llamada - + Chatview Chat - + Display hyperlink previews in the chatview Mostrar vistas previas de vínculos - + User interface language Idioma de interfaz de usuario - + File transfer Transferencia de archivos - + Allow incoming files from unknown contacts Aceptar archivos de contactos desconocidos - + Automatically accept incoming files Aceptar archivos automáticamente - + Accept transfer limit Límite de transferencia - + in MB, 0 = unlimited en MB, 0 = ilimitado - + Register Registrar - + Incorrect password Contraseña incorrecta - + Save file Guardar archivo - + Open location Abrir ubicación - + Install beta version Instalar la versión beta - + Check for updates now Buscar actualizaciones ahora - + Enable/Disable automatic updates Activar/Desactivar actualizaciones automáticas - + toggle automatic updates Activar actualizaciones automáticas - + Updates Actualizaciones - + Update Actualizar - + A new version of Jami was found Would you like to update now? Se ha encontrado una nueva versión de Jami ¿Quieres actualizarla ahora? - + No new version of Jami was found No se han encontrado nuevas versiones de Jami - + An error occured when checking for a new version Ocurrió un error al comprobar si hay una nueva versión - + Installer download canceled Descarga del instalador cancelada - + This will uninstall your current Release version and you can always download the latest Release version on our website Esto desinstalará la versión actual y siempre podrás descargar la última versión de nuestra página web - + Network disconnected Red desconectada - - + + Something went wrong Algo salió mal - + Troubleshoot Solucionar problemas - + Open logs Abrir registros - + Get logs Obtener registros - + Select a record directory Elegí un directorio para las grabaciones - + Debug Depurar - + Show Stats Mostrar Estadísticas - + Start Iniciar - + Stop Detener - + Generating account… Creando cuenta... - + Import from backup Importar desde un respaldo - + PIN PIN - + Stop taking photo Dejar de tomar fotografía - + Clear avatar image Quitar imagen de avatar - + Go back to plugins list Volver a la lista de complementos - + Profile is only shared with contacts El perfil sera compartido solo con sus contactos - + Enter your name Escribe tu nombre - + Import account from other device Importar cuenta de otro dispositivo - + Import account from backup file Importar cuenta desde archivo de respaldo - + Hide advanced features Ocultar características avanzadas - + Create new Jami account Crear una nueva cuenta Jami - + Create new SIP account Crear una nueva cuenta SIP - + Welcome to Le damos la bienvenida a - + Upgrade Actualizar - + Later Más tarde - + Local muted Silenciado localmente - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Is swarm: Es enjambre: - + True Verdadero - + False Falso - + Add emoji Añadir emoji - + Send file Enviar archivo - + Leave audio message Dejar mensaje de audio - + Leave video message Dejar mensaje de vídeo - + Send Enviar - + Remove Eliminar - + Write to %1 Escribirle a %1 - + %1 has sent you a request for a conversation. %1 te ha enviado una solicitud de conversación. - + Hello, Would you like to join the conversation? Hola, ¿Te gustaría unirte a la conversación? - + You have accepted the conversation request Has aceptado la solicitud de conversación. - + Waiting until %1 connects to synchronize the conversation. Esperando hasta que %1 se conecte para sincronizar la conversación. - - + + Copy Copiar - + Participant is still muted on their device El participante continúa silenciado en su dispositivo - + You are still muted on your device Todavía continúas silenciada/o en tu dispositivo - + View full screen Ver pantalla completa - + Stop sharing screen or file Dejar de compartir pantalla or archivo - + Display advanced settings Mostrar ajustes avanzados - + Hide advanced settings Ocultar ajustes avanzados - + Display banned contacts Mostrar contactos bloqueados - + Hide banned contacts Ocultar los usuarios bloqueados - + Layout Diseño - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table Tabla de atajos de teclado - + Conversation Conversación - + Call Llamadas - + Settings Configuración - + Report Bug Reportar Error - + Clear Limpiar - + Copied to clipboard! ¡Copiado al portapapeles! - + Receive Logs Recibir registros - + Archive Archivo - + Open file Abrir archivo - + Create your account from a backup Crear una cuenta desde un archivo de respaldo - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Puede crear un archivo pulsando «Respaldar cuenta» en la configuración de la cuenta. Esto creará un archivo .gz en su dispositivo. - + Restore an account from backup Restaurar una cuenta desde una copia de respaldo - + Enter Jami account password Ingrese la contraseña de la cuenta de Jami - + The PIN and the account password should be entered in your device within 10 minutes. El PIN y la contraseña de la cuenta deben ingresarse en tu dispositivo en menos de 10 minutos. - + Close Cerrar - + Enter your account password Ingresá la contraseña de la cuenta - + Add Device Añadir dispositivo - + Enter the password Ingresá la contraseña - + Enter current password Ingresá la contraseña actual - + Enter this account's password to confirm the removal of this device Ingresá la contraseña de la cuenta para confirmar la remoción del dispositivo - + Enter new password Ingresar nueva contraseña - + Confirm new password Confirmar nueva contraseña - + Change Cambio - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Elegí una imagen de avatar - + Import avatar from image file Importar avatar desde una imagen - + Take photo Tomar foto - + Reset Reiniciar - + Select a plugin to install Seleccioná un complemento para instalar - + Install plugin Instalar complemento - + Save profile Guardar perfil - + Information Información - + Enter the account password to confirm the removal of this device Introducí la contraseña de la cuenta para confirmar su eliminación de este dispositivo - + Select a screen to share Seleccioná una pantalla para compartir - + Select a window to share Seleccionar la ventana a compartir - + All Screens Todas las pantallas - + Screens Pantallas - + Windows Ventanas - + QR code Código QR - + Account QR Cuenta QR - + This is your Jami username. Copy and share it with your friends! Este es su nombre de usuario de Jami. ¡Cópielo y compártalo con sus amigos! - + Link this device to an existing account Enlazar este dispositivo a una cuenta existente - + Advanced features Funcionalidad avanzada - + Show advanced features Mostrar características avanzadas - + Connect to a JAMS server Conectarse a un servidor JAMS - + Add a SIP account Agregar una cuenta SIP - + Error while creating your account. Check your credentials. Error al crear la cuenta. Comprobá tus credenciales. - + Clear Text Borrar texto - + Search Results Resultados de la búsqueda - + Delete Borrar - + Set moderator Asignar moderador - + Unset moderator Desasignar moderador - + Maximize Maximizar - + Minimize Minimizar - + Hangup Colgar - + Conference moderation Moderación de conferencia - + Default moderators Moderadores por defecto - + Enable local moderators Habilitar moderadores locales - + Make all participants moderators Asignar a todos los participantes como moderadores - + Add default moderator Añadir moderador por defecto - + Remove default moderator Eliminar moderador por defecto @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Abrir lista de cuentas - + Focus conversations list Enfocar lista de conversaciones - + Requests list Lista de solicitudes - + Previous conversation Conversación anterior - + Next conversation Siguiente conversación - + Search bar Barra de búsqueda - + Full screen Pantalla completa - + Start an audio call Iniciar llamada de voz - + Start a video call Iniciar videollamada - + Clear history Limpiar historial - + Block contact Bloquear contacto - + Remove conversation Eliminar conversación - + Accept contact request Aceptar solicitud de contacto - + Media settings Configuración de medios - + General settings Configuración general - + Account settings Configuración de la cuenta - + Plugin settings Ajustes de complementos - + Open account creation wizard Abrir el asistente de creación de cuenta - + Open keyboard shortcut table Abrir tabla de atajos de teclado - + Answer an incoming call Responder llamada entrante - + End call Terminar llamada - + Decline the call request Rechazar solicitud de llamada @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Cerrar - + &Quit &Salir - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Archivos de imagen - + All files Todos los archivos @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Encender/Apagar @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Elegir complemento - + Preferences Preferencias @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Cargar/Descargar @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Desinstalar complemento - + Reset preferences Restablecer las preferencias - + Ok Aceptar - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Archivos del complemento - + All files Todos los archivos - + Installed plugins Complementos instalados @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Editar preferencias @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Creado por: - + Artwork by: Diseñado por: - + Based on the SFLPhone project Basado en el projecto SFLPhone - + Sending Enviando - + Failure Falló - + Sent Enviado - + Connecting Conectado - + Accept Aceptar - + Canceled Cancelado - + Unable to make contact No se pudo contactar - + Ongoing En curso - + Waiting for contact Esperando al contacto - + Incoming transfer Transferencia entrante - + Timed out waiting for contact Expiró el tiempo de espera al contacto - + Finished Finalizado - + %1 days ago Hace %1 días - + one day ago hace un día - + %1 hours ago Hace %1 horas - + one hour ago hace una hora - + %1 minutes ago Hace %1 minutos - + just now hace unos segundos @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Grabación de llamadas - + Always record calls Siempre grabar llamadas - + Quality Calidad - + Save in Guardar en @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Eliminar @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Pantalla @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Lllamdas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Sistema - + Enable dark theme Habilitar tema oscuro - + Enable desktop notifications Mostrar notificaciones @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Respuesta - + Decline Rechazar - + Open conversation Abrir conversación - + Accept Aceptar - + Refuse Rechazar @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identidad @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Por defecto - + System Sistema diff --git a/translations/ring_client_windows_es_MX.ts b/translations/ring_client_windows_es_MX.ts index 279edaf1..d70865ad 100644 --- a/translations/ring_client_windows_es_MX.ts +++ b/translations/ring_client_windows_es_MX.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Añadir cuenta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Archivos de audio - + All files Todos los archivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Archivo de certificado - - - + + + All files Todos los archivos - + Key File Fichero de clave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configuraciones de cuenta avanzadas @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos bloqueados @@ -89,32 +89,32 @@ CallAdapter - + Missed call Llamada perdida - + Missed call with %1 Llamada perdida con %1 - + me yo - + Incoming call Llamada entrante - + %1 is calling you %1 te está llamando - + is calling you te está llamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Agregar a conferencia - + Transfer this call Transferir esta llamada - + Add default moderator Añadir moderador por defecto @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Mensaje nuevo - + Trust request Solicitud de confianza @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Aceptar - - + + Success Éxito - - + + Error Error - + Jami archive files Ficheros de archivo de Jami - + All files Todos los archivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Ok Aceptar @@ -211,7 +211,7 @@ Jami se cerrará. DeviceItemDelegate - + Device Id Identificador de dispositivo @@ -219,2130 +219,2130 @@ Jami se cerrará. JamiStrings - + Find a user or search for a conversation Buscar usuario o conversación - + Search your invitations Buscá tus invitaciones - + Invitations Invitaciones - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami es software libre para una comunicación universal, que respeta la libertad y privacidad de sus usuarios. - + Version Versión - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami es un software libre para comunicarse de forma universal, que respeta la libertad y privacidad de sus usuarios - + Credits Creditos - + Display QR code Mostrar código QR - + Open settings Abrir configuración - + Close settings Cerrar ajustes - + Authentication required Autenticación requerida - + Your session has expired or been revoked on this device. Please enter your password. Tu sesión ha expirado o ha sido revocada en este dispositivo. Por favor, introducí tu contraseña. - + JAMS server Servidor JAMS - + Authenticate Autenticate - + Delete account Borrar cuenta - + Authentication failed Autenticación fallida - + Password Contraseña - + Username Nombre de usuario - + Alias Alias - + Call Settings Configuración de llamada - + Allow incoming calls from unknown contacts Permitir llamadas entrantes de contactos desconocidos - + In progress… En progreso... - + Accept Aceptar - + Refuse Rechazar - + Incoming audio call from {} Llamada entrante de {} - + Incoming video call from {} Videollamada entrante de {} - + Convert your account into a rendezvous point Convertir tu cuenta en un punto de encuentro - + Automatically answer calls Responder automáticamente las llamadas - + Enable custom ringtone Habilitar tono de llamada personalizado - + Select custom ringtone Seleccionar tono de llamada personalizado - + Add a custom ringtone Agregar un tono de llamada personalizado - + Select a new ringtone Seleccionar un nuevo tono de llamada - + Voicemail Correo de voz - + Voicemail dial code Código de marcación del correo de voz - + Security Seguridad - + Encrypt media streams (SRTP) Cifrar transmisión de medios (SRTP) - + Enable SDES key exchange Activar intercambio de claves SDES - + Allow fallback on RTP Permitir respaldo usando RTP - + Encrypt negotiation (TLS) Cifrar negociación (TLS) - + CA certificate Certificado CA - + User certificate Certificado de usuario - + Private key Clave privada - + Private key password Contraseña de clave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexiones TLS entrantes - + Verify server TLS certificates Verificar certificados TLS de servidor - + Require certificate for incoming TLS connections Requerir certificados para conexiones TLS entrantes - + TLS protocol method Método para el protocolo TLS - + Audio input device selector Selector de dispositivo de entrada de audio - + TLS server name Nombre de servidor TLS - + Negotiation timeout (seconds) Tiempo de negociación (segundos) - + Select a private key Seleccioná una clave privada - + Select a user certificate Seleccione un certificado de usuario - + Registration expiration time (seconds) Tiempo de expiración del registro (segundos) - + Use custom address and port Usar dirección y puerto personalizados - + Enable local peer discovery Habilitar descubrimiento local de pares - + Audio and Video Settings Configuración de Audio y Vídeo - + Frames per second Cuadros por segundo - + Select video frame rate (frames per second) Seleccioná la tasa de cuadros de video (cuadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Esta cuenta sólo existe en este dispositivo. Si lo perdés o desinstalás la aplicación, tu cuenta se borrará y no se podrá recuperar. Podés crear un archivo de respaldo de tu cuenta ahora o más adelante. - - + + End call Terminar llamada - + Pause call Pausar llamada - + Resume call Reanudar llamada - + Pause video Pausar video - + Resume video Reanudar video - + Creating account… Creando cuenta... - + Encrypt account with password Cifrar la cuenta con contraseña - + Create a rendezvous point Crear un punto de encuentro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Elija una contraseña para encriptar tu cuenta en este dispositivo. Tenga en cuenta que la contraseña no podrá ser recuperada - + Choose a name for your rendezvous point Elegí un nombre para tu punto de encuentro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si no has creado un archivo de respaldo ni has vinculado tu cuenta a otro dispositivo, tu cuenta y nombre de usuario se perderán irrevocablemente. - + Launch at startup Lanzar al iniciar - + Enable typing indicators Habilitar indicadores de tipeo - - + + Network error Error de red - + SSL error Error de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Introducí el PIN de la cuenta de Jami configurada en el otro dispositivo. Usá la opción "Vincular otro dispositivo" para obtener el PIN. - + Link device Conectar dispositivo - + Conversations Conversaciones - + Enable Habilitar - + Display or hide preferences Mostrar u ocultar las preferencias - + Add new plugin Añadir un nuevo complemento - + Select a file Seleccioná un archivo - + Select Seleccionar - + Choose image file Elegí un archivo de imagen - + Enter the rendezvous point's name Introducí el nombre del punto de encuentro - + Creating rendezvous point… Creando punto de encuentro... - + Create account from Jami Account Management Server (JAMS) Crear cuenta de Jami Account Management Server (JAMS) - + Create new rendezvous point Crear un nuevo punto de encuentro - + Create a Jami account Crear una cuenta de Jami - + About Jami Acerca de Jami - + Decline contact request Rechazar solicitud de contacto - + Accept contact request Aceptar solicitud de contacto - + Automatically check for updates Comprobar actualizaciones automáticamente - + Ok Aceptar - - + + Cancel Cancelar - + Accept in audio Aceptar audio - + Accept in video Aceptar vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Estás viendo una conversación en la que todos los participantes excepto tú se han ido. Nuevas interacciones no serán posibles. - + Start new conversation Iniciar nueva conversación - + Chat Settings Preferencias del chat - + Enable read receipts Habilitar confirmaciones de lectura - + Send and receive receipts indicating that a message have been displayed Enviar y recibir confirmaciones de lectura indicando que se ha visto un mensaje - + Select a CA certificate Seleccionar un certificado de CA - + Connectivity Conectividad - + Auto Registration After Expired Registro automático luego de haber expirado - + Network interface Interfaz de red - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Dirección TURN - + TURN username Nombre de usuario en TURN - + TURN password Contraseña TURN - + TURN Realm Reino TURN - + Use STUN Usar STUN - + STUN address Dirección STUN - + Allow IP Auto Rewrite Habilitar Reescritura Automática de IP - + Public address Dirección pública - + Address Dirección - + Port Puerto - + Media Medios - + Enable video Activar video - + Video Codecs Códecs de video - + Audio Codecs Codecs de audio - + Name Server Nombre del servidor - + SDP Session Negotiation (ICE Fallback) Negociación de sesión SDP (en su defecto, ICE) - + Only used during negotiation in case ICE is not supported Usado sólo durante la negociación en caso de que no se admita ICE. - + Audio RTP minimum Port Puerto RTP de audio mínimo - + Audio RTP maximum Port Puerto RTP de audio máximo - + Video RTP minimum Port Puerto RTP de video mínimo - + Video RTP maximum port Puerto RTP de video máximo - + Connect to other DHT nodes advertising on your local network. Conectarse a otros nodos DHT que se anuncian en tu red local. - + OpenDHT Configuration Configuración de OpenDHT - + Enable proxy Habilitar proxy - + Proxy address Dirección proxy - + Bootstrap Bootstrap - + Back Atrás - + Account Settings Configuración de la cuenta - + Account Cuenta - - + + General General - + Plugin Complemento - + Audio/Video Audio/Video - + Audio Audio - + Microphone Micrófono - + Select audio input device Elegí el dispositivo de entrada de audio - + Output device Dispositivo de salida - + Select audio output device Elegí el dispositivo de salida de audio - + Ringtone device Dispositivo de timbre - + Select ringtone output device Elegí el dispositivo de salida del tono de llamada - + Audio manager Administrador de sonido - + Video Video - + Select video device Elegí el dispositivo de video - + Device Dispositivo - + Resolution Resolución - + Select video resolution Elegí la resolución de video - + Enable hardware acceleration Activar aceleración por hardware - + Preview unavailable Previsualización no disponible - + Screen Sharing Compartir Pantalla - + Select screen sharing frame rate (frames per second) Elige la tasa de cuadros para la compartición de pantalla (cuadros por segundo) - + no video sin video - + Backup account here Respaldar cuenta aquí - + Backup your account! ¡Crear copia de respaldo de tu cuenta! - + Backup account Crear respaldo de la cuenta - + Skip Omitir - + Success Éxito - + Error Error - + Never show me this again No volver a mostrarme esto - + Recommended Recomendado - + Jami archive files Archivos de archivo de Jami - + All files Todos los archivos - + Reinstate as contact Volver a añadir como contacto - + name Nombre - + Identifier Identificador - + is recording está grabando - + are recording están grabando - + Peer stopped recording El par detuvo la grabación - + is calling you te está llamando - - + + Mute Silenciar - - + + Unmute Reactivar sonido - + Add participant Agregar participante - + Add participants Añadir participantes - + Chat Conversación - + More options Más opciones - + Mosaic Mosaico - + You are still muted by moderator Continúas silenciada/o por un moderador - + You are muted by a moderator Has sido silenciada/o por un moderador - + Moderator Moderador - + Host Anfitrión - + Local and Moderator muted Dispositivo local y Moderador silenciados - + Moderator muted Moderador silenciado - + Not muted No silenciada/o - + Cut Cortar - + Paste Pegar - + Start video call Iniciar una videollamada - + Start audio call Iniciar una llamada de voz - + Clear conversation Limpiar conversación - + Remove conversation Eliminar conversación - + Remove contact Eliminar contacto - + Block contact Bloquear contacto - + Contact details Detalles del contacto - + Hold En espera - + Sip input panel Panel de entrada SIP - + Transfer call Transferir llamada - + Stop recording Parar grabación - + Start recording Iniciar la grabación - + Exit full screen Salir de pantalla completa - + Share screen Compartir pantalla - + Share window Compartir ventana - + Share screen area Compartir área de pantalla específica - + Share file Compartir archivo - + Select sharing method Seleccionar método para compartir - + View plugin Ver complemento - + No video device No hay dispositivo de video - + N/A N/D - + Lower hand Bajar la mano - + Raise hand Levanta tu mano - + Hide chat view Ocultar el chat - + Place audio call Realizar audiollamada - + Place video call Realizar videollamada - + Show available plugins Mostrar complementos disponibles - + Add to conversations Añadir a conversaciones - + Jump to latest Desplazar hasta el final de la conversación - + {} is typing… {} está escribiendo... - + {} are typing… {} están escribiendo... - + Several people are typing… Varias personas están escribiendo... - + and y - + Enter Jami Account Management Server (JAMS) URL Ingrese el URL del Servidor de Administración de Cuentas de Jami (JAMS) - + Required Requerido - + Jami Account Management Server URL URL del Servidor de Gestión de Cuentas de Jami (JAMS en inglés) - + Enter your JAMS credentials Ingresa tus credenciales del JAMS - + Connect Conectarse - + Back to welcome page Volver a la página de inicio - + Choose name Elegí un nombre - + Choose username Elegí un nombre de usuario - + Create account Crear una cuenta - + Confirm password Confirmar contraseña - + Optional Opcional - + Choose a username for your account Escoja un nombre de usuario para su cuenta - + Choose a name Escoge un nombre - + Choose your username Elije un nombre de usuario para ti - + Invalid name Nombre no válido - + Invalid username Nombre de usuario no válido - + Name already taken Este nombre ya existe - + Username already taken El nombre de usuario ya está en uso - + Proxy Proxy - + Server Servidor - + Create SIP account Crear cuenta SIP - + Configure an existing SIP account Configurar una cuenta de SIP existente - + Backup successful Respaldo realizado con éxito - + Backup failed El respaldo ha fallado - + Password changed successfully La contraseña se ha cambiado correctamente - + Password change failed Falló el cambio de contraseña - + Password set successfully Contraseña establecida con éxito - + Password set failed Falló el establecimiento de la contraseña - + Change password Cambiar contraseña - - + + Set password Establecer contraseña - + Change current password Cambiar contraseña actual - + Backup account to a .gz file Respaldar tu cuenta en un archivo .gz - + Enable account Activar cuenta - + Set username Establecer nombre de usuario - + Registering name Registrando nombre - + Register a username Registrar nombre de usuario - + Register username Registrar nombre de usuario - + Link a new device to this account Vincular un nuevo dispositivo a esta cuenta - + Link another device Vincular otro dispositivo - + Exporting account… Exportando cuenta… - + Remove Device Quitar dispositivo - + Are you sure you wish to remove this device? ¿Está seguro que desea remover este dispositivo? - + Linked Devices Dispositivos vinculados - + Your PIN is: Tu PIN es: - + Error connecting to the network. Please try again later. Error al conectar a la red. Por favor intentalo más tarde. - + Do you really want to delete this account? ¿Realmente querés eliminar esta cuenta? - + Save new device name Guardar el nuevo nombre del dispositivo - + Edit device name Editar nombre del dispositivo - + Unlink device from account Desvincular dispositivo de la cuenta - + Select a folder Seleccionar una carpeta - + Enable notifications Habilitar notificaciones - + Enable dark theme Habilitar tema oscuro - + Keep minimized on close Mantener minimizado al cerrar - + Run application on system startup Ejecutar aplicación al iniciar el sistema - + Downloads directory Carpeta de descargas - + Choose download directory Elegí un directorio de descargas - + Record call Grabar llamada - + Chatview Chat - + Display hyperlink previews in the chatview Mostrar vistas previas de enlaces - + User interface language Idioma de interfaz de usuario - + File transfer Transferencia de archivo - + Allow incoming files from unknown contacts Aceptar archivos de contactos desconocidos - + Automatically accept incoming files Aceptar automáticamente los archivos entrantes - + Accept transfer limit Límite de transferencia - + in MB, 0 = unlimited en MB, 0 = ilimitado - + Register Registrar - + Incorrect password Contraseña incorrecta - + Save file Guardar archivo - + Open location Abrir ubicación - + Install beta version Instalar la versión beta - + Check for updates now Buscar actualizaciones ahora - + Enable/Disable automatic updates Activar/Desactivar actualizaciones automáticas - + toggle automatic updates Activar actualizaciones automáticas - + Updates Actualizaciones - + Update Actualizar - + A new version of Jami was found Would you like to update now? Se ha encontrado una nueva versión de Jami ¿Quieres actualizarla ahora? - + No new version of Jami was found No se han encontrado nuevas versiones de Jami - + An error occured when checking for a new version Ocurrió un error al comprobar si hay una nueva versión - + Installer download canceled Descarga del instalador cancelada - + This will uninstall your current Release version and you can always download the latest Release version on our website Esto desinstalará la versión actual y siempre podrás descargar la última versión de nuestra página web - + Network disconnected Red desconectada - - + + Something went wrong Algo salió mal - + Troubleshoot Solucionar problemas - + Open logs Abrir registros - + Get logs Obtener registros - + Select a record directory Elegí un directorio para las grabaciones - + Debug Depurar - + Show Stats Mostrar Estadísticas - + Start Iniciar - + Stop Parar - + Generating account… Creando cuenta... - + Import from backup Importar desde archivo de respaldo - + PIN PIN - + Stop taking photo Dejar de tomar fotografía - + Clear avatar image Quitar imagen de avatar - + Go back to plugins list Volver a la lista de complementos - + Profile is only shared with contacts El perfil sera compartido solo con sus contactos - + Enter your name Escribe tu nombre - + Import account from other device Importar cuenta de otro dispositivo - + Import account from backup file Importar cuenta desde archivo de respaldo - + Hide advanced features Ocultar características avanzadas - + Create new Jami account Crear una nueva cuenta Jami - + Create new SIP account Crear una nueva cuenta SIP - + Welcome to Le damos la bienvenida a - + Upgrade Actualizar - + Later Más tarde - + Local muted Silenciado localmente - + Trying to reconnect to the Jami daemon (jamid)… Intentando reconectar al deamon Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. No se pudo reconectar al deamon Jami (jamid). Jami se cerrará. - + Is swarm: Es enjambre: - + True Verdadero - + False Falso - + Add emoji Añadir emoji - + Send file Enviar archivo - + Leave audio message Dejar mensaje de audio - + Leave video message Dejar mensaje de vídeo - + Send Envíar - + Remove Eliminar - + Write to %1 Escribirle a %1 - + %1 has sent you a request for a conversation. %1 te ha enviado una solicitud de conversación. - + Hello, Would you like to join the conversation? Hola, ¿Te gustaría unirte a la conversación? - + You have accepted the conversation request Has aceptado la solicitud de conversación. - + Waiting until %1 connects to synchronize the conversation. Esperando hasta que %1 se conecte para sincronizar la conversación. - - + + Copy Copiar - + Participant is still muted on their device El participante continúa silenciado en su dispositivo - + You are still muted on your device Todavía continúas silenciada/o en tu dispositivo - + View full screen Ver en pantalla completa - + Stop sharing screen or file Dejar de compartir pantalla or archivo - + Display advanced settings Mostrar ajustes avanzados - + Hide advanced settings Ocultar ajustes avanzados - + Display banned contacts Mostrar contactos bloqueados - + Hide banned contacts Ocultar los usuarios bloqueados - + Layout Diseño - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table Tabla de atajos de teclado - + Conversation Conversación - + Call Llamadas - + Settings Configuraciones - + Report Bug Reportar Error - + Clear Limpiar - + Copied to clipboard! ¡Copiado al portapapeles! - + Receive Logs Recibir registros - + Archive Archivo - + Open file Abrir archivo - + Create your account from a backup Crear una cuenta desde un archivo de respaldo - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Puedes obtener un archivo haciendo click en "Crear respaldo de la cuenta" dentro de configuración de la cuenta. Esto creará un archivo .gz en tu dispositivo. - + Restore an account from backup Recuperar una cuenta desde un respaldo - + Enter Jami account password Ingrese la contraseña de la cuenta de Jami - + The PIN and the account password should be entered in your device within 10 minutes. El PIN y la contraseña de la cuenta deben ingresarse en tu dispositivo en menos de 10 minutos. - + Close Cerrar - + Enter your account password Ingresá la contraseña de la cuenta - + Add Device Añadir dispositivo - + Enter the password Ingresá la contraseña - + Enter current password Ingresá la contraseña actual - + Enter this account's password to confirm the removal of this device Ingresá la contraseña de la cuenta para confirmar la remoción del dispositivo - + Enter new password Ingresar nueva contraseña - + Confirm new password Confirmar nueva contraseña - + Change Cambio - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Elegí una imagen de avatar - + Import avatar from image file Importar avatar desde una imagen - + Take photo Tomar foto - + Reset Reiniciar - + Select a plugin to install Seleccioná un complemento para instalar - + Install plugin Instalar complemento - + Save profile Guardar perfil - + Information Información - + Enter the account password to confirm the removal of this device Introducí la contraseña de la cuenta para confirmar su eliminación de este dispositivo - + Select a screen to share Seleccioná una pantalla para compartir - + Select a window to share Seleccionar la ventana a compartir - + All Screens Todas las pantallas - + Screens Pantallas - + Windows Ventanas - + QR code Código QR - + Account QR Cuenta QR - + This is your Jami username. Copy and share it with your friends! Este es su nombre de usuario de Jami. ¡Cópielo y compártalo con sus amigos! - + Link this device to an existing account Enlazar este dispositivo a una cuenta existente - + Advanced features Funcionalidad avanzada - + Show advanced features Mostrar características avanzadas - + Connect to a JAMS server Conectar a un servidor JAMS - + Add a SIP account Agregar una cuenta SIP - + Error while creating your account. Check your credentials. Error al crear la cuenta. Comprobá tus credenciales. - + Clear Text Borrar texto - + Search Results Resultados de la búsqueda - + Delete Eliminar - + Set moderator Asignar moderador - + Unset moderator Desasignar moderador - + Maximize Maximizar - + Minimize Minimizar - + Hangup Colgar - + Conference moderation Moderación de conferencia - + Default moderators Moderadores por defecto - + Enable local moderators Habilitar moderadores locales - + Make all participants moderators Asignar a todos los participantes como moderadores - + Add default moderator Añadir moderador por defecto - + Remove default moderator Eliminar moderador por defecto @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Abrir listado de cuentas - + Focus conversations list Enfocar lista de conversaciones - + Requests list Lista de solicitudes - + Previous conversation Conversación anterior - + Next conversation Siguiente conversación - + Search bar Barra de búsqueda - + Full screen Pantalla completa - + Start an audio call Iniciar una llamada de audio - + Start a video call Iniciar una videollamada - + Clear history Borrar historial - + Block contact Bloquear contacto - + Remove conversation Eliminar conversación - + Accept contact request Aceptar solicitud de contacto - + Media settings Configuración de medios - + General settings Ajustes generales - + Account settings Configuración de la cuenta - + Plugin settings Ajustes de complementos - + Open account creation wizard Abrir el asistente de creación de cuenta - + Open keyboard shortcut table Abrir tabla de atajos de teclado - + Answer an incoming call Responder llamada entrante - + End call Terminar llamada - + Decline the call request Rechazar solicitud de llamada @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Cerrar - + &Quit &Salir - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Archivos de imagen - + All files Todos los archivos @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Encender/Apagar @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Elegir complemento - + Preferences Preferencias @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Cargar/Descargar @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Desinstalar complemento - + Reset preferences Restablecer las preferencias - + Ok Aceptar - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Archivos del complemento - + All files Todos los archivos - + Installed plugins Complementos instalados @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Editar preferencias @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Creado por: - + Artwork by: Diseñado por: - + Based on the SFLPhone project Basado en el projecto SFLPhone - + Sending Enviando - + Failure Error - + Sent Enviado - + Connecting Conectado - + Accept Aceptar - + Canceled Cancelado - + Unable to make contact No se pudo contactar - + Ongoing En curso - + Waiting for contact Esperando al contacto - + Incoming transfer Transferencia entrante - + Timed out waiting for contact Expiró el tiempo de espera al contacto - + Finished Finalizado - + %1 days ago Hace %1 días - + one day ago hace un día - + %1 hours ago Hace %1 horas - + one hour ago hace una hora - + %1 minutes ago Hace %1 minutos - + just now hace un momento @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Grabación de llamadas - + Always record calls Siempre grabar llamadas - + Quality Calidad - + Save in Guardar en @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Eliminar @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Pantalla @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Lllamdas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Sistema - + Enable dark theme Habilitar tema oscuro - + Enable desktop notifications Mostrar notificaciones @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Respuesta - + Decline Rechazar - + Open conversation Abrir conversación - + Accept Aceptar - + Refuse Rechazar @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identidad @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Predeterminado - + System Sistema diff --git a/translations/ring_client_windows_et.ts b/translations/ring_client_windows_et.ts index b52e08a3..0c819c01 100644 --- a/translations/ring_client_windows_et.ts +++ b/translations/ring_client_windows_et.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Sobib - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Sobib @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Lõpeta kõne - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Vestlused - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Sobib - - + + Cancel Tühista - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Tagasi - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone Mikrofon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing Ekraani jagamine - + Select screen sharing frame rate (frames per second) Ekraani jagamise kaadrisageduse valimine (kaadrit sekundis) - + no video videot pole - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation Kustuta vestlus - + Remove contact - + Block contact Blokeeri kontakt - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Sule täisekraanvaade - + Share screen Jaga ekraani - + Share window Jaga akent - + Share screen area Jaga ekraani piirkonda - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Tõsta käsi - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Liigu kerides vestluse lõppu - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Allalaaditavate failide kaust - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Kuva linkide eelvaated - + User interface language Kasutajaliidese keel - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Installeri allalaadimine tühistati - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup Impordi varundatud failist - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Saada fail - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Kuva täisekraanil - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Paigutus - + Vertical view Vertikaalne vaade - + Horizontal view Horisontaalne vaade - + Keyboard Shortcut Table - + Conversation - + Call Helista - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Valige jagamiseks ekraan - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Täisekraan - + Start an audio call Helista - + Start a video call Alusta videokõnet - + Clear history Kustuta ajalugu - + Block contact Blokeeri kontakt - + Remove conversation Kustuta vestlus - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Lõpeta kõne - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Sobib - + Cancel Tühista - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Ühendab - + Accept - + Canceled Tühistatud - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Süsteem - + Enable dark theme - + Enable desktop notifications Kuva teatised @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer vasta - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Vaikesäte - + System Süsteem diff --git a/translations/ring_client_windows_et_EE.ts b/translations/ring_client_windows_et_EE.ts index c4c8a018..331401cb 100644 --- a/translations/ring_client_windows_et_EE.ts +++ b/translations/ring_client_windows_et_EE.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Sobib - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Sobib @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Lõpeta kõne - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Vestlused - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Sobib - - + + Cancel Tühista - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Tagasi - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone Mikrofon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing Ekraani jagamine - + Select screen sharing frame rate (frames per second) Ekraani jagamise kaadrisageduse valimine (kaadrit sekundis) - + no video videot pole - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation Kustuta vestlus - + Remove contact - + Block contact Blokeeri kontakt - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Sule täisekraanvaade - + Share screen Jaga ekraani - + Share window Jaga akent - + Share screen area Jaga ekraani piirkonda - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Tõsta käsi - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Liigu kerides vestluse lõppu - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Allalaaditavate failide kaust - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Kuva linkide eelvaated - + User interface language Kasutajaliidese keel - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Installeri allalaadimine tühistati - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup Impordi varundatud failist - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Saada fail - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Kuva täisekraanil - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Paigutus - + Vertical view Vertikaalne vaade - + Horizontal view Horisontaalne vaade - + Keyboard Shortcut Table - + Conversation - + Call Helista - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Valige jagamiseks ekraan - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Täisekraan - + Start an audio call Helista - + Start a video call Alusta videokõnet - + Clear history Kustuta ajalugu - + Block contact Blokeeri kontakt - + Remove conversation Kustuta vestlus - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Lõpeta kõne - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Sobib - + Cancel Tühista - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Ühendab - + Accept - + Canceled Tühistatud - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Süsteem - + Enable dark theme - + Enable desktop notifications Kuva teatised @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer vasta - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Vaikesäte - + System Süsteem diff --git a/translations/ring_client_windows_eu.ts b/translations/ring_client_windows_eu.ts index 7caf6781..7ac2df63 100644 --- a/translations/ring_client_windows_eu.ts +++ b/translations/ring_client_windows_eu.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Gehitu kontua @@ -10,7 +10,7 @@ AccountProfile - + Profile Profila @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Ziurtagiri fitxategia - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Ziurtagiri fitxategia - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Sarrera-deia - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ados - - + + Success Ongi - - + + Error Errorea - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ados @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Gonbidapenak - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Bertsioa - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Kredituak - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Kontua ezabatu - + Authentication failed - + Password Pasahitza - + Username Erabiltzaile-izena - + Alias Ezizena - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Onartu - + Refuse Ukatu - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Segurtasuna - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate CA ziurtagiria - + User certificate Erabiltzaile-ziurtagiria - + Private key Gako pribatua - + Private key password Gako pribatuaren pasahitza - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Amaitu deia - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Sare errorea - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Estekatu gailua - + Conversations Elkarrizketak - + Enable Gaitu - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Sortu Jami kontua - + About Jami Jamiri buruz - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Ados - - + + Cancel Utzi - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Helbidea - + Port Ataka - + Media Multimedia - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Atzera - + Account Settings - + Account Kontua - - + + General Orokorra - + Plugin - + Audio/Video - + Audio Audioa - + Microphone Mikrofonoa - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Bideoa - + Select video device - + Device Gailua - + Resolution - + Select video resolution - + Enable hardware acceleration Gaitu hardware azelerazioa - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ez dago bideorik - + Backup account here - + Backup your account! - + Backup account Egin kontuaren babes-kopia - + Skip Jauzi - + Success Ongi - + Error Errorea - + Never show me this again Ez erakutsi gehiago - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Isiltzea - - + + Unmute Isiltzea desaktibatu - + Add participant Partaide gehitu - + Add participants - + Chat Txata - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Ebaki - + Paste Itsatsi - + Start video call Hasi bideo-deia - + Start audio call Hasi audio-deia - + Clear conversation - + Remove conversation Elkarrizketa ezabatu - + Remove contact Kendu kontaktua - + Block contact Blokeatu kontaktua - + Contact details Kontaktuaren xehetasunak - + Hold Esperoan - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Irten pantaila osoko ikuspegitik - + Share screen Partekatu pantaila - + Share window Partekatu leihoa - + Share screen area Partekatu pantailaren eremua - + Share file Partekatu fitxategia - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Sortu kontua - + Confirm password Berretsi pasahitza - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username Erabiltzaile-izen baliogabea - + Name already taken - + Username already taken - + Proxy Proxya - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Aldatu pasahitza - - + + Set password Ezarri pasahitza - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Deskargen karpeta - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Erakutsi esteken aurrebistak - + User interface language Erabiltzaile-interfazearen hizkuntza - + File transfer Fitxategi-transferentzia - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Erregistratu - + Incorrect password - + Save file Gorde fitxategia - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Eguneratzeak - + Update Eguneratu - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Bertan behera utzi da instalatzailearen deskarga - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN-a - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name Sartu zure izena - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Bidali fitxategia - + Leave audio message - + Leave video message - + Send Bidali - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiatu - + Participant is still muted on their device - + You are still muted on your device - + View full screen Pantaila osoko ikuspegia - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Diseinua - + Vertical view Ikuspegi bertikala - + Horizontal view Ikuspegi horizontala - + Keyboard Shortcut Table - + Conversation - + Call - + Settings Ezarpenak - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Ireki fitxategia - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Itxi - + Enter your account password - + Add Device Gehitu gailua - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo Atera argazkia - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Hautatu pantaila bat partekatzeko - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Bilaketaren emaitzak - + Delete Ezabatu - + Set moderator - + Unset moderator - + Maximize Maximizar - + Minimize Minimizatu - + Hangup Eseki - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ireki kontu-zerrenda - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Pantaila osoa - + Start an audio call - + Start a video call - + Clear history Garbitu historiala - + Block contact Blokeatu kontaktua - + Remove conversation Elkarrizketa ezabatu - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Amaitu deia - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Ados - + Cancel Utzi - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Konektatzen - + Accept Onartu - + Canceled Bertan behera utzita - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Deiak - - - - - - + + + + + + Contacts Kontaktuak @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistema - + Enable dark theme - + Enable desktop notifications Erakutsi jakinarazpenak @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer Erantzun - + Decline Ukatu - + Open conversation - + Accept Onartu - + Refuse Ukatu @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identitatea @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Lehenetsia - + System Sistema diff --git a/translations/ring_client_windows_fa.ts b/translations/ring_client_windows_fa.ts index cadeb999..4a28493e 100644 --- a/translations/ring_client_windows_fa.ts +++ b/translations/ring_client_windows_fa.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account افزودن حساب @@ -10,7 +10,7 @@ AccountProfile - + Profile نمایه @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files فایل‌های صوتی - + All files همه فایل‌ها @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File فایل گواهینامه - - - + + + All files همه فایل‌ها - + Key File فایل کلید @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File فایل گواهینامه - - - + + + All files همه فایل‌ها - + Key File فایل کلید @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings تنظیمات پیش‌رفته حساب @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts مخاطبان مسدود شده @@ -89,32 +89,32 @@ CallAdapter - + Missed call تماس از دست رفته - + Missed call with %1 - + me من - + Incoming call تماس ورودی - + %1 is calling you %1 در حال تماس با شماست - + is calling you در حال تماس با شماست @@ -122,17 +122,17 @@ ContactPicker - + Add to conference افزودن به نشست - + Transfer this call انتقال این تماس - + Add default moderator افزودن مدیر پیش‌فرض @@ -140,12 +140,12 @@ ConversationsAdapter - + New message پیام جدید - + Trust request درخواست اعتماد @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok خب - - + + Success موفق - - + + Error خطا - + Jami archive files فایل‌های بایگانی جمی - + All files همه فایل‌ها @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok خب @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id شناسه دستگاه @@ -218,2125 +218,2125 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation یافتن یک کاربر یا جستجو برای یک گفتگو - + Search your invitations جستجوی دعوت‌نامه‌های شما - + Invitations دعوت ها - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version نسخه - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits حامیان - + Display QR code نمایش کد QR - + Open settings باز‌کردن تنظیمات - + Close settings بستن تنظیمات - + Authentication required نیاز به احراز هویت - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server سرور JAMS - + Authenticate احراز هویت - + Delete account حذف حساب - + Authentication failed تأیید هویت شکست خورد - + Password گذرواژه - + Username نام کاربری - + Alias نام مستعار - + Call Settings تنظیمات تماس - + Allow incoming calls from unknown contacts اجازه تماس ورودی به مخاطبان ناشناخته - + In progress… در جریان... - + Accept پذیرش - + Refuse رد کردن - + Incoming audio call from {} تماس صوتی ورودی از {} - + Incoming video call from {} تماس تصویری ورودی از {} - + Convert your account into a rendezvous point حساب خود را به یک نقطه قرار ملاقات تبدیل کنید - + Automatically answer calls پاسخگویی خودکار تماس‌ها - + Enable custom ringtone فعال‌سازی صدای زنگ سفارشی - + Select custom ringtone انتخاب صدای زنگ سفارشی - + Add a custom ringtone افزودن یک صدای زنگ سفارشی - + Select a new ringtone انتخاب صدای زنگ جدید - + Voicemail پیامگیر صوتی - + Voicemail dial code کد شماره‌گیری پیام صوتی - + Security امنیت - + Encrypt media streams (SRTP) رمزگذاری جریان‌های مدیا (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) رمزگذاری مذاکره (TLS) - + CA certificate گواهی CA - + User certificate گواهی کاربر - + Private key کلید خصوصی - + Private key password گذرواژه کلید خصوصی - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method پروتکل روش TLS - + Audio input device selector انتخاب کننده دستگاه ورودی صوتی - + TLS server name نام سرور TLS - + Negotiation timeout (seconds) مهلت مذاکره (ثانیه) - + Select a private key انتخاب یک کلید خصوصی - + Select a user certificate انتخاب یک گواهی کاربر - + Registration expiration time (seconds) - + Use custom address and port استفاده از نشانی و پورت سفارشی - + Enable local peer discovery فعال‌سازی کاوش همتای محلی - + Audio and Video Settings تنظیمات صدا و ویدیو - + Frames per second فریم بر ثانیه - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call پایان دادن به تماس - + Pause call توقف تماس - + Resume call ازسرگیری تماس - + Pause video - + Resume video ازسرگیری فیلم - + Creating account… - + Encrypt account with password رمزگذاری حساب با گذرواژه - + Create a rendezvous point یک نقطه قرار ملاقات ایجاد کنید - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point یک نام برای نقطه قرار ملاقات خود انتخاب کنید - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators فعال‌سازی نشان‌های نوشتاری - - + + Network error خطای شبکه - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. پین را از حساب پیکربندی‌شده جمی دیگر وارد کنید. برای به دست آوردن یک پین، از ویژگی «برون‌برد حساب جمی» استفاده کنید. - + Link device پیوند این افزاره - + Conversations گفتگو‌ها - + Enable فعال‌سازی - + Display or hide preferences - + Add new plugin - + Select a file پرونده‌ای را برگزینید - + Select گزینش - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account ایجاد یک حساب جمی - + About Jami درباره جمی - + Decline contact request - + Accept contact request - + Automatically check for updates بررسی خودکار وجود بروزرسانی - + Ok خب - - + + Cancel لغو - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts فعال‌سازی رسیدهای خواندن - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity اتصال - + Auto Registration After Expired ثبت‌نام خودکار پس از انقضا - + Network interface رابط شبکه - + Use UPnP استفاده از UPnP - + Use TURN استفاده از TURN - + TURN address نشانی TURN - + TURN username نام کاربری TURN - + TURN password گذرواژه TURN - + TURN Realm - + Use STUN استفاده از STUN - + STUN address نشانی STUN - + Allow IP Auto Rewrite - + Public address - + Address نشانی - + Port پرت - + Media رسانه - + Enable video فعال سازی ویدیو - + Video Codecs کدک‌های ویدیویی - + Audio Codecs رمزینه‌های صوتی - + Name Server سرور نام - + SDP Session Negotiation (ICE Fallback) مذاکره جلسه SDP (عقبگرد ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration پکربندی OpenDHT - + Enable proxy فعال‌سازی پروکسی - + Proxy address آدرس پروکسی - + Bootstrap خود‌راه‌انداز(Bootstrap) - + Back بازگشت - + Account Settings تنظیمات حساب - + Account حساب - - + + General عمومی - + Plugin افزونه - + Audio/Video صدا/تصویر - + Audio صدا - + Microphone میکروفون - + Select audio input device دستگاه ورودی صوتی را انتخاب کنید - + Output device دستگاه خروجی - + Select audio output device دستگاه خروجی صدا را انتخاب کنید - + Ringtone device دستگاه صدای زنگ - + Select ringtone output device - + Audio manager تنظیمات صوتی - + Video ویدیو - + Select video device دستگاه ویدیویی را انتخاب کنید - + Device دستگاه - + Resolution کیفیت - + Select video resolution - + Enable hardware acceleration فعال‌سازی شتاب‌دهی سخت‌افزاری - + Preview unavailable پیش‌نمایش در‌دسترس نیست - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ویدیو موجود نیست - + Backup account here - + Backup your account! پشتیبان‌گیری از حساب شما - + Backup account پشتیبان‌گیری حساب - + Skip پرش - + Success موفق - + Error خطا - + Never show me this again هرگز این را دوباره به من نشان نده - + Recommended توصیه‌شده - + Jami archive files فایل‌های بایگانی جمی - + All files همه فایل‌ها - + Reinstate as contact - + name نام - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you در حال تماس با شماست - - + + Mute بی‌صدا کردن - - + + Unmute خروج از حالت بی‌صدا - + Add participant افزودن شرکت کننده - + Add participants - + Chat چت - + More options تنظیمات بیشتر - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator مدیر - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut برش - + Paste چسباندن - + Start video call شروع تماس ویدیویی - + Start audio call شروع تماس صوتی - + Clear conversation پاک کردن گفتگو - + Remove conversation حذف گفتگو - + Remove contact حذف مخاطب - + Block contact مسدودسازی مخاطب - + Contact details جزئیات مخاطب - + Hold نگه‌داشتن - + Sip input panel - + Transfer call - + Stop recording توقف ضبط - + Start recording - + Exit full screen خروج از حالت تمام صفحه برنامه - + Share screen اشتراک گذاری صفحه نمایش - + Share window پنجره اشتراک گذاری - + Share screen area اشتراک گذاری منطقه صفحه نمایش - + Share file هم‌رسانی فایل - + Select sharing method - + View plugin - + No video device - + N/A قابل اجرا نیست - + Lower hand - + Raise hand بالا بردن دست - + Hide chat view مخفی‌کردن نمای گفتگو - + Place audio call قرار تماس صوتی بگذار - + Place video call قرار تماس ویدیویی بگذار - + Show available plugins نمایش افزونه‌های موجود - + Add to conversations افزودن به گفتگو‌ها - + Jump to latest پرش به آخرین - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL آدرس URL سرور مدیریت حساب جمی (JAMS) را وارد کن - + Required ضروری - + Jami Account Management Server URL - + Enter your JAMS credentials اعتبار‌نامه JAMS خود را وارد کنید - + Connect اتصال - + Back to welcome page بازگشت به صفحه خوش‌آمد‌گویی - + Choose name - + Choose username - + Create account ایجاد حساب - + Confirm password تأیید گذرواژه - + Optional اختیاری - + Choose a username for your account یک نام کاربری برای حساب خود انتخاب کنید - + Choose a name یک نام انتخاب کنید - + Choose your username نام کاربری خود را انتخاب کنید - + Invalid name نام نامعتبر - + Invalid username نام کاربری نامعتبر - + Name already taken نام پیش از این گرفته شده ‌است - + Username already taken نام کاربری قبلا گرفته شده است - + Proxy پراکسی - + Server سرور - + Create SIP account ساخت حساب کاربری SIP - + Configure an existing SIP account پیکربندی یک حساب SIP موجود. - + Backup successful - + Backup failed پشتیبان گیری شکست خورد - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password تغییر گذرواژه - - + + Set password تعیین گذرواژه - + Change current password - + Backup account to a .gz file - + Enable account فعال سازی حساب کاربری - + Set username - + Registering name - + Register a username ثبت یک نام‌کاربری - + Register username ثبت نام کاربری - + Link a new device to this account - + Link another device پیوند یک دستگاه دیگر - + Exporting account… برون برد حساب کاربری... - + Remove Device حذف دستگاه - + Are you sure you wish to remove this device? اطمینان دارید که می‌خواهید این دستگاه را حذف کنید؟ - + Linked Devices دستگاه‌های پیوند‌داده‌شده - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name ذخیره نام جدید دستگاه - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications فعال سازی نوتیفیکیشن ها - + Enable dark theme - + Keep minimized on close در هنگام بستن کمینه نگه دار - + Run application on system startup - + Downloads directory پوشه دانلودها - + Choose download directory - + Record call ضبط تماس - + Chatview گپ - + Display hyperlink previews in the chatview نمایش پیش‌نمایش‌های پیوند - + User interface language زبان رابط کاربری - + File transfer انتقال فایل - + Allow incoming files from unknown contacts اجازه فایل‌های ورودی به مخاطبان ناشناخته - + Automatically accept incoming files پذیرش فایل‌های ورودی به صورت خودکار - + Accept transfer limit - + in MB, 0 = unlimited - + Register ثبت‌نام - + Incorrect password گذرواژه ناصحیح - + Save file ذخیره فایل - + Open location - + Install beta version - + Check for updates now به‌روزرسانی‌ها را همین الان بررسی کن - + Enable/Disable automatic updates - + toggle automatic updates - + Updates به‌روزرسانی‌ها - + Update بروزرسانی - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong مشکلی پیش آمد. - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop پایان - + Generating account… ایجاد حساب... - + Import from backup وارد کردن از پشتیبان - + PIN کد پین - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts نمایه فقط با مخاطبین به اشتراک گذاشته می‌شود - + Enter your name نام خود را وارد کنید - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to خوش آمدید به - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji شکلک اضافه کنید - + Send file ارسال فایل - + Leave audio message یک پیام صوتی بگذارید - + Leave video message یک پیام تصویری بگذارید - + Send ارسال - + Remove حذف کن - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy کپی - + Participant is still muted on their device - + You are still muted on your device - + View full screen مشاهده تمام صفحه - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts مخفی سازی مخاطبان مسدود شده - + Layout چیدمان - + Vertical view نمای عمودی - + Horizontal view نمای افقی - + Keyboard Shortcut Table - + Conversation - + Call برقراری تماس - + Settings تنظیمات - + Report Bug - + Clear پاک‌سازی - + Copied to clipboard! - + Receive Logs - + Archive بایگانی - + Open file باز کردن فایل - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. می‌توانید با کلیک روی "پشتیبان‌گیری حساب" در تنظیمات حساب،یک بایگانی تهیه کنید. این کار یک پرونده ‎.gz را در دستگاه شما ایجاد می‌کند. - + Restore an account from backup بازگردانی یک حساب از پشتیبان - + Enter Jami account password گذرواژه حساب جمی را وارد کنید - + The PIN and the account password should be entered in your device within 10 minutes. - + Close بستن - + Enter your account password گذرواژه حساب‌تان را وارد کنید - + Add Device اضافه‌کردن دستگاه - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device گذرواژه این حساب را برای تایید حذف این دستگاه وارد کنید - + Enter new password گذرواژه جدید را وارد کنید - + Confirm new password تایید گذرواژه جدید - + Change تغییر - + Confirm تایید - + Export برون‌ریزی - + Choose a picture as avatar - + Import avatar from image file - + Take photo عکس بگیرید! - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share یک صفحه نمایش را برای اشتراک گذاری انتخاب کنید - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! این نام کاربری Jami شما می باشد. آن را کپی کنید و با دوستان خود به اشتراک بگذارید! - + Link this device to an existing account پیوند این دستگاه به یک حساب کاربری موجود - + Advanced features ویژگی‌های پیش‌رفته - + Show advanced features - + Connect to a JAMS server اتصال یه سرور JAMS - + Add a SIP account افزودن یک حساب SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results نتایج جستجو - + Delete حذف - + Set moderator تعیین مدیریت - + Unset moderator لغو میدیریت - + Maximize به حداکثر رساندن - + Minimize کمینه کردن - + Hangup به صحبت تلفنی خاتمه دادن - + Conference moderation - + Default moderators - + Enable local moderators فعال‌سازی مدیران محلی - + Make all participants moderators - + Add default moderator افزودن مدیر پیش‌فرض - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list فهرست حساب کاربری را باز کنید - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen تمام صفحه - + Start an audio call شروع یک تماس صوتی - + Start a video call شروع یک تماس ویدیویی - + Clear history پاک‌سازی تاریخچه - + Block contact مسدودسازی مخاطب - + Remove conversation حذف گفتگو - + Accept contact request - + Media settings - + General settings تنظیمات کلی - + Account settings تنظیمات حساب کاربری - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call پایان دادن به تماس - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files همه فایل‌ها @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin انتخاب افزونه - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok خب - + Cancel لغو - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files همه فایل‌ها - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: ساخته‌شده توسط: - + Artwork by: اثر هنری توسط: - + Based on the SFLPhone project برمبنای پروژه SFLPhone - + Sending در حال ارسال - + Failure عدم موفقیت - + Sent - + Connecting در حال اتصال - + Accept پذیرش - + Canceled لغو شده - + Unable to make contact برقراری تماس امکان‌پذیر نیست - + Ongoing در جریان - + Waiting for contact در انتظار برقراری تماس - + Incoming transfer انتقال ورودی - + Timed out waiting for contact زمان انتظار برای تماس به پایان رسید - + Finished پایان یافته - + %1 days ago - + one day ago یک روز پیش - + %1 hours ago - + one hour ago یک ساعت پیش - + %1 minutes ago - + just now همین الان @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording ضبط تماس - + Always record calls همیشه تماس ها را ضبط کن - + Quality کیفیت - + Save in ذخیره در @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove حذف کن @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls تماس‌ها - - - - - - + + + + + + Contacts مخاطبان @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System سیستم - + Enable dark theme - + Enable desktop notifications نمایش اعلان‌ها @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer پاسخ - + Decline ردکردن - + Open conversation باز‌کردن گفتگو - + Accept پذیرش - + Refuse رد کردن @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity هویت @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 مگابیت در ثانی - + Default پیش فرض - + System سیستم diff --git a/translations/ring_client_windows_fa_IR.ts b/translations/ring_client_windows_fa_IR.ts index b27cab80..4994cf8e 100644 --- a/translations/ring_client_windows_fa_IR.ts +++ b/translations/ring_client_windows_fa_IR.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account افزودن حساب @@ -10,7 +10,7 @@ AccountProfile - + Profile نمایه @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files فایل‌های صوتی - + All files همه فایل‌ها @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File فایل گواهینامه - - - + + + All files همه فایل‌ها - + Key File فایل کلید @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File فایل گواهینامه - - - + + + All files همه فایل‌ها - + Key File فایل کلید @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings تنظیمات پیش‌رفته حساب @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts مخاطبان مسدود شده @@ -89,32 +89,32 @@ CallAdapter - + Missed call تماس از دست رفته - + Missed call with %1 - + me من - + Incoming call تماس ورودی - + %1 is calling you %1 در حال تماس با شماست - + is calling you در حال تماس با شماست @@ -122,17 +122,17 @@ ContactPicker - + Add to conference افزودن به نشست - + Transfer this call انتقال این تماس - + Add default moderator افزودن مدیر پیش‌فرض @@ -140,12 +140,12 @@ ConversationsAdapter - + New message پیام جدید - + Trust request درخواست اعتماد @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok قبول - - + + Success موفق - - + + Error خطا - + Jami archive files فایل‌های بایگانی جمی - + All files همه فایل‌ها @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok قبول @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id شناسه دستگاه @@ -218,2125 +218,2125 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation یافتن یک کاربر یا جستجو برای یک گفتگو - + Search your invitations جستجوی دعوت‌نامه‌های شما - + Invitations دعوت ها - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version نسخه - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits دست‌اندرکاران - + Display QR code نمایش کد QR - + Open settings باز‌کردن تنظیمات - + Close settings بستن تنظیمات - + Authentication required نیاز به احراز هویت - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server سرور JAMS - + Authenticate احراز هویت - + Delete account حذف حساب - + Authentication failed تأیید هویت شکست خورد - + Password گذرواژه - + Username نام کاربری - + Alias نام مستعار - + Call Settings تنظیمات تماس - + Allow incoming calls from unknown contacts اجازه تماس ورودی به مخاطبان ناشناخته - + In progress… در جریان... - + Accept پذیرش - + Refuse رد کردن - + Incoming audio call from {} تماس صوتی ورودی از {} - + Incoming video call from {} تماس تصویری ورودی از {} - + Convert your account into a rendezvous point حساب خود را به یک نقطه قرار ملاقات تبدیل کنید - + Automatically answer calls پاسخگویی خودکار تماس‌ها - + Enable custom ringtone فعال‌سازی صدای زنگ سفارشی - + Select custom ringtone انتخاب صدای زنگ سفارشی - + Add a custom ringtone افزودن یک صدای زنگ سفارشی - + Select a new ringtone انتخاب صدای زنگ جدید - + Voicemail پیامگیر صوتی - + Voicemail dial code کد شماره‌گیری پیام صوتی - + Security امنیت - + Encrypt media streams (SRTP) رمزگذاری جریان‌های مدیا (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) رمزگذاری مذاکره (TLS) - + CA certificate گواهی CA - + User certificate گواهی کاربر - + Private key کلید خصوصی - + Private key password گذرواژه کلید خصوصی - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method پروتکل روش TLS - + Audio input device selector انتخاب کننده دستگاه ورودی صوتی - + TLS server name نام سرور TLS - + Negotiation timeout (seconds) مهلت مذاکره (ثانیه) - + Select a private key انتخاب یک کلید خصوصی - + Select a user certificate انتخاب یک گواهی کاربر - + Registration expiration time (seconds) - + Use custom address and port استفاده از نشانی و پورت سفارشی - + Enable local peer discovery فعال‌سازی کاوش همتای محلی - + Audio and Video Settings تنظیمات صدا و ویدیو - + Frames per second فریم بر ثانیه - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call پایان تماس - + Pause call توقف تماس - + Resume call ازسرگیری تماس - + Pause video - + Resume video ازسرگیری فیلم - + Creating account… - + Encrypt account with password رمزگذاری حساب با گذرواژه - + Create a rendezvous point یک نقطه قرار ملاقات ایجاد کنید - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point یک نام برای نقطه قرار ملاقات خود انتخاب کنید - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators فعال‌سازی نشان‌های نوشتاری - - + + Network error خطای شبکه - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. پین را از حساب پیکربندی‌شده جمی دیگر وارد کنید. برای به دست آوردن یک پین، از ویژگی «برون‌برد حساب جمی» استفاده کنید. - + Link device پیوند این افزاره - + Conversations گفتگو‌ها - + Enable فعال‌سازی - + Display or hide preferences - + Add new plugin - + Select a file پرونده‌ای را برگزینید - + Select گزینش - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account ایجاد یک حساب جمی - + About Jami درباره جمی - + Decline contact request - + Accept contact request - + Automatically check for updates بررسی خودکار وجود بروزرسانی - + Ok قبول - - + + Cancel لغو - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts فعال‌سازی رسیدهای خواندن - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity اتصال - + Auto Registration After Expired ثبت‌نام خودکار پس از انقضا - + Network interface رابط شبکه - + Use UPnP استفاده از UPnP - + Use TURN استفاده از TURN - + TURN address نشانی TURN - + TURN username نام کاربری TURN - + TURN password گذرواژه TURN - + TURN Realm - + Use STUN استفاده از STUN - + STUN address نشانی STUN - + Allow IP Auto Rewrite - + Public address - + Address نشانی - + Port پرت - + Media رسانه - + Enable video فعال سازی ویدیو - + Video Codecs کدک‌های ویدیویی - + Audio Codecs رمزینه‌های صوتی - + Name Server سرور نام - + SDP Session Negotiation (ICE Fallback) مذاکره جلسه SDP (عقبگرد ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration پکربندی OpenDHT - + Enable proxy فعال‌سازی پروکسی - + Proxy address آدرس پروکسی - + Bootstrap خود‌راه‌انداز(Bootstrap) - + Back بازگشت - + Account Settings تنظیمات حساب - + Account حساب - - + + General عمومی - + Plugin افزونه - + Audio/Video صدا/تصویر - + Audio صدا - + Microphone میکروفون - + Select audio input device دستگاه ورودی صوتی را انتخاب کنید - + Output device دستگاه خروجی - + Select audio output device دستگاه خروجی صدا را انتخاب کنید - + Ringtone device دستگاه صدای زنگ - + Select ringtone output device - + Audio manager تنظیمات صوتی - + Video ویدیو - + Select video device دستگاه ویدیویی را انتخاب کنید - + Device دستگاه - + Resolution کیفیت - + Select video resolution - + Enable hardware acceleration فعال‌سازی شتاب‌دهی سخت‌افزاری - + Preview unavailable پیش‌نمایش در‌دسترس نیست - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ویدیو موجود نیست - + Backup account here - + Backup your account! پشتیبان‌گیری از حساب شما - + Backup account پشتیبان‌گیری حساب - + Skip پرش - + Success موفق - + Error خطا - + Never show me this again هرگز این را دوباره به من نشان نده - + Recommended توصیه‌شده - + Jami archive files فایل‌های بایگانی جمی - + All files همه فایل‌ها - + Reinstate as contact - + name نام - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you در حال تماس با شماست - - + + Mute بی‌صدا کردن - - + + Unmute خروج از حالت بی‌صدا - + Add participant افزودن شرکت کننده - + Add participants - + Chat چت - + More options تنظیمات بیشتر - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator مدیر - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut برش - + Paste چسباندن - + Start video call شروع تماس ویدیویی - + Start audio call شروع تماس صوتی - + Clear conversation پاک کردن گفتگو - + Remove conversation حذف گفتگو - + Remove contact حذف مخاطب - + Block contact مسدودسازی مخاطب - + Contact details جزئیات مخاطب - + Hold نگه‌داشتن - + Sip input panel - + Transfer call - + Stop recording توقف ضبط - + Start recording - + Exit full screen خروج از حالت تمام صفحه برنامه - + Share screen اشتراک گذاری صفحه نمایش - + Share window پنجره اشتراک گذاری - + Share screen area اشتراک گذاری منطقه صفحه نمایش - + Share file هم‌رسانی فایل - + Select sharing method - + View plugin - + No video device - + N/A قابل اجرا نیست - + Lower hand - + Raise hand بالا بردن دست - + Hide chat view مخفی‌کردن نمای گفتگو - + Place audio call قرار تماس صوتی بگذار - + Place video call قرار تماس ویدیویی بگذار - + Show available plugins نمایش افزونه‌های موجود - + Add to conversations افزودن به گفتگو‌ها - + Jump to latest پرش به آخرین - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL آدرس URL سرور مدیریت حساب جمی (JAMS) را وارد کن - + Required ضروری - + Jami Account Management Server URL - + Enter your JAMS credentials اعتبار‌نامه JAMS خود را وارد کنید - + Connect اتصال - + Back to welcome page بازگشت به صفحه خوش‌آمد‌گویی - + Choose name - + Choose username - + Create account ایجاد حساب - + Confirm password تأیید گذرواژه - + Optional اختیاری - + Choose a username for your account یک نام کاربری برای حساب خود انتخاب کنید - + Choose a name یک نام انتخاب کنید - + Choose your username نام کاربری خود را انتخاب کنید - + Invalid name نام نامعتبر - + Invalid username نام کاربری نامعتبر - + Name already taken نام پیش از این گرفته شده ‌است - + Username already taken نام کاربری قبلا گرفته شده است - + Proxy پراکسی - + Server سرور - + Create SIP account ساخت حساب کاربری SIP - + Configure an existing SIP account پیکربندی یک حساب SIP موجود. - + Backup successful - + Backup failed پشتیبان گیری شکست خورد - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password تغییر گذرواژه - - + + Set password تعیین گذرواژه - + Change current password - + Backup account to a .gz file - + Enable account فعال سازی حساب کاربری - + Set username - + Registering name - + Register a username ثبت یک نام‌کاربری - + Register username ثبت نام کاربری - + Link a new device to this account - + Link another device پیوند یک دستگاه دیگر - + Exporting account… برون برد حساب کاربری... - + Remove Device حذف دستگاه - + Are you sure you wish to remove this device? اطمینان دارید که می‌خواهید این دستگاه را حذف کنید؟ - + Linked Devices دستگاه‌های پیوند‌داده‌شده - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name ذخیره نام جدید دستگاه - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications فعال سازی نوتیفیکیشن ها - + Enable dark theme - + Keep minimized on close در هنگام بستن کمینه نگه دار - + Run application on system startup - + Downloads directory پوشه دانلودها - + Choose download directory - + Record call ضبط تماس - + Chatview گپ - + Display hyperlink previews in the chatview نمایش پیش‌نمایش‌های پیوند - + User interface language زبان رابط کاربری - + File transfer انتقال فایل - + Allow incoming files from unknown contacts اجازه فایل‌های ورودی به مخاطبان ناشناخته - + Automatically accept incoming files پذیرش فایل‌های ورودی به صورت خودکار - + Accept transfer limit - + in MB, 0 = unlimited - + Register ثبت‌نام - + Incorrect password گذرواژه ناصحیح - + Save file ذخیره فایل - + Open location - + Install beta version - + Check for updates now به‌روزرسانی‌ها را همین الان بررسی کن - + Enable/Disable automatic updates - + toggle automatic updates - + Updates به‌روزرسانی‌ها - + Update بروزرسانی - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong مشکلی پیش آمد. - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop پایان - + Generating account… ایجاد حساب... - + Import from backup وارد کردن از پشتیبان - + PIN پین - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts نمایه فقط با مخاطبین به اشتراک گذاشته می‌شود - + Enter your name نام خود را وارد کنید - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to خوش آمدید به - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji شکلک اضافه کنید - + Send file ارسال فایل - + Leave audio message یک پیام صوتی بگذارید - + Leave video message یک پیام تصویری بگذارید - + Send ارسال - + Remove حذف کن - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy کپی - + Participant is still muted on their device - + You are still muted on your device - + View full screen مشاهده تمام صفحه - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts مخفی سازی مخاطبان مسدود شده - + Layout چیدمان - + Vertical view نمای عمودی - + Horizontal view نمای افقی - + Keyboard Shortcut Table - + Conversation - + Call برقراری تماس - + Settings تنظیمات - + Report Bug - + Clear پاک‌سازی - + Copied to clipboard! - + Receive Logs - + Archive بایگانی - + Open file باز کردن فایل - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. می‌توانید با کلیک روی "پشتیبان‌گیری حساب" در تنظیمات حساب،یک بایگانی تهیه کنید. این کار یک پرونده ‎.gz را در دستگاه شما ایجاد می‌کند. - + Restore an account from backup بازگردانی یک حساب از پشتیبان - + Enter Jami account password گذرواژه حساب جمی را وارد کنید - + The PIN and the account password should be entered in your device within 10 minutes. - + Close بستن - + Enter your account password گذرواژه حساب‌تان را وارد کنید - + Add Device اضافه‌کردن دستگاه - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device گذرواژه این حساب را برای تایید حذف این دستگاه وارد کنید - + Enter new password گذرواژه جدید را وارد کنید - + Confirm new password تایید گذرواژه جدید - + Change تغییر - + Confirm تایید - + Export برون‌ریزی - + Choose a picture as avatar - + Import avatar from image file - + Take photo عکس بگیرید! - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share یک صفحه نمایش را برای اشتراک گذاری انتخاب کنید - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! این نام کاربری Jami شما می باشد. آن را کپی کنید و با دوستان خود به اشتراک بگذارید! - + Link this device to an existing account پیوند این دستگاه به یک حساب کاربری موجود - + Advanced features ویژگی‌های پیش‌رفته - + Show advanced features - + Connect to a JAMS server اتصال یه سرور JAMS - + Add a SIP account افزودن یک حساب SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results نتایج جستجو - + Delete حذف - + Set moderator تعیین مدیریت - + Unset moderator لغو میدیریت - + Maximize به حداکثر رساندن - + Minimize کمینه کردن - + Hangup به صحبت تلفنی خاتمه دادن - + Conference moderation - + Default moderators - + Enable local moderators فعال‌سازی مدیران محلی - + Make all participants moderators - + Add default moderator افزودن مدیر پیش‌فرض - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list فهرست حساب کاربری را باز کنید - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen تمام صفحه - + Start an audio call شروع یک تماس صوتی - + Start a video call شروع یک تماس ویدیویی - + Clear history پاک‌سازی تاریخچه - + Block contact مسدودسازی مخاطب - + Remove conversation حذف گفتگو - + Accept contact request - + Media settings - + General settings تنظیمات کلی - + Account settings تنظیمات حساب کاربری - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call پایان تماس - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files همه فایل‌ها @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin انتخاب افزونه - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok قبول - + Cancel لغو - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files همه فایل‌ها - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: ساخته‌شده توسط: - + Artwork by: اثر هنری توسط: - + Based on the SFLPhone project برمبنای پروژه SFLPhone - + Sending در حال ارسال - + Failure عدم موفقیت - + Sent - + Connecting در حال اتصال - + Accept پذیرش - + Canceled لغو شده - + Unable to make contact برقراری تماس امکان‌پذیر نیست - + Ongoing در جریان - + Waiting for contact در انتظار برقراری تماس - + Incoming transfer انتقال ورودی - + Timed out waiting for contact زمان انتظار برای تماس به پایان رسید - + Finished پایان یافته - + %1 days ago - + one day ago یک روز پیش - + %1 hours ago - + one hour ago یک ساعت پیش - + %1 minutes ago - + just now همین الان @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording ضبط تماس - + Always record calls همیشه تماس ها را ضبط کن - + Quality کیفیت - + Save in ذخیره در @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove حذف کن @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls تماس‌ها - - - - - - + + + + + + Contacts مخاطبان @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System سیستم - + Enable dark theme - + Enable desktop notifications نمایش اعلان‌ها @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer پاسخ - + Decline ردکردن - + Open conversation باز‌کردن گفتگو - + Accept پذیرش - + Refuse رد کردن @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity هویت @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 مگابیت در ثانی - + Default پیش فرض - + System سیستم diff --git a/translations/ring_client_windows_fi.ts b/translations/ring_client_windows_fi.ts index 826acc58..83ad63d8 100644 --- a/translations/ring_client_windows_fi.ts +++ b/translations/ring_client_windows_fi.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Lisää tunnus @@ -10,7 +10,7 @@ AccountProfile - + Profile Profiili @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Äänitiedostot - + All files Kaikki tiedostot @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Varmennetiedosto - - - + + + All files Kaikki tiedostot - + Key File Avaintiedosto @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Varmennetiedosto - - - + + + All files Kaikki tiedostot - + Key File Avaintiedosto @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Tunnuksen lisäasetukset @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Estetyt yhteystiedot @@ -89,32 +89,32 @@ CallAdapter - + Missed call Vastaamaton puhelu - + Missed call with %1 - + me minä - + Incoming call Saapuva puhelu - + %1 is calling you %1 soittaa sinulle - + is calling you soittaa sinulle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Lisää kokoukseen - + Transfer this call Siirrä tämä puhelu - + Add default moderator Lisää oletusvalvoja @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Uusi viesti - + Trust request Luottamuspyyntö @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Vahvista - - + + Success Onnistui - - + + Error Virhe - + Jami archive files Jami pakatut tiedostot - + All files Kaikki tiedostot @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Ei yhdisty uudelleen taustapalveluun Jami (jamid). Jami sulkeutuu nyt. - + Trying to reconnect to the Jami daemon (jamid)… Yrittää yhteyttä uudelleen taustapalveluun Jami (jamid)... - + Ok Vahvista @@ -211,7 +211,7 @@ Jami sulkeutuu nyt. DeviceItemDelegate - + Device Id Laitteen Id @@ -219,2130 +219,2130 @@ Jami sulkeutuu nyt. JamiStrings - + Find a user or search for a conversation Etsi käyttäjä tai hae keskustelua - + Search your invitations Hae kutsuistasi - + Invitations Kutsut - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami on ilmainen ohjelmisto yleiseen viestintään, jossa kunnioitetaan käyttäjän vapauksia ja yksityisyyttä. - + Version Versio - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami on ilmainen ohjelmisto yleiseen viestintään, jossa kunnioitetaan käyttäjän vapauksia ja yksityisyyttä. - + Credits Tekijät - + Display QR code Näytä QR-koodi - + Open settings Avaa asetukset - + Close settings Sulje asetukset - + Authentication required Todennus vaaditaan - + Your session has expired or been revoked on this device. Please enter your password. Istunto on vanhentunut tai peruutettu tällä laitteella. Anna salasanasi. - + JAMS server JAMS palvelin - + Authenticate Todennus - + Delete account Poista tunnus - + Authentication failed Todennusvirhe - + Password Salasana - + Username Käyttäjänimi - + Alias Lempinimi - + Call Settings Puheluasetukset - + Allow incoming calls from unknown contacts Salli tuntemattomien yhteyshenkilöiden saapuvat puhelut - + In progress… Meneillään… - + Accept Hyväksy - + Refuse Kieltäydy - + Incoming audio call from {} Saapuva puhelu {} - + Incoming video call from {} Saapuva videopuhelu {} - + Convert your account into a rendezvous point Muunna tunnus tapaamispaikaksi - + Automatically answer calls Vastaa puheluihin automaattisesti - + Enable custom ringtone Aseta oma soittoääni - + Select custom ringtone Valitse oma soittoääni - + Add a custom ringtone Lisää oma soittoääni - + Select a new ringtone Valitse uusi soittoääni - + Voicemail Ääniviesti - + Voicemail dial code Vastaajan valintakoodi - + Security Turvallisuus - + Encrypt media streams (SRTP) Salattu mediavirta (SRTP) - + Enable SDES key exchange Ota käyttöön SDES-avainten vaihto - + Allow fallback on RTP Salli paluu RTP:hen - + Encrypt negotiation (TLS) Salaa neuvottelu (TLS) - + CA certificate CA-varmenne - + User certificate Käyttäjävarmenne - + Private key Henkilökohtainen salausavain - + Private key password Henkilökohtaisen salausavaimen salasana - + Verify certificates for incoming TLS connections Tarkista saapuvien TLS-yhteyksien varmenteet - + Verify server TLS certificates Tarkista palvelimen TLS-varmenteet - + Require certificate for incoming TLS connections Vaadi varmenne saapuville TLS-yhteyksille - + TLS protocol method Menetelmä TLS-protokolla - + Audio input device selector Äänen sisääntulon valitsin - + TLS server name TLS-palvelimen nimi - + Negotiation timeout (seconds) Neuvottelun aikakatkaisu (sekunteja) - + Select a private key Valitse salausavain - + Select a user certificate Valitse käyttäjän varmenne - + Registration expiration time (seconds) Rekisteröinnin vanhentumisaika (sekuntia) - + Use custom address and port Käytä mukautettua osoitetta ja porttia - + Enable local peer discovery Salli paikallisen vertaisverkon haku - + Audio and Video Settings Ääni- ja videoasetukset - + Frames per second Kuvaa sekunnissa - + Select video frame rate (frames per second) Valitse videon nopeus (kuvaa sekunnissa) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Sinun tunnus on olemassa vain tällä laitteella. Jos kadotat laitteen tai poistat sovelluksen asennuksen, tunnus poistetaan eikä sitä voi palauttaa. Voit varmuuskopioida tunnuksen nyt tai myöhemmin. - - + + End call Lopeta puhelu - + Pause call Keskeytä puhelu - + Resume call Jatka puhelua - + Pause video Keskeytä video - + Resume video Jatka videota - + Creating account… Luodaan tunnusta... - + Encrypt account with password Salaa tunnus salasanalla - + Create a rendezvous point Luo tapaamispaikka - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Valitse salasana, joka salaa tunnuksen tällä laitteella. Huomaa, että salasanaa ei voi palauttaa. - + Choose a name for your rendezvous point Valitse tapaamispaikan nimi - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Jos sinun tunnusta ei ole varmuuskopioitu tai lisätty toiseen laitteeseen, tunnus ja rekisteröity nimi menetetään lopullisesti. - + Launch at startup Käynnistä käynnistettäessä - + Enable typing indicators Kirjoittamisen merkki käyttöön - - + + Network error Verkkovirhe - + SSL error SSL virhe - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Syötä toisen määritetyn Jami tunnuksen PIN-koodi. Käytä PIN-koodin "Yhdistä toinen laite" -ominaisuutta. - + Link device Linkitä laite - + Conversations Keskustelu - + Enable Päällä - + Display or hide preferences Näytä tai piilota asetukset - + Add new plugin Lisää uusi laajennus - + Select a file Valitse tiedosto - + Select Valitse - + Choose image file Valitse kuvatiedosto - + Enter the rendezvous point's name Anna kohtaamispaikan nimi - + Creating rendezvous point… Luodaan kohtaamispaikkaa… - + Create account from Jami Account Management Server (JAMS) Luo tunnus Jami Account Management Server (JAMS) palvelimeen - + Create new rendezvous point Luo uusi kohtaamispaikka - + Create a Jami account Luo Jami tunnus - + About Jami Tietoa Jamista - + Decline contact request Hylkää yhteyspyyntö - + Accept contact request Hyväksy yhteyspyyntö - + Automatically check for updates Tarkista päivitykset automaattisesti - + Ok Vahvista - - + + Cancel Peruuta - + Accept in audio Hyväksy äänellä - + Accept in video Hyväksy videolla - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Katsot keskustelua, josta kaikki muut osallistujat ovat poistuneet. Uudet toimet eivät ole mahdollisia. - + Start new conversation Aloita uusi keskustelu - + Chat Settings Keskustelun asetukset - + Enable read receipts Lukukuittaukset käyttöön - + Send and receive receipts indicating that a message have been displayed Lähetä ja vastaanota kuittaus, jotka ilmaisee, että viesti on nähty. - + Select a CA certificate Valitse CA-varmenne - + Connectivity Yhteydet - + Auto Registration After Expired Rekisteröinnin vanhentumisen jälkeen - + Network interface Verkkoliitäntä - + Use UPnP Käytä UPnP - + Use TURN Käytä TURNia - + TURN address TURN osoite - + TURN username TURN käyttäjänimi - + TURN password TURN salasana - + TURN Realm TURN alueella - + Use STUN Käytä STUNia - + STUN address STUN osoite - + Allow IP Auto Rewrite Salli automaattinen IP-uudelleenkirjoittaminen - + Public address Julkinen osoite - + Address Osoite - + Port Portti - + Media Media - + Enable video Video käyttöön - + Video Codecs Videokoodekit - + Audio Codecs Äänikoodekit - + Name Server Nimipalvelin - + SDP Session Negotiation (ICE Fallback) SDP-istunnon neuvottelut (ICE Fallback) - + Only used during negotiation in case ICE is not supported Käytetään vain neuvottelun aikana, jos ICE ei ole tuettu - + Audio RTP minimum Port Äänelle RTP alin portti - + Audio RTP maximum Port Äänelle RTP ylin portti - + Video RTP minimum Port Videolle RTP alin portti - + Video RTP maximum port Videolle RTP ylin portti - + Connect to other DHT nodes advertising on your local network. Yhdistä muihin DHT-solmuihin, jotka ilmoittautuu paikallisessa verkossa. - + OpenDHT Configuration OpenDHT-määritykset - + Enable proxy Proxy käyttöön - + Proxy address Proxy osoite - + Bootstrap Bootstrap - + Back Takaisin - + Account Settings Tunnuksen asetukset - + Account Tunnus - - + + General Yleiset - + Plugin Laajennus - + Audio/Video Ääni/Video - + Audio Ääni - + Microphone Mikrofoni - + Select audio input device Valitse äänen sisääntulo - + Output device Ulostulon laite - + Select audio output device Valitse äänen ulostulo - + Ringtone device Soittoäänen laite - + Select ringtone output device Valitse soittoäänen ulostulo - + Audio manager Äänenhallinta - + Video Video - + Select video device Valitse laite videolle - + Device Laite - + Resolution Tarkkuus - + Select video resolution Valitse videon tarkkuus - + Enable hardware acceleration Kytke laitteiston kiihdytys - + Preview unavailable Esikatselua ei käytettävissä - + Screen Sharing Näytön jakaminen - + Select screen sharing frame rate (frames per second) Valitse näytön jakamisen taajuus (kuvaa sekunnissa) - + no video ei videota - + Backup account here Varmuuskopioi tunnus täällä - + Backup your account! Varmuuskopioi tunnuksesi! - + Backup account Varmuuskopioi tunnus - + Skip Ohita - + Success Onnistui - + Error Virhe - + Never show me this again Älä näytä tätä uudestaan - + Recommended Suositus - + Jami archive files Jami pakatut tiedostot - + All files Kaikki tiedostot - + Reinstate as contact Palauta yhteystiedot - + name nimi - + Identifier Tunniste - + is recording tallentaa - + are recording tallentavat - + Peer stopped recording Vertaisverkkossa tallennus lopetettu - + is calling you soittaa sinulle - - + + Mute Mykistä - - + + Unmute Poista mykistys - + Add participant Lisää osannottaja - + Add participants Lisää osallistujia - + Chat keskustelu - + More options Lisää vaihtoehtoja - + Mosaic Mosaiikki - + You are still muted by moderator Valvoja mykistää sinut edelleen - + You are muted by a moderator Valvoja mykistää sinut - + Moderator Valvoja - + Host Kone - + Local and Moderator muted Paikallinen ja valvoja mykistetty - + Moderator muted Valvoja mykistetty - + Not muted Ei mykistetty - + Cut Leikkaa - + Paste Liitä - + Start video call Aloita videopuhelu - + Start audio call Aloita äänipuhelu - + Clear conversation Tyhjennä keskustelu - + Remove conversation Poista keskustelu - + Remove contact Poista yhteystieto - + Block contact Estä yhteystieto - + Contact details Keskustelun tiedot - + Hold Laita pitoon - + Sip input panel Sip-kirjoitusalue - + Transfer call Siirrä puhelu - + Stop recording Lopeta tallennus - + Start recording Aloita tallennus - + Exit full screen Poistu koko näytöstä - + Share screen Jaa näyttö - + Share window Jaa ikkuna - + Share screen area Jaa osa näytöstä - + Share file Jaa tiedosto - + Select sharing method Valitse jakamistapa - + View plugin Näytä laajennus - + No video device Ei videolaitetta - + N/A Ei saatavissa - + Lower hand Käsi alas - + Raise hand Käsi ylös - + Hide chat view Piilota keskustelu - + Place audio call Aloita äänipuhelu - + Place video call Aloita videopuhelu - + Show available plugins Näytä saatavat laajennukset - + Add to conversations Lisää keskusteluihin - + Jump to latest Vieritä keskustelun loppuun - + {} is typing… {} kirjoittaa... - + {} are typing… {} kirjoittavat… - + Several people are typing… Useat kirjoittavat… - + and ja - + Enter Jami Account Management Server (JAMS) URL Anna Jami Account Management Serverin (JAMS) verkko-osoite - + Required Vaaditaan - + Jami Account Management Server URL Jami Account Management Server verkko-osoite - + Enter your JAMS credentials Anna JAMS-tunnuksesi - + Connect Yhdistä - + Back to welcome page Takaisin tervetulosivulle - + Choose name Valitse nimi - + Choose username Valitse käyttäjänimi - + Create account Luo tunnus - + Confirm password Varmista salasana - + Optional Valinnainen - + Choose a username for your account Valitse tunnuksellesi käyttäjänimi - + Choose a name Valitse nimi - + Choose your username Valitse käyttäjänimesi - + Invalid name Virheellinen nimi - + Invalid username Käyttäjätunnus ei kelpaa - + Name already taken Nimi on jo varattu - + Username already taken käyttäjätunnus on varattu - + Proxy Välityspalvelin - + Server Palvelin - + Create SIP account Luo SIP tunnus - + Configure an existing SIP account Määritä olemassa oleva SIP tunnus - + Backup successful Varmuuskopiointi onnistui - + Backup failed Varmuuskopiointi epäonnistui - + Password changed successfully Salasana vaihdettu onnistuneesti - + Password change failed Salasanan vaihto epäonnistui - + Password set successfully Salasana asetettu onnistuneesti - + Password set failed Salasanan asettaminen epäonnistui - + Change password Vaihda salasana - - + + Set password Aseta salasana - + Change current password Vaihda nykyinen salasana - + Backup account to a .gz file Varmuuskopioi tunnus .gz-tiedostoon - + Enable account Hyväksy tunnus - + Set username Aseta käyttäjänimi - + Registering name Rekisteröidään nimeä - + Register a username Rekisteröi käyttäjänimi - + Register username Rekisteröi käyttäjänimi - + Link a new device to this account Linkitä uusi laite tähän tunnukseen - + Link another device Linkitä toinen laite - + Exporting account… Viedään tiliä... - + Remove Device Poista laite - + Are you sure you wish to remove this device? Haluatko varmasti poistaa tämän laitteen? - + Linked Devices Linkitetyt laitteet - + Your PIN is: Sinun PIN on: - + Error connecting to the network. Please try again later. Virhe yhdistettäessä verkkoon. Yritä myöhemmin uudelleen. - + Do you really want to delete this account? Haluatko varmasti poistaa tämän tunnuksen? - + Save new device name Tallenna uuden laitteen nimi - + Edit device name Muokkaa laitteen nimeä - + Unlink device from account Poista laitteen linkitys tunnukselta - + Select a folder Valitse kansio - + Enable notifications Ota ilmoitukset käyttöön - + Enable dark theme Käytä tummaa teemaa - + Keep minimized on close Pidä pienennettynä suljettaessa - + Run application on system startup Aja sovellus järjestelmän käynnistyksen yhteydessä - + Downloads directory Lataukset hakemisto - + Choose download directory Valitse lataukset hakemisto - + Record call Tallenna puhelu - + Chatview Keskustelunäkymä - + Display hyperlink previews in the chatview Näytä linkkien esikatselut - + User interface language Käyttöliittymän kieli - + File transfer Tiedostonsiirto - + Allow incoming files from unknown contacts Salli saapuvat tiedostot tuntemattomilta - + Automatically accept incoming files Hyväksy saapuvat tiedostot automaattisesti - + Accept transfer limit Hyväksy siirtoraja - + in MB, 0 = unlimited megatavuina, 0 = rajoittamaton - + Register Rekistöröi - + Incorrect password Väärä salasana - + Save file Tallenna tiedosto - + Open location Avaa sijainti - + Install beta version Asenna beetaversio - + Check for updates now Tarkista päivitykset nyt - + Enable/Disable automatic updates Hyväksy/Poista automaattiset päivitykset - + toggle automatic updates vaihda automaattiset päivitykset - + Updates Päivitykset - + Update Päivitä - + A new version of Jami was found Would you like to update now? Jamista löytyi uusi versio Haluatko päivittää nyt? - + No new version of Jami was found Jamista ei löytynyt uutta versiota - + An error occured when checking for a new version Uuden version tarkistuksessa tapahtui virhe - + Installer download canceled Asentajan lataus peruutettu - + This will uninstall your current Release version and you can always download the latest Release version on our website Tämä poistaa nykyisen version asennuksen ja voit aina ladata uusimman julkaisun verkkosivustoltamme - + Network disconnected Ei verkkoyhteyttä - - + + Something went wrong Jokin meni pieleen. - + Troubleshoot Vianmääritys - + Open logs Avaa loki - + Get logs Nouda loki - + Select a record directory Valitse tallennuksen hakemisto - + Debug Virheenkorjaus - + Show Stats Näytä tilastot - + Start Aloita - + Stop Lopeta - + Generating account… Luodaan tunnusta… - + Import from backup Tuo varmuuskopiosta - + PIN PIN - + Stop taking photo Lopeta valokuvien ottaminen - + Clear avatar image Tyhjennä hahmosi - + Go back to plugins list Palaa laajennusten luetteloon - + Profile is only shared with contacts Profiili jaetaan vain yhteystietojen kanssa - + Enter your name Kirjoita nimesi - + Import account from other device Tuo tunnus toisesta laitteesta - + Import account from backup file Tuo tunnus varmuuskopiosta - + Hide advanced features Piilota lisäominaisuudet - + Create new Jami account Luo uusi Jami tunnus - + Create new SIP account Luo uusi SIP tunnus - + Welcome to Tervetuloa - + Upgrade Päivitä - + Later Myöhemmin - + Local muted Paikallinen mykistetty - + Trying to reconnect to the Jami daemon (jamid)… Yrittää yhteyttä uudelleen taustapalveluun Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Ei yhdisty uudelleen taustapalveluun Jami (jamid). Jami sulkeutuu nyt. - + Is swarm: Parvessa: - + True Tosi - + False Epätosi - + Add emoji Lisää hymiö - + Send file Lähetä tiedosto - + Leave audio message Jätä ääniviesti - + Leave video message Jätä videoviesti - + Send Lähetä - + Remove Poista - + Write to %1 Kirjoita %1 - + %1 has sent you a request for a conversation. %1 on lähettänyt sinulle keskustelupyynnön. - + Hello, Would you like to join the conversation? Hei, Haluatko liittyä keskusteluun? - + You have accepted the conversation request Sinä olet hyväksynyt keskustelupyynnön. - + Waiting until %1 connects to synchronize the conversation. Odottaa, kunnes %1 tahdistaa yhteyden keskusteluun. - - + + Copy Kopioi - + Participant is still muted on their device Osallistuja on edelleen mykistetty - + You are still muted on your device Olet edelleen mykistetty - + View full screen Näytä koko näyttö - + Stop sharing screen or file Lopeta näytön jakaminen tai tiedosto - + Display advanced settings Näytä lisäasetukset - + Hide advanced settings Piilota lisäasetukset - + Display banned contacts Näytä estetyt henkilöt - + Hide banned contacts Piilota estetyt yhteystiedot - + Layout Asettelu - + Vertical view Pystysuuntainen näkymä - + Horizontal view Vaakasuuntainen näkymä - + Keyboard Shortcut Table Pikanäppäinten taulukko - + Conversation Keskustelu - + Call Soita - + Settings Asetukset - + Report Bug Ilmoita virheestä - + Clear Tyhjennä - + Copied to clipboard! Kopioitu leikepöydälle - + Receive Logs Vastaanota lokeja - + Archive Arkisto - + Open file Avaa tiedosto - + Create your account from a backup Luo tunnus varmuuskopiosta - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Voit tehdä pakatun varmistuksen napsauttamalla "Varmuuskopioi tunnus" Tunnuksen asetuksissa. Tämä luo gz-tiedoston laitteellesi. - + Restore an account from backup Tunnuksen palauttaminen varmuuskopiosta - + Enter Jami account password Anna Jami tunnuksen salasana - + The PIN and the account password should be entered in your device within 10 minutes. PIN-koodi ja tunnuksen salasana tulee antaa laitteellesi 10 minuutin kuluessa. - + Close Sulje - + Enter your account password Anna tunnuksen salasana - + Add Device Lisää laite - + Enter the password Anna salasana - + Enter current password Anna nykyinen salasana - + Enter this account's password to confirm the removal of this device Anna tämän tunnuksen salasana vahvistaaksesi laitteen poistamisen - + Enter new password Anna uusi salasana - + Confirm new password Vahvista uusi salasana - + Change Vaihda - + Confirm Vahvista - + Export Vie - + Choose a picture as avatar Valitse hahmosi kuva - + Import avatar from image file Tuo hahmosi kuvatiedostosta - + Take photo Ota valokuva - + Reset Nollaa - + Select a plugin to install Valitse asennettava laajennus - + Install plugin Asenna laajennus - + Save profile Tallenna profiili - + Information Tiedot - + Enter the account password to confirm the removal of this device Vahvista laitteen poisto antamalla tunnuksen salasana - + Select a screen to share Valitse jaettava näyttö - + Select a window to share - + All Screens Kaikki näytöt - + Screens Näytöt - + Windows Ikkunat - + QR code QR-koodi - + Account QR Tunnuksen QR - + This is your Jami username. Copy and share it with your friends! Tämä on sinun Jami käyttäjätunnus. Kopioi ja jaa se ystäviesi kanssa! - + Link this device to an existing account Yhdistä tämä laite olemassa olevaan tunnukseen - + Advanced features Lisäominaisuudet - + Show advanced features Näytä lisäominaisuudet - + Connect to a JAMS server Yhdistä JAMS-palvelimeen - + Add a SIP account Lisää SIP tunnus - + Error while creating your account. Check your credentials. Virhe luotaessa tunnusta. Tarkista kirjautumistietosi. - + Clear Text Tyhjennä teksti - + Search Results Hakutulokset - + Delete Poista - + Set moderator Aseta valvoja - + Unset moderator Poista valvoja - + Maximize Suurenna - + Minimize Pienennä - + Hangup Katkaistu - + Conference moderation Kokouksen valvonta - + Default moderators Oletus valvojat - + Enable local moderators Paikallisten valvojien ottaminen käyttöön - + Make all participants moderators Tee kaikista osallistujista valvojia - + Add default moderator Lisää oletusvalvoja - + Remove default moderator Poista oletus valvoja @@ -2350,112 +2350,112 @@ Kopioi ja jaa se ystäviesi kanssa! KeyboardShortcutTable - + Open account list Avaa tunnusluettelo - + Focus conversations list Kohdista keskustelun luetteloon - + Requests list Pyynnöt - + Previous conversation Edellinen keskustelu - + Next conversation Seuraava keskustelu - + Search bar Hakupalkki - + Full screen Koko näyttö - + Start an audio call Aloita äänipuhelu - + Start a video call Aloita videopuhelu - + Clear history Tyhjennä historia - + Block contact Estä henkilö - + Remove conversation Poista keskustelu - + Accept contact request Hyväksy yhteyspyyntö - + Media settings Viestintä asetukset - + General settings Yleiset asetukset - + Account settings Tunnuksen asetukset - + Plugin settings Lisäosan asetukset - + Open account creation wizard Ohjattu tunnuksen luominen - + Open keyboard shortcut table Avaa pikanäppäinten taulukko - + Answer an incoming call Vastaa puheluun - + End call Lopeta puhelu - + Decline the call request Hylkää puhelu @@ -2463,17 +2463,17 @@ Kopioi ja jaa se ystäviesi kanssa! MainApplication - + E&xit P&oistu - + &Quit &Lopeta - + &Show Jami &Näytä Jami @@ -2481,12 +2481,12 @@ Kopioi ja jaa se ystäviesi kanssa! PhotoboothView - + Image Files Kuvatiedostot - + All files Kaikki tiedostot @@ -2494,7 +2494,7 @@ Kopioi ja jaa se ystäviesi kanssa! PluginHandlerItemDelegate - + On/Off Päällä/pois @@ -2502,12 +2502,12 @@ Kopioi ja jaa se ystäviesi kanssa! PluginHandlerPicker - + Choose plugin Valitse laajennus - + Preferences Asetukset @@ -2515,7 +2515,7 @@ Kopioi ja jaa se ystäviesi kanssa! PluginItemDelegate - + Load/Unload Lataa/poista @@ -2523,27 +2523,27 @@ Kopioi ja jaa se ystäviesi kanssa! PluginListPreferencesView - + Uninstall plugin Poista laajennus - + Reset preferences Nollaa asetukset - + Ok Vahvista - + Cancel Peruuta - + Uninstall Poista asennus @@ -2551,17 +2551,17 @@ Kopioi ja jaa se ystäviesi kanssa! PluginListSettingsView - + Plugin Files Laajennukset - + All files Kaikki tiedostot - + Installed plugins Asennetut laajennukset @@ -2569,7 +2569,7 @@ Kopioi ja jaa se ystäviesi kanssa! PreferenceItemDelegate - + Edit preference Muokkaa asetuksia @@ -2577,107 +2577,107 @@ Kopioi ja jaa se ystäviesi kanssa! QObject - + Created by: Luonut: - + Artwork by: Grafiikka: - + Based on the SFLPhone project Pohjautuu SFLPhone-projektiin - + Sending Lähetetään - + Failure Virhe - + Sent Lähetä - + Connecting Yhdistää - + Accept Hyväksy - + Canceled Peruttu - + Unable to make contact Yhteyden muodostaminen epäonnistui - + Ongoing Käynnissä - + Waiting for contact Odotetaan yhteyttä - + Incoming transfer Saapuva siirto - + Timed out waiting for contact Aikakatkaisu odottavalle yhteydelle - + Finished Valmis - + %1 days ago %1 päivää sitten - + one day ago yksi päivä sitten - + %1 hours ago %1 tuntia sitten - + one hour ago yksi tunti sitten - + %1 minutes ago %1 minuuttia sitten - + just now juuri nyt @@ -2685,22 +2685,22 @@ Kopioi ja jaa se ystäviesi kanssa! RecordingSettings - + Call Recording Puhelun tallennus - + Always record calls Tallenna puhelut aina - + Quality Laatu - + Save in Tallenna sisään @@ -2708,7 +2708,7 @@ Kopioi ja jaa se ystäviesi kanssa! RevokeDevicePasswordDialog - + Remove Poista @@ -2716,7 +2716,7 @@ Kopioi ja jaa se ystäviesi kanssa! SelectScreen - + Screen Näyttö @@ -2724,7 +2724,7 @@ Kopioi ja jaa se ystäviesi kanssa! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopioi ja jaa se ystäviesi kanssa! SmartListModel - - - - - - + + + + + + Calls Puhelut - - - - - - + + + + + + Contacts Yhteystiedot @@ -2755,17 +2755,17 @@ Kopioi ja jaa se ystäviesi kanssa! SystemSettings - + System Järjestelmä - + Enable dark theme Käytä tummaa teemaa - + Enable desktop notifications Näytä ilmoitukset @@ -2773,27 +2773,27 @@ Kopioi ja jaa se ystäviesi kanssa! SystemTray - + Answer Vastaa - + Decline Kieltäydy - + Open conversation Avaa keskustelu - + Accept Hyväksy - + Refuse Kieltäydy @@ -2801,7 +2801,7 @@ Kopioi ja jaa se ystäviesi kanssa! UserIdentity - + Identity Tunnistetiedot @@ -2809,17 +2809,17 @@ Kopioi ja jaa se ystäviesi kanssa! UtilsAdapter - + %1 Mbps %1 mbit/s - + Default Oletus - + System Järjestelmä diff --git a/translations/ring_client_windows_fr.ts b/translations/ring_client_windows_fr.ts index 6e49fc2e..c2ba3f87 100644 --- a/translations/ring_client_windows_fr.ts +++ b/translations/ring_client_windows_fr.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajouter un compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fichiers audio - + All files Tous les fichiers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Paramètres avancés du compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacts bannis @@ -89,32 +89,32 @@ CallAdapter - + Missed call Appel manqué - + Missed call with %1 Vous avez manqué un appel de %1 - + me moi - + Incoming call Appel entrant - + %1 is calling you %1 vous appelle - + is calling you vous appelle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Ajouter à la conférence - + Transfer this call Transférer cet appel - + Add default moderator Ajouter un modérateur par défaut @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nouveau message - + Trust request Invitation @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Succès - - + + Error Erreur - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Ok OK @@ -211,7 +211,7 @@ Jami s’arrête. DeviceItemDelegate - + Device Id Identifiant d'appareil @@ -219,2130 +219,2130 @@ Jami s’arrête. JamiStrings - + Find a user or search for a conversation Chercher un utilisateur ou une conversation - + Search your invitations Rechercher parmi les invitations - + Invitations Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Credits Crédits - + Display QR code Afficher le code QR - + Open settings Ouvrir les paramètres - + Close settings Fermer la page des paramètres - + Authentication required Athentification requise - + Your session has expired or been revoked on this device. Please enter your password. Votre session a expiré ou votre appareil a été révoqué. Veuillez entrer votre mot de passe. - + JAMS server Serveur JAMS - + Authenticate Authentification - + Delete account Supprimer le compte - + Authentication failed Échec de l'authentification - + Password Mot de passe - + Username Nom d'utilisateur - + Alias Nom du compte - + Call Settings Paramètres des Appels - + Allow incoming calls from unknown contacts Autoriser les appels entrants de contacts inconnus - + In progress… En cours - + Accept Accepter - + Refuse Refuser - + Incoming audio call from {} Appel audio entrant de {} - + Incoming video call from {} Appel vidéo entrant de {} - + Convert your account into a rendezvous point Transformer votre compte en point de rendez-vous - + Automatically answer calls Répondre automatiquement aux appels - + Enable custom ringtone Activer les sonneries personnalisables - + Select custom ringtone Choisir une sonnerie personnalisée - + Add a custom ringtone Ajouter une sonnerie externe - + Select a new ringtone Sélectionner une nouvelle sonnerie - + Voicemail Boîte vocale - + Voicemail dial code Numéro de boîte vocale - + Security Sécurité - + Encrypt media streams (SRTP) Chiffrer les flux média (SRTP) - + Enable SDES key exchange Activer l'échange de clés SDES - + Allow fallback on RTP Se rabattre sur RTP - + Encrypt negotiation (TLS) Chiffrer les négociations (TLS) - + CA certificate Certificat de l'Autorité de Certification - + User certificate Certificat utilisateur - + Private key Clé privée - + Private key password Mot de passe de la clé privée - + Verify certificates for incoming TLS connections Vérifier les certificats pour les connexions TLS entrantes - + Verify server TLS certificates Vérifier les certificats cotés serveur - + Require certificate for incoming TLS connections Nécessite un certificat pour les connexions TLS entrantes - + TLS protocol method Méthode du protocole TLS - + Audio input device selector Sélecteur d'entrée audio - + TLS server name Nom du serveur TLS - + Negotiation timeout (seconds) Délai de négociation (en secondes) - + Select a private key Sélectionner une clé privée - + Select a user certificate Sélectionner un certificat utilisateur - + Registration expiration time (seconds) Temps d'expiration de l'enregistrement (en secondes) - + Use custom address and port Utiliser une adresse et un port personnalisés - + Enable local peer discovery Activer la découverte des utilisateurs locaux - + Audio and Video Settings Paramètres audio et vidéo - + Frames per second Images par seconde - + Select video frame rate (frames per second) Choisir la fréquence d'image vidéo (images par seconde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Votre compte n'existe que sur cet appareil. Si vous perdez votre appareil ou si vous désinstallez l'application, votre compte sera supprimé et ne pourra pas être récupéré. Vous pouvez sauvegarder votre compte maintenant ou plus tard. - - + + End call Fin d’appel - + Pause call Mettre l'appel en pause - + Resume call Reprendre l'appel - + Pause video Mettre la vidéo en pause - + Resume video Reprendre la vidéo - + Creating account… Création du compte en cours... - + Encrypt account with password Encrypter mon compte avec un mot de passe - + Create a rendezvous point Créer un point de rendez-vous - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Pour chiffrer votre compte sur cet appareil, choisissez un mot de passe. Notez que le mot de passe ne peut pas être récupéré. - + Choose a name for your rendezvous point Choisissez un nom pour votre point de rendez-vous - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si votre compte n'a pas été sauvegardé ou ajouté à un autre appareil, votre compte et votre nom enregistré seront irrévocablement perdus. - + Launch at startup Lancer au démarrage - + Enable typing indicators Activer les indicateurs de frappe - - + + Network error Erreur de réseau - + SSL error Erreur SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Entrer le NIP obtenu à partir d'un compte Jami configuré sur un autre appareil. Utiliser la fonction "Associer un autre appareil" pour obtenir un NIP. - + Link device Associer l'appareil - + Conversations Conversations - + Enable Activer - + Display or hide preferences Afficher ou cacher les préférences - + Add new plugin Ajouter un nouveau module d'extension - + Select a file Sélectionner un fichier - + Select Sélectionner - + Choose image file Choisir un fichier image - + Enter the rendezvous point's name Entrer le nom du point de rendez-vous - + Creating rendezvous point… Création du point de rendez-vous... - + Create account from Jami Account Management Server (JAMS) Créer un compte à partir d'un serveur de gestion de comptes Jami (JAMS) - + Create new rendezvous point Créer un nouveau point de rendez-vous - + Create a Jami account Créer un compte Jami - + About Jami À propos de Jami - + Decline contact request Refuser la demande de contact - + Accept contact request Accepter la demande de contact - + Automatically check for updates Vérifier automatiquement les mises à jour - + Ok OK - - + + Cancel Annuler - + Accept in audio Accepter en audio - + Accept in video Accepter en vidéo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vous voyez une conversation dont tous les membres sauf vous ont quittée.De nouvelles interactions seront impossibles. - + Start new conversation Commencer une nouvelle conversation - + Chat Settings Paramètres des discussions - + Enable read receipts Activer les accusés de réception de messages lus - + Send and receive receipts indicating that a message have been displayed Envoyer et recevoir des indicateurs que les messages ont été affichés - + Select a CA certificate Sélectionner un certificat CA - + Connectivity Connectivité - + Auto Registration After Expired Réenregistrement automatique après expiration - + Network interface Interface réseau - + Use UPnP Utiliser UPnP - + Use TURN Utiliser TURN - + TURN address Adresse du serveur TURN - + TURN username Nom d'utilisateur TURN - + TURN password Mot de passe TURN - + TURN Realm Identifiant TURN - + Use STUN Utiliser STUN - + STUN address Adresse du serveur STUN - + Allow IP Auto Rewrite Autoriser la réécriture automatique IP - + Public address Adresse publique - + Address Adresse - + Port Port - + Media Médias - + Enable video Activer la vidéo - + Video Codecs Codecs vidéo - + Audio Codecs Codecs audio - + Name Server Nom du Serveur - + SDP Session Negotiation (ICE Fallback) Négociation de session SDP (en cas d’échec ICE) - + Only used during negotiation in case ICE is not supported Seulement utilisé pendant la négociation si ICE n'est pas suppporté - + Audio RTP minimum Port Port audio RTP minimum - + Audio RTP maximum Port Port audio RTP maximum - + Video RTP minimum Port Port vidéo RTP minimum - + Video RTP maximum port Port vidéo RTP maximum - + Connect to other DHT nodes advertising on your local network. Se connecter à d'autres nœuds DHT affichés sur votre réseau local - + OpenDHT Configuration Configuration OpenDHT - + Enable proxy Utiliser un nœud délégataire - + Proxy address Adresse du nœud DHT délégataire - + Bootstrap Adresse du nœud d'amorçage - + Back Précédent - + Account Settings Paramètres Compte Jami - + Account Compte - - + + General Général - + Plugin Module d'extension - + Audio/Video Audio/Vidéo - + Audio Audio - + Microphone Microphone - + Select audio input device Sélection du périphérique d'entrée audio - + Output device Périphérique de sortie - + Select audio output device Sélection du périphérique de sortie audio - + Ringtone device Périphérique pour la sonnerie - + Select ringtone output device Sélection du périphérique de sortie pour la sonnerie - + Audio manager Gestionnaire audio : - + Video Vidéo - + Select video device Sélection du périphérique vidéo - + Device Appareil - + Resolution Résolution - + Select video resolution Résolution de la vidéo - + Enable hardware acceleration Activer l'accélération matérielle - + Preview unavailable Prévisualisation indisponible - + Screen Sharing Partage d'écran - + Select screen sharing frame rate (frames per second) Choisir la fréquence d'affichage du partage d'écran (nombre d'image par seconde) - + no video aucune vidéo - + Backup account here Sauvegarder le compte - + Backup your account! Faites une sauvegarde de votre compte ! - + Backup account Sauvegarder le compte - + Skip Passer - + Success Succès - + Error Erreur - + Never show me this again Ne plus afficher - + Recommended Recommandé - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers - + Reinstate as contact Réintégrer comme contact - + name nom - + Identifier Identifiant - + is recording est en cours d'enregistrement - + are recording sont en cours d'enregistrement - + Peer stopped recording Le correspondant a arrêté l'enregistrement - + is calling you vous appelle - - + + Mute Couper le micro - - + + Unmute Ouvrir le micro - + Add participant Ajouter un participant - + Add participants Ajouter des participants - + Chat Clavardage - + More options Plus d'options - + Mosaic Mosaïque - + You are still muted by moderator Vous êtes encore mis en sourdine par le modérateur - + You are muted by a moderator Vous avez été mis en sourdine par le modérateur - + Moderator Modérateur - + Host Ordinateur - + Local and Moderator muted Le modérateur et vous-même êtes en sourdine - + Moderator muted Le modérateur est en sourdine - + Not muted N'est pas en sourdine - + Cut Couper - + Paste Coller - + Start video call Démarrer un appel vidéo - + Start audio call Démarrer un appel audio - + Clear conversation Effacer la conversation - + Remove conversation Supprimer la conversation - + Remove contact Retirer le contact - + Block contact Bloquer le contact - + Contact details Détails du contact - + Hold Mettre en attente - + Sip input panel Clavier téléphonique - + Transfer call Transférer l'appel - + Stop recording Arrêter l'enregistrement - + Start recording Démarrer l'enregistrement - + Exit full screen Quitter le mode plein écran - + Share screen Partager votre écran - + Share window Partager la fenêtre - + Share screen area Partager une partie de l’écran - + Share file Partager le fichier - + Select sharing method Choisissez une méthode pour partager - + View plugin Voir les modules d'extension - + No video device Aucun périphérique vidéo - + N/A Pas de réponse - + Lower hand Baisser la main - + Raise hand Lever la main - + Hide chat view Cacher la fenêtre de clavardage - + Place audio call Faire un appel audio - + Place video call Faire un appel vidéo - + Show available plugins Montrer les modules d'extension disponibles - + Add to conversations Ajouter aux conversations - + Jump to latest Faire défiler jusqu'à la fin de la conversation - + {} is typing… {} est en train d'écrire ... - + {} are typing… {} sont en train d'écrire ... - + Several people are typing… Plusieurs personnes sont en train d'écrire ... - + and et - + Enter Jami Account Management Server (JAMS) URL Entrer l'URL du serveur de gestion de comptes JAMS - + Required Obligatoire - + Jami Account Management Server URL URL du serveur de gestion de comptes Jami - + Enter your JAMS credentials Entrez vos références JAMS - + Connect Se connecter - + Back to welcome page Revenir à la page de bienvenue - + Choose name Choisir un nom - + Choose username Choisir un nom d'utilisateur - + Create account Créer le compte - + Confirm password Confirmer le mot de passe - + Optional Optionnel - + Choose a username for your account Choisissez un nom d'utilisateur pour votre compte - + Choose a name Choisir un nom - + Choose your username Choisissez votre nom d'utilisateur - + Invalid name Nom d'utilisateur invalide - + Invalid username Nom d'utilisateur incorrect - + Name already taken Ce nom d'utilisateur est déjà utilisé - + Username already taken Nom d'utilisateur déjà utilisé - + Proxy Serveur mandataire - + Server Serveur - + Create SIP account Créer un compte SIP - + Configure an existing SIP account Configurez un compte SIP existant. - + Backup successful La sauvegarde s'est bien effectuée - + Backup failed Échec de la sauvegarde - + Password changed successfully Le mot de passe a été modifié - + Password change failed Échec de changement du mot de passe - + Password set successfully Le mot de passe a été modifié - + Password set failed Le positionnement du mot de passe a échoué - + Change password Changer le mot de passe - - + + Set password Définir un mot de passe - + Change current password Changer le mot de passe courant - + Backup account to a .gz file Sauvegarder le compte dans un fichier .gz - + Enable account Activer le compte - + Set username Enregistrer un nom d’utilisateur - + Registering name Enregistrement du nom - + Register a username Enregistrer un nom d'utilisateur - + Register username Enregistrer le nom d'utilisateur - + Link a new device to this account Lier un autre appareil à ce compte - + Link another device Associer un nouvel appareil - + Exporting account… Export du compte en cours... - + Remove Device Supprimer cet appareil - + Are you sure you wish to remove this device? Êtes-vous certain que vous souhaitez supprimer cet appareil ? - + Linked Devices Appareils associés - + Your PIN is: Votre NIP est : - + Error connecting to the network. Please try again later. Erreur de connexion réseau Veuillez réessayer plus tard - + Do you really want to delete this account? Voulez-vous vraiment supprimer ce compte? - + Save new device name Sauvegarder le nouveau nom d'appareil - + Edit device name Modifier le nom de l'appareil - + Unlink device from account Dissocier cet appareil d'un compte - + Select a folder Choisir un répertoire - + Enable notifications Activer les notifications - + Enable dark theme Activer le thème sombre - + Keep minimized on close Laisser minimisé en fermant - + Run application on system startup Lancer l'application au démarrage - + Downloads directory Répertoire des téléchargements - + Choose download directory Choisir le répertoire de téléchargement - + Record call Enregistrer l'appel - + Chatview Vue dicussions - + Display hyperlink previews in the chatview Afficher les aperçus des liens - + User interface language Langue de l'interface utilisateur - + File transfer Transfert de fichier - + Allow incoming files from unknown contacts Autoriser les fichiers entrants de contacts inconnus - + Automatically accept incoming files Accepter automatiquement les fichiers entrants - + Accept transfer limit Taille maximum des fichiers automatiquement acceptés - + in MB, 0 = unlimited en mégaoctets , 0 = illimité - + Register Enregistrer - + Incorrect password Mot de passe incorrecte - + Save file Sauvegarder - + Open location Ouvrir l'emplacement - + Install beta version Installer la version Bêta - + Check for updates now Vérifier les mises-à-jour - + Enable/Disable automatic updates Activer/Désactiver les mises à jour automatiques - + toggle automatic updates Case à cocher des mises à jour automatiques - + Updates Mises à jour - + Update Mise à jour - + A new version of Jami was found Would you like to update now? Une nouvelle version de Jami est disponible. Souhaitez-vous mettre à jour Jami maintenant ? - + No new version of Jami was found Aucune nouvelle version de Jami - + An error occured when checking for a new version Une erreur s'est produite en vérifiant si il y avait une nouvelle version. - + Installer download canceled Le téléchargement de l'installateur à été annulé - + This will uninstall your current Release version and you can always download the latest Release version on our website Ceci désinstallera votre version courante et vous pouvez toujours revenir à la dernière version en la téléchargeant sur notre site web - + Network disconnected Le réseau est déconnecté - - + + Something went wrong Quelque chose s'est mal passée. - + Troubleshoot Dépannage - + Open logs Ouvrir les journaux - + Get logs Obtenir les journaux - + Select a record directory Choisir un répertoire pour les enregistrements - + Debug Déverminage - + Show Stats Montrer les statistiques - + Start Démarrer - + Stop Stop - + Generating account… Création du compte... - + Import from backup Importer à partir d'une sauvegarde. - + PIN NIP - + Stop taking photo Arrêter de prendre une photo - + Clear avatar image Effacer l'avatar - + Go back to plugins list Revenir à la liste des modules d'extension - + Profile is only shared with contacts Votre profil n'est partagé qu'avec vos contacts - + Enter your name Entrez votre nom - + Import account from other device Créer un compte à partir d'un autre appareil - + Import account from backup file Créer un compte à partir d'une sauvegarde - + Hide advanced features Cacher les fonctionnalités avancées - + Create new Jami account Créer un nouveau compte Jami - + Create new SIP account Créer un nouveau compte SIP - + Welcome to Bienvenue sur - + Upgrade Mettre à jour - + Later Plus tard - + Local muted Ordinateur local en sourdine - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Is swarm: est un swarm - + True Vrai - + False Faux - + Add emoji Ajouter un émoji - + Send file Envoyez un fichier - + Leave audio message Envoyer un message vocal - + Leave video message Envoyer un message vidéo - + Send Envoyer - + Remove Enlever - + Write to %1 Écrire à %1 - + %1 has sent you a request for a conversation. %1 vous a envoyé une demande de conversation. - + Hello, Would you like to join the conversation? Bonjour, Souhaitez-vous rejoindre la conversation ? - + You have accepted the conversation request Vous avez accepté la demande conversation. - + Waiting until %1 connects to synchronize the conversation. En attente de la synchronisation de la conversation par %1 - - + + Copy Copier - + Participant is still muted on their device Le participant est encore en sourdine sur son appareil - + You are still muted on your device Vous êtes encore en sourdine sur votre appareil - + View full screen Voir en plein écran - + Stop sharing screen or file Arrêter le partage d'écran - + Display advanced settings Afficher les paramètres avancés - + Hide advanced settings Cacher les paramètres avancés - + Display banned contacts Afficher les contacts bannis - + Hide banned contacts Cacher les contacts bannis - + Layout Disposition - + Vertical view Vue verticale - + Horizontal view Vue horizontale - + Keyboard Shortcut Table Tableau des raccourcis clavier - + Conversation Conversation - + Call Appeler - + Settings Paramètres - + Report Bug Reporter un bug - + Clear Effacer - + Copied to clipboard! Copié dans le presse-papier ! - + Receive Logs Journaux reçus - + Archive Archive - + Open file Ouvrir le fichier - + Create your account from a backup Créer votre compte à partir d'une sauvegarde - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Vous pouvez créer une archive en cliquant sur "Sauvegarder le compte" dans les paramètres de compte. Ceci créera un fichier .gz sur votre appareil. - + Restore an account from backup Créer un compte à partir d'une sauvegarde - + Enter Jami account password Saisissez le mot de passe du compte Jami - + The PIN and the account password should be entered in your device within 10 minutes. Ce NIP ainsi que le mot de passe du compte doivent être saisis dans votre nouvel appareil dans les 10 prochaines minutes. - + Close Fermer - + Enter your account password Entrer le mot de passe de votre compte - + Add Device Ajouter un appareil - + Enter the password Entrer le mot de passe - + Enter current password Entrez le mot de passe actuel - + Enter this account's password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Enter new password Entrer le nouveau mot de passe - + Confirm new password Confirmer le nouveau mot de passe - + Change Modifier - + Confirm Confirmer - + Export Exporter - + Choose a picture as avatar Choisissez une image comme avatar - + Import avatar from image file Choisir un avatar à partir d'une image - + Take photo Prendre une photo - + Reset Reset - + Select a plugin to install Choisissez un module d'extension à installer - + Install plugin Installer un module d'extension - + Save profile Sauvegardez votre profile - + Information Informations - + Enter the account password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Select a screen to share Choisissez l'écran à partager - + Select a window to share Choisissez la fenêtre que vous voulez partager - + All Screens Tous les écrans - + Screens Les écrans - + Windows Les fenêtres - + QR code Code QR - + Account QR Code QR - + This is your Jami username. Copy and share it with your friends! Ceci est votre nom d'utilisateur Jami. Conservez et partagez-le avec vos amis ! - + Link this device to an existing account Lier cet appareil à un compte existant - + Advanced features Fonctionnalités avancées - + Show advanced features Montrer les fonctionnalités avancées - + Connect to a JAMS server Se connecter à un serveur JAMS - + Add a SIP account Ajouter un compte SIP - + Error while creating your account. Check your credentials. Une erreur est survenue pendant la création de compte. Vérifiez votre mot de passe. - + Clear Text Effacer le texte - + Search Results Résultats de la recherche - + Delete Supprimer - + Set moderator Définir un modérateur - + Unset moderator Supprimer un modérateur - + Maximize Maximiser - + Minimize Minimiser - + Hangup Raccrocher - + Conference moderation Modération de conférence - + Default moderators Modérateurs par défaut - + Enable local moderators Activer les modérateur locaux - + Make all participants moderators Tous les participants sont modérateurs - + Add default moderator Ajouter un modérateur par défaut - + Remove default moderator Supprimer un modérateur par défaut @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ouvrir la liste des comptes - + Focus conversations list Allez sur la liste des conversations - + Requests list Liste des sollicitations - + Previous conversation Conversation précédente - + Next conversation Conversation précédente - + Search bar Barre de recherche - + Full screen Mode plein écran - + Start an audio call Démarrer un appel audio - + Start a video call Démarrer un appel vidéo - + Clear history Effacer l'historique - + Block contact Bloquer le contact - + Remove conversation Supprimer la conversation - + Accept contact request Accepter la demande de contact - + Media settings Paramètres média - + General settings Paramètres généraux - + Account settings Paramètres du compte - + Plugin settings Paramètres du module d'extension - + Open account creation wizard Ouvrir l'assistant de création de compte - + Open keyboard shortcut table Ouvrir le tableau des raccourcis clavier - + Answer an incoming call Répondre à l'appel entrant - + End call Fin d’appel - + Decline the call request Refuser l'appel @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Sortir - + &Quit &Quitter - + &Show Jami &Montrer Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Les fichiers d'images - + All files Tous les fichiers @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Marche/Arrêt @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Choisir un module d'extension - + Preferences Préférences @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Charger/décharger @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Désinstaller votre module d'extension - + Reset preferences Remettre vos préférences à leur valeur par défaut - + Ok OK - + Cancel Annuler - + Uninstall Désinstaller @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Les fichiers de module d'extension - + All files Tous les fichiers - + Installed plugins Modules d'extension installés @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Modifier les préférences @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Créé par : - + Artwork by: Graphismes par : - + Based on the SFLPhone project Basé sur le projet SFLphone - + Sending Envoi - + Failure Échec - + Sent Envoyé - + Connecting En cours de connexion - + Accept Accepter - + Canceled Annulé - + Unable to make contact Impossible de contacter l'interlocuteur - + Ongoing En cours - + Waiting for contact En attente de votre contact - + Incoming transfer Transfert entrant - + Timed out waiting for contact Délai d'attente de votre contact dépassé - + Finished Complété - + %1 days ago Il y a %1 jour(s) - + one day ago il y a une journée - + %1 hours ago Il y a %1 heure(s) - + one hour ago il y a une heure - + %1 minutes ago Il y a %1 minute(s) - + just now juste maintenant @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Enregistrement d'appel - + Always record calls Toujours enregistrer les appels - + Quality Qualité - + Save in Enregistrer dans @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Enlever @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Écran @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Appels - - - - - - + + + + + + Contacts Contacts @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Système - + Enable dark theme Activer le thème sombre - + Enable desktop notifications Afficher les notifications @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Répondre - + Decline Décliner - + Open conversation Ouvrir la conversation - + Accept Accepter - + Refuse Refuser @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identité @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbits/s - + Default Défaut - + System Système diff --git a/translations/ring_client_windows_fr_BE.ts b/translations/ring_client_windows_fr_BE.ts index d5343b60..18800856 100644 --- a/translations/ring_client_windows_fr_BE.ts +++ b/translations/ring_client_windows_fr_BE.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajouter un compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fichiers audio - + All files Tous les fichiers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Paramètres avancés du compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacts bloqués @@ -89,32 +89,32 @@ CallAdapter - + Missed call Appel manqué - + Missed call with %1 Vous avez manqué un appel de %1 - + me moi - + Incoming call Appel entrant - + %1 is calling you %1 vous appelle - + is calling you vous appelle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Ajouter à la conférence - + Transfer this call Transférer cet appel - + Add default moderator Ajouter un modérateur par défaut @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nouveau message - + Trust request Invitation @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Réussite - - + + Error Erreur - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Ok OK @@ -211,7 +211,7 @@ Jami s’arrête. DeviceItemDelegate - + Device Id Identifiant d'appareil @@ -219,2130 +219,2130 @@ Jami s’arrête. JamiStrings - + Find a user or search for a conversation Chercher un utilisateur ou une conversation - + Search your invitations Rechercher parmi les invitations - + Invitations Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Credits Crédits - + Display QR code Afficher le code QR - + Open settings Ouvrir les paramètres - + Close settings Fermer les paramètres - + Authentication required Athentification requise - + Your session has expired or been revoked on this device. Please enter your password. Votre session a expiré ou votre appareil a été révoqué. Veuillez entrer votre mot de passe. - + JAMS server Serveur JAMS - + Authenticate Authentification - + Delete account Supprimer le compte - + Authentication failed Échec de l'authentification - + Password Mot de passe - + Username Nom d'utilisateur - + Alias Alias - + Call Settings Paramètres d'appel - + Allow incoming calls from unknown contacts Autoriser les appels entrants de contacts inconnus - + In progress… En cours... - + Accept Accepter - + Refuse Refuser - + Incoming audio call from {} Appel audio entrant de {} - + Incoming video call from {} Appel vidéo entrant de {} - + Convert your account into a rendezvous point Transformer votre compte en point de rendez-vous - + Automatically answer calls Répondre automatiquement aux appels - + Enable custom ringtone Activer une sonnerie personnalisée - + Select custom ringtone Choisir une sonnerie personnalisée - + Add a custom ringtone Ajouter une sonnerie personnalisée - + Select a new ringtone Sélectionner une nouvelle sonnerie - + Voicemail Boîte vocale - + Voicemail dial code Numéro de boîte vocale - + Security Sécurité - + Encrypt media streams (SRTP) Chiffrer les flux média (SRTP) - + Enable SDES key exchange Activer l'échange de clés SDES - + Allow fallback on RTP Se rabattre sur RTP - + Encrypt negotiation (TLS) Chiffrer les négociations (TLS) - + CA certificate Autorité de Certification - + User certificate Certificat d'utilisateur - + Private key Clé privée - + Private key password Mot de passe de la clé privée - + Verify certificates for incoming TLS connections Vérifier les certificats pour les connexions TLS entrantes - + Verify server TLS certificates Vérifier les certificats cotés serveur - + Require certificate for incoming TLS connections Exiger un certificat pour les connexions TLS entrantes - + TLS protocol method Méthode du protocole TLS - + Audio input device selector Sélecteur d'entrée audio - + TLS server name Nom du serveur TLS - + Negotiation timeout (seconds) Délai de négociation (en secondes) - + Select a private key Sélectionner une clé privée - + Select a user certificate Sélectionner un certificat utilisateur - + Registration expiration time (seconds) Temps d'expiration de l'enregistrement (en secondes) - + Use custom address and port Utiliser une adresse et un port personnalisés - + Enable local peer discovery Activer la découverte des utilisateurs locaux - + Audio and Video Settings Paramètres audio et vidéo - + Frames per second Images par seconde - + Select video frame rate (frames per second) Choisir la fréquence d'image vidéo (images par seconde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Votre compte n'existe que sur cet appareil. Si vous perdez votre appareil ou si vous désinstallez l'application, votre compte sera supprimé et ne pourra pas être récupéré. Vous pouvez sauvegarder votre compte maintenant ou plus tard. - - + + End call Fin d’appel - + Pause call Mettre l'appel en pause - + Resume call Reprendre l'appel - + Pause video Mettre la vidéo en pause - + Resume video Reprendre la vidéo - + Creating account… Création du compte en cours... - + Encrypt account with password Chiffrer le compte avec un mot de passe - + Create a rendezvous point Créer un point de rendez-vous - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Pour chiffrer votre compte sur cet appareil, choisissez un mot de passe. Notez que le mot de passe ne peut pas être récupéré. - + Choose a name for your rendezvous point Choisissez un nom pour votre point de rendez-vous - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si votre compte n'a pas été sauvegardé ou ajouté à un autre appareil, votre compte et votre nom enregistré seront irrévocablement perdus. - + Launch at startup Lancer au démarrage - + Enable typing indicators Activer les indicateurs de frappe - - + + Network error Erreur de réseau - + SSL error Erreur SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Entrer le NIP obtenu à partir d'un compte Jami configuré sur un autre appareil. Utiliser la fonction "Associer un autre appareil" pour obtenir un NIP. - + Link device Lier l'appareil - + Conversations Conversations - + Enable Activé - + Display or hide preferences Afficher ou cacher les préférences - + Add new plugin Ajouter un nouveau module d'extension - + Select a file Sélectionner un fichier - + Select Sélectionner - + Choose image file Choisir un fichier image - + Enter the rendezvous point's name Entrer le nom du point de rendez-vous - + Creating rendezvous point… Création du point de rendez-vous... - + Create account from Jami Account Management Server (JAMS) Créer un compte à partir d'un serveur de gestion de comptes Jami (JAMS) - + Create new rendezvous point Créer un nouveau point de rendez-vous - + Create a Jami account Créer un compte Jami - + About Jami À propos de Jami - + Decline contact request Refuser la demande de contact - + Accept contact request Accepter la demande de contact - + Automatically check for updates Vérifier automatiquement les mises à jour - + Ok OK - - + + Cancel Annuler - + Accept in audio Accepter en audio - + Accept in video Accepter en vidéo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vous voyez une conversation dont tous les membres sauf vous ont quittée.De nouvelles interactions seront impossibles. - + Start new conversation Commencer une nouvelle conversation - + Chat Settings Paramètres des discussions - + Enable read receipts Activer les accusés de réception de messages lus - + Send and receive receipts indicating that a message have been displayed Envoyer et recevoir des indicateurs que les messages ont été affichés - + Select a CA certificate Sélectionner un certificat CA - + Connectivity Connectivité - + Auto Registration After Expired Réenregistrement automatique après expiration - + Network interface Interface réseau - + Use UPnP Utiliser UPnP - + Use TURN Utiliser le TURN - + TURN address Adresse du serveur TURN - + TURN username Nom d'utilisateur TURN - + TURN password Mot de passe TURN - + TURN Realm Identifiant TURN - + Use STUN Utiliser STUN - + STUN address Adresse du serveur STUN - + Allow IP Auto Rewrite Autoriser la réécriture automatique IP - + Public address Adresse publique - + Address Adresse - + Port Port - + Media Media - + Enable video Activer la vidéo - + Video Codecs Codecs Vidéo - + Audio Codecs Codecs Audio - + Name Server Nom du Serveur - + SDP Session Negotiation (ICE Fallback) Négociation de session SDP (en cas d’échec ICE) - + Only used during negotiation in case ICE is not supported Seulement utilisé pendant la négociation si ICE n'est pas suppporté - + Audio RTP minimum Port Port audio RTP minimum - + Audio RTP maximum Port Port audio RTP maximum - + Video RTP minimum Port Port vidéo RTP minimum - + Video RTP maximum port Port vidéo RTP maximum - + Connect to other DHT nodes advertising on your local network. Se connecter à d'autres nœuds DHT affichés sur votre réseau local - + OpenDHT Configuration Configuration de l'OpenDHT - + Enable proxy Activer proxy - + Proxy address Adresse du nœud DHT délégataire - + Bootstrap Amorcer - + Back Précédent - + Account Settings Paramètres Compte Jami - + Account Compte - - + + General Général - + Plugin Module d'extension - + Audio/Video Audio/Vidéo - + Audio Audio - + Microphone Microphone - + Select audio input device Sélection du périphérique d'entrée audio - + Output device Périphérique de sortie - + Select audio output device Sélection du périphérique de sortie audio - + Ringtone device Périphérique pour la sonnerie - + Select ringtone output device Sélection du périphérique de sortie pour la sonnerie - + Audio manager Gestionnaire audio : - + Video Vidéo - + Select video device Sélection du périphérique vidéo - + Device Périphérique - + Resolution Résolution - + Select video resolution Résolution de la vidéo - + Enable hardware acceleration Activer l'accélération matérielle - + Preview unavailable Prévisualisation indisponible - + Screen Sharing Partage d'écran - + Select screen sharing frame rate (frames per second) Choisir la fréquence d'affichage du partage d'écran (nombre d'image par seconde) - + no video aucune vidéo - + Backup account here Sauvegarder le compte - + Backup your account! Faites une sauvegarde de votre compte ! - + Backup account Sauvegarder le compte - + Skip Passer - + Success Réussite - + Error Erreur - + Never show me this again Ne plus afficher - + Recommended Recommandé - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers - + Reinstate as contact Réintégrer comme contact - + name nom - + Identifier Identifiant - + is recording est en cours d'enregistrement - + are recording sont en cours d'enregistrement - + Peer stopped recording Le correspondant a arrêté l'enregistrement - + is calling you vous appelle - - + + Mute Couper le micro - - + + Unmute Ouvrir le micro - + Add participant Ajouter un participant - + Add participants Ajouter des participants - + Chat Clavardage - + More options Plus d'options - + Mosaic Mosaïque - + You are still muted by moderator Vous êtes encore mis en sourdine par le modérateur - + You are muted by a moderator Vous avez été mis en sourdine par le modérateur - + Moderator Modérateur - + Host Ordinateur - + Local and Moderator muted Le modérateur et vous-même êtes en sourdine - + Moderator muted Le modérateur est en sourdine - + Not muted N'est pas en sourdine - + Cut Couper - + Paste Coller - + Start video call Démarrer appel video - + Start audio call Démarrer appel audio - + Clear conversation Effacer la conversation - + Remove conversation Supprimer la conversation - + Remove contact Supprimer contact - + Block contact Bloquer le contact - + Contact details Détails du contact - + Hold Mettre en attente - + Sip input panel Clavier téléphonique - + Transfer call Transférer l'appel - + Stop recording Arrêter l'enregistrement - + Start recording Démarrer l'enregistrement - + Exit full screen Quitter le mode plein écran - + Share screen Partager votre écran - + Share window Partager la fenêtre - + Share screen area Partager une partie de l'écran - + Share file Partager le fichier - + Select sharing method Choisissez une méthode pour partager - + View plugin Voir les modules d'extension - + No video device Aucun périphérique vidéo - + N/A N/A - + Lower hand Baisser la main - + Raise hand Lever la main - + Hide chat view Cacher la fenêtre de clavardage - + Place audio call Faire un appel audio - + Place video call Faire un appel vidéo - + Show available plugins Montrer les modules d'extension disponibles - + Add to conversations Ajouter aux conversations - + Jump to latest Faire défiler jusqu'à la fin de la conversation - + {} is typing… {} est en train d'écrire ... - + {} are typing… {} sont en train d'écrire ... - + Several people are typing… Plusieurs personnes sont en train d'écrire ... - + and et - + Enter Jami Account Management Server (JAMS) URL Entrer l'URL du serveur de gestion de comptes JAMS - + Required Obligatoire - + Jami Account Management Server URL URL du serveur de gestion de comptes Jami - + Enter your JAMS credentials Entrez vos références JAMS - + Connect Se connecter - + Back to welcome page Revenir à la page de bienvenue - + Choose name Choisir un nom - + Choose username Choisir un nom d'utilisateur - + Create account Créer un compte - + Confirm password Confirmer le mot de passe - + Optional Optionnel - + Choose a username for your account Choisissez un nom d'utilisateur pour votre compte - + Choose a name Choisir un nom - + Choose your username Choisissez votre nom d'utilisateur - + Invalid name Nom d'utilisateur invalide - + Invalid username Nom d'utilisateur incorrect - + Name already taken Ce nom d'utilisateur est déjà utilisé - + Username already taken Nom d'utilisateur non-disponible - + Proxy Proxy - + Server Serveur - + Create SIP account Créer un compte SIP - + Configure an existing SIP account Configurez un compte SIP existant. - + Backup successful La sauvegarde s'est bien effectuée - + Backup failed Échec de la sauvegarde - + Password changed successfully Le mot de passe a été modifié - + Password change failed Échec de changement du mot de passe - + Password set successfully Le mot de passe a été modifié - + Password set failed Le positionnement du mot de passe a échoué - + Change password Changer mot de passe - - + + Set password Définir mot de passe - + Change current password Changer le mot de passe courant - + Backup account to a .gz file Sauvegarder le compte dans un fichier .gz - + Enable account Activer le compte - + Set username Enregistrer un nom d’utilisateur - + Registering name Enregistrement du nom - + Register a username Enregistrer un nom d'utilisateur - + Register username Enregistrer le nom d'utilisateur - + Link a new device to this account Lier un autre appareil à ce compte - + Link another device Lier autre appareil - + Exporting account… Export du compte en cours... - + Remove Device Supprimer cet appareil - + Are you sure you wish to remove this device? Êtes-vous certain que vous souhaitez supprimer cet appareil ? - + Linked Devices Appareils liés - + Your PIN is: Votre NIP est : - + Error connecting to the network. Please try again later. Erreur de connexion réseau Veuillez réessayer plus tard - + Do you really want to delete this account? Voulez-vous vraiment supprimer ce compte? - + Save new device name Sauvegarder le nouveau nom d'appareil - + Edit device name Modifier le nom de l'appareil - + Unlink device from account Dissocier cet appareil d'un compte - + Select a folder Choisir un répertoire - + Enable notifications Activer les notifications - + Enable dark theme Activer le thème sombre - + Keep minimized on close Laisser minimisé en fermant - + Run application on system startup Lancer l'application au démarrage - + Downloads directory Dossier des téléchargements - + Choose download directory Choisir le répertoire de téléchargement - + Record call Enregistrer l'appel - + Chatview Vue dicussions - + Display hyperlink previews in the chatview Afficher les aperçus des liens - + User interface language Langue de l'interface utilisateur - + File transfer Transfert de fichier - + Allow incoming files from unknown contacts Autoriser les fichiers entrants de contacts inconnus - + Automatically accept incoming files Accepter automatiquement les fichiers entrants - + Accept transfer limit Taille maximum des fichiers automatiquement acceptés - + in MB, 0 = unlimited en mégaoctets , 0 = illimité - + Register Enregistrer - + Incorrect password Mot de passe incorrecte - + Save file Sauvegarder fichier - + Open location Ouvrir l'emplacement - + Install beta version Installer la version Bêta - + Check for updates now Vérifier les mises-à-jour - + Enable/Disable automatic updates Activer/Désactiver les mises à jour automatiques - + toggle automatic updates Case à cocher des mises à jour automatiques - + Updates Mises à jour - + Update Mise à jour - + A new version of Jami was found Would you like to update now? Une nouvelle version de Jami est disponible. Souhaitez-vous mettre à jour Jami maintenant ? - + No new version of Jami was found Aucune nouvelle version de Jami - + An error occured when checking for a new version Une erreur s'est produite en vérifiant si il y avait une nouvelle version. - + Installer download canceled Le téléchargement de l'installateur à été annulé - + This will uninstall your current Release version and you can always download the latest Release version on our website Ceci désinstallera votre version courante et vous pouvez toujours revenir à la dernière version en la téléchargeant sur notre site web - + Network disconnected Le réseau est déconnecté - - + + Something went wrong Quelque chose s'est mal passée. - + Troubleshoot Dépannage - + Open logs Ouvrir les journaux - + Get logs Obtenir les journaux - + Select a record directory Choisir un répertoire pour les enregistrements - + Debug Déverminage - + Show Stats Montrer les statistiques - + Start Démarrer - + Stop Stop - + Generating account… Création du compte... - + Import from backup Importer à partir d'une sauvegarde. - + PIN NIP - + Stop taking photo Arrêter de prendre une photo - + Clear avatar image Effacer l'avatar - + Go back to plugins list Revenir à la liste des modules d'extension - + Profile is only shared with contacts Votre profil n'est partagé qu'avec vos contacts - + Enter your name Entrez votre nom - + Import account from other device Créer un compte à partir d'un autre appareil - + Import account from backup file Créer un compte à partir d'une sauvegarde - + Hide advanced features Cacher les fonctionnalités avancées - + Create new Jami account Créer un nouveau compte Jami - + Create new SIP account Créer un nouveau compte SIP - + Welcome to Bienvenue sur - + Upgrade Mettre à jour - + Later Plus tard - + Local muted Ordinateur local en sourdine - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Is swarm: est un swarm - + True Vrai - + False Faux - + Add emoji Ajouter un émoji - + Send file Envoyer fichier - + Leave audio message Envoyer un message vocal - + Leave video message Envoyer un message vidéo - + Send Envoyer - + Remove Supprimer - + Write to %1 Écrire à %1 - + %1 has sent you a request for a conversation. %1 vous a envoyé une demande de conversation. - + Hello, Would you like to join the conversation? Bonjour, Souhaitez-vous rejoindre la conversation ? - + You have accepted the conversation request Vous avez accepté la demande conversation. - + Waiting until %1 connects to synchronize the conversation. En attente de la synchronisation de la conversation par %1 - - + + Copy Copier - + Participant is still muted on their device Le participant est encore en sourdine sur son appareil - + You are still muted on your device Vous êtes encore en sourdine sur votre appareil - + View full screen Voir en plein écran - + Stop sharing screen or file Arrêter le partage d'écran - + Display advanced settings Afficher les paramètres avancés - + Hide advanced settings Cacher les paramètres avancés - + Display banned contacts Afficher les contacts bannis - + Hide banned contacts Cacher les contacts bannis - + Layout Disposition - + Vertical view Vue verticale - + Horizontal view Vue horizontale - + Keyboard Shortcut Table Tableau des raccourcis clavier - + Conversation Conversation - + Call Appel - + Settings Paramètres - + Report Bug Reporter un bug - + Clear Effacer - + Copied to clipboard! Copié dans le presse-papier ! - + Receive Logs Journaux reçus - + Archive Archive - + Open file Ouvrir le fichier - + Create your account from a backup Créer votre compte à partir d'une sauvegarde - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Vous pouvez créer une archive en cliquant sur "Sauvegarder le compte" dans les paramètres de compte. Ceci créera un fichier .gz sur votre appareil. - + Restore an account from backup Créer un compte à partir d'une sauvegarde - + Enter Jami account password Saisissez le mot de passe du compte Jami - + The PIN and the account password should be entered in your device within 10 minutes. Ce NIP ainsi que le mot de passe du compte doivent être saisis dans votre nouvel appareil dans les 10 prochaines minutes. - + Close Fermer - + Enter your account password Entrer le mot de passe de votre compte - + Add Device Ajouter un appareil - + Enter the password Entrer le mot de passe - + Enter current password Entrez le mot de passe actuel - + Enter this account's password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Enter new password Entrer le nouveau mot de passe - + Confirm new password Confirmer le nouveau mot de passe - + Change Modifier - + Confirm Confirmer - + Export Exporter - + Choose a picture as avatar Choisissez une image comme avatar - + Import avatar from image file Choisir un avatar à partir d'une image - + Take photo Prendre une photo - + Reset Reset - + Select a plugin to install Choisissez un module d'extension à installer - + Install plugin Installer un module d'extension - + Save profile Sauvegardez votre profile - + Information Informations - + Enter the account password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Select a screen to share Choisissez l'écran à partager - + Select a window to share Choisissez la fenêtre que vous voulez partager - + All Screens Tous les écrans - + Screens Les écrans - + Windows Les fenêtres - + QR code Code QR - + Account QR Code QR - + This is your Jami username. Copy and share it with your friends! Ceci est votre nom d'utilisateur Jami. Conservez et partagez-le avec vos amis ! - + Link this device to an existing account Lier cet appareil à un compte existant - + Advanced features Fonctionnalités avancées - + Show advanced features Montrer les fonctionnalités avancées - + Connect to a JAMS server Se connecter à un serveur JAMS - + Add a SIP account Ajouter un compte SIP - + Error while creating your account. Check your credentials. Une erreur est survenue pendant la création de compte. Vérifiez votre mot de passe. - + Clear Text Effacer le texte - + Search Results Résultats de recherche - + Delete Supprimer - + Set moderator Définir un modérateur - + Unset moderator Supprimer un modérateur - + Maximize Maximiser - + Minimize Minimiser - + Hangup Raccrocher - + Conference moderation Modération de conférence - + Default moderators Modérateurs par défaut - + Enable local moderators Activer les modérateur locaux - + Make all participants moderators Tous les participants sont modérateurs - + Add default moderator Ajouter un modérateur par défaut - + Remove default moderator Supprimer un modérateur par défaut @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ouvrir la liste des comptes - + Focus conversations list Allez sur la liste des conversations - + Requests list Liste des sollicitations - + Previous conversation Conversation précédente - + Next conversation Conversation précédente - + Search bar Barre de recherche - + Full screen Mode plein écran - + Start an audio call Démarrer un appel audio - + Start a video call Démarrer un appel vidéo - + Clear history Effacer l'historique - + Block contact Bloquer le contact - + Remove conversation Supprimer la conversation - + Accept contact request Accepter la demande de contact - + Media settings Paramètres média - + General settings Paramètres généraux - + Account settings Paramètres du compte - + Plugin settings Paramètres du module d'extension - + Open account creation wizard Ouvrir l'assistant de création de compte - + Open keyboard shortcut table Ouvrir le tableau des raccourcis clavier - + Answer an incoming call Répondre à l'appel entrant - + End call Fin d’appel - + Decline the call request Refuser l'appel @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Sortir - + &Quit &Quitter - + &Show Jami &Montrer Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Les fichiers d'images - + All files Tous les fichiers @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Marche/Arrêt @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Choisir un module d'extension - + Preferences Préférences @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Charger/décharger @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Désinstaller votre module d'extension - + Reset preferences Remettre vos préférences à leur valeur par défaut - + Ok OK - + Cancel Annuler - + Uninstall Désinstaller @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Les fichiers de module d'extension - + All files Tous les fichiers - + Installed plugins Modules d'extension installés @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Modifier les préférences @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Créé par - + Artwork by: Artwork de: - + Based on the SFLPhone project Basé sur le projet SFLPhone - + Sending Envoi - + Failure Échec - + Sent Envoyé - + Connecting En cours de connexion - + Accept Accepter - + Canceled Annulé - + Unable to make contact Impossible de contacter l'interlocuteur - + Ongoing En cours - + Waiting for contact En attente de votre contact - + Incoming transfer Transfert entrant - + Timed out waiting for contact Délai d'attente de votre contact dépassé - + Finished Terminé - + %1 days ago Il y a %1 jour(s) - + one day ago il y a une journée - + %1 hours ago Il y a %1 heure(s) - + one hour ago il y a une heure - + %1 minutes ago Il y a %1 minute(s) - + just now juste maintenant @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Enregistrement d'appel - + Always record calls Toujours enregistrer les appels - + Quality Qualité - + Save in Enregistrer dans @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Supprimer @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Écran @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Appels - - - - - - + + + + + + Contacts Contacts @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Système - + Enable dark theme Activer le thème sombre - + Enable desktop notifications Afficher les notifications @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Répondre - + Decline Décliner - + Open conversation Ouvrir la conversation - + Accept Accepter - + Refuse Refuser @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identité @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbits/s - + Default Défaut - + System Système diff --git a/translations/ring_client_windows_fr_CA.ts b/translations/ring_client_windows_fr_CA.ts index 4ac9285b..e4c74d76 100644 --- a/translations/ring_client_windows_fr_CA.ts +++ b/translations/ring_client_windows_fr_CA.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajouter un compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fichiers audio - + All files Tous les fichiers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Paramètres avancés du compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacts bloqués @@ -89,32 +89,32 @@ CallAdapter - + Missed call Appel manqué - + Missed call with %1 Vous avez manqué un appel de %1 - + me moi - + Incoming call Appel entrant - + %1 is calling you %1 vous appelle - + is calling you vous appelle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Ajouter à la conférence - + Transfer this call Transférer cet appel - + Add default moderator Ajouter un modérateur par défaut @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nouveau message - + Trust request Invitation @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Succès - - + + Error Erreur - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Ok Ok @@ -211,7 +211,7 @@ Jami s’arrête. DeviceItemDelegate - + Device Id Identifiant d'appareil @@ -219,2130 +219,2130 @@ Jami s’arrête. JamiStrings - + Find a user or search for a conversation Chercher un utilisateur ou une conversation - + Search your invitations Rechercher parmi les invitations - + Invitations Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Credits Crédits - + Display QR code Afficher le code QR - + Open settings Ouvrir les paramètres - + Close settings Fermer les paramètres - + Authentication required Athentification requise - + Your session has expired or been revoked on this device. Please enter your password. Votre session a expiré ou votre appareil a été révoqué. Veuillez entrer votre mot de passe. - + JAMS server Serveur JAMS - + Authenticate Authentification - + Delete account Supprimer le compte - + Authentication failed Échec de l'authentification - + Password Mot de passe - + Username Nom d'utilisateur - + Alias Alias - + Call Settings Paramètres d'appel - + Allow incoming calls from unknown contacts Autoriser les appels entrants de contacts inconnus - + In progress… En cours... - + Accept Accepter - + Refuse Refuser - + Incoming audio call from {} Appel audio entrant de {} - + Incoming video call from {} Appel vidéo entrant de {} - + Convert your account into a rendezvous point Transformer votre compte en point de rendez-vous - + Automatically answer calls Répondre automatiquement aux appels - + Enable custom ringtone Activer une sonnerie personnalisée - + Select custom ringtone Choisir une sonnerie personnalisée - + Add a custom ringtone Ajouter une sonnerie personnalisée - + Select a new ringtone Sélectionner une nouvelle sonnerie - + Voicemail Boîte vocale - + Voicemail dial code Numéro de boîte vocale - + Security Sécurité - + Encrypt media streams (SRTP) Chiffrer les flux média (SRTP) - + Enable SDES key exchange Activer l'échange de clés SDES - + Allow fallback on RTP Se rabattre sur RTP - + Encrypt negotiation (TLS) Chiffrer les négociations (TLS) - + CA certificate Autorité de Certification - + User certificate Certificat d'utilisateur - + Private key Clé privée - + Private key password Mot de passe de la clé privée - + Verify certificates for incoming TLS connections Vérifier les certificats pour les connexions TLS entrantes - + Verify server TLS certificates Vérifier les certificats cotés serveur - + Require certificate for incoming TLS connections Exiger un certificat pour les connexions TLS entrantes - + TLS protocol method Méthode du protocole TLS - + Audio input device selector Sélecteur d'entrée audio - + TLS server name Nom du serveur TLS - + Negotiation timeout (seconds) Délai de négociation (en secondes) - + Select a private key Sélectionner une clé privée - + Select a user certificate Sélectionner un certificat utilisateur - + Registration expiration time (seconds) Temps d'expiration de l'enregistrement (en secondes) - + Use custom address and port Utiliser une adresse et un port personnalisés - + Enable local peer discovery Activer la découverte des utilisateurs locaux - + Audio and Video Settings Paramètres audio et vidéo - + Frames per second Images par seconde - + Select video frame rate (frames per second) Choisir la fréquence d'image vidéo (images par seconde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Votre compte n'existe que sur cet appareil. Si vous perdez votre appareil ou si vous désinstallez l'application, votre compte sera supprimé et ne pourra pas être récupéré. Vous pouvez sauvegarder votre compte maintenant ou plus tard. - - + + End call Fin d’appel - + Pause call Mettre l'appel en pause - + Resume call Reprendre l'appel - + Pause video Mettre la vidéo en pause - + Resume video Reprendre la vidéo - + Creating account… Création du compte en cours... - + Encrypt account with password Chiffrer le compte avec un mot de passe - + Create a rendezvous point Créer un point de rendez-vous - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Pour chiffrer votre compte sur cet appareil, choisissez un mot de passe. Notez que le mot de passe ne peut pas être récupéré. - + Choose a name for your rendezvous point Choisissez un nom pour votre point de rendez-vous - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si votre compte n'a pas été sauvegardé ou ajouté à un autre appareil, votre compte et votre nom enregistré seront irrévocablement perdus. - + Launch at startup Lancer au démarrage - + Enable typing indicators Activer les indicateurs de frappe - - + + Network error Erreur de réseau - + SSL error Erreur SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Entrer le NIP obtenu à partir d'un compte Jami configuré sur un autre appareil. Utiliser la fonction "Associer un autre appareil" pour obtenir un NIP. - + Link device Lier l'appareil - + Conversations Conversations - + Enable Activé - + Display or hide preferences Afficher ou cacher les préférences - + Add new plugin Ajouter un nouveau module d'extension - + Select a file Sélectionner un fichier - + Select Sélectionner - + Choose image file Choisir un fichier image - + Enter the rendezvous point's name Entrer le nom du point de rendez-vous - + Creating rendezvous point… Création du point de rendez-vous... - + Create account from Jami Account Management Server (JAMS) Créer un compte à partir d'un serveur de gestion de comptes Jami (JAMS) - + Create new rendezvous point Créer un nouveau point de rendez-vous - + Create a Jami account Créer un compte Jami - + About Jami À propos de Jami - + Decline contact request Refuser la demande de contact - + Accept contact request Accepter la demande de contact - + Automatically check for updates Vérifier automatiquement les mises à jour - + Ok Ok - - + + Cancel Annuler - + Accept in audio Accepter en audio - + Accept in video Accepter en vidéo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vous voyez une conversation dont tous les membres sauf vous ont quittée.De nouvelles interactions seront impossibles. - + Start new conversation Commencer une nouvelle conversation - + Chat Settings Paramètres des discussions - + Enable read receipts Activer les accusés de réception de messages lus - + Send and receive receipts indicating that a message have been displayed Envoyer et recevoir des indicateurs que les messages ont été affichés - + Select a CA certificate Sélectionner un certificat CA - + Connectivity Connectivité - + Auto Registration After Expired Réenregistrement automatique après expiration - + Network interface Interface réseau - + Use UPnP Utiliser UPnP - + Use TURN Utiliser le TURN - + TURN address Adresse du serveur TURN - + TURN username Nom d'utilisateur TURN - + TURN password Mot de passe TURN - + TURN Realm Identifiant TURN - + Use STUN Utiliser STUN - + STUN address Adresse du serveur STUN - + Allow IP Auto Rewrite Autoriser la réécriture automatique IP - + Public address Adresse publique - + Address Adresse - + Port Port - + Media Média - + Enable video Activer la vidéo - + Video Codecs Codecs Vidéo - + Audio Codecs Codecs Audio - + Name Server Nom du serveur - + SDP Session Negotiation (ICE Fallback) Négociation de session SDP (en cas d’échec ICE) - + Only used during negotiation in case ICE is not supported Seulement utilisé pendant la négociation si ICE n'est pas suppporté - + Audio RTP minimum Port Port audio RTP minimum - + Audio RTP maximum Port Port audio RTP maximum - + Video RTP minimum Port Port vidéo RTP minimum - + Video RTP maximum port Port vidéo RTP maximum - + Connect to other DHT nodes advertising on your local network. Se connecter à d'autres nœuds DHT affichés sur votre réseau local - + OpenDHT Configuration Configuration de l'OpenDHT - + Enable proxy Activer proxy - + Proxy address Adresse du nœud DHT délégataire - + Bootstrap Amorcer - + Back Précédent - + Account Settings Paramètres du compte - + Account Compte - - + + General Général - + Plugin Module d'extension - + Audio/Video Audio/Vidéo - + Audio Audio - + Microphone Microphone - + Select audio input device Sélection du périphérique d'entrée audio - + Output device Périphérique de sortie - + Select audio output device Sélection du périphérique de sortie audio - + Ringtone device Périphérique pour la sonnerie - + Select ringtone output device Sélection du périphérique de sortie pour la sonnerie - + Audio manager Gestionnaire audio : - + Video Vidéo - + Select video device Sélection du périphérique vidéo - + Device Appareil - + Resolution Résolution - + Select video resolution Résolution de la vidéo - + Enable hardware acceleration Activer l'accélération matérielle - + Preview unavailable Prévisualisation indisponible - + Screen Sharing Partage d'écran - + Select screen sharing frame rate (frames per second) Choisir la fréquence d'affichage du partage d'écran (nombre d'image par seconde) - + no video aucune vidéo - + Backup account here Sauvegarder le compte - + Backup your account! Faites une sauvegarde de votre compte ! - + Backup account Sauvegarder le compte - + Skip Passer - + Success Succès - + Error Erreur - + Never show me this again Ne plus afficher - + Recommended Recommandé - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers - + Reinstate as contact Réintégrer comme contact - + name nom - + Identifier Identifiant - + is recording est en cours d'enregistrement - + are recording sont en cours d'enregistrement - + Peer stopped recording Le correspondant a arrêté l'enregistrement - + is calling you vous appelle - - + + Mute Couper le micro - - + + Unmute Ouvrir le micro - + Add participant Ajouter un participant - + Add participants Ajouter des participants - + Chat Clavardage - + More options Plus d'options - + Mosaic Mosaïque - + You are still muted by moderator Vous êtes encore mis en sourdine par le modérateur - + You are muted by a moderator Vous avez été mis en sourdine par le modérateur - + Moderator Modérateur - + Host Ordinateur - + Local and Moderator muted Le modérateur et vous-même êtes en sourdine - + Moderator muted Le modérateur est en sourdine - + Not muted N'est pas en sourdine - + Cut Couper - + Paste Coller - + Start video call Démarrer appel video - + Start audio call Démarrer appel audio - + Clear conversation Effacer la conversation - + Remove conversation Supprimer la conversation - + Remove contact Supprimer contact - + Block contact Bloquer le contact - + Contact details Détails du contact - + Hold En attente - + Sip input panel Clavier téléphonique - + Transfer call Transférer un appel - + Stop recording Arrêter l'enregistrement - + Start recording Démarrer l'enregistrement - + Exit full screen Quitter le mode plein écran - + Share screen Partager votre écran - + Share window Partager la fenêtre - + Share screen area Partager une partie de l'écran - + Share file Partager le fichier - + Select sharing method Choisissez une méthode pour partager - + View plugin Voir les modules d'extension - + No video device Aucun périphérique vidéo - + N/A N/A - + Lower hand Baisser la main - + Raise hand Lever la main - + Hide chat view Cacher la fenêtre de clavardage - + Place audio call Faire un appel audio - + Place video call Faire un appel vidéo - + Show available plugins Montrer les modules d'extension disponibles - + Add to conversations Ajouter aux conversations - + Jump to latest Faire défiler jusqu'à la fin de la conversation - + {} is typing… {} est en train d'écrire ... - + {} are typing… {} sont en train d'écrire ... - + Several people are typing… Plusieurs personnes sont en train d'écrire ... - + and et - + Enter Jami Account Management Server (JAMS) URL Entrer l'URL du serveur de gestion de comptes JAMS - + Required Obligatoire - + Jami Account Management Server URL URL du serveur de gestion de comptes Jami - + Enter your JAMS credentials Entrez vos références JAMS - + Connect Se connecter - + Back to welcome page Revenir à la page de bienvenue - + Choose name Choisir un nom - + Choose username Choisir un nom d'utilisateur - + Create account Créer un compte - + Confirm password Confirmer le mot de passe - + Optional Optionnel - + Choose a username for your account Choisissez un nom d'utilisateur pour votre compte - + Choose a name Choisir un nom - + Choose your username Choisissez votre nom d'utilisateur - + Invalid name Nom d'utilisateur invalide - + Invalid username Nom d'utilisateur invalide - + Name already taken Ce nom d'utilisateur est déjà utilisé - + Username already taken Nom d'utilisateur non-disponible - + Proxy Proxy - + Server Serveur - + Create SIP account Créer un compte SIP - + Configure an existing SIP account Configurez un compte SIP existant. - + Backup successful La sauvegarde s'est bien effectuée - + Backup failed Échec de la sauvegarde - + Password changed successfully Le mot de passe a été modifié - + Password change failed Échec de changement du mot de passe - + Password set successfully Le mot de passe a été modifié - + Password set failed Le positionnement du mot de passe a échoué - + Change password Changer mot de passe - - + + Set password Définir mot de passe - + Change current password Changer le mot de passe courant - + Backup account to a .gz file Sauvegarder le compte dans un fichier .gz - + Enable account Activer le compte - + Set username Enregistrer un nom d’utilisateur - + Registering name Enregistrement du nom - + Register a username Enregistrer un nom d'utilisateur - + Register username Enregistrer le nom d'utilisateur - + Link a new device to this account Lier un autre appareil à ce compte - + Link another device Associer un autre appareil - + Exporting account… Export du compte en cours... - + Remove Device Supprimer cet appareil - + Are you sure you wish to remove this device? Êtes-vous certain que vous souhaitez supprimer cet appareil ? - + Linked Devices Appareils associés - + Your PIN is: Votre NIP est : - + Error connecting to the network. Please try again later. Erreur de connexion réseau Veuillez réessayer plus tard - + Do you really want to delete this account? Voulez-vous vraiment supprimer ce compte? - + Save new device name Sauvegarder le nouveau nom d'appareil - + Edit device name Modifier le nom de l'appareil - + Unlink device from account Dissocier cet appareil d'un compte - + Select a folder Choisir un répertoire - + Enable notifications Activer les notifications - + Enable dark theme Activer le thème sombre - + Keep minimized on close Laisser minimisé en fermant - + Run application on system startup Lancer l'application au démarrage - + Downloads directory Dossier des téléchargements - + Choose download directory Choisir le répertoire de téléchargement - + Record call Enregistrer l'appel - + Chatview Vue dicussions - + Display hyperlink previews in the chatview Afficher les aperçus des liens - + User interface language Langue de l'interface utilisateur - + File transfer Transfert de fichier - + Allow incoming files from unknown contacts Autoriser les fichiers entrants de contacts inconnus - + Automatically accept incoming files Accepter automatiquement les fichiers entrants - + Accept transfer limit Taille maximum des fichiers automatiquement acceptés - + in MB, 0 = unlimited en mégaoctets , 0 = illimité - + Register Inscription - + Incorrect password Mot de passe incorrect - + Save file Enregistrer le fichier - + Open location Ouvrir l'emplacement - + Install beta version Installer la version Bêta - + Check for updates now Vérifier les mises à nouveaux maintenant - + Enable/Disable automatic updates Activer/Désactiver les mises à jour automatiques - + toggle automatic updates Case à cocher des mises à jour automatiques - + Updates Mises à jour - + Update Mise à jour - + A new version of Jami was found Would you like to update now? Une nouvelle version de Jami est disponible. Souhaitez-vous mettre à jour Jami maintenant ? - + No new version of Jami was found Aucune nouvelle version de Jami - + An error occured when checking for a new version Une erreur s'est produite en vérifiant si il y avait une nouvelle version. - + Installer download canceled Le téléchargement de l'installateur à été annulé - + This will uninstall your current Release version and you can always download the latest Release version on our website Ceci désinstallera votre version courante et vous pouvez toujours revenir à la dernière version en la téléchargeant sur notre site web - + Network disconnected Le réseau est déconnecté - - + + Something went wrong Une erreur s'est produite - + Troubleshoot Dépannage - + Open logs Ouvrir les journaux - + Get logs Obtenir les journaux - + Select a record directory Choisir un répertoire pour les enregistrements - + Debug Déverminage - + Show Stats Montrer les statistiques - + Start Démarrer - + Stop Arrêter - + Generating account… Création du compte... - + Import from backup Importer à partir d'une sauvegarde. - + PIN NIP - + Stop taking photo Arrêter de prendre une photo - + Clear avatar image Effacer l'avatar - + Go back to plugins list Revenir à la liste des modules d'extension - + Profile is only shared with contacts Votre profil n'est partagé qu'avec vos contacts - + Enter your name Entrez votre nom - + Import account from other device Créer un compte à partir d'un autre appareil - + Import account from backup file Créer un compte à partir d'une sauvegarde - + Hide advanced features Cacher les fonctionnalités avancées - + Create new Jami account Créer un nouveau compte Jami - + Create new SIP account Créer un nouveau compte SIP - + Welcome to Bienvenue sur - + Upgrade Mettre à jour - + Later Plus tard - + Local muted Ordinateur local en sourdine - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Is swarm: est un swarm - + True Vrai - + False Faux - + Add emoji Ajouter un émoji - + Send file Envoyez un fichier - + Leave audio message Envoyer un message vocal - + Leave video message Envoyer un message vidéo - + Send Envoyer - + Remove Supprimer - + Write to %1 Écrire à %1 - + %1 has sent you a request for a conversation. %1 vous a envoyé une demande de conversation. - + Hello, Would you like to join the conversation? Bonjour, Souhaitez-vous rejoindre la conversation ? - + You have accepted the conversation request Vous avez accepté la demande conversation. - + Waiting until %1 connects to synchronize the conversation. En attente de la synchronisation de la conversation par %1 - - + + Copy Copier - + Participant is still muted on their device Le participant est encore en sourdine sur son appareil - + You are still muted on your device Vous êtes encore en sourdine sur votre appareil - + View full screen Voir en plein écran - + Stop sharing screen or file Arrêter le partage d'écran - + Display advanced settings Afficher les paramètres avancés - + Hide advanced settings Cacher les paramètres avancés - + Display banned contacts Afficher les contacts bannis - + Hide banned contacts Cacher les contacts bannis - + Layout Disposition - + Vertical view Vue verticale - + Horizontal view Vue horizontale - + Keyboard Shortcut Table Tableau des raccourcis clavier - + Conversation Conversation - + Call Appeler - + Settings Réglages - + Report Bug Reporter un bug - + Clear Effacer - + Copied to clipboard! Copié dans le presse-papier ! - + Receive Logs Journaux reçus - + Archive Archive - + Open file Ouvrir le fichier - + Create your account from a backup Créer votre compte à partir d'une sauvegarde - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Vous pouvez créer une archive en cliquant sur "Sauvegarder le compte" dans les paramètres de compte. Ceci créera un fichier .gz sur votre appareil. - + Restore an account from backup Créer un compte à partir d'une sauvegarde - + Enter Jami account password Saisissez le mot de passe du compte Jami - + The PIN and the account password should be entered in your device within 10 minutes. Ce NIP ainsi que le mot de passe du compte doivent être saisis dans votre nouvel appareil dans les 10 prochaines minutes. - + Close Fermer - + Enter your account password Entrer le mot de passe de votre compte - + Add Device Ajouter un appareil - + Enter the password Entrer le mot de passe - + Enter current password Entrez le mot de passe actuel - + Enter this account's password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Enter new password Entrer le nouveau mot de passe - + Confirm new password Confirmer le nouveau mot de passe - + Change Modifier - + Confirm Confirmer - + Export Exportation - + Choose a picture as avatar Choisissez une image comme avatar - + Import avatar from image file Choisir un avatar à partir d'une image - + Take photo Prendre une photo - + Reset Reset - + Select a plugin to install Choisissez un module d'extension à installer - + Install plugin Installer un module d'extension - + Save profile Sauvegardez votre profile - + Information Informations - + Enter the account password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Select a screen to share Choisissez l'écran à partager - + Select a window to share Choisissez la fenêtre que vous voulez partager - + All Screens Tous les écrans - + Screens Les écrans - + Windows Les fenêtres - + QR code Code QR - + Account QR Code QR - + This is your Jami username. Copy and share it with your friends! Ceci est votre nom d'utilisateur Jami. Conservez et partagez-le avec vos amis ! - + Link this device to an existing account Associer cet appareil avec un compte existant - + Advanced features Fonctionnalités avancées - + Show advanced features Montrer les fonctionnalités avancées - + Connect to a JAMS server Se connecter à un serveur JAMS - + Add a SIP account Ajouter un compte SIP - + Error while creating your account. Check your credentials. Une erreur est survenue pendant la création de compte. Vérifiez votre mot de passe. - + Clear Text Effacer le texte - + Search Results Résultats de la recherche - + Delete Supprimer - + Set moderator Définir un modérateur - + Unset moderator Supprimer un modérateur - + Maximize Maximiser - + Minimize Minimiser - + Hangup Raccrocher - + Conference moderation Modération de conférence - + Default moderators Modérateurs par défaut - + Enable local moderators Activer les modérateur locaux - + Make all participants moderators Tous les participants sont modérateurs - + Add default moderator Ajouter un modérateur par défaut - + Remove default moderator Supprimer un modérateur par défaut @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ouvrir la liste des comptes - + Focus conversations list Allez sur la liste des conversations - + Requests list Liste des sollicitations - + Previous conversation Conversation précédente - + Next conversation Conversation précédente - + Search bar Barre de recherche - + Full screen Mode plein écran - + Start an audio call Démarrer un appel audio - + Start a video call Démarrer un appel vidéo - + Clear history Effacer l'historique - + Block contact Bloquer le contact - + Remove conversation Supprimer la conversation - + Accept contact request Accepter la demande de contact - + Media settings Paramètres média - + General settings Paramètres généraux - + Account settings Paramètres du compte - + Plugin settings Paramètres du module d'extension - + Open account creation wizard Ouvrir l'assistant de création de compte - + Open keyboard shortcut table Ouvrir le tableau des raccourcis clavier - + Answer an incoming call Répondre à l'appel entrant - + End call Fin d’appel - + Decline the call request Refuser l'appel @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Sortir - + &Quit &Quitter - + &Show Jami &Montrer Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Les fichiers d'images - + All files Tous les fichiers @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Marche/Arrêt @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Choisir un module d'extension - + Preferences Préférences @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Charger/décharger @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Désinstaller votre module d'extension - + Reset preferences Remettre vos préférences à leur valeur par défaut - + Ok Ok - + Cancel Annuler - + Uninstall Désinstaller @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Les fichiers de module d'extension - + All files Tous les fichiers - + Installed plugins Modules d'extension installés @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Modifier les préférences @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Créé par : - + Artwork by: Artwork de: - + Based on the SFLPhone project Basé sur le projet SFLPhone - + Sending Envoi - + Failure Échec - + Sent Envoyé - + Connecting Connexion en cours - + Accept Accepter - + Canceled Annulé - + Unable to make contact Impossible de contacter l'interlocuteur - + Ongoing En cours - + Waiting for contact En attente de votre contact - + Incoming transfer Transfert entrant - + Timed out waiting for contact Délai d'attente de votre contact dépassé - + Finished Terminé - + %1 days ago Il y a %1 jour(s) - + one day ago il y a une journée - + %1 hours ago Il y a %1 heure(s) - + one hour ago il y a une heure - + %1 minutes ago Il y a %1 minute(s) - + just now juste maintenant @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Enregistrement d'appel - + Always record calls Toujours enregistrer les appels - + Quality Qualité - + Save in Enregistrer dans @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Supprimer @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Écran @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Appels - - - - - - + + + + + + Contacts Contacts @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Système - + Enable dark theme Activer le thème sombre - + Enable desktop notifications Afficher les notifications @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Répondre - + Decline Refuser - + Open conversation Ouvrir la conversation - + Accept Accepter - + Refuse Refuser @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identité @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbits/s - + Default Défaut - + System Système diff --git a/translations/ring_client_windows_fr_CH.ts b/translations/ring_client_windows_fr_CH.ts index ae5ab12d..7ccbb596 100644 --- a/translations/ring_client_windows_fr_CH.ts +++ b/translations/ring_client_windows_fr_CH.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajouter un compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fichiers audio - + All files Tous les fichiers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Paramètres avancés du compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacts bloqués @@ -89,32 +89,32 @@ CallAdapter - + Missed call Appel manqué - + Missed call with %1 Vous avez manqué un appel de %1 - + me moi - + Incoming call Appel entrant - + %1 is calling you %1 vous appelle - + is calling you vous appelle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Ajouter à la conférence - + Transfer this call Transférer cet appel - + Add default moderator Ajouter un modérateur par défaut @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nouveau message - + Trust request Invitation @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Succès - - + + Error Erreur - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Ok OK @@ -211,7 +211,7 @@ Jami s’arrête. DeviceItemDelegate - + Device Id Identifiant d'appareil @@ -219,2130 +219,2130 @@ Jami s’arrête. JamiStrings - + Find a user or search for a conversation Chercher un utilisateur ou une conversation - + Search your invitations Rechercher parmi les invitations - + Invitations Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Credits Crédits - + Display QR code Afficher le code QR - + Open settings Ouvrir les paramètres - + Close settings Fermer les paramètres - + Authentication required Athentification requise - + Your session has expired or been revoked on this device. Please enter your password. Votre session a expiré ou votre appareil a été révoqué. Veuillez entrer votre mot de passe. - + JAMS server Serveur JAMS - + Authenticate Authentification - + Delete account Supprimer le compte - + Authentication failed Échec de l'authentification - + Password Mot de passe - + Username Nom d'utilisateur - + Alias Alias - + Call Settings Paramètres d'appel - + Allow incoming calls from unknown contacts Autoriser les appels entrants de contacts inconnus - + In progress… En cours... - + Accept Accepter - + Refuse Refuser - + Incoming audio call from {} Appel audio entrant de {} - + Incoming video call from {} Appel vidéo entrant de {} - + Convert your account into a rendezvous point Transformer votre compte en point de rendez-vous - + Automatically answer calls Répondre automatiquement aux appels - + Enable custom ringtone Activer une sonnerie personnalisée - + Select custom ringtone Choisir une sonnerie personnalisée - + Add a custom ringtone Ajouter une sonnerie personnalisée - + Select a new ringtone Sélectionner une nouvelle sonnerie - + Voicemail Boîte vocale - + Voicemail dial code Numéro de boîte vocale - + Security Sécurité - + Encrypt media streams (SRTP) Chiffrer les flux média (SRTP) - + Enable SDES key exchange Activer l'échange de clés SDES - + Allow fallback on RTP Se rabattre sur RTP - + Encrypt negotiation (TLS) Chiffrer les négociations (TLS) - + CA certificate Autorité de Certification - + User certificate Certificat d'utilisateur - + Private key Clé privée - + Private key password Mot de passe de la clé privée - + Verify certificates for incoming TLS connections Vérifier les certificats pour les connexions TLS entrantes - + Verify server TLS certificates Vérifier les certificats cotés serveur - + Require certificate for incoming TLS connections Exiger un certificat pour les connexions TLS entrantes - + TLS protocol method Méthode du protocole TLS - + Audio input device selector Sélecteur d'entrée audio - + TLS server name Nom du serveur TLS - + Negotiation timeout (seconds) Délai de négociation (en secondes) - + Select a private key Sélectionner une clé privée - + Select a user certificate Sélectionner un certificat utilisateur - + Registration expiration time (seconds) Temps d'expiration de l'enregistrement (en secondes) - + Use custom address and port Utiliser une adresse et un port personnalisés - + Enable local peer discovery Activer la découverte des utilisateurs locaux - + Audio and Video Settings Paramètres audio et vidéo - + Frames per second Images par seconde - + Select video frame rate (frames per second) Choisir la fréquence d'image vidéo (images par seconde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Votre compte n'existe que sur cet appareil. Si vous perdez votre appareil ou si vous désinstallez l'application, votre compte sera supprimé et ne pourra pas être récupéré. Vous pouvez sauvegarder votre compte maintenant ou plus tard. - - + + End call Fin d’appel - + Pause call Mettre l'appel en pause - + Resume call Reprendre l'appel - + Pause video Mettre la vidéo en pause - + Resume video Reprendre la vidéo - + Creating account… Création du compte en cours... - + Encrypt account with password Chiffrer le compte avec un mot de passe - + Create a rendezvous point Créer un point de rendez-vous - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Pour chiffrer votre compte sur cet appareil, choisissez un mot de passe. Notez que le mot de passe ne peut pas être récupéré. - + Choose a name for your rendezvous point Choisissez un nom pour votre point de rendez-vous - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si votre compte n'a pas été sauvegardé ou ajouté à un autre appareil, votre compte et votre nom enregistré seront irrévocablement perdus. - + Launch at startup Lancer au démarrage - + Enable typing indicators Activer les indicateurs de frappe - - + + Network error Erreur de réseau - + SSL error Erreur SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Entrer le NIP obtenu à partir d'un compte Jami configuré sur un autre appareil. Utiliser la fonction "Associer un autre appareil" pour obtenir un NIP. - + Link device Lier l'appareil - + Conversations Conversations - + Enable Activé - + Display or hide preferences Afficher ou cacher les préférences - + Add new plugin Ajouter un nouveau module d'extension - + Select a file Sélectionner un fichier - + Select Sélectionner - + Choose image file Choisir un fichier image - + Enter the rendezvous point's name Entrer le nom du point de rendez-vous - + Creating rendezvous point… Création du point de rendez-vous... - + Create account from Jami Account Management Server (JAMS) Créer un compte à partir d'un serveur de gestion de comptes Jami (JAMS) - + Create new rendezvous point Créer un nouveau point de rendez-vous - + Create a Jami account Créer un compte Jami - + About Jami À propos de Jami - + Decline contact request Refuser la demande de contact - + Accept contact request Accepter la demande de contact - + Automatically check for updates Vérifier automatiquement les mises à jour - + Ok OK - - + + Cancel Annuler - + Accept in audio Accepter en audio - + Accept in video Accepter en vidéo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vous voyez une conversation dont tous les membres sauf vous ont quittée.De nouvelles interactions seront impossibles. - + Start new conversation Commencer une nouvelle conversation - + Chat Settings Paramètres des discussions - + Enable read receipts Activer les accusés de réception de messages lus - + Send and receive receipts indicating that a message have been displayed Envoyer et recevoir des indicateurs que les messages ont été affichés - + Select a CA certificate Sélectionner un certificat CA - + Connectivity Connectivité - + Auto Registration After Expired Réenregistrement automatique après expiration - + Network interface Interface réseau - + Use UPnP Utiliser UPnP - + Use TURN Utiliser le TURN - + TURN address Adresse du serveur TURN - + TURN username Nom d'utilisateur TURN - + TURN password Mot de passe TURN - + TURN Realm Identifiant TURN - + Use STUN Utiliser STUN - + STUN address Adresse du serveur STUN - + Allow IP Auto Rewrite Autoriser la réécriture automatique IP - + Public address Adresse publique - + Address Adresse - + Port Port - + Media Média - + Enable video Activer la vidéo - + Video Codecs Codecs Vidéo - + Audio Codecs Codecs Audio - + Name Server Nom du Serveur - + SDP Session Negotiation (ICE Fallback) Négociation de session SDP (en cas d’échec ICE) - + Only used during negotiation in case ICE is not supported Seulement utilisé pendant la négociation si ICE n'est pas suppporté - + Audio RTP minimum Port Port audio RTP minimum - + Audio RTP maximum Port Port audio RTP maximum - + Video RTP minimum Port Port vidéo RTP minimum - + Video RTP maximum port Port vidéo RTP maximum - + Connect to other DHT nodes advertising on your local network. Se connecter à d'autres nœuds DHT affichés sur votre réseau local - + OpenDHT Configuration Configuration de l'OpenDHT - + Enable proxy Activer proxy - + Proxy address Adresse du nœud DHT délégataire - + Bootstrap Amorcer - + Back Précédent - + Account Settings Paramètres Compte Jami - + Account Compte - - + + General Général - + Plugin Module d'extension - + Audio/Video Audio/Vidéo - + Audio Audio - + Microphone Microphone - + Select audio input device Sélection du périphérique d'entrée audio - + Output device Périphérique de sortie - + Select audio output device Sélection du périphérique de sortie audio - + Ringtone device Périphérique pour la sonnerie - + Select ringtone output device Sélection du périphérique de sortie pour la sonnerie - + Audio manager Gestionnaire audio : - + Video Vidéo - + Select video device Sélection du périphérique vidéo - + Device Appareil - + Resolution Résolution - + Select video resolution Résolution de la vidéo - + Enable hardware acceleration Activer l'accélération matérielle - + Preview unavailable Prévisualisation indisponible - + Screen Sharing Partage d'écran - + Select screen sharing frame rate (frames per second) Choisir la fréquence d'affichage du partage d'écran (nombre d'image par seconde) - + no video aucune vidéo - + Backup account here Sauvegarder le compte - + Backup your account! Faites une sauvegarde de votre compte ! - + Backup account Sauvegarder le compte - + Skip Passer - + Success Réussite - + Error Erreur - + Never show me this again Ne plus afficher - + Recommended Recommandé - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers - + Reinstate as contact Réintégrer comme contact - + name nom - + Identifier Identifiant - + is recording est en cours d'enregistrement - + are recording sont en cours d'enregistrement - + Peer stopped recording Le correspondant a arrêté l'enregistrement - + is calling you vous appelle - - + + Mute Couper le micro - - + + Unmute Ouvrir le micro - + Add participant Ajouter un participant - + Add participants Ajouter des participants - + Chat Clavardage - + More options Plus d'options - + Mosaic Mosaïque - + You are still muted by moderator Vous êtes encore mis en sourdine par le modérateur - + You are muted by a moderator Vous avez été mis en sourdine par le modérateur - + Moderator Modérateur - + Host Ordinateur - + Local and Moderator muted Le modérateur et vous-même êtes en sourdine - + Moderator muted Le modérateur est en sourdine - + Not muted N'est pas en sourdine - + Cut Couper - + Paste Coller - + Start video call Démarrer appel video - + Start audio call Démarrer appel audio - + Clear conversation Effacer la conversation - + Remove conversation Supprimer la conversation - + Remove contact Supprimer contact - + Block contact Bloquer le contact - + Contact details Détails du contact - + Hold Mettre en attente - + Sip input panel Clavier téléphonique - + Transfer call Transférer l'appel - + Stop recording Arrêter l'enregistrement - + Start recording Démarrer l'enregistrement - + Exit full screen Quitter le mode plein écran - + Share screen Partager votre écran - + Share window Partager la fenêtre - + Share screen area Partager une partie de l'écran - + Share file Partager le fichier - + Select sharing method Choisissez une méthode pour partager - + View plugin Voir les modules d'extension - + No video device Aucun périphérique vidéo - + N/A N/A - + Lower hand Baisser la main - + Raise hand Lever la main - + Hide chat view Cacher la fenêtre de clavardage - + Place audio call Faire un appel audio - + Place video call Faire un appel vidéo - + Show available plugins Montrer les modules d'extension disponibles - + Add to conversations Ajouter aux conversations - + Jump to latest Faire défiler jusqu'à la fin de la conversation - + {} is typing… {} est en train d'écrire ... - + {} are typing… {} sont en train d'écrire ... - + Several people are typing… Plusieurs personnes sont en train d'écrire ... - + and et - + Enter Jami Account Management Server (JAMS) URL Entrer l'URL du serveur de gestion de comptes JAMS - + Required Obligatoire - + Jami Account Management Server URL URL du serveur de gestion de comptes Jami - + Enter your JAMS credentials Entrez vos références JAMS - + Connect Se connecter - + Back to welcome page Revenir à la page de bienvenue - + Choose name Choisir un nom - + Choose username Choisir un nom d'utilisateur - + Create account Créer un compte - + Confirm password Confirmer le mot de passe - + Optional Optionnel - + Choose a username for your account Choisissez un nom d'utilisateur pour votre compte - + Choose a name Choisir un nom - + Choose your username Choisissez votre nom d'utilisateur - + Invalid name Nom d'utilisateur invalide - + Invalid username Nom d'utilisateur incorrect - + Name already taken Ce nom d'utilisateur est déjà utilisé - + Username already taken Nom d'utilisateur non-disponible - + Proxy Proxy - + Server Serveur - + Create SIP account Créer un compte SIP - + Configure an existing SIP account Configurez un compte SIP existant. - + Backup successful La sauvegarde s'est bien effectuée - + Backup failed Échec de la sauvegarde - + Password changed successfully Le mot de passe a été modifié - + Password change failed Échec de changement du mot de passe - + Password set successfully Le mot de passe a été modifié - + Password set failed Le positionnement du mot de passe a échoué - + Change password Changer mot de passe - - + + Set password Définir mot de passe - + Change current password Changer le mot de passe courant - + Backup account to a .gz file Sauvegarder le compte dans un fichier .gz - + Enable account Activer le compte - + Set username Enregistrer un nom d’utilisateur - + Registering name Enregistrement du nom - + Register a username Enregistrer un nom d'utilisateur - + Register username Enregistrer le nom d'utilisateur - + Link a new device to this account Lier un autre appareil à ce compte - + Link another device Lier autre appareil - + Exporting account… Export du compte en cours... - + Remove Device Supprimer cet appareil - + Are you sure you wish to remove this device? Êtes-vous certain que vous souhaitez supprimer cet appareil ? - + Linked Devices Appareils associés - + Your PIN is: Votre NIP est : - + Error connecting to the network. Please try again later. Erreur de connexion réseau Veuillez réessayer plus tard - + Do you really want to delete this account? Voulez-vous vraiment supprimer ce compte? - + Save new device name Sauvegarder le nouveau nom d'appareil - + Edit device name Modifier le nom de l'appareil - + Unlink device from account Dissocier cet appareil d'un compte - + Select a folder Choisir un répertoire - + Enable notifications Activer les notifications - + Enable dark theme Activer le thème sombre - + Keep minimized on close Laisser minimisé en fermant - + Run application on system startup Lancer l'application au démarrage - + Downloads directory Dossier des téléchargements - + Choose download directory Choisir le répertoire de téléchargement - + Record call Enregistrer l'appel - + Chatview Vue dicussions - + Display hyperlink previews in the chatview Afficher les aperçus de liens - + User interface language Langue de l'interface utilisateur - + File transfer Transfert de fichier - + Allow incoming files from unknown contacts Autoriser les fichiers entrants de contacts inconnus - + Automatically accept incoming files Accepter automatiquement les fichiers entrants - + Accept transfer limit Taille maximum des fichiers automatiquement acceptés - + in MB, 0 = unlimited en mégaoctets , 0 = illimité - + Register Enregistrer - + Incorrect password Mot de passe incorrecte - + Save file Enregistrer le fichier - + Open location Ouvrir l'emplacement - + Install beta version Installer la version Bêta - + Check for updates now Vérifier les mises-à-jour - + Enable/Disable automatic updates Activer/Désactiver les mises à jour automatiques - + toggle automatic updates Case à cocher des mises à jour automatiques - + Updates Mises à jour - + Update Mise à jour - + A new version of Jami was found Would you like to update now? Une nouvelle version de Jami est disponible. Souhaitez-vous mettre à jour Jami maintenant ? - + No new version of Jami was found Aucune nouvelle version de Jami - + An error occured when checking for a new version Une erreur s'est produite en vérifiant si il y avait une nouvelle version. - + Installer download canceled Le téléchargement de l'installateur à été annulé - + This will uninstall your current Release version and you can always download the latest Release version on our website Ceci désinstallera votre version courante et vous pouvez toujours revenir à la dernière version en la téléchargeant sur notre site web - + Network disconnected Le réseau est déconnecté - - + + Something went wrong Quelque chose s'est mal passée. - + Troubleshoot Dépannage - + Open logs Ouvrir les journaux - + Get logs Obtenir les journaux - + Select a record directory Choisir un répertoire pour les enregistrements - + Debug Déverminage - + Show Stats Montrer les statistiques - + Start Démarrer - + Stop Stop - + Generating account… Création du compte... - + Import from backup Importer à partir d'une sauvegarde. - + PIN NIP - + Stop taking photo Arrêter de prendre une photo - + Clear avatar image Effacer l'avatar - + Go back to plugins list Revenir à la liste des modules d'extension - + Profile is only shared with contacts Votre profil n'est partagé qu'avec vos contacts - + Enter your name Entrez votre nom - + Import account from other device Créer un compte à partir d'un autre appareil - + Import account from backup file Créer un compte à partir d'une sauvegarde - + Hide advanced features Cacher les fonctionnalités avancées - + Create new Jami account Créer un nouveau compte Jami - + Create new SIP account Créer un nouveau compte SIP - + Welcome to Bienvenue sur - + Upgrade Mettre à jour - + Later Plus tard - + Local muted Ordinateur local en sourdine - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Is swarm: est un swarm - + True Vrai - + False Faux - + Add emoji Ajouter un émoji - + Send file Envoyez un fichier - + Leave audio message Envoyer un message vocal - + Leave video message Envoyer un message vidéo - + Send Envoyer - + Remove Supprimer - + Write to %1 Écrire à %1 - + %1 has sent you a request for a conversation. %1 vous a envoyé une demande de conversation. - + Hello, Would you like to join the conversation? Bonjour, Souhaitez-vous rejoindre la conversation ? - + You have accepted the conversation request Vous avez accepté la demande conversation. - + Waiting until %1 connects to synchronize the conversation. En attente de la synchronisation de la conversation par %1 - - + + Copy Copier - + Participant is still muted on their device Le participant est encore en sourdine sur son appareil - + You are still muted on your device Vous êtes encore en sourdine sur votre appareil - + View full screen Voir en plein écran - + Stop sharing screen or file Arrêter le partage d'écran - + Display advanced settings Afficher les paramètres avancés - + Hide advanced settings Cacher les paramètres avancés - + Display banned contacts Afficher les contacts bannis - + Hide banned contacts Cacher les contacts bannis - + Layout Disposition - + Vertical view Vue verticale - + Horizontal view Vue horizontale - + Keyboard Shortcut Table Tableau des raccourcis clavier - + Conversation Conversation - + Call Appel - + Settings Réglages - + Report Bug Reporter un bug - + Clear Effacer - + Copied to clipboard! Copié dans le presse-papier ! - + Receive Logs Journaux reçus - + Archive Archive - + Open file Ouvrir le fichier - + Create your account from a backup Créer votre compte à partir d'une sauvegarde - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Vous pouvez créer une archive en cliquant sur "Sauvegarder le compte" dans les paramètres de compte. Ceci créera un fichier .gz sur votre appareil. - + Restore an account from backup Créer un compte à partir d'une sauvegarde - + Enter Jami account password Saisissez le mot de passe du compte Jami - + The PIN and the account password should be entered in your device within 10 minutes. Ce NIP ainsi que le mot de passe du compte doivent être saisis dans votre nouvel appareil dans les 10 prochaines minutes. - + Close Fermer - + Enter your account password Entrer le mot de passe de votre compte - + Add Device Ajouter un appareil - + Enter the password Entrer le mot de passe - + Enter current password Entrez le mot de passe actuel - + Enter this account's password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Enter new password Entrer le nouveau mot de passe - + Confirm new password Confirmer le nouveau mot de passe - + Change Modifier - + Confirm Confirmer - + Export Exporter - + Choose a picture as avatar Choisissez une image comme avatar - + Import avatar from image file Choisir un avatar à partir d'une image - + Take photo Prendre une photo - + Reset Reset - + Select a plugin to install Choisissez un module d'extension à installer - + Install plugin Installer un module d'extension - + Save profile Sauvegardez votre profile - + Information Informations - + Enter the account password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Select a screen to share Choisissez l'écran à partager - + Select a window to share Choisissez la fenêtre que vous voulez partager - + All Screens Tous les écrans - + Screens Les écrans - + Windows Les fenêtres - + QR code Code QR - + Account QR Code QR - + This is your Jami username. Copy and share it with your friends! Ceci est votre nom d'utilisateur Jami. Conservez et partagez-le avec vos amis ! - + Link this device to an existing account Lier cet appareil à un compte existant - + Advanced features Fonctionnalités avancées - + Show advanced features Montrer les fonctionnalités avancées - + Connect to a JAMS server Se connecter à un serveur JAMS - + Add a SIP account Ajouter un compte SIP - + Error while creating your account. Check your credentials. Une erreur est survenue pendant la création de compte. Vérifiez votre mot de passe. - + Clear Text Effacer le texte - + Search Results Résultats de recherche - + Delete Supprimer - + Set moderator Définir un modérateur - + Unset moderator Supprimer un modérateur - + Maximize Maximiser - + Minimize Minimiser - + Hangup Raccrocher - + Conference moderation Modération de conférence - + Default moderators Modérateurs par défaut - + Enable local moderators Activer les modérateur locaux - + Make all participants moderators Tous les participants sont modérateurs - + Add default moderator Ajouter un modérateur par défaut - + Remove default moderator Supprimer un modérateur par défaut @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ouvrir la liste des comptes - + Focus conversations list Allez sur la liste des conversations - + Requests list Liste des sollicitations - + Previous conversation Conversation précédente - + Next conversation Conversation précédente - + Search bar Barre de recherche - + Full screen Mode plein écran - + Start an audio call Démarrer un appel audio - + Start a video call Démarrer un appel vidéo - + Clear history Effacer l'historique - + Block contact Bloquer le contact - + Remove conversation Supprimer la conversation - + Accept contact request Accepter la demande de contact - + Media settings Paramètres média - + General settings Paramètres généraux - + Account settings Paramètres du compte - + Plugin settings Paramètres du module d'extension - + Open account creation wizard Ouvrir l'assistant de création de compte - + Open keyboard shortcut table Ouvrir le tableau des raccourcis clavier - + Answer an incoming call Répondre à l'appel entrant - + End call Fin d’appel - + Decline the call request Refuser l'appel @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Sortir - + &Quit &Quitter - + &Show Jami &Montrer Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Les fichiers d'images - + All files Tous les fichiers @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Marche/Arrêt @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Choisir un module d'extension - + Preferences Préférences @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Charger/décharger @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Désinstaller votre module d'extension - + Reset preferences Remettre vos préférences à leur valeur par défaut - + Ok OK - + Cancel Annuler - + Uninstall Désinstaller @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Les fichiers de module d'extension - + All files Tous les fichiers - + Installed plugins Modules d'extension installés @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Modifier les préférences @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Créé par - + Artwork by: Artwork de: - + Based on the SFLPhone project Basé sur le projet SFLPhone - + Sending Envoi - + Failure Échec - + Sent Envoyé - + Connecting Connexion en cours - + Accept Accepter - + Canceled Annulé - + Unable to make contact Impossible de contacter l'interlocuteur - + Ongoing En cours - + Waiting for contact En attente de votre contact - + Incoming transfer Transfert entrant - + Timed out waiting for contact Délai d'attente de votre contact dépassé - + Finished Terminé - + %1 days ago Il y a %1 jour(s) - + one day ago il y a une journée - + %1 hours ago Il y a %1 heure(s) - + one hour ago il y a une heure - + %1 minutes ago Il y a %1 minute(s) - + just now juste maintenant @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Enregistrement d'appel - + Always record calls Toujours enregistrer les appels - + Quality Qualité - + Save in Enregistrer dans @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Supprimer @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Écran @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Appels - - - - - - + + + + + + Contacts Contacts @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Système - + Enable dark theme Activer le thème sombre - + Enable desktop notifications Afficher les notifications @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Répondre - + Decline Refuser - + Open conversation Ouvrir la conversation - + Accept Accepter - + Refuse Refuser @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identité @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbits/s - + Default Défaut - + System Système diff --git a/translations/ring_client_windows_fr_FR.ts b/translations/ring_client_windows_fr_FR.ts index d5a9b7e7..389a455f 100644 --- a/translations/ring_client_windows_fr_FR.ts +++ b/translations/ring_client_windows_fr_FR.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajouter un compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fichiers audio - + All files Tous les fichiers @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificat - - - + + + All files Tous les fichiers - + Key File Fichier de clé @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Paramètres avancés du compte @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacts bloqués @@ -89,32 +89,32 @@ CallAdapter - + Missed call Appel manqué - + Missed call with %1 Vous avez manqué un appel de %1 - + me moi - + Incoming call Appel entrant - + %1 is calling you %1 vous appelle - + is calling you vous appelle @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Ajouter à la conférence - + Transfer this call Transférer cet appel - + Add default moderator Ajouter un modérateur par défaut @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nouveau message - + Trust request Invitation @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok d'accord - - + + Success Succès - - + + Error Erreur - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Ok d'accord @@ -211,7 +211,7 @@ Jami s’arrête. DeviceItemDelegate - + Device Id Identifiant d'appareil @@ -219,2130 +219,2130 @@ Jami s’arrête. JamiStrings - + Find a user or search for a conversation Chercher un utilisateur ou une conversation - + Search your invitations Rechercher parmi les invitations - + Invitations Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami est un logiciel libre de communication universel qui respecte les libertés et la vie privée de ses utilisateurs. - + Credits Crédits - + Display QR code Afficher le code QR - + Open settings Ouvrir les paramètres - + Close settings Fermer les paramètres - + Authentication required Athentification requise - + Your session has expired or been revoked on this device. Please enter your password. Votre session a expiré ou votre appareil a été révoqué. Veuillez entrer votre mot de passe. - + JAMS server Serveur JAMS - + Authenticate Authentification - + Delete account Supprimer le compte - + Authentication failed Échec de l'authentification - + Password mot de passe - + Username nom d'utilisateur - + Alias Alias - + Call Settings Paramètres d'appel - + Allow incoming calls from unknown contacts Autoriser les appels entrants de contacts inconnus - + In progress… En cours... - + Accept Accepter - + Refuse Refuser - + Incoming audio call from {} Appel audio entrant de {} - + Incoming video call from {} Appel vidéo entrant de {} - + Convert your account into a rendezvous point Transformer votre compte en point de rendez-vous - + Automatically answer calls Répondre automatiquement aux appels - + Enable custom ringtone Activer une sonnerie personnalisée - + Select custom ringtone Choisir une sonnerie personnalisée - + Add a custom ringtone Ajouter une sonnerie personnalisée - + Select a new ringtone Sélectionner une nouvelle sonnerie - + Voicemail Boîte vocale - + Voicemail dial code Numéro de boîte vocale - + Security Sécurité - + Encrypt media streams (SRTP) Chiffrer les flux média (SRTP) - + Enable SDES key exchange Activer l'échange de clés SDES - + Allow fallback on RTP Se rabattre sur RTP - + Encrypt negotiation (TLS) Chiffrer les négociations (TLS) - + CA certificate Autorité de Certification - + User certificate Certificat d'utilisateur - + Private key Clé privée - + Private key password Mot de passe de la clé privée - + Verify certificates for incoming TLS connections Vérifier les certificats pour les connexions TLS entrantes - + Verify server TLS certificates Vérifier les certificats cotés serveur - + Require certificate for incoming TLS connections Exiger un certificat pour les connexions TLS entrantes - + TLS protocol method Méthode du protocole TLS - + Audio input device selector Sélecteur d'entrée audio - + TLS server name Nom du serveur TLS - + Negotiation timeout (seconds) Délai de négociation (en secondes) - + Select a private key Sélectionner une clé privée - + Select a user certificate Sélectionner un certificat utilisateur - + Registration expiration time (seconds) Temps d'expiration de l'enregistrement (en secondes) - + Use custom address and port Utiliser une adresse et un port personnalisés - + Enable local peer discovery Activer la découverte des utilisateurs locaux - + Audio and Video Settings Paramètres audio et vidéo - + Frames per second Images par seconde - + Select video frame rate (frames per second) Choisir la fréquence d'image vidéo (images par seconde) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Votre compte n'existe que sur cet appareil. Si vous perdez votre appareil ou si vous désinstallez l'application, votre compte sera supprimé et ne pourra pas être récupéré. Vous pouvez sauvegarder votre compte maintenant ou plus tard. - - + + End call Fin d’appel - + Pause call Mettre l'appel en pause - + Resume call Reprendre l'appel - + Pause video Mettre la vidéo en pause - + Resume video Reprendre la vidéo - + Creating account… Création du compte en cours... - + Encrypt account with password Chiffrer le compte avec un mot de passe - + Create a rendezvous point Créer un point de rendez-vous - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Pour chiffrer votre compte sur cet appareil, choisissez un mot de passe. Notez que le mot de passe ne peut pas être récupéré. - + Choose a name for your rendezvous point Choisissez un nom pour votre point de rendez-vous - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Si votre compte n'a pas été sauvegardé ou ajouté à un autre appareil, votre compte et votre nom enregistré seront irrévocablement perdus. - + Launch at startup Lancer au démarrage - + Enable typing indicators Activer les indicateurs de frappe - - + + Network error Erreur de réseau - + SSL error Erreur SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Entrer le NIP obtenu à partir d'un compte Jami configuré sur un autre appareil. Utiliser la fonction "Associer un autre appareil" pour obtenir un NIP. - + Link device Appareil en cours de liaison - + Conversations Conversations - + Enable Activé - + Display or hide preferences Afficher ou cacher les préférences - + Add new plugin Ajouter un nouveau module d'extension - + Select a file Sélectionner un fichier - + Select Sélectionner - + Choose image file Choisir un fichier image - + Enter the rendezvous point's name Entrer le nom du point de rendez-vous - + Creating rendezvous point… Création du point de rendez-vous... - + Create account from Jami Account Management Server (JAMS) Créer un compte à partir d'un serveur de gestion de comptes Jami (JAMS) - + Create new rendezvous point Créer un nouveau point de rendez-vous - + Create a Jami account Créer un compte Jami - + About Jami À propos de Jami - + Decline contact request Refuser la demande de contact - + Accept contact request Accepter la demande de contact - + Automatically check for updates Vérifier automatiquement les mises à jour - + Ok d'accord - - + + Cancel Annuler - + Accept in audio Accepter en audio - + Accept in video Accepter en vidéo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vous voyez une conversation dont tous les membres sauf vous ont quittée.De nouvelles interactions seront impossibles. - + Start new conversation Commencer une nouvelle conversation - + Chat Settings Paramètres des discussions - + Enable read receipts Activer les accusés de réception de messages lus - + Send and receive receipts indicating that a message have been displayed Envoyer et recevoir des indicateurs que les messages ont été affichés - + Select a CA certificate Sélectionner un certificat CA - + Connectivity Connectivité - + Auto Registration After Expired Réenregistrement automatique après expiration - + Network interface Interface réseau - + Use UPnP Utiliser UPnP - + Use TURN Utiliser le TURN - + TURN address Adresse du serveur TURN - + TURN username Nom d'utilisateur TURN - + TURN password Mot de passe TURN - + TURN Realm Identifiant TURN - + Use STUN Utiliser STUN - + STUN address Adresse du serveur STUN - + Allow IP Auto Rewrite Autoriser la réécriture automatique IP - + Public address Adresse publique - + Address Adresse - + Port Port - + Media Média - + Enable video Activer la vidéo - + Video Codecs Codecs Vidéo - + Audio Codecs Codecs Audio - + Name Server Serveur de nom - + SDP Session Negotiation (ICE Fallback) Négociation de session SDP (en cas d’échec ICE) - + Only used during negotiation in case ICE is not supported Seulement utilisé pendant la négociation si ICE n'est pas suppporté - + Audio RTP minimum Port Port audio RTP minimum - + Audio RTP maximum Port Port audio RTP maximum - + Video RTP minimum Port Port vidéo RTP minimum - + Video RTP maximum port Port vidéo RTP maximum - + Connect to other DHT nodes advertising on your local network. Se connecter à d'autres nœuds DHT affichés sur votre réseau local - + OpenDHT Configuration Configuration de l'OpenDHT - + Enable proxy Activer proxy - + Proxy address Adresse du nœud DHT délégataire - + Bootstrap Amorcer - + Back Retour - + Account Settings Paramètres Compte Jami - + Account Compte - - + + General Général - + Plugin Module d'extension - + Audio/Video Audio/Video - + Audio Audio - + Microphone Microphone - + Select audio input device Sélection du périphérique d'entrée audio - + Output device Périphérique de sortie - + Select audio output device Sélection du périphérique de sortie audio - + Ringtone device Périphérique pour la sonnerie - + Select ringtone output device Sélection du périphérique de sortie pour la sonnerie - + Audio manager Gestionnaire audio : - + Video Vidéo - + Select video device Sélection du périphérique vidéo - + Device Appareil - + Resolution Résolution - + Select video resolution Résolution de la vidéo - + Enable hardware acceleration Activer l'accélération matérielle - + Preview unavailable Prévisualisation indisponible - + Screen Sharing Partage d'écran - + Select screen sharing frame rate (frames per second) Choisir la fréquence d'affichage du partage d'écran (nombre d'image par seconde) - + no video aucune vidéo - + Backup account here Sauvegarder le compte - + Backup your account! Faites une sauvegarde de votre compte ! - + Backup account Sauvegarder le compte - + Skip Passer - + Success Succès - + Error Erreur - + Never show me this again Ne plus montrer ce message - + Recommended Recommandé - + Jami archive files Fichiers d'archive Jami - + All files Tous les fichiers - + Reinstate as contact Réintégrer comme contact - + name nom - + Identifier Identifiant - + is recording est en cours d'enregistrement - + are recording sont en cours d'enregistrement - + Peer stopped recording Le correspondant a arrêté l'enregistrement - + is calling you vous appelle - - + + Mute Couper le micro - - + + Unmute Ouvrir le micro - + Add participant Ajouter un participant - + Add participants Ajouter des participants - + Chat Clavardage - + More options Plus d'options - + Mosaic Mosaïque - + You are still muted by moderator Vous êtes encore mis en sourdine par le modérateur - + You are muted by a moderator Vous avez été mis en sourdine par le modérateur - + Moderator Modérateur - + Host Ordinateur - + Local and Moderator muted Le modérateur et vous-même êtes en sourdine - + Moderator muted Le modérateur est en sourdine - + Not muted N'est pas en sourdine - + Cut Couper - + Paste Coller - + Start video call Démarrer appel video - + Start audio call Démarrer appel audio - + Clear conversation Effacer la conversation - + Remove conversation Supprimer la conversation - + Remove contact Supprimer contact - + Block contact Bloquer le contact - + Contact details Détails du contact - + Hold Patientez - + Sip input panel Clavier téléphonique - + Transfer call Transférer l'appel - + Stop recording Arrêter l'enregistrement - + Start recording Démarrer l'enregistrement - + Exit full screen Quitter le mode plein écran - + Share screen Partager votre écran - + Share window Partager la fenêtre - + Share screen area Partager une partie de l'écran - + Share file Partager le fichier - + Select sharing method Choisissez une méthode pour partager - + View plugin Voir les modules d'extension - + No video device Aucun périphérique vidéo - + N/A N/A - + Lower hand Baisser la main - + Raise hand Lever la main - + Hide chat view Cacher la fenêtre de clavardage - + Place audio call Faire un appel audio - + Place video call Faire un appel vidéo - + Show available plugins Montrer les modules d'extension disponibles - + Add to conversations Ajouter aux conversations - + Jump to latest Faire défiler jusqu'à la fin de la conversation - + {} is typing… {} est en train d'écrire ... - + {} are typing… {} sont en train d'écrire ... - + Several people are typing… Plusieurs personnes sont en train d'écrire ... - + and et - + Enter Jami Account Management Server (JAMS) URL Entrer l'URL du serveur de gestion de comptes JAMS - + Required Requis - + Jami Account Management Server URL URL du serveur de gestion de comptes Jami - + Enter your JAMS credentials Entrez vos références JAMS - + Connect Se connecter - + Back to welcome page Revenir à la page de bienvenue - + Choose name Choisir un nom - + Choose username Choisir un nom d'utilisateur - + Create account Créer un compte - + Confirm password Confirmer le mot de passe - + Optional Optionnel - + Choose a username for your account Choisissez un nom d'utilisateur pour votre compte - + Choose a name Choisir un nom - + Choose your username Choisissez votre nom d'utilisateur - + Invalid name Nom d'utilisateur invalide - + Invalid username Nom d'utilisateur incorrect - + Name already taken Ce nom d'utilisateur est déjà utilisé - + Username already taken Nom d'utilisateur non-disponible - + Proxy Proxy - + Server Serveur - + Create SIP account Créer un compte SIP - + Configure an existing SIP account Configurez un compte SIP existant. - + Backup successful La sauvegarde s'est bien effectuée - + Backup failed Échec de la sauvegarde - + Password changed successfully Le mot de passe a été modifié - + Password change failed Échec de changement du mot de passe - + Password set successfully Le mot de passe a été modifié - + Password set failed Le positionnement du mot de passe a échoué - + Change password Changer le mot de passe - - + + Set password Définir mot de passe - + Change current password Changer le mot de passe courant - + Backup account to a .gz file Sauvegarder le compte dans un fichier .gz - + Enable account Activer le compte - + Set username Enregistrer un nom d’utilisateur - + Registering name Enregistrement du nom - + Register a username Enregistrer un nom d'utilisateur - + Register username Enregistrer le nom d'utilisateur - + Link a new device to this account Lier un autre appareil à ce compte - + Link another device Lier autre appareil - + Exporting account… Export du compte en cours... - + Remove Device Supprimer cet appareil - + Are you sure you wish to remove this device? Êtes-vous certain que vous souhaitez supprimer cet appareil ? - + Linked Devices Appareils liés - + Your PIN is: Votre NIP est : - + Error connecting to the network. Please try again later. Erreur de connexion réseau Veuillez réessayer plus tard - + Do you really want to delete this account? Voulez-vous vraiment supprimer ce compte? - + Save new device name Sauvegarder le nouveau nom d'appareil - + Edit device name Modifier le nom de l'appareil - + Unlink device from account Dissocier cet appareil d'un compte - + Select a folder Choisir un répertoire - + Enable notifications Activer les notifications - + Enable dark theme Activer le thème sombre - + Keep minimized on close Laisser minimisé en fermant - + Run application on system startup Lancer l'application au démarrage - + Downloads directory Dossier des téléchargements - + Choose download directory Choisir le répertoire de téléchargement - + Record call Enregistrer l'appel - + Chatview Vue dicussions - + Display hyperlink previews in the chatview Afficher les aperçus des liens - + User interface language Langue de l'interface utilisateur - + File transfer Transfert de fichier - + Allow incoming files from unknown contacts Autoriser les fichiers entrants de contacts inconnus - + Automatically accept incoming files Accepter automatiquement les fichiers entrants - + Accept transfer limit Taille maximum des fichiers automatiquement acceptés - + in MB, 0 = unlimited en mégaoctets , 0 = illimité - + Register Enregistrer - + Incorrect password Mot de passe incorrecte - + Save file Enregistrer le fichier - + Open location Ouvrir l'emplacement - + Install beta version Installer la version Bêta - + Check for updates now Vérifier les mises-à-jour - + Enable/Disable automatic updates Activer/Désactiver les mises à jour automatiques - + toggle automatic updates Case à cocher des mises à jour automatiques - + Updates Mises à jour - + Update Mise à jour - + A new version of Jami was found Would you like to update now? Une nouvelle version de Jami est disponible. Souhaitez-vous mettre à jour Jami maintenant ? - + No new version of Jami was found Aucune nouvelle version de Jami - + An error occured when checking for a new version Une erreur s'est produite en vérifiant si il y avait une nouvelle version. - + Installer download canceled Le téléchargement de l'installateur à été annulé - + This will uninstall your current Release version and you can always download the latest Release version on our website Ceci désinstallera votre version courante et vous pouvez toujours revenir à la dernière version en la téléchargeant sur notre site web - + Network disconnected Le réseau est déconnecté - - + + Something went wrong Quelque chose s'est mal passée. - + Troubleshoot Dépannage - + Open logs Ouvrir les journaux - + Get logs Obtenir les journaux - + Select a record directory Choisir un répertoire pour les enregistrements - + Debug Déverminage - + Show Stats Montrer les statistiques - + Start Démarrer - + Stop Arrêter - + Generating account… Création du compte... - + Import from backup Importer à partir d'une sauvegarde. - + PIN PIN - + Stop taking photo Arrêter de prendre une photo - + Clear avatar image Effacer l'avatar - + Go back to plugins list Revenir à la liste des modules d'extension - + Profile is only shared with contacts Votre profil n'est partagé qu'avec vos contacts - + Enter your name Entrez votre nom - + Import account from other device Créer un compte à partir d'un autre appareil - + Import account from backup file Créer un compte à partir d'une sauvegarde - + Hide advanced features Cacher les fonctionnalités avancées - + Create new Jami account Créer un nouveau compte Jami - + Create new SIP account Créer un nouveau compte SIP - + Welcome to Bienvenue sur - + Upgrade Mettre à jour - + Later Plus tard - + Local muted Ordinateur local en sourdine - + Trying to reconnect to the Jami daemon (jamid)… J'essaye de me reconnecter au daemon... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossible de se reconnecter au daemon Jami (jamid). Jami s’arrête. - + Is swarm: est un swarm - + True Vrai - + False Faux - + Add emoji Ajouter un émoji - + Send file Envoyer le fichier - + Leave audio message Envoyer un message vocal - + Leave video message Envoyer un message vidéo - + Send Envoyer - + Remove Supprimer - + Write to %1 Écrire à %1 - + %1 has sent you a request for a conversation. %1 vous a envoyé une demande de conversation. - + Hello, Would you like to join the conversation? Bonjour, Souhaitez-vous rejoindre la conversation ? - + You have accepted the conversation request Vous avez accepté la demande conversation. - + Waiting until %1 connects to synchronize the conversation. En attente de la synchronisation de la conversation par %1 - - + + Copy Copier - + Participant is still muted on their device Le participant est encore en sourdine sur son appareil - + You are still muted on your device Vous êtes encore en sourdine sur votre appareil - + View full screen Voir en plein écran - + Stop sharing screen or file Arrêter le partage d'écran - + Display advanced settings Afficher les paramètres avancés - + Hide advanced settings Cacher les paramètres avancés - + Display banned contacts Afficher les contacts bannis - + Hide banned contacts Cacher les contacts bannis - + Layout Disposition - + Vertical view Vue verticale - + Horizontal view Vue horizontale - + Keyboard Shortcut Table Tableau des raccourcis clavier - + Conversation Conversation - + Call Appel - + Settings Réglages - + Report Bug Reporter un bug - + Clear Effacer - + Copied to clipboard! Copié dans le presse-papier ! - + Receive Logs Journaux reçus - + Archive Archive - + Open file Ouvrir le fichier - + Create your account from a backup Créer votre compte à partir d'une sauvegarde - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Vous pouvez créer une archive en cliquant sur "Sauvegarder le compte" dans les paramètres de compte. Ceci créera un fichier .gz sur votre appareil. - + Restore an account from backup Créer un compte à partir d'une sauvegarde - + Enter Jami account password Saisissez le mot de passe du compte Jami - + The PIN and the account password should be entered in your device within 10 minutes. Ce NIP ainsi que le mot de passe du compte doivent être saisis dans votre nouvel appareil dans les 10 prochaines minutes. - + Close Fermer - + Enter your account password Entrer le mot de passe de votre compte - + Add Device Ajouter un appareil - + Enter the password Entrer le mot de passe - + Enter current password Entrez le mot de passe actuel - + Enter this account's password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Enter new password Entrer le nouveau mot de passe - + Confirm new password Confirmer le nouveau mot de passe - + Change Modifier - + Confirm Confirmer - + Export Exporter - + Choose a picture as avatar Choisissez une image comme avatar - + Import avatar from image file Choisir un avatar à partir d'une image - + Take photo Prendre une photo - + Reset Reset - + Select a plugin to install Choisissez un module d'extension à installer - + Install plugin Installer un module d'extension - + Save profile Sauvegardez votre profile - + Information Informations - + Enter the account password to confirm the removal of this device Entrer le mot de passe du compte pour confirmer la suppression de cet appareil - + Select a screen to share Choisissez l'écran à partager - + Select a window to share Choisissez la fenêtre que vous voulez partager - + All Screens Tous les écrans - + Screens Les écrans - + Windows Les fenêtres - + QR code Code QR - + Account QR Code QR - + This is your Jami username. Copy and share it with your friends! Ceci est votre nom d'utilisateur Jami. Conservez et partagez-le avec vos amis ! - + Link this device to an existing account Lier cet appareil à un compte existant - + Advanced features Fonctionnalités avancées - + Show advanced features Montrer les fonctionnalités avancées - + Connect to a JAMS server Se connecter à un serveur JAMS - + Add a SIP account Ajouter un compte SIP - + Error while creating your account. Check your credentials. Une erreur est survenue pendant la création de compte. Vérifiez votre mot de passe. - + Clear Text Effacer le texte - + Search Results Résultats de recherche - + Delete Supprimer - + Set moderator Définir un modérateur - + Unset moderator Supprimer un modérateur - + Maximize Agrandir - + Minimize Minimiser - + Hangup Raccrocher - + Conference moderation Modération de conférence - + Default moderators Modérateurs par défaut - + Enable local moderators Activer les modérateur locaux - + Make all participants moderators Tous les participants sont modérateurs - + Add default moderator Ajouter un modérateur par défaut - + Remove default moderator Supprimer un modérateur par défaut @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Ouvrir la liste des comptes - + Focus conversations list Allez sur la liste des conversations - + Requests list Liste des sollicitations - + Previous conversation Conversation précédente - + Next conversation Conversation précédente - + Search bar Barre de recherche - + Full screen Mode plein écran - + Start an audio call Démarrer un appel audio - + Start a video call Démarrer un appel vidéo - + Clear history Effacer l'historique - + Block contact Bloquer le contact - + Remove conversation Supprimer la conversation - + Accept contact request Accepter la demande de contact - + Media settings Paramètres média - + General settings Paramètres généraux - + Account settings Paramètres du compte - + Plugin settings Paramètres du module d'extension - + Open account creation wizard Ouvrir l'assistant de création de compte - + Open keyboard shortcut table Ouvrir le tableau des raccourcis clavier - + Answer an incoming call Répondre à l'appel entrant - + End call Fin d’appel - + Decline the call request Refuser l'appel @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit &Sortir - + &Quit &Quitter - + &Show Jami &Montrer Jami @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Les fichiers d'images - + All files Tous les fichiers @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Marche/Arrêt @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Choisir un module d'extension - + Preferences Préférences @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Charger/décharger @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Désinstaller votre module d'extension - + Reset preferences Remettre vos préférences à leur valeur par défaut - + Ok d'accord - + Cancel Annuler - + Uninstall Désinstaller @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Les fichiers de module d'extension - + All files Tous les fichiers - + Installed plugins Modules d'extension installés @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Modifier les préférences @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: Créé par - + Artwork by: Artwork de: - + Based on the SFLPhone project Basé sur le projet SFLPhone - + Sending Envoi - + Failure Échec - + Sent Envoyé - + Connecting En cours de connexion - + Accept Accepter - + Canceled Annulé - + Unable to make contact Impossible de contacter l'interlocuteur - + Ongoing En cours - + Waiting for contact En attente de votre contact - + Incoming transfer Transfert entrant - + Timed out waiting for contact Délai d'attente de votre contact dépassé - + Finished Terminé - + %1 days ago Il y a %1 jour(s) - + one day ago il y a une journée - + %1 hours ago Il y a %1 heure(s) - + one hour ago il y a une heure - + %1 minutes ago Il y a %1 minute(s) - + just now juste maintenant @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Enregistrement d'appel - + Always record calls Toujours enregistrer les appels - + Quality Qualité - + Save in Enregistrer dans @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Supprimer @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen Écran @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Appels - - - - - - + + + + + + Contacts Contacts @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System Système - + Enable dark theme Activer le thème sombre - + Enable desktop notifications Afficher les notifications @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer Répondre - + Decline Refuser - + Open conversation Ouvrir la conversation - + Accept Accepter - + Refuse Refuser @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identité @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbits/s - + Default Défaut - + System Système diff --git a/translations/ring_client_windows_ga.ts b/translations/ring_client_windows_ga.ts index c093c620..a88317eb 100644 --- a/translations/ring_client_windows_ga.ts +++ b/translations/ring_client_windows_ga.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ceart go leor - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ceart go leor @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Críochnaigh an glao - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Ceart go leor - - + + Cancel Cealaigh - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video níl físeán - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat Comhrá - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Scoir lánscáileán - + Share screen Comhroinn scáileán - + Share window Roinn fuinneog - + Share screen area Comhroinn limistéar scáileáin - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Fillteán íoslódálacha - + Choose download directory - + Record call - + Chatview Comhrá - + Display hyperlink previews in the chatview Taispeáin réamhamhairc naisc - + User interface language Teanga comhéadan úsáideora - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Cuireadh an suiteálaí íoslódáil ar ceal - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Comhad a sheoladh - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Amharc Lánscáileáin - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Leagan amach - + Vertical view Amharc ingearach - + Horizontal view Amharc cothrománach - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Roghnaigh scáileán le roinnt - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Lánscáileán - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Críochnaigh an glao - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Ceart go leor - + Cancel Cealaigh - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Cealaithe - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Córas - + Enable dark theme - + Enable desktop notifications Taispeáin fógraí @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Réamhshocrú - + System Córas diff --git a/translations/ring_client_windows_gl.ts b/translations/ring_client_windows_gl.ts index 36c5c581..e8b30748 100644 --- a/translations/ring_client_windows_gl.ts +++ b/translations/ring_client_windows_gl.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Ficheiro de certificado - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Ficheiro de certificado - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos excluídos @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chamada perdida - + Missed call with %1 - + me eu - + Incoming call Chamada entrante - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator Engadir moderador por omisión @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nova mensaxe - + Trust request Confiar na solicitude @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Aceptar - - + + Success Feito - - + + Error Erro - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Non se volveu conectar ao demoño Jami (jamid). Jami vai pechar. - + Trying to reconnect to the Jami daemon (jamid)… Intentando conectar ao demoño Jami (jamid)... - + Ok Aceptar @@ -211,7 +211,7 @@ Jami vai pechar. DeviceItemDelegate - + Device Id @@ -219,2125 +219,2125 @@ Jami vai pechar. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Convites - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versión - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami é software libre para comunicación universal que respecta a liberdade e privacidade das persoas usuarias. - + Credits Cŕedito - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Eliminar conta - + Authentication failed - + Password Contrasinal - + Username Nome de usuaria - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Permitir chamadas entrantes de contactos descoñecidos - + In progress… - + Accept Aceptar - + Refuse Rexeitar - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point Converte a túa conta nun lugar de encontro - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail Correo de voz - + Voicemail dial code - + Security Seguridade - + Encrypt media streams (SRTP) Cifrar fluxos de medios(SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Cifrar negociación (TLS) - + CA certificate Certificado CA - + User certificate Certificado de usuaria - + Private key Chave privada - + Private key password Contrasinal da chave privada - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Método do protocolo TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Caducidade da negociación (segundos) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Utilizar porto e endero personalizados - + Enable local peer discovery Activar o descubrimento de pares locais - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Finalizar chamada - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Cifra a conta cun contrasinal - + Create a rendezvous point Crear un punto de encontro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point Escolle un nome para o teu punto de encontro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators Activar indicadores de escritura - - + + Network error Fallo na rede - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Escribe o PIN obtido no outro dispositivo coa túa conta Jami. Usa "Ligar outro dispositivo" para obter o PIN. - + Link device Ligar dispositivo - + Conversations Conversas - + Enable Activar - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Crear conta Jami - + About Jami Acerca de Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Comprobar automáticamente actualizacións - + Ok Aceptar - - + + Cancel Cancelar - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Activar notificación de lectura - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Conectividade - + Auto Registration After Expired Rexistro automático tras caducidade - + Network interface Interface de rede - + Use UPnP - + Use TURN Usar TURN - + TURN address Enderezo TURN - + TURN username Nome usuaria TURN - + TURN password Contrasinal TURN - + TURN Realm - + Use STUN Usar STUN - + STUN address Enderezo STUN - + Allow IP Auto Rewrite - + Public address - + Address Enderezo - + Port Porto - + Media Multimedia - + Enable video Activar vídeo - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) Negociación da sesión SDP (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy Activar proxy - + Proxy address - + Bootstrap Bootstrap - + Back Atrás - + Account Settings - + Account Conta - - + + General Xeral - + Plugin Plugin - + Audio/Video - + Audio Audio - + Microphone - + Select audio input device - + Output device Dispositivo de saída - + Select audio output device - + Ringtone device Dispositivo do tono - + Select ringtone output device - + Audio manager Xestor do son - + Video Vídeo - + Select video device - + Device Dispositivo - + Resolution Resolución - + Select video resolution - + Enable hardware acceleration Activar aceleración por hardware - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video sen vídeo - + Backup account here - + Backup your account! Fai copia de apoio para a conta - + Backup account Copia de apoio da conta - + Skip Saltar - + Success Feito - + Error Erro - + Never show me this again Non amosar esto de novo. - + Recommended Recomendado - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Acalar - - + + Unmute Activar audio - + Add participant Engadir participante - + Add participants - + Chat Conversa - + More options Máis opcións - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator Moderadora - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call Iniciar chamada de vídeo - + Start audio call Iniciar chamada de audio - + Clear conversation Limpar conversa - + Remove conversation Eliminar conversa - + Remove contact - + Block contact Bloquear contacto - + Contact details Detalles do contacto - + Hold Agardar - + Sip input panel - + Transfer call - + Stop recording Deixar de gravar - + Start recording - + Exit full screen Saír de pantalla completa - + Share screen Compartir pantalla - + Share window Compartir ventá - + Share screen area Compartir área de pantalla - + Share file Compartir ficheiro - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Ergue a man - + Hide chat view Agochar a vista de conversa - + Place audio call Facer chamada de audio - + Place video call Facer chamada de vídeo - + Show available plugins Mostrar complementos dispoñibles - + Add to conversations Engadir as conversas - + Jump to latest Ir á última - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL Escribe o URL do Jami Account Management Server (JAMS) - + Required Requerido - + Jami Account Management Server URL - + Enter your JAMS credentials Escribe as credeciais para JAMS - + Connect Conectar - + Back to welcome page - + Choose name - + Choose username - + Create account Crear conta - + Confirm password Confirmar contrasinal - + Optional Opcional - + Choose a username for your account Escolle un nome de usuaria para a conta - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nome de usuaria non válido - + Name already taken - + Username already taken Este nome de usuaria xa está collido - + Proxy Proxy - + Server Servidor - + Create SIP account Crear conta SIP - + Configure an existing SIP account Configurar unha conta SIP existente - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Cambiar contrasinal - - + + Set password Escribe contrasinal - + Change current password - + Backup account to a .gz file - + Enable account Activar conta - + Set username - + Registering name - + Register a username - + Register username Rexistrar o nome de usuario/a - + Link a new device to this account - + Link another device Ligar outro dispositivo - + Exporting account… Exportando contrasinal... - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Dispositivos ligados - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Cartafol de descargas - + Choose download directory - + Record call - + Chatview Vista de conversa - + Display hyperlink previews in the chatview Mostrar vistas previas de ligazóns - + User interface language Idioma da interface de usuario - + File transfer Transferencia de ficheiro - + Allow incoming files from unknown contacts Permitir ficheiros entrantes de contactos descoñecidos - + Automatically accept incoming files Aceptar automáticamente ficheiros entrantes - + Accept transfer limit - + in MB, 0 = unlimited - + Register Rexistro - + Incorrect password - + Save file Gardar ficheiro - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Actualizar - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Descarga do instalador cancelada - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Deter - + Generating account… - + Import from backup Importar desde copia - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts O perfil só se comparte cos contactos - + Enter your name Escribe o teu nome - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Benvido/a a - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… Intentando conectar ao demoño Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Non se volveu conectar ao demoño Jami (jamid). Jami vai pechar. - + Is swarm: - + True - + False - + Add emoji Engadir emoji - + Send file Enviar ficheiro - + Leave audio message Deixar unha mensaxe de audio - + Leave video message Deixar unha mensaxe de vídeo - + Send Enviar - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Copiar - + Participant is still muted on their device - + You are still muted on your device - + View full screen Ver a pantalla completa - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Deseño - + Vertical view Visualización vertical - + Horizontal view Visualización horizontal - + Keyboard Shortcut Table - + Conversation - + Call Chamar - + Settings Axustes - + Report Bug - + Clear Limpar - + Copied to clipboard! - + Receive Logs - + Archive Arquivo - + Open file Abrir ficheiro - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Podes obter un ficheiro premendo en "Copia de Apoio da conta" nos axustes da conta. Esto creará un ficheiro .gz no teu dispositivo. - + Restore an account from backup Restablecer a conta desde copia de apoiio - + Enter Jami account password Escribe o contrasinal da conta Jami - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change Cambiar - + Confirm Confirmar - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo Tomar foto - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Seleccione unha pantalla para compartir - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Este é o teu nome de usuaria Jami. Copiao e compárteo coas túas amizades! - + Link this device to an existing account Ligar este dispositivo a unha conta existente - + Advanced features Características avanzadas - + Show advanced features - + Connect to a JAMS server Conectar a un servidor JAMS - + Add a SIP account Engadir conta SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Resultados da busca - + Delete Eliminar - + Set moderator Establecer moderador - + Unset moderator Desactivar moderador - + Maximize Maximizar - + Minimize Minimizar - + Hangup Colgar - + Conference moderation - + Default moderators - + Enable local moderators Activar moderadores locais - + Make all participants moderators - + Add default moderator Engadir moderador por omisión - + Remove default moderator @@ -2345,112 +2345,112 @@ Copiao e compárteo coas túas amizades! KeyboardShortcutTable - + Open account list Abrir lista de contas - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Pantalla completa - + Start an audio call Iniciar unha chamada de audio - + Start a video call Iniciar unha chamada de vídeo - + Clear history Eliminar historial - + Block contact Bloquear contacto - + Remove conversation Eliminar conversa - + Accept contact request - + Media settings - + General settings Axustes xerais - + Account settings Axustes da conta - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Finalizar chamada - + Decline the call request @@ -2458,17 +2458,17 @@ Copiao e compárteo coas túas amizades! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2476,12 +2476,12 @@ Copiao e compárteo coas túas amizades! PhotoboothView - + Image Files - + All files @@ -2489,7 +2489,7 @@ Copiao e compárteo coas túas amizades! PluginHandlerItemDelegate - + On/Off @@ -2497,12 +2497,12 @@ Copiao e compárteo coas túas amizades! PluginHandlerPicker - + Choose plugin Escoller Plugi - + Preferences @@ -2510,7 +2510,7 @@ Copiao e compárteo coas túas amizades! PluginItemDelegate - + Load/Unload @@ -2518,27 +2518,27 @@ Copiao e compárteo coas túas amizades! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Aceptar - + Cancel Cancelar - + Uninstall @@ -2546,17 +2546,17 @@ Copiao e compárteo coas túas amizades! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2564,7 +2564,7 @@ Copiao e compárteo coas túas amizades! PreferenceItemDelegate - + Edit preference @@ -2572,107 +2572,107 @@ Copiao e compárteo coas túas amizades! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending Enviando - + Failure Fallo - + Sent - + Connecting Conectando - + Accept Aceptar - + Canceled Cancelado - + Unable to make contact Non foi posible contactar - + Ongoing Saínte - + Waiting for contact Agardando polo contacto - + Incoming transfer Transferencia entrante - + Timed out waiting for contact Caducou a espera polo contacto - + Finished Rematada - + %1 days ago - + one day ago fai un día - + %1 hours ago - + one hour ago fai unha hora - + %1 minutes ago - + just now xusto agora @@ -2680,22 +2680,22 @@ Copiao e compárteo coas túas amizades! RecordingSettings - + Call Recording Gravación de chamada - + Always record calls Gravar sempre as chamadas - + Quality - + Save in @@ -2703,7 +2703,7 @@ Copiao e compárteo coas túas amizades! RevokeDevicePasswordDialog - + Remove @@ -2711,7 +2711,7 @@ Copiao e compárteo coas túas amizades! SelectScreen - + Screen @@ -2719,7 +2719,7 @@ Copiao e compárteo coas túas amizades! SettingParaCombobox - + @@ -2727,22 +2727,22 @@ Copiao e compárteo coas túas amizades! SmartListModel - - - - - - + + + + + + Calls Chamadas - - - - - - + + + + + + Contacts Contactos @@ -2750,17 +2750,17 @@ Copiao e compárteo coas túas amizades! SystemSettings - + System Sistema - + Enable dark theme - + Enable desktop notifications Mostrar notificacións @@ -2768,27 +2768,27 @@ Copiao e compárteo coas túas amizades! SystemTray - + Answer - + Decline Rexeitar - + Open conversation Abrir conversa - + Accept Aceptar - + Refuse Rexeitar @@ -2796,7 +2796,7 @@ Copiao e compárteo coas túas amizades! UserIdentity - + Identity Identidade @@ -2804,17 +2804,17 @@ Copiao e compárteo coas túas amizades! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Por omisión - + System Sistema diff --git a/translations/ring_client_windows_gu.ts b/translations/ring_client_windows_gu.ts index 8c9380e0..5f103859 100644 --- a/translations/ring_client_windows_gu.ts +++ b/translations/ring_client_windows_gu.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok બરાબર - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok બરાબર @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call કૉલ સમાપ્ત કરો - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok બરાબર - - + + Cancel રદ કરો - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video કોઈ વિડિયો નથી - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen પૂર્ણ સ્ક્રીનથી બહાર નીકળો - + Share screen સ્ક્રીન શેર કરો - + Share window શેર વિન્ડો - + Share screen area સ્ક્રીન વિસ્તાર શેર કરો - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest વાતચીતના અંત સુધી સ્ક્રોલ કરો - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ડાઉનલોડ્સ ફોલ્ડર - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview લિંક પૂર્વાવલોકન બતાવો - + User interface language વપરાશકર્તા ઈન્ટરફેસ ભાષા - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ઇન્સ્ટોલર ડાઉનલોડ રદ કર્યું - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ફાઇલ મોકલો - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen સંપૂર્ણ સ્ક્રીન જુઓ - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout લેઆઉટ - + Vertical view વર્ટિકલ વ્યુ - + Horizontal view આડું વ્યુ - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share શેર કરવા માટે સ્ક્રીન પસંદ કરો - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen સંપૂર્ણ સ્ક્રીન - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call કૉલ સમાપ્ત કરો - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok બરાબર - + Cancel રદ કરો - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled રદ થયેલ છે - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System સિસ્ટમ - + Enable dark theme - + Enable desktop notifications સૂચનાઓ બતાવો @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 મેગાબીટ/સેકન્ડ - + Default ડિફૉલ્ટ - + System સિસ્ટમ diff --git a/translations/ring_client_windows_he.ts b/translations/ring_client_windows_he.ts index de5e7873..caf85586 100644 --- a/translations/ring_client_windows_he.ts +++ b/translations/ring_client_windows_he.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile פרופיל @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files קובצי שמע - + All files כל הקבצים @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File קובץ תעודה - - - + + + All files כל הקבצים - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File קובץ תעודה - - - + + + All files כל הקבצים - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call שיחה שלא נענתה - + Missed call with %1 - + me - + Incoming call שיחה נכנסת - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok אישור - - + + Success - - + + Error שגיאה - + Jami archive files - + All files כל הקבצים @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok אישור @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations הזמנות - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version גרסא - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits תודות - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password סיסמה - + Username שם משתמש - + Alias כינוי - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept לקבל - + Refuse לדחות - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security אבטחה - + Encrypt media streams (SRTP) הצפן זרמי מדיה (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate תעודת CA - + User certificate תעודת משתמש - + Private key מפתח פרטי - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method שיטת פרוטוקול TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) פקיעת זמן הסדרה (שניות) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call סיום שיחה - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations דיונים - + Enable - + Display or hide preferences - + Add new plugin - + Select a file בחר קובץ - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account יצירת חשבון Jami - + About Jami על אודות Jami - + Decline contact request - + Accept contact request - + Automatically check for updates לבדוק אוטומטית אם יש עדכונים - + Ok אישור - - + + Cancel ביטול - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address כתובת - + Port פורט - + Media מדיה - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back חזרה - + Account Settings - + Account חשבון - - + + General כלליות - + Plugin - + Audio/Video אודיו/וידאו - + Audio אודיו - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video וידאו - + Select video device - + Device מכשיר - + Resolution רזולוציה - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ללא וידאו - + Backup account here - + Backup your account! - + Backup account - + Skip דילוג - + Success - + Error שגיאה - + Never show me this again - + Recommended - + Jami archive files - + All files כל הקבצים - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat צ׳אט - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold החזק - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen צא ממסך מלא - + Share screen שתף מסך - + Share window שתף חלון - + Share screen area שתף אזור מסך - + Share file שתף קובץ - + Select sharing method - + View plugin - + No video device - + N/A לא זמין - + Lower hand - + Raise hand - + Hide chat view להסתיר תצוגת צ׳אט - + Place audio call בצע שיחה קולית - + Place video call בצע שיחת וידאו - + Show available plugins - + Add to conversations הוסף לשיחות - + Jump to latest גלול לקצה השיחה - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page חזרה לעמוד קבלת הפנים - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy פרוקסי - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory תיקיית ההורדות - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview הצג תצוגות מקדימות של קישורים - + User interface language שפת ממשק משתמש - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register הרשמה - + Incorrect password - + Save file שמירת קובץ - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ההורדה של המתקין בוטלה - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop עצור - + Generating account… - + Import from backup - + PIN מספר זיהוי אישי - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to ברוך בואך אל - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file שלח קובץ - + Leave audio message - + Leave video message - + Send שליחה - + Remove הסר - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy העתקה - + Participant is still muted on their device - + You are still muted on your device - + View full screen הצג במסך מלא - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout פריסה - + Vertical view תצוגה אנכית - + Horizontal view תצוגה אופקית - + Keyboard Shortcut Table - + Conversation - + Call שיחה - + Settings הגדרות - + Report Bug - + Clear ניקוי - + Copied to clipboard! - + Receive Logs - + Archive - + Open file פתיחת קובץ - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close סגירה - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share בחר מסך לשיתוף - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete מחק - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup נתק - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen מסך מלא - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call סיום שיחה - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files כל הקבצים @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok אישור - + Cancel ביטול - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files כל הקבצים - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project מבוסס על הפרויקט SFLPhone - + Sending שולח - + Failure כישלון - + Sent - + Connecting מתחבר - + Accept לקבל - + Canceled מבוטל - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago לפני יום - + %1 hours ago - + one hour ago לפני שעה - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove הסר @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls שיחות - - - - - - + + + + + + Contacts אנשי קשר @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System מערכת - + Enable dark theme - + Enable desktop notifications הצג הודעות @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept לקבל - + Refuse לדחות @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 מגה-ביט/שנייה - + Default ברירת מחדל - + System מערכת diff --git a/translations/ring_client_windows_hi.ts b/translations/ring_client_windows_hi.ts index decd965b..1a7ca1c0 100644 --- a/translations/ring_client_windows_hi.ts +++ b/translations/ring_client_windows_hi.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call फोन आ रहा है - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference सम्मेलन में जोड़ें - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ठीक - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ठीक @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version संस्करण - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits श्रेय - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account खाता मिटाये - + Authentication failed - + Password - + Username - + Alias उपनाम - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call कॉल समाप्त करें - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami जामी के बारे में - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ठीक - - + + Cancel रद्द करें - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account खाता - - + + General - + Plugin - + Audio/Video - + Audio ऑडियो - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video वीडियो - + Select video device - + Device दर्ज करें - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video कोई वीडियो नहीं - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact संपर्क हटाये - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen पूर्ण-स्क्रीन से बाहर निकलें - + Share screen स्क्रीन साझा करें - + Share window विंडो साझा करें - + Share screen area स्क्रीन क्षेत्र साझा करें - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest वार्तालाप के अंत तक स्क्रॉल करें - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account खाता बनाएं - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory डाउनलोड फ़ोल्डर - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview लिंक पूर्वावलोकन दिखाएँ - + User interface language उपयोगकर्ता इंटरफ़ेस भाषा - + File transfer फ़ाइल स्थानांतरण - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register पंजी करें - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled इंस्टॉलर डाउनलोड रद्द किया गया - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to आपका स्वागत है - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file फ़ाइल भेजें - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen पूर्ण स्क्रीन देखें - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout लेआउट - + Vertical view लंबवत दृश्य - + Horizontal view क्षैतिज दृश्य - + Keyboard Shortcut Table - + Conversation - + Call कॉल - + Settings सेटिंग्स - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close बंद करे - + Enter your account password - + Add Device उपकरण जोड़ें - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share साझा करने के लिए एक स्क्रीन चुनें - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account इस उपकरण को किसी मौजूदा खाते से लिंक करें - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen पूर्ण स्क्रीन - + Start an audio call ऑडियो कॉल शुरू करें - + Start a video call वीडियो कॉल शुरू करें - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call कॉल समाप्त करें - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ठीक - + Cancel रद्द करें - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: द्वारा बनाया गया - + Artwork by: द्वारा कलाकृति - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled रद्द किया गया - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls कॉल - - - - - - + + + + + + Contacts संपर्क @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System सिस्टम - + Enable dark theme - + Enable desktop notifications अधिसूचनाएँ दिखाएँ @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 एमबीटी/एस - + Default डिफ़ॉल्ट - + System सिस्टम diff --git a/translations/ring_client_windows_hi_IN.ts b/translations/ring_client_windows_hi_IN.ts index f4c116dc..5596dff3 100644 --- a/translations/ring_client_windows_hi_IN.ts +++ b/translations/ring_client_windows_hi_IN.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call फोन आ रहा है - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference सम्मेलन में जोड़ें - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ठीक - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ठीक @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version वर्श़न/उल्था - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits आभार - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account खाता मिटाये - + Authentication failed - + Password - + Username - + Alias उपनाम - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call कॉल समाप्त करें - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami जामी के बारे में - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ठीक - - + + Cancel रद्द करें - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account खाता - - + + General - + Plugin - + Audio/Video - + Audio आॅडियो - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video वीडियो - + Select video device - + Device दर्ज करें - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video कोई वीडियो नहीं - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact संपर्क हटाये - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen पूर्ण-स्क्रीन से बाहर निकलें - + Share screen स्क्रीन साझा करें - + Share window विंडो साझा करें - + Share screen area स्क्रीन क्षेत्र साझा करें - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest वार्तालाप के अंत तक स्क्रॉल करें - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account खाता बनाएं - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory डाउनलोड फ़ोल्डर - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview लिंक पूर्वावलोकन दिखाएँ - + User interface language उपयोगकर्ता इंटरफ़ेस भाषा - + File transfer फ़ाइल स्थानांतरण - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register पंजी करें - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled इंस्टॉलर डाउनलोड रद्द किया गया - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to आपका स्वागत है - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file फ़ाइल भेजें - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen पूर्ण स्क्रीन देखें - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout लेआउट - + Vertical view लंबवत दृश्य - + Horizontal view क्षैतिज दृश्य - + Keyboard Shortcut Table - + Conversation - + Call कॉल - + Settings सेटिंग्स - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close बंद करे - + Enter your account password - + Add Device उपकरण जोड़ें - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share साझा करने के लिए एक स्क्रीन चुनें - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account इस उपकरण को किसी मौजूदा खाते से लिंक करें - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen पूर्ण स्क्रीन - + Start an audio call ऑडियो कॉल शुरू करें - + Start a video call वीडियो कॉल शुरू करें - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call कॉल समाप्त करें - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ठीक - + Cancel रद्द करें - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: द्वारा बनाया गया - + Artwork by: द्वारा कलाकृति - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled रद्द किया गया - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls कॉल - - - - - - + + + + + + Contacts संपर्क @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System सिस्टम - + Enable dark theme - + Enable desktop notifications अधिसूचनाएँ दिखाएँ @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 एमबीटी/एस - + Default डिफ़ॉल्ट - + System सिस्टम diff --git a/translations/ring_client_windows_hr.ts b/translations/ring_client_windows_hr.ts index 564036ef..22f3c9ed 100644 --- a/translations/ring_client_windows_hr.ts +++ b/translations/ring_client_windows_hr.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Blokirani kontakti @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Dolazni poziv - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok U redu - - + + Success - - + + Error Greška - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok U redu @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Pozivi - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Zasluge - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Lozinka - + Username Korisničko ime - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Dozvoli dolazne pozive od nepoznatih kontakata - + In progress… - + Accept Prihvati - + Refuse Odbij - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Sigurnost - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate Korisnički certifikat - + Private key Privatni ključ - + Private key password Lozinka privatnog ključa - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Metoda TSL protokola - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Koristi prilagođenu adresu i port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Završi poziv - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Kriptiraj račun s lozinkom - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Greška mreže - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Razgovori - + Enable Omogući - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Napravite Jami račun - + About Jami O Jami-u - + Decline contact request - + Accept contact request - + Automatically check for updates Automatski potraži ažuriranja - + Ok U redu - - + + Cancel Otkaži - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Spojivost - + Auto Registration After Expired - + Network interface Mrežno sučelje - + Use UPnP - + Use TURN Koristi TURN - + TURN address - + TURN username TURN korisničko ime - + TURN password TURN lozinka - + TURN Realm - + Use STUN Koristi STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adresa - + Port Port - + Media Medij - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy Omogući proxy - + Proxy address - + Bootstrap - + Back Natrag - + Account Settings - + Account Račun - - + + General Opće - + Plugin - + Audio/Video Audio/Video - + Audio Zvuk - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Uređaj - + Resolution Razlučivost - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video nema videozapisa - + Backup account here - + Backup your account! - + Backup account - + Skip Preskoči - + Success - + Error Greška - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Dodaj sugovornika - + Add participants - + Chat Čavrljanje - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Izreži - + Paste Zalijepi - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blokiraj kontakt - + Contact details Pojedinosti kontakta - + Hold Na čekanje - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Izađi iz prikaza na cijelom zaslonu - + Share screen Dijeli zaslon - + Share window Podijeli prozor - + Share screen area Dijelite područje zaslona - + Share file Dijeli datoteku - + Select sharing method - + View plugin - + No video device - + N/A Nije dostupno - + Lower hand - + Raise hand Podignite ruku - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Pomicanje na kraj razgovora - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Napravi račun - + Confirm password Potvrdi lozinku - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Izaberite vaše korisničko ime - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device Poveži drugi uređaj - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Mapa preuzimanja - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Pokaži pretpreglede veza - + User interface language Jezik korisničkog sučelja - + File transfer Prijenos datoteka - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registriraj - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Ažuriraj - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Preuzimanje instalacijskog programa je otkazano - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Prekini - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name Unesite svoje ime - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Pošalji datoteku - + Leave audio message - + Leave video message - + Send Pošalji - + Remove Ukloni - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiraj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Prikaži na cijelom zaslonu - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Izgled - + Vertical view Okomiti prikaz - + Horizontal view Vodoravni prikaz - + Keyboard Shortcut Table - + Conversation - + Call Nazovi - + Settings Postavke - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Otvori datoteku - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Izvezi - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Odaberite zaslon koji želite podijeliti - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete Izbriši - + Set moderator - + Unset moderator - + Maximize Maksimiziraj - + Minimize Minimiziraj - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Preko cijelog zaslona - + Start an audio call - + Start a video call - + Clear history Očisti povijest - + Block contact Blokiraj kontakt - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Završi poziv - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok U redu - + Cancel Otkaži - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Napravio: - + Artwork by: - + Based on the SFLPhone project Bazirano na SFLPhone projektu - + Sending - + Failure - + Sent - + Connecting Spajanje - + Accept Prihvati - + Canceled Otkazano - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality Kvalitet - + Save in Spremi u @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Ukloni @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Pozivi - - - - - - + + + + + + Contacts Kontakti @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sustav - + Enable dark theme - + Enable desktop notifications Pokaži obavijesti @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer Javi se - + Decline Odbij - + Open conversation - + Accept Prihvati - + Refuse Odbij @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Zadano - + System Sustav diff --git a/translations/ring_client_windows_hu.ts b/translations/ring_client_windows_hu.ts index a07388ea..a7afb166 100644 --- a/translations/ring_client_windows_hu.ts +++ b/translations/ring_client_windows_hu.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Fiók hozzáadása @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Hangfájlok - + All files Minden fájl @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Tanúsítványfájl - - - + + + All files Minden fájl - + Key File Kulcsfájl @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Tanúsítványfájl - - - + + + All files Minden fájl - + Key File Kulcsfájl @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Haladó fiókbeállítások @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Letiltott kapcsolatok @@ -89,32 +89,32 @@ CallAdapter - + Missed call Nem fogadott hívás - + Missed call with %1 Nem fogadott hívás a következővel: %1 - + me én - + Incoming call Bejövő hívás - + %1 is calling you %1 hívja Önt - + is calling you hívja Önt @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Hozzáadás a konferenciához - + Transfer this call Hívás átadása - + Add default moderator Alapértelmezett moderátor hozzáadása @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Új üzenet - + Trust request Megbízható kérelem @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Rendben - - + + Success Sikeres - - + + Error Hiba - + Jami archive files Jami archív fájlok - + All files Minden fájl @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Nem sikerült újrakapcsolódni a Jami rendszerfolyamathoz (jamid). A Jami most kilép. - + Trying to reconnect to the Jami daemon (jamid)… Újrakapcsolódás a Jami rendszerfolyamathoz (jamid)… - + Ok Rendben @@ -211,7 +211,7 @@ A Jami most kilép. DeviceItemDelegate - + Device Id Eszközazonosító @@ -219,2129 +219,2129 @@ A Jami most kilép. JamiStrings - + Find a user or search for a conversation Felhasználó vagy beszélgetés keresése - + Search your invitations Keresés a meghívások között - + Invitations Meghívások - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. A Jami (GNU csomag, korábban Ring) egy univerzális és elosztott közlés emelvény, amely tiszteletben tartja a felhasználók szabadságait és magánéletét. - + Version Verzió - + Jami is a free software for universal communication which respects the freedom and privacy of its users. A Jami (GNU csomag, korábban Ring) egy univerzális és elosztott közlés emelvény, amely tiszteletben tartja a felhasználók szabadságait és magánéletét. - + Credits Készítők - + Display QR code QR-kód megjelenítése - + Open settings Beállítások megnyitása - + Close settings Beállítások bezárása - + Authentication required Hitelesítés szükséges - + Your session has expired or been revoked on this device. Please enter your password. A munkamenet lejárt vagy visszavont ezen az eszközön. Kérem írja be a jelszavát. - + JAMS server JAMS kiszolgáló - + Authenticate Hitelesítés - + Delete account Fiók törlése - + Authentication failed Hitelesítési hiba - + Password Jelszó - + Username Felhasználónév - + Alias Álnév - + Call Settings Hívás beállítások - + Allow incoming calls from unknown contacts Az ismeretlen kapcsolatoktól érkező bejövő hívások engedélyezése - + In progress… Folyamatban… - + Accept Elfogadás - + Refuse Elutasítás - + Incoming audio call from {} Bejövő hanghívás {} részéről - + Incoming video call from {} Bejövő videohívás {} részéről - + Convert your account into a rendezvous point Fiók átalakítása találkozási pontra - + Automatically answer calls Önműködő hívásfogadása - + Enable custom ringtone Egyéni csengőhang engedélyezése - + Select custom ringtone Egyéni csengőhang kijelölése - + Add a custom ringtone Egyéni csengőhang hozzáadása - + Select a new ringtone Új csengőhang kijelölése - + Voicemail Hangposta - + Voicemail dial code Hangposta tárcsázási kód - + Security Biztonság - + Encrypt media streams (SRTP) Média-adatfolyamok titkosítása (SRTP) - + Enable SDES key exchange SDES-kulcscsere engedélyezése - + Allow fallback on RTP RTP visszatérése engedélyezése - + Encrypt negotiation (TLS) Titkosítási egyeztetés (TLS) - + CA certificate Hitelesítésszolgáltatói tanúsítvány - + User certificate Felhasználói tanúsítvány - + Private key Titkos kulcs - + Private key password Titkos kulcs jelszava - + Verify certificates for incoming TLS connections Tanúsítványok ellenőrzése a bejövő TLS kapcsolatokhoz - + Verify server TLS certificates Kiszolgálói TLS-tanúsítványok ellenőrzése - + Require certificate for incoming TLS connections Tanúsítvány megkövetelése a bejövő TLS kapcsolatokhoz - + TLS protocol method TLS szabályhalmaz eljárás - + Audio input device selector Audió bemeneti eszköz választó - + TLS server name TLS kiszolgálónév - + Negotiation timeout (seconds) Időtúllépés az egyeztetésnél (másodperc) - + Select a private key Titkos kulcs kijelölése - + Select a user certificate Felhasználói tanúsítvány kijelölése - + Registration expiration time (seconds) Bejegyeztetés lejárati ideje (másodperc) - + Use custom address and port Használjon egyéni címet és kikötőt - + Enable local peer discovery Helyi partner felderítése engedélyezése - + Audio and Video Settings Hang- és videóbeállítások - + Frames per second Képkocka/másodperc - + Select video frame rate (frames per second) Képkockasebesség kijelölése (képkocka/másodperc) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ez a fiók csak ezen az eszközön létezik. Ha elveszíti eszközét, vagy eltávolította az alkalmazást, akkor fiókját töröljük. Biztonsági másolatot készíthet fiókjáról most vagy később. - - + + End call Hívás befejezése - + Pause call Hívás tartása - + Resume call Hívás folytatása - + Pause video Videó szüneteltetése - + Resume video Videó folytatása - + Creating account… Fiók létrehozása… - + Encrypt account with password Fiók titkosítása jelszóval - + Create a rendezvous point Találkozási pont létrehozása - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Válasszon egy jelszót az eszköz fiókkulcsának titkosításához. Vegye figyelembe, hogy a jelszó nem lehet helyreállított. - + Choose a name for your rendezvous point Találkozási pont neve kiválasztása - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Ha fiókjáról nem készített biztonsági másolatot, vagy nem adott hozzá egy másik eszközhöz, akkor fiókját és regisztrált nevét visszavonhatatlanul elveszíti. - + Launch at startup Megnyitás indításkor - + Enable typing indicators Gépelésjelző megjelenítése - - + + Network error Hálózati hiba - + SSL error SSL hiba - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Adja meg egy másik beállított Jami fiók PIN-kódját. Használja az „Eszköz összekapcsolása fiókhoz” működést a PIN-kód eléréséhez. - + Link device Eszköz összekapcsolása - + Conversations Beszélgetések - + Enable Engedélyezés - + Display or hide preferences Beállítások megjelenítése vagy elrejtése - + Add new plugin Új beépülő modul hozzáadása - + Select a file Fájl kijelölése - + Select Válasszon - + Choose image file Képfájl kiválasztása - + Enter the rendezvous point's name Találkozási pont neve megadása - + Creating rendezvous point… Találkozási pont létrehozása… - + Create account from Jami Account Management Server (JAMS) Fiók létrehozása a Jami-fiókkezelő kiszolgálóból (JAMS) - + Create new rendezvous point Új találkozási pont létrehozása - + Create a Jami account Jami-fiók létrehozása - + About Jami A Jami névjegye - + Decline contact request Kapcsolatkérelem elutasítása - + Accept contact request Kapcsolatfelvételi kérelem elfogadása - + Automatically check for updates Frissítések önműködő ellenőrzése - + Ok Rendben - - + + Cancel Mégse - + Accept in audio Elfogadás hanggal - + Accept in video Elfogadás videóval - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Minden résztvevő elhagyta ezt a beszélgetést. Új kölcsönhatások nem lesz lehetőséges. - + Start new conversation Új beszélgetés indítása - + Chat Settings Csevegés beállításai - + Enable read receipts Olvasási visszaigazolások küldése - + Send and receive receipts indicating that a message have been displayed Üzenet küldése és fogadása kijelzői visszaigazolás - + Select a CA certificate Hitelesítésszolgáltatói tanúsítvány kijelölése - + Connectivity Kapcsolódás - + Auto Registration After Expired Önműködő bejegyzése a lejárat után - + Network interface Hálózati illesztőfelület - + Use UPnP UPnP használata - + Use TURN TURN használata - + TURN address TURN cím - + TURN username TURN felhasználónév - + TURN password TURN jelszó - + TURN Realm TURN tartomány - + Use STUN STUN használata - + STUN address STUN cím - + Allow IP Auto Rewrite Önműködő IP-átírás engedélyezése - + Public address Nyilvános cím - + Address Cím - + Port Kikötő - + Media Média - + Enable video Videó engedélyezése - + Video Codecs Videókodekek - + Audio Codecs Hangkodekek - + Name Server Kiszolgálói néve - + SDP Session Negotiation (ICE Fallback) SDP munkamenet egyeztetés (az ICE tartaléka) - + Only used during negotiation in case ICE is not supported Csak egyeztetés során használatos ha az ICE nem támogatott - + Audio RTP minimum Port Hang RTP legkisebb kikötő - + Audio RTP maximum Port Hang RTP legfeljebb kikötő - + Video RTP minimum Port Videó RTP legkisebb kikötő - + Video RTP maximum port Videó RTP legfeljebb kikötő - + Connect to other DHT nodes advertising on your local network. Csatlakozás más DHT-csomópontokhoz, amelyek a helyi hálózaton hirdetnek. - + OpenDHT Configuration OpenDHT-beállítások - + Enable proxy Meghatalmazott engedélyezése - + Proxy address Meghatalmazott cím - + Bootstrap Rendszerindítás - + Back Vissza - + Account Settings Fiók beállítások - + Account Fiók - - + + General Általános - + Plugin Beépülő modul - + Audio/Video Hang/videó - + Audio Hang - + Microphone Mikrofon - + Select audio input device Hangbemeneti eszköz kijelölése - + Output device Kimeneti eszköz - + Select audio output device Hangkimeneti eszköz kijelölése - + Ringtone device Csengőhang eszköz - + Select ringtone output device Csengőhang kimeneti eszköz kijelölése - + Audio manager Hangkezelő - + Video Videó - + Select video device Videoeszköz kijelölése - + Device Eszköz - + Resolution Felbontás - + Select video resolution Videofelbontás kijelölése - + Enable hardware acceleration Hardveres gyorsítás engedélyezése - + Preview unavailable Előnézet nem érhető el - + Screen Sharing Képernyőmegosztás - + Select screen sharing frame rate (frames per second) Képernyőmegosztási képsebesség (képkocka másodpercenként) - + no video nincs videó - + Backup account here Fiók biztonsági mentése - + Backup your account! Biztonsági másolat készítése a fiókjáról - + Backup account Fiók biztonsági mentése - + Skip Átugrani - + Success Sikeres - + Error Hiba - + Never show me this again Ne jelenjen meg többé - + Recommended Ajánlott - + Jami archive files Jami archív fájlok - + All files Minden fájl - + Reinstate as contact Kapcsolattartó visszaállítása - + name név - + Identifier Azonosító - + is recording felvételt készít - + are recording felvételt készít - + Peer stopped recording Egyenrangú leállította a felvételt - + is calling you hívja Önt - - + + Mute Elnémítás - - + + Unmute Némítás feloldása - + Add participant Résztvevő hozzáadása - + Add participants Résztvevők hozzáadása - + Chat Csevegés - + More options További lehetőségek - + Mosaic Mozaik - + You are still muted by moderator Moderátor továbbra elnémította Önt - + You are muted by a moderator Moderátor elnémította Önt - + Moderator Moderátor - + Host Gazda - + Local and Moderator muted Helyi és moderátor elnémítva - + Moderator muted Moderátor elnémítva - + Not muted Nincs elnémítva - + Cut Kivágás - + Paste Beillesztés - + Start video call Videohívás indítása - + Start audio call Hanghívás indítása - + Clear conversation Beszélgetés törlése - + Remove conversation Beszélgetés törlése - + Remove contact Kapcsolat eltávolítása - + Block contact Kapcsolat letiltása - + Contact details Elérhetőségei - + Hold Tartás - + Sip input panel SIP beviteli panel - + Transfer call Hívás átadása - + Stop recording Felvétel leállítása - + Start recording Felvétel indítása - + Exit full screen Teljes képernyős nézet bezárása - + Share screen Képernyő megosztása - + Share window Ablak megosztása - + Share screen area Képernyő részének megosztása - + Share file Fájl megosztása - + Select sharing method Megosztási módszer kijelölése - + View plugin Beépülő modul megtekintése - + No video device Nincs videoeszköz - + N/A Nem alkalmazható - + Lower hand Kéz leengedése - + Raise hand Kéz felemelése - + Hide chat view Csevegés elrejtése - + Place audio call Hanghívás - + Place video call Videohívás - + Show available plugins Elérhető beépülő modulok megjelenítése - + Add to conversations Beszélgetések hozzáadása - + Jump to latest Görgetés a beszélgetés végére - + {} is typing… {} éppen gépel… - + {} are typing… {} éppen gépel… - + Several people are typing… Többen éppen gépelnek… - + and és - + Enter Jami Account Management Server (JAMS) URL Jami-fiókkezelő kiszolgáló (JAMS) URL megadása - + Required Szükséges - + Jami Account Management Server URL Jami-fiókkezelő kiszolgáló URL-je - + Enter your JAMS credentials Adja meg a JAMS hitelesítő adatait - + Connect Kapcsolódás - + Back to welcome page Vissza kezdőlapra - + Choose name Név kiválasztása - + Choose username Felhasználónév kiválasztása - + Create account Fiók létrehozása - + Confirm password Jelszó megerősítése - + Optional Választható - + Choose a username for your account Válasszon felhasználónevet a fiókjához - + Choose a name Név kiválasztása - + Choose your username Válasszon egy felhasználónevet - + Invalid name Érvénytelen név - + Invalid username Érvénytelen felhasználónév - + Name already taken Név már foglalt - + Username already taken A felhasználónév már foglalt - + Proxy Meghatalmazás - + Server Kiszolgáló - + Create SIP account SIP-fiók létrehozása - + Configure an existing SIP account Meglévő SIP-fiók beállítása - + Backup successful Biztonsági mentés sikeres - + Backup failed Biztonsági mentés sikertelen - + Password changed successfully Sikeres jelszóváltoztatás - + Password change failed Jelszó megváltoztatása nem sikerült - + Password set successfully Jelszó beállítása sikerült - + Password set failed Jelszó beállítása nem sikerült - + Change password Jelszó megváltoztatása - - + + Set password Jelszó beállítása - + Change current password Jelszó megváltoztatása - + Backup account to a .gz file Biztonsági másolat készítése .gz fájlba - + Enable account Fiók engedélyezése - + Set username Felhasználónév beállítása - + Registering name Név bejegyzése - + Register a username Felhasználónév bejegyeztetése - + Register username Felhasználónév bejegyeztetése - + Link a new device to this account Eszköz összekapcsolása fiókhoz - + Link another device Eszköz összekapcsolása fiókhoz - + Exporting account… Fiók exportálása… - + Remove Device Eszköz eltávolítása - + Are you sure you wish to remove this device? Biztosan eltávolítja ezt az eszközt? - + Linked Devices Összekapcsolt eszközök - + Your PIN is: PIN-kódja: - + Error connecting to the network. Please try again later. Hiba történt a hálózathoz való csatlakozáskor Kérjük, hogy próbálja újra később. - + Do you really want to delete this account? Biztosan törli a kiválasztott fiókot? - + Save new device name Új eszköz nevének mentése - + Edit device name Eszköznév szerkesztése - + Unlink device from account Eszköz összekapcsolás megszüntetése fiókból - + Select a folder Mappa kijelölése - + Enable notifications Értesítések engedélyezése - + Enable dark theme Sötét téma engedélyezése - + Keep minimized on close Bezáráskor legyen minimalizálva - + Run application on system startup Alkalmazás futtatása rendszerindításkor - + Downloads directory Letöltések mappa - + Choose download directory Letöltési könyvtár kiválasztása - + Record call Hívás felvétele - + Chatview Csevegés - + Display hyperlink previews in the chatview Hivatkozások előnézetének megjelenítése - + User interface language Felhasználói felület nyelve - + File transfer Fájlküldés - + Allow incoming files from unknown contacts Az ismeretlen kapcsolatoktól érkező bejövő fájlok engedélyezése - + Automatically accept incoming files A bejövő fájlok önműködő elfogadása - + Accept transfer limit Fájlküldési korlátozás elfogadása - + in MB, 0 = unlimited MB, 0 = korlátlan - + Register Regisztráció - + Incorrect password Hibás jelszó - + Save file Fájl mentése - + Open location Hely megnyitása - + Install beta version Béta változat telepítése - + Check for updates now Frissítések ellenőrzése most - + Enable/Disable automatic updates Önműködő frissítések engedélyezése be-/kikapcsolása - + toggle automatic updates Önműködő frissítések engedélyezése be-/kikapcsolása - + Updates Frissítések - + Update Frissítés - + A new version of Jami was found Would you like to update now? A Jami új verziója elérhető. Kíván most frissíteni? - + No new version of Jami was found A Jami új verziója nem található - + An error occured when checking for a new version Hiba történt az új verzió keresésekor - + Installer download canceled Telepítő letöltése megszakítva - + This will uninstall your current Release version and you can always download the latest Release version on our website Ez eltávolítja a jelenlegi kiadás verzióját, és bármikor letöltheti a legújabb kiadási verziót a honlapunkról - + Network disconnected Hálózat leválasztva - - + + Something went wrong Valami hiba történt - + Troubleshoot Hibaelhárítás - + Open logs Naplók megnyitása - + Get logs Naplók lekérése - + Select a record directory Rekordkönyvtár kijelölése - + Debug Hibakeresés - + Show Stats Statisztikák megjelenítése - + Start Indítás - + Stop Megállítás - + Generating account… Fiók létrehozása… - + Import from backup Importálás biztonsági másolatból - + PIN PIN-kód - + Stop taking photo Fénykép készítése visszavonása - + Clear avatar image Megtestesüléskép törlése - + Go back to plugins list Visszatérés a beépülő modulok listájához - + Profile is only shared with contacts Profil megosztva csak a névjegyekkel - + Enter your name Név megadása - + Import account from other device Fiók importálása más eszközről - + Import account from backup file Fiók importálása biztonsági mentési fájlból - + Hide advanced features Haladó jellemzők elrejtése - + Create new Jami account Új Jami fiók létrehozása - + Create new SIP account Új SIP-fiók létrehozása - + Welcome to Isten hozott - + Upgrade Frissítés - + Later Később - + Local muted Helyi némítva - + Trying to reconnect to the Jami daemon (jamid)… Újrakapcsolódás a Jami rendszerfolyamathoz (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Nem sikerült újrakapcsolódni a Jami rendszerfolyamathoz (jamid). A Jami most kilép. - + Is swarm: Rajcsoport - + True Igaz - + False Hamis - + Add emoji Hangulatjel hozzáadása - + Send file Fájl küldése - + Leave audio message Hangüzenet hagyása - + Leave video message Videoüzenet hagyása - + Send Küldés - + Remove Eltávolítás - + Write to %1 Írj a következő(k)nek: %1 - + %1 has sent you a request for a conversation. %1 kérelmet küldött Önnek egy beszélgetésre. - + Hello, Would you like to join the conversation? Üdv! Szeretne csatlakozni a beszélgetéshez? - + You have accepted the conversation request Elfogadta a beszélgetési kérelmet - + Waiting until %1 connects to synchronize the conversation. Várjuk, hogy a(z) %1 csatlakozzon a beszélgetés összehangolásához. - - + + Copy Másolás - + Participant is still muted on their device A résztvevő továbbra is elnémítva van az eszközén - + You are still muted on your device Még mindig el van némítva az eszközén - + View full screen Teljes képernyő nézet megtekintése - + Stop sharing screen or file Képernyőmegosztás vagy fájl leállítása - + Display advanced settings Haladó beállítások megjelenítése - + Hide advanced settings Haladó beállítások elrejtése - + Display banned contacts Letiltott kapcsolatok megjelenítése - + Hide banned contacts Letiltott kapcsolatok elrejtése - + Layout Elrendezés - + Vertical view Függőleges nézet - + Horizontal view Vízszintes nézet - + Keyboard Shortcut Table Billentyűparancsok táblázata - + Conversation Beszélgetés - + Call Hívás - + Settings Beállítások - + Report Bug Hiba jelentése - + Clear Törlés - + Copied to clipboard! Vágólapra másolva! - + Receive Logs Naplók fogadása - + Archive Archiválás - + Open file Fájl megnyitása - + Create your account from a backup Fiók létrehozása biztonsági másolatból - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Ha archívumot szeretne kapni, kattintson a fiókbeállítások „Fiók biztonsági mentése” elemére. Ez létrehoz egy .gz fájlt az eszközén. - + Restore an account from backup Fiók visszaállítása biztonsági mentésből - + Enter Jami account password Adja meg a Jami fiók jelszavát - + The PIN and the account password should be entered in your device within 10 minutes. A PIN-kódot és a fiók jelszavát 10 percen belül be kell írni a készülékbe. - + Close Bezárás - + Enter your account password Adja meg fiókjának jelszavát - + Add Device Eszköz hozzáadása - + Enter the password Jelszó megadása - + Enter current password Adja meg jelenlegi jelszavát - + Enter this account's password to confirm the removal of this device Adja meg a fiók jelszót ehhez eszköz eltávolításának megerősítéséhez - + Enter new password Adja meg az új jelszót - + Confirm new password Új jelszó megerősítése - + Change Változás - + Confirm Megerősítés - + Export Exportálás - + Choose a picture as avatar Megtestesüléskép kiválasztása - + Import avatar from image file Megtestesüléskép importálása képfájlból - + Take photo Fénykép készítése - + Reset Visszaállítás - + Select a plugin to install Beépülő modul kijelölése a telepítéséhez - + Install plugin Beépülő modul telepítése - + Save profile Profil mentése - + Information Kapcsolattartó adatai - + Enter the account password to confirm the removal of this device Adja meg a fiók jelszót ehhez eszköz eltávolításának megerősítéséhez - + Select a screen to share Képernyőmegosztás kijelölése - + Select a window to share Ablakmegosztás kijelölése - + All Screens Minden képernyő - + Screens Képernyők - + Windows Ablakok - + QR code QR-kód - + Account QR Fiók QR-kódja - + This is your Jami username. Copy and share it with your friends! Ez az Ön Jami azonosítója. Másolja ki, és ossza meg barátaival! - + Link this device to an existing account Ezen eszköz egy létező fiókhoz kapcsolása - + Advanced features Haladó jellemzők - + Show advanced features Haladó jellemzők megjelenítése - + Connect to a JAMS server Csatlakozás a JAMS kiszolgálóhoz - + Add a SIP account SIP-fiók hozzáadása - + Error while creating your account. Check your credentials. Hiba történt a fiók létrehozása során. Kérjük, ellenőrizze hitelesítő adatait. - + Clear Text Szöveg törlése - + Search Results Keresési eredmények - + Delete Törlés - + Set moderator Moderátor beállítása - + Unset moderator Moderátor megszüntetése - + Maximize Teljes méret - + Minimize Kis méret - + Hangup Hívás befejezése - + Conference moderation Konferencia moderálása - + Default moderators Alapértelmezett moderátorok - + Enable local moderators Helyi moderátorok engedélyezése - + Make all participants moderators Minden résztvevőt állítson moderátorként - + Add default moderator Alapértelmezett moderátor hozzáadása - + Remove default moderator Alapértelmezett moderátor eltávolítása @@ -2349,112 +2349,112 @@ Másolja ki, és ossza meg barátaival! KeyboardShortcutTable - + Open account list Fióklista megnyitása - + Focus conversations list Beszélgetéslista összpontosítása - + Requests list Kérések listája - + Previous conversation Előző beszélgetés - + Next conversation Következő beszélgetés - + Search bar Keresősáv - + Full screen Teljes képernyős nézet - + Start an audio call Hanghívás indítása - + Start a video call Videohívás indítása - + Clear history Előzmények törlése - + Block contact Kapcsolat letiltása - + Remove conversation Beszélgetés törlése - + Accept contact request Kapcsolatfelvételi kérelem elfogadása - + Media settings Média beállítások - + General settings Általános beállítások - + Account settings Fiók beállítások - + Plugin settings Beépülő modul beállításai - + Open account creation wizard Fiók létrehozása varázsló megnyitása - + Open keyboard shortcut table Billentyűparancsok táblázatának megnyitása - + Answer an incoming call Bejövő hívás fogadása - + End call Hívás befejezése - + Decline the call request Hívás kérelem elutasítása @@ -2462,17 +2462,17 @@ Másolja ki, és ossza meg barátaival! MainApplication - + E&xit &Kilépés - + &Quit &Kilépés - + &Show Jami Jami &megjelenítése @@ -2480,12 +2480,12 @@ Másolja ki, és ossza meg barátaival! PhotoboothView - + Image Files Képfájlok - + All files Minden fájl @@ -2493,7 +2493,7 @@ Másolja ki, és ossza meg barátaival! PluginHandlerItemDelegate - + On/Off Be/Ki @@ -2501,12 +2501,12 @@ Másolja ki, és ossza meg barátaival! PluginHandlerPicker - + Choose plugin Beépülő modul kiválasztása - + Preferences Beállítások @@ -2514,7 +2514,7 @@ Másolja ki, és ossza meg barátaival! PluginItemDelegate - + Load/Unload Betöltés/kirakodás @@ -2522,27 +2522,27 @@ Másolja ki, és ossza meg barátaival! PluginListPreferencesView - + Uninstall plugin Beépülő modul eltávolítása - + Reset preferences Beállítások visszaállítása - + Ok Rendben - + Cancel Mégse - + Uninstall Eltávolítás @@ -2550,17 +2550,17 @@ Másolja ki, és ossza meg barátaival! PluginListSettingsView - + Plugin Files Beépülő modul fájlok - + All files Minden fájl - + Installed plugins Telepített beépülő modulok @@ -2568,7 +2568,7 @@ Másolja ki, és ossza meg barátaival! PreferenceItemDelegate - + Edit preference Beállítás szerkesztése @@ -2576,107 +2576,107 @@ Másolja ki, és ossza meg barátaival! QObject - + Created by: Szerző: - + Artwork by: Művészi elemek készítője: - + Based on the SFLPhone project Az SFLPhone termék alapján - + Sending Küldés folyamatban - + Failure Hiba - + Sent Elküldve - + Connecting Kapcsolódás - + Accept Elfogadás - + Canceled Megszakítva - + Unable to make contact Nem sikerült kapcsolatba lépni - + Ongoing Folyamatban lévő - + Waiting for contact Várakozás a kapcsolatfelvételre - + Incoming transfer Bejövő fájlküldés - + Timed out waiting for contact Időtúllépés várt a kapcsolattartásra - + Finished Befejezett - + %1 days ago %1 napja - + one day ago egy napja - + %1 hours ago %1 órája - + one hour ago egy órája - + %1 minutes ago %1 perce - + just now most @@ -2684,22 +2684,22 @@ Másolja ki, és ossza meg barátaival! RecordingSettings - + Call Recording Hívás felvétel - + Always record calls Mindig legyen felvétel hívásokat - + Quality Minőség - + Save in Mentés helye @@ -2707,7 +2707,7 @@ Másolja ki, és ossza meg barátaival! RevokeDevicePasswordDialog - + Remove Eltávolítás @@ -2715,7 +2715,7 @@ Másolja ki, és ossza meg barátaival! SelectScreen - + Screen Képernyő @@ -2723,7 +2723,7 @@ Másolja ki, és ossza meg barátaival! SettingParaCombobox - + @@ -2731,22 +2731,22 @@ Másolja ki, és ossza meg barátaival! SmartListModel - - - - - - + + + + + + Calls Hívások - - - - - - + + + + + + Contacts Kapcsolatok @@ -2754,17 +2754,17 @@ Másolja ki, és ossza meg barátaival! SystemSettings - + System Rendszer - + Enable dark theme Sötét téma engedélyezése - + Enable desktop notifications Értesítések megjelenítése @@ -2772,27 +2772,27 @@ Másolja ki, és ossza meg barátaival! SystemTray - + Answer Hívásfogadás - + Decline Elutasítás - + Open conversation Beszélgetés megnyitása - + Accept Elfogadás - + Refuse Elutasítás @@ -2800,7 +2800,7 @@ Másolja ki, és ossza meg barátaival! UserIdentity - + Identity Személyazonosság @@ -2808,17 +2808,17 @@ Másolja ki, és ossza meg barátaival! UtilsAdapter - + %1 Mbps %1 megabit másodpercenként - + Default Alapértelmezett - + System Rendszer diff --git a/translations/ring_client_windows_id.ts b/translations/ring_client_windows_id.ts index 6dfe0721..668e6fe6 100644 --- a/translations/ring_client_windows_id.ts +++ b/translations/ring_client_windows_id.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Tambah Akun @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Berkas Audio - + All files Semua berkas @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Berkas Sertifikat - - - + + + All files Semua berkas - + Key File Berkas Kunci @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Berkas Sertifikat - - - + + + All files Semua berkas - + Key File Berkas Kunci @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Pengaturan Akun Lanjutan @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call Panggilan terlewat - + Missed call with %1 - + me saya - + Incoming call Panggilan masuk - + %1 is calling you %1 menelepon anda - + is calling you menelepon anda @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Tambah ke konferensi - + Transfer this call - + Add default moderator Tambah moderator default @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Pesan baru - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Oke - - + + Success Sukses - - + + Error Galat - + Jami archive files Arsip berkas Jami - + All files Semua berkas @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Oke @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Id perangkat @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Undangan - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versi - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Partisipan - + Display QR code Tampilkan kode QR - + Open settings Buka pengaturan - + Close settings Tutup pengaturan - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate Autentikasi - + Delete account Hapus akun - + Authentication failed Autentikasi gagal - + Password Kata sandi - + Username Nama pengguna - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Izinkan panggilan dari kontak tak dikenal - + In progress… - + Accept Terima - + Refuse Tolak - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail Pesan suara - + Voicemail dial code - + Security Keamanan - + Encrypt media streams (SRTP) Enkripsi media stream (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate Sertifikat CA - + User certificate Sertifikat pengguna - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Akhiri panggilan - + Pause call - + Resume call - + Pause video Jeda video - + Resume video Lanjutkan video - + Creating account… Membuat akun... - + Encrypt account with password Enkripsi akun dengan kata sandi - + Create a rendezvous point Buat titik pertemuan - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators Aktifkan indikator pengetikan - - + + Network error Galat jaringan - + SSL error Galat SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Obrolan - + Enable Aktifkan - + Display or hide preferences - + Add new plugin - + Select a file - + Select Pilih - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Buat akun Jami - + About Jami Tentang Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Oke - - + + Cancel Batal - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Aktifkan tanda terima telah dibaca - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Konektivitas - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Gunakan TURN - + TURN address Alamat TURN - + TURN username Nama pengguna TURN - + TURN password Kata sandi TURN - + TURN Realm - + Use STUN Gunakan TURN - + STUN address Alamat STUN - + Allow IP Auto Rewrite - + Public address - + Address Alamat - + Port - + Media Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server Nama Peladen - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy Aktifkan proksi - + Proxy address - + Bootstrap Bootstrap - + Back Kembali - + Account Settings - + Account Akun - - + + General Umum - + Plugin - + Audio/Video - + Audio Suara - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Perangkat - + Resolution - + Select video resolution - + Enable hardware acceleration Aktifkan akselerasi hardware - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video tidak ada video - + Backup account here - + Backup your account! - + Backup account - + Skip Lewat - + Success Sukses - + Error Galat - + Never show me this again - + Recommended Rekomendasi - + Jami archive files Arsip berkas Jami - + All files Semua berkas - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you menelepon anda - - + + Mute Senyapkan - - + + Unmute Tanpa senya - + Add participant - + Add participants - + Chat Obrolan - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blokir kontak - + Contact details Rincian kontak - + Hold Tahan - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Keluar layar penuh - + Share screen Bagikan layar - + Share window Bagi jendela - + Share screen area Bagikan area layar - + Share file Bagikan berkas - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Angkat - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Gulir ke akhir percakapan - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Wajib - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Hubungkan - + Back to welcome page - + Choose name - + Choose username - + Create account Buat akun - + Confirm password - + Optional Opsional - + Choose a username for your account Tentukan nama pengguna untuk akun anda - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nama pengguna tidak valid - + Name already taken - + Username already taken Nama pengguna sudah diambil - + Proxy Proksi - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Perangkat yang terhubung - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Mengunduh folder - + Choose download directory - + Record call - + Chatview Obrolan - + Display hyperlink previews in the chatview Tampilkan pratinjau tautan - + User interface language Bahasa antarmuka pengguna - + File transfer Mengirim berkas - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Daftar - + Incorrect password - + Save file Simpan berkas - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Unduhan penginstal dibatalkan - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Profil hanya dibagikan dengan kontak - + Enter your name Masukkan nama anda - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Kirim berkas - + Leave audio message - + Leave video message - + Send Kirim - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Salin - + Participant is still muted on their device - + You are still muted on your device - + View full screen Perlihatkan layar penuh - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Tata letak - + Vertical view Tampilan vertikal - + Horizontal view Tampilan horizontal - + Keyboard Shortcut Table - + Conversation - + Call - + Settings Setelan - + Report Bug - + Clear Bersihkan - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Buka berkas - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Tutup - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change Ubah - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Pilih layar untuk dibagikan - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server Hubungkan ke server JAMS - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Hasil Pencarian - + Delete Hapus - + Set moderator - + Unset moderator - + Maximize Maksimalkan - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator Tambah moderator default - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Layar penuh - + Start an audio call - + Start a video call - + Clear history Bersihkan riwayat - + Block contact Blokir kontak - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings Pengaturan akun - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Akhiri panggilan - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files Semua berkas @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Oke - + Cancel Batal - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files Semua berkas - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Menghubungkan - + Accept Terima - + Canceled Dibatalkan - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Panggilan - - - - - - + + + + + + Contacts Kontak @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Tampilkan pemberitahuan @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Tolak - + Open conversation - + Accept Terima - + Refuse Tolak @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identitas @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 megabit/detik - + Default Bawaan - + System Sistem diff --git a/translations/ring_client_windows_ig.ts b/translations/ring_client_windows_ig.ts index 475ba551..4b797be4 100644 --- a/translations/ring_client_windows_ig.ts +++ b/translations/ring_client_windows_ig.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Dị-mma - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Dị-mma @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Kwụsị oku - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Dị-mma - - + + Cancel Kagbụo - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video enweghị vidiyo - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Pụọ n’ Ènyòngosipụta juru Eju - + Share screen Kekọrịta ihuenyo - + Share window Kekọrịta windo - + Share screen area Kekọrịta mpaghara ihuenyo - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Budàta foldà - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview Gosi ihe nlebanya njikọ - + User interface language Asụsụ interface onye ọrụ - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Kagbuo nbudata nbudata - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Zipu faịlụ - + Leave audio message - + Leave video message - + Send Zie - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Lelee ènyòngosịpụta ńùju - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Nsirihazi - + Vertical view Ogologo - + Horizontal view Uhie - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Họrọ ihuenyo ka ị kesaa - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Ènyòngosipụta n’uju - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Kwụsị oku - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Dị-mma - + Cancel Kagbụo - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled A kagbuola ihe omume ahụ. - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sịstèm - + Enable dark theme - + Enable desktop notifications Gosi nziọkwà ga @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Eburupụta - + System Sịstèm diff --git a/translations/ring_client_windows_it.ts b/translations/ring_client_windows_it.ts index cc7ed098..33bdc88f 100644 --- a/translations/ring_client_windows_it.ts +++ b/translations/ring_client_windows_it.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Aggiungi Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profilo @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files File audio - + All files Tutti i file @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File File del certificato - - - + + + All files Tutti i file - + Key File File della chiave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File File del certificato - - - + + + All files Tutti i file - + Key File File della chiave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Impostazioni avanzate account @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contatti bloccati @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chiamata persa - + Missed call with %1 Chiamata persa da %1 - + me io - + Incoming call Chiamata in arrivo - + %1 is calling you %1 ti sta chiamando - + is calling you ti sta chiamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Aggiungi alla conferenza - + Transfer this call Trasferisci questa chiamata - + Add default moderator Aggiungi moderatore predefinito @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nuovo messaggio - + Trust request Richiesta fidata @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Successo - - + + Error Errore - + Jami archive files File dell'archivio Jami - + All files Tutti i file @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossibile riconnettersi al demone Jami (jamid). Jami ora si chiuderà. - + Trying to reconnect to the Jami daemon (jamid)… Tentativo di riconnessione al demone Jami (jamid)… - + Ok Ok @@ -211,7 +211,7 @@ Jami ora si chiuderà. DeviceItemDelegate - + Device Id ID del dispositivo @@ -219,2130 +219,2130 @@ Jami ora si chiuderà. JamiStrings - + Find a user or search for a conversation Cerca o inizia una conversazione - + Search your invitations Cerca i tuoi inviti - + Invitations inviti - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami è un software libero per la comunicazione universale che rispetta le libertà e la privacy dei suoi utenti. - + Version Versione - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami è un software libero per la comunicazione universale che rispetta le libertà e la privacy dei suoi utenti. - + Credits Crediti - + Display QR code Visualizza il codice QR - + Open settings Apri le impostazioni - + Close settings Chiudi le impostazioni - + Authentication required Autenticazione richiesta - + Your session has expired or been revoked on this device. Please enter your password. La tua sessione è scaduta o è stata chiusa per questo dispositivo. Per favore inserisci la tua password. - + JAMS server Server JAMS - + Authenticate Autenticazione - + Delete account Elimina l'account - + Authentication failed Autenticazione fallita - + Password Password - + Username Nome utente - + Alias Alias - + Call Settings Impostazioni di chiamata - + Allow incoming calls from unknown contacts Consenti chiamate in arrivo da utenti sconosciuti - + In progress… In corso… - + Accept Accetta - + Refuse Rifiuta - + Incoming audio call from {} Chiamata vocale in arrivo da {} - + Incoming video call from {} Videochiamata in arrivo da {} - + Convert your account into a rendezvous point Converti il ​​tuo account in un punto di riunione - + Automatically answer calls Risposta automatica alle chiamate - + Enable custom ringtone Attiva suoneria personalizzata - + Select custom ringtone Seleziona suoneria personalizzata - + Add a custom ringtone Aggiungi una suoneria personalizzata - + Select a new ringtone Seleziona una nuova suoneria - + Voicemail Segreteria telefonica - + Voicemail dial code Codice della segreteria - + Security Sicurezza - + Encrypt media streams (SRTP) Cifrare i flussi multimediali (SRTP) - + Enable SDES key exchange Attiva SDES per scambio chiavi - + Allow fallback on RTP Consenti il ritorno su RTP - + Encrypt negotiation (TLS) Cifrare la negoziazione (TLS) - + CA certificate Certificato CA - + User certificate Certificato utente - + Private key Chiave privata - + Private key password Password della chiave privata - + Verify certificates for incoming TLS connections Verifica i certificati per le connessioni TLS in entrata - + Verify server TLS certificates Verifica i certificati TLS del server - + Require certificate for incoming TLS connections Richiedi certificato per le connessioni TLS in entrata - + TLS protocol method Metodo del protocolo TLS - + Audio input device selector Selettore del dispositivo di ingresso audio - + TLS server name Nome del server TLS - + Negotiation timeout (seconds) Tempo di negoziazione (secondi) - + Select a private key Seleziona una chiave privata - + Select a user certificate Seleziona un certificato utente - + Registration expiration time (seconds) Ritardo massimo di registrazione (secondi) - + Use custom address and port Usa indirizzo e porta personalizzati - + Enable local peer discovery Attiva il rilevamento di utenti locali - + Audio and Video Settings Impostazioni audio e video - + Frames per second Fotogrammi al secondo - + Select video frame rate (frames per second) Seleziona la frequenza dei fotogrammi video (fotogrammi al secondo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Il tuo account esiste solo su questo dispositivo. Se perdi il tuo dispositivo o disinstalli l'applicazione, il tuo account verrà eliminato e non potrà essere recuperato. Puoi eseguire il backup del tuo account ora o più tardi. - - + + End call Termina chiamata - + Pause call Metti in pausa la chiamata - + Resume call Riprendi la chiamata - + Pause video Interrompi video - + Resume video Riprendi video - + Creating account… Creazione account… - + Encrypt account with password Cifrare l'account con una password - + Create a rendezvous point Crea un punto di riunione - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Scegli una password per cifrare il tuo account su questo dispositivo. Nota che la password non può essere recuperata. - + Choose a name for your rendezvous point Scegli un nome per il tuo punto di riunione - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Se non hai fatto il backup del tuo account o non l'hai collegato a un altro dispositivo, il tuo account e il tuo nome registrato saranno persi per sempre. - + Launch at startup Lancia all'avvio del sistema - + Enable typing indicators Attiva gli indicatori di scrittura - - + + Network error Errore di rete - + SSL error Errore SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Inserire il PIN da un altro account Jami configurato. Utilizza la funzione "Collega un altro dispositivo" per ottenere un PIN. - + Link device Collega dispositivo - + Conversations Conversazioni - + Enable Attiva - + Display or hide preferences Mostra o nascondi le preferenze - + Add new plugin Aggiungi nuovo plugin - + Select a file Seleziona un file - + Select Seleziona - + Choose image file Scegli un file immagine - + Enter the rendezvous point's name Inserire il nome del punto di riunione - + Creating rendezvous point… Creazione del punto di riunione… - + Create account from Jami Account Management Server (JAMS) Crea un account da Jami Account Management Server (JAMS) - + Create new rendezvous point Crea un nuovo punto di riunione - + Create a Jami account Crea un account Jami - + About Jami Informazioni su Jami - + Decline contact request Rifiuta la richiesta di contatto - + Accept contact request Accetta la richiesta di contatto - + Automatically check for updates Controlla automaticamente gli aggiornamenti - + Ok Ok - - + + Cancel Annulla - + Accept in audio Solo audio - + Accept in video Accetta video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Stai visualizzando una conversazione in cui tutti i partecipanti, tranne te, se ne sono andati. Nuove interazioni non saranno possibili. - + Start new conversation Nuova conversazione - + Chat Settings Impostazioni chat - + Enable read receipts Mostra conferma di lettura - + Send and receive receipts indicating that a message have been displayed Invia e ricevi conferme indicanti che un messaggio è stato visualizzato. - + Select a CA certificate Seleziona un certificato CA. - + Connectivity Connessione - + Auto Registration After Expired Registrazione automatica dopo la scadenza - + Network interface Interfaccia di rete - + Use UPnP Utilizza UPnP - + Use TURN Utilizza TURN - + TURN address Indirizzo TURN - + TURN username Nome utente TURN - + TURN password Password TURN - + TURN Realm Dominio TURN - + Use STUN Utilizza STUN - + STUN address Indirizzo STUN - + Allow IP Auto Rewrite Permetti la riscrittura automatica dell'IP - + Public address Indirizzo pubblico - + Address Indirizzo - + Port Porta - + Media Media - + Enable video Attiva video - + Video Codecs Codec video - + Audio Codecs Codec audio - + Name Server Server dei nomi - + SDP Session Negotiation (ICE Fallback) Negoziazione sessione SDP (usa ICE in caso di fallimento) - + Only used during negotiation in case ICE is not supported Utilizzato solo durante la negoziazione nel caso in cui ICE non sia supportato - + Audio RTP minimum Port Porta audio RTP minima - + Audio RTP maximum Port Porta audio RTP massima - + Video RTP minimum Port Porta video RTP minima - + Video RTP maximum port Porta video RTP massima - + Connect to other DHT nodes advertising on your local network. Connettiti ad altri nodi DHT nella tua rete locale. - + OpenDHT Configuration Configurazione OpenDHT - + Enable proxy Attiva proxy - + Proxy address Indirizzo proxy - + Bootstrap Server di avvio - + Back Indietro - + Account Settings Impostazioni account - + Account Account - - + + General Generali - + Plugin Plugin - + Audio/Video Audio/Video - + Audio Audio - + Microphone Microfono - + Select audio input device Seleziona il dispositivo di ingresso audio - + Output device Dispositivo di uscita - + Select audio output device Seleziona il dispositivo di uscita audio - + Ringtone device Dispositivo per suoneria - + Select ringtone output device Scegli il dispositivo di uscita per la suoneria - + Audio manager Gestore audio - + Video Video - + Select video device Seleziona dispositivo video - + Device Dispositivo - + Resolution Risoluzione - + Select video resolution Seleziona risoluzione video - + Enable hardware acceleration Attiva l'accelerazione hardware - + Preview unavailable Anteprima non disponibile - + Screen Sharing Condivisione schermo - + Select screen sharing frame rate (frames per second) Seleziona la frequenza dei fotogrammi video (fotogrammi al secondo) - + no video senza video - + Backup account here Fai qui il backup dell'account - + Backup your account! Fai il backup del tuo account! - + Backup account Fai il backup dell'account - + Skip Salta - + Success Successo - + Error Errore - + Never show me this again Non mostrare più - + Recommended Consigliato - + Jami archive files File dell'archivio Jami - + All files Tutti i file - + Reinstate as contact Ripristina come contatto - + name nome - + Identifier Identificatore - + is recording sta registrando - + are recording stanno registrando - + Peer stopped recording L'interlocutore ha interrotto la registrazione - + is calling you ti sta chiamando - - + + Mute Disattiva microfono - - + + Unmute Attiva microfono - + Add participant Aggiungi partecipante - + Add participants Aggiungi partecipanti - + Chat Chat - + More options Più opzioni - + Mosaic Mosaico - + You are still muted by moderator Il moderatore non ti fa ancora parlare - + You are muted by a moderator Un moderatore non ti fa parlare - + Moderator Moderatore - + Host Organizzatore - + Local and Moderator muted Microfono spento a te e al Moderatore - + Moderator muted Microfono spento al Moderatore - + Not muted Attivo - + Cut Taglia - + Paste Incolla - + Start video call Avvia videochiamata - + Start audio call Avvia chiamata vocale - + Clear conversation Cancella conversazione - + Remove conversation Rimuovi conversazione - + Remove contact Rimuovi contatto - + Block contact Blocca contatto - + Contact details Dettagli del contatto - + Hold Pausa - + Sip input panel Tastiera SIP - + Transfer call Trasferisci chiamata - + Stop recording Ferma la registrazione - + Start recording Inizia a registrare - + Exit full screen Esci da schermo intero - + Share screen Condividi schermo - + Share window Condividi finestra - + Share screen area Condividi area dello schermo - + Share file Condividi file - + Select sharing method Seleziona il metodo di condivisione - + View plugin Visualizza plugin - + No video device Nessun dispositivo video - + N/A N/D - + Lower hand Abbassa la mano - + Raise hand Alza la mano - + Hide chat view Nascondi chat - + Place audio call Effettua chiamata vocale - + Place video call Effettua videochiamata - + Show available plugins Mostra i plugin disponibili - + Add to conversations Aggiungi alle conversazioni - + Jump to latest Vai alla fine della conversazione - + {} is typing… {} sta scrivendo… - + {} are typing… {} stanno scrivendo… - + Several people are typing… Alcune persone stanno scrivendo… - + and e - + Enter Jami Account Management Server (JAMS) URL Inserire l'URL di Jami Account Management Server (JAMS) - + Required Necessario - + Jami Account Management Server URL URL di Jami Account Management Server - + Enter your JAMS credentials Inserisci le tue credenziali JAMS - + Connect Connetti - + Back to welcome page Torna alla pagina di benvenuto - + Choose name Scegli un nome - + Choose username Scegli un nome utente - + Create account Crea account - + Confirm password Conferma password - + Optional Facoltativo - + Choose a username for your account Scegli un nome utente per il tuo account - + Choose a name Scegli un nome - + Choose your username Scegli il tuo nome utente - + Invalid name Nome non valido - + Invalid username Nome utente non valido - + Name already taken Nome già utilizzato - + Username already taken Nome utente già utilizzato - + Proxy Proxy - + Server Server - + Create SIP account Crea un account SIP - + Configure an existing SIP account Configura un account SIP esistente - + Backup successful Backup riuscito - + Backup failed Backup non riuscito - + Password changed successfully Password cambiata con successo - + Password change failed Modifica della password non riuscita - + Password set successfully Password impostata con successo - + Password set failed Impostazione password non riuscita - + Change password Cambia password - - + + Set password Imposta password - + Change current password Cambia la password attuale - + Backup account to a .gz file Fai il backup dell'account su un file .gz - + Enable account Attiva account - + Set username Imposta nome utente - + Registering name Registrazione del nome - + Register a username Registra un nome utente - + Register username Registra il nome utente - + Link a new device to this account Collega un nuovo dispositivo a questo account - + Link another device Collega un altro dispositivo - + Exporting account… Esportazione account in corso… - + Remove Device Rimuovi dispositivo - + Are you sure you wish to remove this device? Sei sicuro di voler rimuovere questo dispositivo? - + Linked Devices Dispositivi collegati - + Your PIN is: Il tuo PIN è: - + Error connecting to the network. Please try again later. Errore durante la connessione alla rete. Per favore riprova più tardi. - + Do you really want to delete this account? Vuoi davvero eliminare questo account? - + Save new device name Salva il nuovo nome del dispositivo - + Edit device name Modifica il nome del dispositivo - + Unlink device from account Scollega il dispositivo dall'account - + Select a folder Seleziona una cartella - + Enable notifications Attiva le notifiche - + Enable dark theme Attiva tema scuro - + Keep minimized on close Mantieni attivo dopo la chiusura - + Run application on system startup Avvia il programma insieme al sistema - + Downloads directory Scarica nella cartella - + Choose download directory Scegli la cartella di download - + Record call Registra chiamata - + Chatview Chat - + Display hyperlink previews in the chatview Mostra le anteprime dei link - + User interface language Lingua dell'interfaccia utente - + File transfer Trasferimento file - + Allow incoming files from unknown contacts Consenti file in arrivo da utenti sconosciuti - + Automatically accept incoming files Accetta automaticamente i file in arrivo - + Accept transfer limit Limite del trasferimento accettato - + in MB, 0 = unlimited in MB, 0 = illimitato - + Register Registrati - + Incorrect password Password errata - + Save file Salva file - + Open location Apri posizione - + Install beta version Installa la versione beta - + Check for updates now Controlla ora gli aggiornamenti - + Enable/Disable automatic updates Attiva/Disattiva gli aggiornamenti automatici - + toggle automatic updates attiva/disattiva gli aggiornamenti automatici - + Updates Aggiornamenti - + Update Aggiornamento - + A new version of Jami was found Would you like to update now? È stata trovata una nuova versione di Jami Vuoi aggiornare ora? - + No new version of Jami was found Non è stata trovata una nuova versione di Jami - + An error occured when checking for a new version Si è verificato un errore durante il controllo di una nuova versione - + Installer download canceled Download del programma di installazione annullato - + This will uninstall your current Release version and you can always download the latest Release version on our website Questo disinstallerà la tua versione attuale e potrai sempre scaricare l'ultima versione dal nostro sito web - + Network disconnected Rete disconnessa - - + + Something went wrong Qualcosa è andato storto - + Troubleshoot Risoluzione dei problemi - + Open logs Apri registro - + Get logs Ottieni registro - + Select a record directory Scegli la cartella di registrazione - + Debug Risoluzione dei problemi - + Show Stats Mostra statistiche - + Start Avvia - + Stop Stop - + Generating account… Generazione account… - + Import from backup Importa dal backup - + PIN PIN - + Stop taking photo Non scattare più foto - + Clear avatar image Cancella la foto profilo - + Go back to plugins list Torna all'elenco dei plugin - + Profile is only shared with contacts Il profilo è condiviso solo con i contatti - + Enter your name Inserisci il tuo nome - + Import account from other device Importa account da un altro dispositivo - + Import account from backup file Importa account dal file di backup - + Hide advanced features Nascondi caratteristiche avanzate - + Create new Jami account Crea un nuovo account Jami - + Create new SIP account Crea un nuovo account SIP - + Welcome to Benvenuto su - + Upgrade Aggiorna - + Later Più tardi - + Local muted Microfono locale disattivato - + Trying to reconnect to the Jami daemon (jamid)… Tentativo di riconnessione al demone Jami (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossibile riconnettersi al demone Jami (jamid). Jami ora si chiuderà. - + Is swarm: È il gruppo: - + True Vero - + False Falso - + Add emoji Aggiungi emoji - + Send file Invia file - + Leave audio message Registra messaggio vocale - + Leave video message Registra videomessaggio - + Send Invia - + Remove Rimuovi - + Write to %1 Scrivi a %1 - + %1 has sent you a request for a conversation. %1 ti ha inviato una richiesta di conversazione. - + Hello, Would you like to join the conversation? Ciao, Vuoi partecipare alla conversazione? - + You have accepted the conversation request Hai accettato la richiesta di conversazione. - + Waiting until %1 connects to synchronize the conversation. In attesa che %1 si connetta per sincronizzare la conversazione. - - + + Copy Copia - + Participant is still muted on their device Il partecipante ha ancora il microfono spento nel suo dispositivo - + You are still muted on your device Il microfono del tuo dispositivo è ancora spento - + View full screen Visualizzazione schermo intero - + Stop sharing screen or file Ferma condivisione schermo o file - + Display advanced settings Mostra le impostazioni avanzate - + Hide advanced settings Nascondi le impostazioni avanzate - + Display banned contacts Mostra i contatti bloccati - + Hide banned contacts Nascondi i contatti bloccati - + Layout Disposizione - + Vertical view Vista verticale - + Horizontal view Vista orizzontale - + Keyboard Shortcut Table Tasti Rapidi - + Conversation Conversazione - + Call Chiamata - + Settings Impostazioni - + Report Bug Segnala errori - + Clear Cancella - + Copied to clipboard! Copiato negli appunti! - + Receive Logs Ottieni registro - + Archive Archivio - + Open file Apri file - + Create your account from a backup Crea il tuo account da un backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. È possibile ottenere un archivio facendo clic su "Fai il backup dell'account" nelle impostazioni dell'account. Questo creerà un file .gz sul tuo dispositivo. - + Restore an account from backup Ripristina un account dal backup - + Enter Jami account password Inserire la password dell'account Jami - + The PIN and the account password should be entered in your device within 10 minutes. Il PIN e la password dell'account devono essere inseriti nel dispositivo entro 10 minuti. - + Close Chiudi - + Enter your account password Inserisci la password del tuo account - + Add Device Aggiungi dispositivo - + Enter the password Inserire la password - + Enter current password Inserire la password attuale - + Enter this account's password to confirm the removal of this device Inserire la password di questo account per confermare la rimozione di questo dispositivo - + Enter new password Inserire la nuova password - + Confirm new password Conferma nuova password - + Change Cambia - + Confirm Conferma - + Export Esporta - + Choose a picture as avatar Scegli una foto profilo - + Import avatar from image file Importa la foto profilo da un file - + Take photo Scatta una foto - + Reset Ripristina - + Select a plugin to install Seleziona un plugin da installare - + Install plugin Installa plugin - + Save profile Salva profilo - + Information Informazioni - + Enter the account password to confirm the removal of this device Inserire la password dell'account per confermare la rimozione di questo dispositivo - + Select a screen to share Seleziona uno schermo da condividere - + Select a window to share Seleziona una finestra da condividere - + All Screens Tutti gli schermi - + Screens Schermi - + Windows Finestre - + QR code Codice QR - + Account QR Codice QR dell'account - + This is your Jami username. Copy and share it with your friends! Questo è il tuo nome utente Jami. Copia e condividi con i tuoi amici! - + Link this device to an existing account Collega questo dispositivo a un account esistente - + Advanced features Caratteristiche avanzate - + Show advanced features Mostra caratteristiche avanzate - + Connect to a JAMS server Connettiti a un server JAMS - + Add a SIP account Aggiungi un account SIP - + Error while creating your account. Check your credentials. Errore durante la creazione del tuo account. Controlla le tue credenziali. - + Clear Text Cancella il testo - + Search Results Risultati della ricerca - + Delete Elimina - + Set moderator Metti un moderatore - + Unset moderator Rimuovi moderatore - + Maximize Massimizza - + Minimize Riduci a icona - + Hangup Chiudi - + Conference moderation Moderazione della conferenza - + Default moderators Moderatori predefiniti - + Enable local moderators Attiva moderatori locali - + Make all participants moderators Rendi moderatori tutti i partecipanti - + Add default moderator Aggiungi moderatore predefinito - + Remove default moderator Rimuovi moderatore predefinito @@ -2350,112 +2350,112 @@ Copia e condividi con i tuoi amici! KeyboardShortcutTable - + Open account list Apri l'elenco degli account - + Focus conversations list Mostra l'elenco delle conversazioni - + Requests list Elenco delle richieste - + Previous conversation Conversazione precedente - + Next conversation Prossima conversazione - + Search bar Barra di ricerca - + Full screen Schermo intero - + Start an audio call Avvia una chiamata vocale - + Start a video call Avvia una videochiamata - + Clear history Elimina le conversazioni - + Block contact Blocca contatto - + Remove conversation Rimuovi conversazione - + Accept contact request Accetta la richiesta di contatto - + Media settings Impostazioni multimediali - + General settings Impostazioni generali - + Account settings Impostazioni account - + Plugin settings Impostazioni plugin - + Open account creation wizard Apri la procedura guidata per la creazione dell'account - + Open keyboard shortcut table Mostra i tasti rapidi - + Answer an incoming call Rispondi a una chiamata in arrivo - + End call Termina chiamata - + Decline the call request Rifiuta la chiamata @@ -2463,17 +2463,17 @@ Copia e condividi con i tuoi amici! MainApplication - + E&xit E&sci - + &Quit &Esci - + &Show Jami &Mostra Jami @@ -2481,12 +2481,12 @@ Copia e condividi con i tuoi amici! PhotoboothView - + Image Files File immagine - + All files Tutti i file @@ -2494,7 +2494,7 @@ Copia e condividi con i tuoi amici! PluginHandlerItemDelegate - + On/Off Acceso/Spento @@ -2502,12 +2502,12 @@ Copia e condividi con i tuoi amici! PluginHandlerPicker - + Choose plugin Scegli plugin - + Preferences Preferenze @@ -2515,7 +2515,7 @@ Copia e condividi con i tuoi amici! PluginItemDelegate - + Load/Unload Carica/Scarica @@ -2523,27 +2523,27 @@ Copia e condividi con i tuoi amici! PluginListPreferencesView - + Uninstall plugin Disinstalla plugin - + Reset preferences Ripristina le preferenze - + Ok Ok - + Cancel Annulla - + Uninstall Disinstalla @@ -2551,17 +2551,17 @@ Copia e condividi con i tuoi amici! PluginListSettingsView - + Plugin Files File plugin - + All files Tutti i file - + Installed plugins Plugin installati @@ -2569,7 +2569,7 @@ Copia e condividi con i tuoi amici! PreferenceItemDelegate - + Edit preference Modifica preferenze @@ -2577,107 +2577,107 @@ Copia e condividi con i tuoi amici! QObject - + Created by: Creato da: - + Artwork by: Grafica di: - + Based on the SFLPhone project Basato sul progetto SFLPhone - + Sending Invio in corso - + Failure Fallimento - + Sent Inviato - + Connecting Connessione in corso - + Accept Accetta - + Canceled Annullato - + Unable to make contact Impossibile prendere contatto - + Ongoing In corso - + Waiting for contact In attesa di contatto - + Incoming transfer Trasferimento in entrata - + Timed out waiting for contact Tempo scaduto in attesa di contatto - + Finished Completato - + %1 days ago %1 giorni fa - + one day ago un giorno fa - + %1 hours ago %1 ore fa - + one hour ago un'ora fa - + %1 minutes ago %1 minuti fa - + just now ora @@ -2685,22 +2685,22 @@ Copia e condividi con i tuoi amici! RecordingSettings - + Call Recording Registrazione chiamate - + Always record calls Registra sempre le chiamate - + Quality Qualità - + Save in Salva in @@ -2708,7 +2708,7 @@ Copia e condividi con i tuoi amici! RevokeDevicePasswordDialog - + Remove Rimuovi @@ -2716,7 +2716,7 @@ Copia e condividi con i tuoi amici! SelectScreen - + Screen Schermo @@ -2724,7 +2724,7 @@ Copia e condividi con i tuoi amici! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copia e condividi con i tuoi amici! SmartListModel - - - - - - + + + + + + Calls Chiamate - - - - - - + + + + + + Contacts Contatti @@ -2755,17 +2755,17 @@ Copia e condividi con i tuoi amici! SystemSettings - + System Sistema - + Enable dark theme Attiva tema scuro - + Enable desktop notifications Mostra notifiche @@ -2773,27 +2773,27 @@ Copia e condividi con i tuoi amici! SystemTray - + Answer Rispondi - + Decline Rifiuta - + Open conversation Apri conversazione - + Accept Accetta - + Refuse Rifiuta @@ -2801,7 +2801,7 @@ Copia e condividi con i tuoi amici! UserIdentity - + Identity Identità @@ -2809,17 +2809,17 @@ Copia e condividi con i tuoi amici! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Predefinito - + System Sistema diff --git a/translations/ring_client_windows_it_IT.ts b/translations/ring_client_windows_it_IT.ts index e5ea749f..ea8c0b7e 100644 --- a/translations/ring_client_windows_it_IT.ts +++ b/translations/ring_client_windows_it_IT.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Aggiungi account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profilo @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files File audio - + All files Tutti i file @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File File del certificato - - - + + + All files Tutti i file - + Key File File della chiave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File File del Certificato - - - + + + All files Tutti i file - + Key File File della chiave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Impostazioni avanzate account @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contatti bloccati @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chiamata persa - + Missed call with %1 Chiamata persa da %1 - + me io - + Incoming call Chiamata in arrivo - + %1 is calling you %1 ti sta chiamando - + is calling you ti sta chiamando @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Aggiungi alla conferenza - + Transfer this call Trasferisci questa chiamata - + Add default moderator Aggiungi moderatore predefinito @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nuovo messaggio - + Trust request Richiesta fidata @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Successo - - + + Error Errore - + Jami archive files File dell'archivio Jami - + All files Tutti i file @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossibile riconnettersi al demone Jami (jamid). Jami ora si chiuderà. - + Trying to reconnect to the Jami daemon (jamid)… Tentativo di riconnessione al demone Jami (jamid)… - + Ok Ok @@ -211,7 +211,7 @@ Jami ora si chiuderà. DeviceItemDelegate - + Device Id ID del dispositivo @@ -219,2130 +219,2130 @@ Jami ora si chiuderà. JamiStrings - + Find a user or search for a conversation Cerca o inizia una conversazione - + Search your invitations Cerca i tuoi inviti - + Invitations Inviti - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami è un software libero per la comunicazione universale che rispetta le libertà e la privacy dei suoi utenti. - + Version Versione - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami è un software libero per la comunicazione universale che rispetta le libertà e la privacy dei suoi utenti. - + Credits Crediti - + Display QR code Visualizza il codice QR - + Open settings Apri le impostazioni - + Close settings Chiudi le impostazioni - + Authentication required Autenticazione richiesta - + Your session has expired or been revoked on this device. Please enter your password. La tua sessione è scaduta o è stata chiusa per questo dispositivo. Per favore inserisci la tua password. - + JAMS server Server JAMS - + Authenticate Autenticazione - + Delete account Elimina l'account - + Authentication failed Autenticazione fallita - + Password Password - + Username Utente - + Alias Alias - + Call Settings Impostazioni di chiamata - + Allow incoming calls from unknown contacts Consenti chiamate in arrivo da utenti sconosciuti - + In progress… In corso… - + Accept Accetta - + Refuse Rifiuta - + Incoming audio call from {} Chiamata vocale in arrivo da {} - + Incoming video call from {} Videochiamata in arrivo da {} - + Convert your account into a rendezvous point Trasforma il tuo account in un punto di riunione - + Automatically answer calls Risposta automatica alle chiamate - + Enable custom ringtone Abilita suoneria personalizzata - + Select custom ringtone Seleziona suoneria personalizzata - + Add a custom ringtone Aggiungi una suoneria personalizzata - + Select a new ringtone Seleziona una nuova suoneria - + Voicemail Segreteria telefonica - + Voicemail dial code Codice della segreteria - + Security Sicurezza - + Encrypt media streams (SRTP) Cifrare i flussi multimediali (SRTP) - + Enable SDES key exchange Abilita SDES per scambio chiavi - + Allow fallback on RTP Consenti il ritorno su RTP - + Encrypt negotiation (TLS) Cifrare la negoziazione (TLS) - + CA certificate Certificato CA - + User certificate Certificato utente - + Private key Chiave privata - + Private key password Password della chiave privata - + Verify certificates for incoming TLS connections Verifica i certificati per le connessioni TLS in entrata - + Verify server TLS certificates Verifica i certificati TLS del server - + Require certificate for incoming TLS connections Richiedi certificato per le connessioni TLS in entrata - + TLS protocol method Metodo del protocollo TLS - + Audio input device selector Selettore del dispositivo di ingresso audio - + TLS server name Nome del server TLS - + Negotiation timeout (seconds) Tempo di negoziazione (secondi) - + Select a private key Seleziona una chiave privata - + Select a user certificate Seleziona un certificato utente - + Registration expiration time (seconds) Ritardo massimo di registrazione (secondi) - + Use custom address and port Usa indirizzo e porta personalizzati - + Enable local peer discovery Abilita il rilevamento di utenti locali - + Audio and Video Settings Impostazioni audio e video - + Frames per second Fotogrammi al secondo - + Select video frame rate (frames per second) Seleziona la frequenza dei fotogrammi video (fotogrammi al secondo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Il tuo account esiste solo su questo dispositivo. Se perdi il tuo dispositivo o disinstalli l'applicazione, il tuo account verrà eliminato e non potrà essere recuperato. Puoi eseguire il backup del tuo account ora o più tardi. - - + + End call Termina chiamata - + Pause call Metti in pausa la chiamata - + Resume call Riprendi la chiamata - + Pause video Interrompi video - + Resume video Riprendi video - + Creating account… Creazione account… - + Encrypt account with password Cifrare l'account con una password - + Create a rendezvous point Crea un punto di riunione - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Scegli una password per cifrare il tuo account su questo dispositivo. Nota che la password non può essere recuperata. - + Choose a name for your rendezvous point Scegli un nome per il tuo punto di riunione - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Se non hai fatto il backup del tuo account o non l'hai collegato a un altro dispositivo, il tuo account e il tuo nome registrato saranno persi per sempre. - + Launch at startup Lancia all'avvio del sistema - + Enable typing indicators Abilita gli indicatori di digitazione - - + + Network error Errore di rete - + SSL error Errore SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Inserire il PIN da un altro account Jami configurato. Utilizza la funzione "Collega un altro dispositivo" per ottenere un PIN. - + Link device Collega dispositivo - + Conversations Conversazioni - + Enable Abilita - + Display or hide preferences Mostra o nascondi le preferenze - + Add new plugin Aggiungi nuovo plugin - + Select a file Seleziona un file - + Select Seleziona - + Choose image file Scegli un file immagine - + Enter the rendezvous point's name Inserire il nome del punto di riunione - + Creating rendezvous point… Creazione del punto di riunione… - + Create account from Jami Account Management Server (JAMS) Crea un account da Jami Account Management Server (JAMS) - + Create new rendezvous point Crea un nuovo punto di riunione - + Create a Jami account Crea un account Jami - + About Jami Informazioni su Jami - + Decline contact request Rifiuta richiesta di contatto - + Accept contact request Accetta richiesta di contatto - + Automatically check for updates Controlla aggiornamenti automaticamente - + Ok Ok - - + + Cancel Annulla - + Accept in audio Solo audio - + Accept in video Accetta video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Stai visualizzando una conversazione in cui tutti i partecipanti, tranne te, se ne sono andati. Nuove interazioni non saranno possibili. - + Start new conversation Nuova conversazione - + Chat Settings Impostazioni chat - + Enable read receipts Abilita conferme di lettura - + Send and receive receipts indicating that a message have been displayed Invia e ricevi conferme indicanti che un messaggio è stato visualizzato. - + Select a CA certificate Seleziona un certificato CA. - + Connectivity Connessione - + Auto Registration After Expired Registrazione automatica dopo la scadenza - + Network interface Interfaccia di rete - + Use UPnP Utilizza UPnP - + Use TURN Utilizza TURN - + TURN address Indirizzo TURN - + TURN username Nome utente TURN - + TURN password Password TURN - + TURN Realm Dominio TURN - + Use STUN Utilizza STUN - + STUN address Indirizzo STUN - + Allow IP Auto Rewrite Permetti la riscrittura automatica dell'IP - + Public address Indirizzo pubblico - + Address Indirizzo - + Port Porta - + Media Media - + Enable video Abilita video - + Video Codecs Codec video - + Audio Codecs Codec audio - + Name Server Server dei nomi - + SDP Session Negotiation (ICE Fallback) Negoziazione sessione SDP (usa ICE in caso di fallimento) - + Only used during negotiation in case ICE is not supported Utilizzato solo durante la negoziazione nel caso in cui ICE non sia supportato - + Audio RTP minimum Port Porta audio RTP minima - + Audio RTP maximum Port Porta audio RTP massima - + Video RTP minimum Port Porta video RTP minima - + Video RTP maximum port Porta video RTP massima - + Connect to other DHT nodes advertising on your local network. Connettiti ad altri nodi DHT nella tua rete locale. - + OpenDHT Configuration Configurazione OpenDHT - + Enable proxy Abilita proxy - + Proxy address Indirizzo proxy - + Bootstrap Server di avvio - + Back Indietro - + Account Settings Impostazioni dell'account - + Account Account - - + + General Generale - + Plugin Plugin - + Audio/Video Audio/Video - + Audio Audio - + Microphone Microfono - + Select audio input device Seleziona il dispositivo di ingresso audio - + Output device Dispositivo di uscita - + Select audio output device Seleziona il dispositivo di uscita audio - + Ringtone device Dispositivo per suoneria - + Select ringtone output device Scegli il dispositivo di uscita per la suoneria - + Audio manager Gestore audio - + Video Video - + Select video device Seleziona dispositivo video - + Device Dispositivo - + Resolution Risoluzione - + Select video resolution Seleziona risoluzione video - + Enable hardware acceleration Abilita l'accelerazione hardware - + Preview unavailable Anteprima non disponibile - + Screen Sharing Condivisione schermo - + Select screen sharing frame rate (frames per second) Seleziona la frequenza dei fotogrammi video (fotogrammi al secondo) - + no video senza video - + Backup account here Fai qui il backup dell'account - + Backup your account! Fai il backup del tuo account! - + Backup account Fai il backup dell'account - + Skip Salta - + Success Successo - + Error Errore - + Never show me this again Non mostrare mai più - + Recommended Consigliato - + Jami archive files File dell'archivio Jami - + All files Tutti i file - + Reinstate as contact Ripristina come contatto - + name nome - + Identifier Identificatore - + is recording sta registrando - + are recording stanno registrando - + Peer stopped recording L'interlocutore ha interrotto la registrazione - + is calling you ti sta chiamando - - + + Mute Disattiva microfono - - + + Unmute Attiva microfono - + Add participant Aggiungi partecipante - + Add participants Aggiungi partecipanti - + Chat Chat - + More options Più opzioni - + Mosaic Mosaico - + You are still muted by moderator Il moderatore non ti fa ancora parlare - + You are muted by a moderator Un moderatore non ti fa parlare - + Moderator Moderatore - + Host Organizzatore - + Local and Moderator muted Microfono spento a te e al Moderatore - + Moderator muted Microfono spento al Moderatore - + Not muted Attivo - + Cut Taglia - + Paste Incolla - + Start video call Avvia videochiamata - + Start audio call Avvia chiamata vocale - + Clear conversation Cancella conversazione - + Remove conversation Rimuovi conversazione - + Remove contact Rimuovi contatto - + Block contact Blocca contatto - + Contact details Dettagli contatto - + Hold Pausa - + Sip input panel Tastiera SIP - + Transfer call Trasferisci chiamata - + Stop recording Ferma la registrazione - + Start recording Inizia a registrare - + Exit full screen Esci da schermo intero - + Share screen Condividi schermo - + Share window Condividi finestra - + Share screen area Condividi area dello schermo - + Share file Condividi file - + Select sharing method Seleziona il metodo di condivisione - + View plugin Visualizza plugin - + No video device Nessun dispositivo video - + N/A N/A - + Lower hand Abbassa la mano - + Raise hand Alza la mano - + Hide chat view Nascondi chat - + Place audio call Effettua chiamata vocale - + Place video call Effettua videochiamata - + Show available plugins Mostra i plugin disponibili - + Add to conversations Aggiungi alle conversazioni - + Jump to latest Vai alla fine della conversazione - + {} is typing… {} sta scrivendo… - + {} are typing… {} stanno scrivendo… - + Several people are typing… Alcune persone stanno scrivendo… - + and e - + Enter Jami Account Management Server (JAMS) URL Inserire l'URL di Jami Account Management Server (JAMS) - + Required Necessario - + Jami Account Management Server URL URL di Jami Account Management Server - + Enter your JAMS credentials Inserisci le tue credenziali JAMS - + Connect Connetti - + Back to welcome page Torna alla pagina di benvenuto - + Choose name Scegli un nome - + Choose username Scegli un nome utente - + Create account Crea account - + Confirm password Conferma password - + Optional Facoltativo - + Choose a username for your account Scegli un nome utente per il tuo account - + Choose a name Scegli un nome - + Choose your username Scegli il tuo nome utente - + Invalid name Nome non valido - + Invalid username Nome utente non valido - + Name already taken Nome già utilizzato - + Username already taken Nome utente già utilizzato - + Proxy Proxy - + Server Server - + Create SIP account Crea un account SIP - + Configure an existing SIP account Configura un account SIP esistente - + Backup successful Backup riuscito - + Backup failed Backup non riuscito - + Password changed successfully Password cambiata con successo - + Password change failed Modifica della password non riuscita - + Password set successfully Password impostata con successo - + Password set failed Impostazione password non riuscita - + Change password Cambia password - - + + Set password Imposta password - + Change current password Cambia la password attuale - + Backup account to a .gz file Fai il backup dell'account su un file .gz - + Enable account Abilita account - + Set username Imposta nome utente - + Registering name Registrazione del nome - + Register a username Registra un nome utente - + Register username Registra il nome utente - + Link a new device to this account Collega un nuovo dispositivo a questo account - + Link another device Collega un altro dispositivo - + Exporting account… Esportazione dell'account... - + Remove Device Rimuovi dispositivo - + Are you sure you wish to remove this device? Sei sicuro di voler rimuovere questo dispositivo? - + Linked Devices Dispositivi collegati - + Your PIN is: Il tuo PIN è: - + Error connecting to the network. Please try again later. Errore durante la connessione alla rete. Per favore riprova più tardi. - + Do you really want to delete this account? Vuoi davvero eliminare questo account? - + Save new device name Salva il nuovo nome del dispositivo - + Edit device name Modifica il nome del dispositivo - + Unlink device from account Scollega il dispositivo dall'account - + Select a folder Seleziona una cartella - + Enable notifications Abilita le notifiche - + Enable dark theme Abilita tema scuro - + Keep minimized on close Mantieni attivo dopo la chiusura - + Run application on system startup Avvia il programma insieme al sistema - + Downloads directory Scarica nella cartella - + Choose download directory Scegli la cartella di download - + Record call Registra chiamata - + Chatview Chat - + Display hyperlink previews in the chatview Mostra le anteprime dei collegamenti - + User interface language Lingua dell'interfaccia utente - + File transfer Trasferimento file - + Allow incoming files from unknown contacts Consenti file in arrivo da utenti sconosciuti - + Automatically accept incoming files Accetta automaticamente i file in arrivo - + Accept transfer limit Limite del trasferimento accettato - + in MB, 0 = unlimited in MB, 0 = illimitato - + Register Registrati - + Incorrect password Password errata - + Save file Salva file - + Open location Apri posizione - + Install beta version Installa la versione beta - + Check for updates now Controlla ora gli aggiornamenti - + Enable/Disable automatic updates Attiva/Disattiva gli aggiornamenti automatici - + toggle automatic updates attiva/disattiva gli aggiornamenti automatici - + Updates Aggiornamenti - + Update Aggiornamento - + A new version of Jami was found Would you like to update now? È stata trovata una nuova versione di Jami Vuoi aggiornare ora? - + No new version of Jami was found Non è stata trovata una nuova versione di Jami - + An error occured when checking for a new version Si è verificato un errore durante il controllo di una nuova versione - + Installer download canceled Download del programma di installazione annullato - + This will uninstall your current Release version and you can always download the latest Release version on our website Questo disinstallerà la tua versione attuale e potrai sempre scaricare l'ultima versione dal nostro sito web - + Network disconnected Rete disconnessa - - + + Something went wrong Qualcosa è andato storto - + Troubleshoot Risoluzione dei problemi - + Open logs Apri registro - + Get logs Ottieni registro - + Select a record directory Scegli la cartella di registrazione - + Debug Risoluzione dei problemi - + Show Stats Mostra statistiche - + Start Avvia - + Stop Stop - + Generating account… Generazione account… - + Import from backup Importa da backup - + PIN PIN - + Stop taking photo Non scattare più foto - + Clear avatar image Cancella la foto profilo - + Go back to plugins list Torna all'elenco dei plugin - + Profile is only shared with contacts Il profilo è condiviso solo con i contatti - + Enter your name Inserisci il tuo nome - + Import account from other device Importa account da un altro dispositivo - + Import account from backup file Importa account dal file di backup - + Hide advanced features Nascondi caratteristiche avanzate - + Create new Jami account Crea un nuovo account Jami - + Create new SIP account Crea un nuovo account SIP - + Welcome to Benvenuto su - + Upgrade Aggiorna - + Later Più tardi - + Local muted Microfono locale disattivato - + Trying to reconnect to the Jami daemon (jamid)… Tentativo di riconnessione al demone Jami (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Impossibile riconnettersi al demone Jami (jamid). Jami ora si chiuderà. - + Is swarm: È il gruppo: - + True Vero - + False Falso - + Add emoji Aggiungi emoji - + Send file Invia file - + Leave audio message Registra messaggio vocale - + Leave video message Registra videomessaggio - + Send Invia - + Remove Rimuovi - + Write to %1 Scrivi a %1 - + %1 has sent you a request for a conversation. %1 ti ha inviato una richiesta di conversazione. - + Hello, Would you like to join the conversation? Ciao, Vuoi partecipare alla conversazione? - + You have accepted the conversation request Hai accettato la richiesta di conversazione. - + Waiting until %1 connects to synchronize the conversation. In attesa che %1 si connetta per sincronizzare la conversazione. - - + + Copy Copia - + Participant is still muted on their device Il partecipante ha ancora il microfono spento nel suo dispositivo - + You are still muted on your device Il microfono del tuo dispositivo è ancora spento - + View full screen Visualizzazione schermo intero - + Stop sharing screen or file Ferma condivisione schermo o file - + Display advanced settings Mostra le impostazioni avanzate - + Hide advanced settings Nascondi le impostazioni avanzate - + Display banned contacts Mostra i contatti bloccati - + Hide banned contacts Nascondi i contatti bloccati - + Layout Disposizione - + Vertical view Vista verticale - + Horizontal view Vista orizzontale - + Keyboard Shortcut Table Tasti Rapidi - + Conversation Conversazione - + Call Chiamata - + Settings Impostazioni - + Report Bug Segnala errori - + Clear Cancella - + Copied to clipboard! Copiato negli appunti! - + Receive Logs Ottieni registro - + Archive Archivio - + Open file Apri file - + Create your account from a backup Crea il tuo account da un backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. È possibile ottenere un archivio facendo clic su "Fai il backup dell'account" nelle impostazioni dell'account. Questo creerà un file .gz sul tuo dispositivo. - + Restore an account from backup Ripristina un account dal backup - + Enter Jami account password Inserire la password dell'account Jami - + The PIN and the account password should be entered in your device within 10 minutes. Il PIN e la password dell'account devono essere inseriti nel dispositivo entro 10 minuti. - + Close Chiudi - + Enter your account password Inserisci la password del tuo account - + Add Device Aggiungi dispositivo - + Enter the password Inserire la password - + Enter current password Inserire la password attuale - + Enter this account's password to confirm the removal of this device Inserire la password di questo account per confermare la rimozione di questo dispositivo - + Enter new password Inserire la nuova password - + Confirm new password Conferma nuova password - + Change Cambia - + Confirm Conferma - + Export Esporta - + Choose a picture as avatar Scegli una foto profilo - + Import avatar from image file Importa la foto profilo da un file - + Take photo Scatta una foto - + Reset Ripristina - + Select a plugin to install Seleziona un plugin da installare - + Install plugin Installa plugin - + Save profile Salva profilo - + Information Informazioni - + Enter the account password to confirm the removal of this device Inserire la password dell'account per confermare la rimozione di questo dispositivo - + Select a screen to share Seleziona uno schermo da condividere - + Select a window to share Seleziona una finestra da condividere - + All Screens Tutti gli schermi - + Screens Schermi - + Windows Finestre - + QR code Codice QR - + Account QR Codice QR dell'account - + This is your Jami username. Copy and share it with your friends! Questo è il tuo nome utente Jami. Copia e condividi con i tuoi amici! - + Link this device to an existing account Collega questo dispositivo ad un account esistente - + Advanced features Caratteristiche avanzate - + Show advanced features Mostra caratteristiche avanzate - + Connect to a JAMS server Connettiti a un server JAMS - + Add a SIP account Aggiungi un account SIP - + Error while creating your account. Check your credentials. Errore durante la creazione del tuo account. Controlla le tue credenziali. - + Clear Text Cancella il testo - + Search Results Risultati della ricerca - + Delete Elimina - + Set moderator Metti un moderatore - + Unset moderator Rimuovi moderatore - + Maximize Massimizza - + Minimize Minimizza - + Hangup Aggancia - + Conference moderation Moderazione della conferenza - + Default moderators Moderatori predefiniti - + Enable local moderators Abilita moderatori locali - + Make all participants moderators Rendi moderatori tutti i partecipanti - + Add default moderator Aggiungi moderatore predefinito - + Remove default moderator Rimuovi moderatore predefinito @@ -2350,112 +2350,112 @@ Copia e condividi con i tuoi amici! KeyboardShortcutTable - + Open account list Apri l'elenco degli account - + Focus conversations list Mostra l'elenco delle conversazioni - + Requests list Elenco delle richieste - + Previous conversation Conversazione precedente - + Next conversation Prossima conversazione - + Search bar Barra di ricerca - + Full screen Schermo intero - + Start an audio call Avvia una chiamata vocale - + Start a video call Avvia una videochiamata - + Clear history Cancella cronologia - + Block contact Blocca contatto - + Remove conversation Rimuovi conversazione - + Accept contact request Accetta richiesta di contatto - + Media settings Impostazioni multimediali - + General settings Impostazioni generali - + Account settings Impostazioni dell'account - + Plugin settings Impostazioni plugin - + Open account creation wizard Apri la procedura guidata per la creazione dell'account - + Open keyboard shortcut table Mostra i tasti rapidi - + Answer an incoming call Rispondi a una chiamata in arrivo - + End call Termina chiamata - + Decline the call request Rifiuta la chiamata @@ -2463,17 +2463,17 @@ Copia e condividi con i tuoi amici! MainApplication - + E&xit E&sci - + &Quit &Esci - + &Show Jami &Mostra Jami @@ -2481,12 +2481,12 @@ Copia e condividi con i tuoi amici! PhotoboothView - + Image Files File immagine - + All files Tutti i file @@ -2494,7 +2494,7 @@ Copia e condividi con i tuoi amici! PluginHandlerItemDelegate - + On/Off Acceso/Spento @@ -2502,12 +2502,12 @@ Copia e condividi con i tuoi amici! PluginHandlerPicker - + Choose plugin Scegli plugin - + Preferences Preferenze @@ -2515,7 +2515,7 @@ Copia e condividi con i tuoi amici! PluginItemDelegate - + Load/Unload Carica/Scarica @@ -2523,27 +2523,27 @@ Copia e condividi con i tuoi amici! PluginListPreferencesView - + Uninstall plugin Disinstalla il plugin - + Reset preferences Ripristina le preferenze - + Ok Ok - + Cancel Annulla - + Uninstall Disinstalla @@ -2551,17 +2551,17 @@ Copia e condividi con i tuoi amici! PluginListSettingsView - + Plugin Files File plugin - + All files Tutti i file - + Installed plugins Plugin installati @@ -2569,7 +2569,7 @@ Copia e condividi con i tuoi amici! PreferenceItemDelegate - + Edit preference Modifica preferenze @@ -2577,107 +2577,107 @@ Copia e condividi con i tuoi amici! QObject - + Created by: Creato da: - + Artwork by: Grafica di: - + Based on the SFLPhone project Basato sul progetto SFLPhone - + Sending Invio in corso - + Failure Fallito - + Sent Inviato - + Connecting Collegamento - + Accept Accetta - + Canceled Annullato - + Unable to make contact Impossibile prendere contatto - + Ongoing In corso - + Waiting for contact In attesa di contatto - + Incoming transfer Trasferimento in entrata - + Timed out waiting for contact Tempo scaduto in attesa di contatto - + Finished Finito - + %1 days ago %1 giorni fa - + one day ago un giorno fa - + %1 hours ago %1 ore fa - + one hour ago un'ora fa - + %1 minutes ago %1 minuti fa - + just now ora @@ -2685,22 +2685,22 @@ Copia e condividi con i tuoi amici! RecordingSettings - + Call Recording Registrazione chiamate - + Always record calls Registra sempre le chiamate - + Quality Qualità - + Save in Salva in @@ -2708,7 +2708,7 @@ Copia e condividi con i tuoi amici! RevokeDevicePasswordDialog - + Remove Rimuovi @@ -2716,7 +2716,7 @@ Copia e condividi con i tuoi amici! SelectScreen - + Screen Schermo @@ -2724,7 +2724,7 @@ Copia e condividi con i tuoi amici! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copia e condividi con i tuoi amici! SmartListModel - - - - - - + + + + + + Calls Chiamate - - - - - - + + + + + + Contacts Contatti @@ -2755,17 +2755,17 @@ Copia e condividi con i tuoi amici! SystemSettings - + System Sistema - + Enable dark theme Abilita tema scuro - + Enable desktop notifications Mostra notifiche @@ -2773,27 +2773,27 @@ Copia e condividi con i tuoi amici! SystemTray - + Answer Rispondi - + Decline Rifiuta - + Open conversation Apri conversazione - + Accept Accetta - + Refuse Rifiuta @@ -2801,7 +2801,7 @@ Copia e condividi con i tuoi amici! UserIdentity - + Identity Indentità @@ -2809,17 +2809,17 @@ Copia e condividi con i tuoi amici! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Predefinito - + System Sistema diff --git a/translations/ring_client_windows_ja.ts b/translations/ring_client_windows_ja.ts index 2f62bfe7..11d8c7d0 100644 --- a/translations/ring_client_windows_ja.ts +++ b/translations/ring_client_windows_ja.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account アカウントを追加 @@ -10,7 +10,7 @@ AccountProfile - + Profile プロフィール @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files 音声ファイル - + All files 全てのファイル @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File 証明書ファイル - - - + + + All files 全てのファイル - + Key File 鍵ファイル @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File 証明書ファイル - - - + + + All files 全てのファイル - + Key File 鍵ファイル @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings アカウントの拡張設定 @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 禁止された連絡先 @@ -89,32 +89,32 @@ CallAdapter - + Missed call 不在着信 - + Missed call with %1 - + me 自分 - + Incoming call 着信 - + %1 is calling you %1から着信があります - + is calling you 着信があります @@ -122,17 +122,17 @@ ContactPicker - + Add to conference グループ通話に追加 - + Transfer this call この通話を転送 - + Add default moderator 既定担当者を追加 @@ -140,12 +140,12 @@ ConversationsAdapter - + New message 新規メッセージ - + Trust request 要求を信頼 @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok わかった - - + + Success 成功 - - + + Error エラー - + Jami archive files Jamiアーカイブファイル - + All files 全てのファイル @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok わかった @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id 機器識別子 @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation 利用者を見付けたり会話を検索したりしましょう - + Search your invitations 送信した招待を検索 - + Invitations 招待 - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jamiは世界中の利用者と繋がることができる自由ソフトウェアであり,利用者の自由と私事権とを尊重しています。 - + Version バージョン - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits クレジット - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account アカウントの削除 - + Authentication failed - + Password パスワード - + Username ユーザー名 - + Alias 別名 - + Call Settings 通話設定 - + Allow incoming calls from unknown contacts 未知の連絡先からの着信を許可 - + In progress… - + Accept 受け入れ - + Refuse 拒否 - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point アカウントを待合室に変換 - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone カスタム着信音を追加 - + Select a new ringtone - + Voicemail ボイスメール - + Voicemail dial code - + Security セキュリティ - + Encrypt media streams (SRTP) メディアストリームを暗号化 (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) negotiationを暗号化 (TLS) - + CA certificate CA証明書 - + User certificate ユーザー証明書 - + Private key 秘密鍵 - + Private key password 秘密鍵のパスワード - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLSプロトコル方式 - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) 折衝タイムアウト (秒) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port カスタムのアドレスとポート番号を使用 - + Enable local peer discovery ローカルピアの探索を有効化 - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call 通話を終了 - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password アカウントをパスワードで暗号化 - + Create a rendezvous point 待合室を作成 - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators 自分の入力状況を表示 - - + + Network error ネットワークエラー - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. 他で構成されたJamiアカウントからのPINを入力します。PINは「他の機器を接続する」機能を用いて取得できます。 - + Link device デバイスをリンク - + Conversations 会話 - + Enable 有効化 - + Display or hide preferences - + Add new plugin - + Select a file - + Select 選択 - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Jamiアカウントを作成 - + About Jami Jamiについて - + Decline contact request - + Accept contact request - + Automatically check for updates 更新を自動的に確認する - + Ok わかった - - + + Cancel キャンセル - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts 既読表示を有効化 - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity 接続性 - + Auto Registration After Expired 期限切れの後 自動的に登録 - + Network interface ネットワークインターフェース - + Use UPnP UPnPを使用 - + Use TURN TURNを使用 - + TURN address TURNアドレス - + TURN username TURNのユーザー名 - + TURN password TURNのパスワード - + TURN Realm - + Use STUN STUNを使用 - + STUN address STUNアドレス - + Allow IP Auto Rewrite - + Public address - + Address アドレス - + Port ポート番号 - + Media メディア - + Enable video ビデオを有効化 - + Video Codecs ビデオコーデック - + Audio Codecs 音声コーデック - + Name Server ネームサーバー - + SDP Session Negotiation (ICE Fallback) SDPセッション折衝 (ICEフォールバック) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration OpenDHT設定 - + Enable proxy プロキシを有効にする - + Proxy address プロキシアドレス - + Bootstrap ブートストラップ - + Back 戻る - + Account Settings - + Account アカウント - - + + General 全般 - + Plugin 追加機能 - + Audio/Video 音声/動画 - + Audio 音声 - + Microphone マイク - + Select audio input device - + Output device 出力デバイス - + Select audio output device - + Ringtone device 機器の着信音 - + Select ringtone output device - + Audio manager オーディオマネージャー - + Video 動画 - + Select video device - + Device デバイス - + Resolution 解像度 - + Select video resolution - + Enable hardware acceleration ハードウェアアクセラレーションを有効化 - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ビデオなし - + Backup account here - + Backup your account! アカウントをバックアップしてください! - + Backup account アカウントをバックアップ - + Skip スキップ - + Success 成功 - + Error エラー - + Never show me this again 今後表示しない - + Recommended 推奨 - + Jami archive files Jamiアーカイブファイル - + All files 全てのファイル - + Reinstate as contact - + name 名前 - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you 着信があります - - + + Mute 消音 - - + + Unmute 消音を解除 - + Add participant 参加者を追加 - + Add participants - + Chat チャット - + More options 詳細な設定 - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator モデレータ - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut 切り取り - + Paste 貼り付け - + Start video call ビデオ通話を開始 - + Start audio call 音声通話を開始 - + Clear conversation 会話履歴を削除 - + Remove conversation 会話を削除 - + Remove contact 連絡先を削除 - + Block contact 連絡先をブロック - + Contact details 連絡先の詳細 - + Hold 保留 - + Sip input panel - + Transfer call - + Stop recording 録音を停止 - + Start recording - + Exit full screen 全画面表示の終了 - + Share screen 画面を共有 - + Share window ウィンドウを共有する - + Share screen area 画面を共有 - + Share file ファイルを共有 - + Select sharing method - + View plugin - + No video device - + N/A なし - + Lower hand - + Raise hand 手を挙げる - + Hide chat view チャットを隠す - + Place audio call 音声通話を開始 - + Place video call ビデオ通話を開始 - + Show available plugins - + Add to conversations 会話に追加 - + Jump to latest 会話の最後までスクロール - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL Jamiアカウント管理サーバー (JAMS) URLを入力 - + Required 必須 - + Jami Account Management Server URL - + Enter your JAMS credentials JAMS資格情報を入力 - + Connect 接続 - + Back to welcome page 歓迎画面に戻る - + Choose name - + Choose username - + Create account アカウント作成 - + Confirm password パスワードの再入力 - + Optional オプション - + Choose a username for your account アカウントのユーザー名を選択 - + Choose a name 名前を選択 - + Choose your username ユーザー名を選択 - + Invalid name 不正な名前 - + Invalid username 無効なユーザー名 - + Name already taken この名前はすでに取得されています - + Username already taken すでに取得されているユーザー名です - + Proxy プロキシ - + Server サーバー - + Create SIP account SIPアカウントを作成 - + Configure an existing SIP account 既存のSIPアカウントを構成 - + Backup successful - + Backup failed バックアップに失敗しました - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password パスワードを変更 - - + + Set password パスワードを設定 - + Change current password - + Backup account to a .gz file - + Enable account アカウントを有効化 - + Set username - + Registering name - + Register a username ユーザー名を登録 - + Register username ユーザー名を登録 - + Link a new device to this account - + Link another device 別のデバイスをリンク - + Exporting account… アカウントをエクスポート中… - + Remove Device - + Are you sure you wish to remove this device? デバイスを取り除いてもよろしいですか? - + Linked Devices リンクされたデバイス - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close ウィンドウを閉じたら最小化して待機する - + Run application on system startup - + Downloads directory ダウンロード フォルダー - + Choose download directory - + Record call 通話を録画 - + Chatview チャット - + Display hyperlink previews in the chatview リンク プレビューの表示 - + User interface language ユーザー インターフェイスの言語 - + File transfer ファイル転送 - + Allow incoming files from unknown contacts 未知の連絡先からのファイルの受信を許可 - + Automatically accept incoming files ファイルの受信を自動的に許可 - + Accept transfer limit - + in MB, 0 = unlimited - + Register 登録 - + Incorrect password - + Save file ファイルを保存 - + Open location - + Install beta version - + Check for updates now 今すぐアップデートを確認 - + Enable/Disable automatic updates - + toggle automatic updates - + Updates アップデート - + Update 更新 - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled インストーラーのダウンロードがキャンセルされました - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop 停止 - + Generating account… アカウントを生成中… - + Import from backup バックアップからインポート - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts 個人情報を共有できるのは連絡先だけです - + Enter your name 名前を入力 - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to ようこそ - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ファイルの送信 - + Leave audio message - + Leave video message - + Send 送信 - + Remove 削除 - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy コピー - + Participant is still muted on their device - + You are still muted on your device - + View full screen 全画面で表示 - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout レイアウト - + Vertical view 縦ビュー - + Horizontal view 横ビュー - + Keyboard Shortcut Table - + Conversation - + Call 通話 - + Settings 設定 - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive アーカイブ - + Open file ファイルを開く - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. アカウント設定で「アカウントをバックアップする」を実行してアーカイブを取得できます。機器に.gzファイルが保存されます。 - + Restore an account from backup バックアップからアカウントを復元 - + Enter Jami account password Jamiアカウントの暗証語を入力してください - + The PIN and the account password should be entered in your device within 10 minutes. - + Close 閉じる - + Enter your account password アカウントのパスワードを入力してください - + Add Device デバイスを追加 - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password 新しいパスワードを入力 - + Confirm new password - + Change - + Confirm 確認 - + Export エクスポート - + Choose a picture as avatar - + Import avatar from image file - + Take photo 撮影 - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share 共有する画面を選択します - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! これがあなたの Jami ユーザー名です。 コピーして友達とシェアしましょう! - + Link this device to an existing account この機器を既存のアカウントと関連付ける - + Advanced features 高度な機能 - + Show advanced features - + Connect to a JAMS server JAMSサーバーに接続 - + Add a SIP account SIPアカウントを追加 - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results 検索結果 - + Delete 削除 - + Set moderator 調停者を設定 - + Unset moderator 担当者を取り消し - + Maximize 最大化 - + Minimize 最小化 - + Hangup 受話 - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator 既定担当者を追加 - + Remove default moderator @@ -2343,112 +2343,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list アカウント一覧を表示 - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen 全画面表示 - + Start an audio call 音声通話を開始 - + Start a video call ビデオ通話を開始 - + Clear history 履歴を消去 - + Block contact 連絡先をブロック - + Remove conversation 会話を削除 - + Accept contact request - + Media settings - + General settings 一般設定 - + Account settings アカウント設定 - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call 通話を終了 - + Decline the call request @@ -2456,17 +2456,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files 全てのファイル @@ -2487,7 +2487,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin 追加機能を選択 - + Preferences @@ -2508,7 +2508,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok わかった - + Cancel キャンセル - + Uninstall @@ -2544,17 +2544,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files 全てのファイル - + Installed plugins @@ -2562,7 +2562,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Copy and share it with your friends! QObject - + Created by: 作成者: - + Artwork by: - + Based on the SFLPhone project - + Sending 送信中 - + Failure - + Sent - + Connecting 接続中 - + Accept 受け入れ - + Canceled キャンセルしました - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished 通話終了 - + %1 days ago - + one day ago 1 日前 - + %1 hours ago - + one hour ago 1 時間前 - + %1 minutes ago - + just now ちょうど今 @@ -2678,22 +2678,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording 通話の録音 - + Always record calls 常に通話を録音 - + Quality - + Save in 保存先 @@ -2701,7 +2701,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove 削除 @@ -2709,7 +2709,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls 発信 - - - - - - + + + + + + Contacts 連絡先 @@ -2748,17 +2748,17 @@ Copy and share it with your friends! SystemSettings - + System システム - + Enable dark theme - + Enable desktop notifications 通知を表示 @@ -2766,27 +2766,27 @@ Copy and share it with your friends! SystemTray - + Answer 応答 - + Decline 辞退 - + Open conversation 会話を開く - + Accept 受け入れ - + Refuse 拒否 @@ -2794,7 +2794,7 @@ Copy and share it with your friends! UserIdentity - + Identity ID @@ -2802,17 +2802,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1メガビット/秒 - + Default 既定 - + System システム diff --git a/translations/ring_client_windows_kk.ts b/translations/ring_client_windows_kk.ts index d75e7fa3..dd81f263 100644 --- a/translations/ring_client_windows_kk.ts +++ b/translations/ring_client_windows_kk.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Жарайды - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Жарайды @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Қоңырауды аяқтау - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Жарайды - - + + Cancel Болдырмау - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video бейне жоқ - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat Чат - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Толық экраннан шығу - + Share screen Экранды бөлісу - + Share window Бөлісу терезесі - + Share screen area Экран аймағын бөлісу - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Жүктелгендер қалтасы - + Choose download directory - + Record call - + Chatview Чат - + Display hyperlink previews in the chatview Сілтемені алдын ала қарауды көрсету - + User interface language Пайдаланушылық тілдесу тілі - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Орнатушыны жүктеп алу тоқтатылды - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Файл жіберу - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Толық экранда көру - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Орналасу - + Vertical view Тік көрініс - + Horizontal view Көлденең көрініс - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Бөлісетін экранды таңдаңыз - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Толық экран - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Қоңырауды аяқтау - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Жарайды - + Cancel Болдырмау - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Бас тартылды - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System жүйе - + Enable dark theme - + Enable desktop notifications Хабарландыруларды көрсету @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/сек - + Default Әдепкі - + System жүйе diff --git a/translations/ring_client_windows_kn.ts b/translations/ring_client_windows_kn.ts index f4479caf..4bf1072a 100644 --- a/translations/ring_client_windows_kn.ts +++ b/translations/ring_client_windows_kn.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ಸರಿ - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ಸರಿ @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call ಕರೆ ಅಂತ್ಯಗೊಳಿಸು - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ಸರಿ - - + + Cancel ರದ್ದು - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ವೀಡಿಯೋ ಇಲ್ಲ - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat ಚಾಟ್ - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen ಪೂರ್ಣ ಪರದೆಯನ್ನು ಹೊರಹಾಕಿ - + Share screen ಸ್ಕ್ರೀನ್ ಹಂಚಿಕೊಳ್ಳಿ - + Share window ಹಂಚಿಕೆ ವಿಂಡೋ - + Share screen area ಪರದೆಯ ಪ್ರದೇಶವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest ಸಂಭಾಷಣೆಯ ಕೊನೆಯ ಭಾಗಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ಫೋಲ್ಡರ್ ಡೌನ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ - + Choose download directory - + Record call - + Chatview ಚಾಟ್ - + Display hyperlink previews in the chatview ಲಿಂಕ್ ಪೂರ್ವವೀಕ್ಷಣೆಗಳನ್ನು ತೋರಿಸು - + User interface language ಬಳಕೆದಾರ ಇಂಟರ್ಫೇಸ್ ಭಾಷೆ - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ಸ್ಥಾಪಕ ಡೌನ್‌ಲೋಡ್ ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN ಕೋಡ್ - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ಫೈಲ್ ಕಳುಹಿಸು - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen ಪೂರ್ಣ ಪರದೆ ವೀಕ್ಷಿಸು - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout ಲೇಔಟ್ - + Vertical view ಲಂಬ ನೋಟ - + Horizontal view ಸಮತಲ ನೋಟ - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share ಹಂಚಿಕೊಳ್ಳಲು ಪರದೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen ಪೂರ್ಣ ಪರದೆ - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call ಕರೆ ಅಂತ್ಯಗೊಳಿಸು - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ಸರಿ - + Cancel ರದ್ದು - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System ಸಿಸ್ಟಮ್ - + Enable dark theme - + Enable desktop notifications ಅಧಿಸೂಚನೆಗಳನ್ನು ತೋರಿಸು @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 ಮೆಗಾಬಿಟ್ / ಸೆಕೆಂಡ್ - + Default ಡೀಫಾಲ್ಟ್ - + System ಸಿಸ್ಟಮ್ diff --git a/translations/ring_client_windows_ko.ts b/translations/ring_client_windows_ko.ts index 83f7555e..e2b7dbcc 100644 --- a/translations/ring_client_windows_ko.ts +++ b/translations/ring_client_windows_ko.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile 프로필 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 차단한 연락처 @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 확인 - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok 확인 @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password 암호 - + Username 사용자명 - + Alias 별칭 - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept 수락 - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security 보안 - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key 개인키 - + Private key password 개인키 암호 - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call 통화 종료 - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations 대화 - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok 확인 - - + + Cancel 취소 - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN TURN 사용 - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN STUN 사용 - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address 주소 - + Port 포트 - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account 계정 - - + + General 일반 - + Plugin - + Audio/Video 오디오/비디오 - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video 비디오 - + Select video device - + Device 장치 - + Resolution 해상도 - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video 비디오 없음 - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat 채팅 - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen 전체 화면 끝내기 - + Share screen 화면 공유 - + Share window 창 공유 - + Share screen area 화면 영역 공유하기 - + Share file 파일 공유하기 - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand 손 들기 - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest 대화의 끝으로 스크롤 - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password 암호 확인 - + Optional - + Choose a username for your account - + Choose a name - + Choose your username 사용자명 선택 - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy 프록시 - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications 알람 사용하기 - + Enable dark theme - + Keep minimized on close 닫을 때 최소화 유지하기 - + Run application on system startup - + Downloads directory 다운로드 폴더 - + Choose download directory - + Record call - + Chatview 채팅 - + Display hyperlink previews in the chatview 링크 미리 보기 표시 - + User interface language 사용자 인터페이스 언어 - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now 지금 업데이트 확인하기 - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled 설치 프로그램 다운로드 취소됨 - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file 파일 보내기 - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy 복사하기 - + Participant is still muted on their device - + You are still muted on your device - + View full screen 전체 화면 보기 - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout 레이아웃 - + Vertical view 세로 보기 - + Horizontal view 가로 보기 - + Keyboard Shortcut Table - + Conversation - + Call 통화 - + Settings 설정 - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export 내보내기 - + Choose a picture as avatar - + Import avatar from image file - + Take photo 사진 찍기 - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share 공유할 화면 선택 - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup 통화종료 - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen 전체 화면 - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call 통화 종료 - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok 확인 - + Cancel 취소 - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project SFLPhone 프로젝트 기반 - + Sending - + Failure - + Sent - + Connecting - + Accept 수락 - + Canceled 취소됨 - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality 품질 - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System 시스템 - + Enable dark theme - + Enable desktop notifications 알림 표시 @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer 응답 - + Decline - + Open conversation - + Accept 수락 - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1메가비트/초 - + Default 기본값 - + System 시스템 diff --git a/translations/ring_client_windows_ko_KR.ts b/translations/ring_client_windows_ko_KR.ts index f935742c..5b6aecc5 100644 --- a/translations/ring_client_windows_ko_KR.ts +++ b/translations/ring_client_windows_ko_KR.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile 프로필 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 차단한 연락처 @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 확인 - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok 확인 @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password 암호 - + Username 사용자명 - + Alias 별칭 - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept 수락 - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security 보안 - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key 개인키 - + Private key password 개인키 암호 - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call 통화 종료 - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations 대화 - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok 확인 - - + + Cancel 취소 - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN TURN 사용 - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN STUN 사용 - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address 주소 - + Port 포트 - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account 계정 - - + + General 일반 - + Plugin - + Audio/Video 오디오/비디오 - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video 비디오 - + Select video device - + Device 장치 - + Resolution 해상도 - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video 비디오 없음 - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat 채팅 - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen 전체 화면 끝내기 - + Share screen 화면 공유 - + Share window 창 공유 - + Share screen area 화면 영역 공유하기 - + Share file 파일 공유하기 - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand 손 들기 - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest 대화의 끝으로 스크롤 - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password 암호 확인 - + Optional - + Choose a username for your account - + Choose a name - + Choose your username 사용자명 선택 - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy 프록시 - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications 알람 사용하기 - + Enable dark theme - + Keep minimized on close 닫을 때 최소화 유지하기 - + Run application on system startup - + Downloads directory 다운로드 폴더 - + Choose download directory - + Record call - + Chatview 채팅 - + Display hyperlink previews in the chatview 링크 미리 보기 표시 - + User interface language 사용자 인터페이스 언어 - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now 지금 업데이트 확인하기 - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled 설치 프로그램 다운로드 취소됨 - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file 파일 보내기 - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy 복사하기 - + Participant is still muted on their device - + You are still muted on your device - + View full screen 전체 화면 보기 - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout 레이아웃 - + Vertical view 세로 보기 - + Horizontal view 가로 보기 - + Keyboard Shortcut Table - + Conversation - + Call 통화 - + Settings 설정 - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export 내보내기 - + Choose a picture as avatar - + Import avatar from image file - + Take photo 사진 찍기 - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share 공유할 화면 선택 - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup 통화종료 - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen 전체 화면 - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call 통화 종료 - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok 확인 - + Cancel 취소 - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project SFLPhone 프로젝트 기반 - + Sending - + Failure - + Sent - + Connecting - + Accept 수락 - + Canceled 취소됨 - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality 품질 - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System 시스템 - + Enable dark theme - + Enable desktop notifications 알림 표시 @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer 응답 - + Decline - + Open conversation - + Accept 수락 - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1메가비트/초 - + Default 기본값 - + System 시스템 diff --git a/translations/ring_client_windows_lt.ts b/translations/ring_client_windows_lt.ts index 11f63cc6..8356aacb 100644 --- a/translations/ring_client_windows_lt.ts +++ b/translations/ring_client_windows_lt.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Pridėti paskyrą @@ -10,7 +10,7 @@ AccountProfile - + Profile Profilis @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Garso failai - + All files Visi failai @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Liudijimo failas - - - + + + All files Visi failai - + Key File Rakto failas @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Liudijimo failas - - - + + + All files Visi failai - + Key File Rakto failas @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Išplėstiniai paskyros nustatymai @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Užblokuoti adresatai @@ -89,32 +89,32 @@ CallAdapter - + Missed call Praleistas skambutis - + Missed call with %1 - + me - + Incoming call Gaunamasis skambutis - + %1 is calling you Jums skambina %1 - + is calling you jums skambina @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Pridėti į konferenciją - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nauja žinutė - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Gerai - - + + Success Pavyko - - + + Error Klaida - + Jami archive files Jami archyvo failai - + All files Visi failai @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Gerai @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Įrenginio ID @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Pakvietimai - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Padėkos - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Ištrinti paskyrą - + Authentication failed Tapatybės nustatymas nepavyko - + Password Slaptažodis - + Username Naudotojo vardas - + Alias Slapyvardis - + Call Settings Skambučio nustatymai - + Allow incoming calls from unknown contacts - + In progress… - + Accept Priimti - + Refuse Atmesti - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Pridėti tinkintą skambučio melodiją - + Select a new ringtone - + Voicemail Balso paštas - + Voicemail dial code - + Security Saugumas - + Encrypt media streams (SRTP) Šifruoti medija srautus (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Šifruoti derėjimąsi (TLS) - + CA certificate LĮ liudijimas - + User certificate Naudotojo liudijimas - + Private key Privatusis raktas - + Private key password Privačiojo rakto slaptažodis - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS protokolo metodas - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Derėjimuisi skirtas laikas (sekundžių) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Naudoti tinkintą adresą ir prievadą - + Enable local peer discovery Įgalinti vietinį peer atradimą - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Baigti skambutį - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Tinklo klaida - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Susieti įrenginį - + Conversations Pokalbiai - + Enable Įjungti - + Display or hide preferences - + Add new plugin - + Select a file - + Select Pasirinkti - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Susikurti Jami paskyrą - + About Jami Apie Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automatiškai tikrinti ar yra naujinimų - + Ok Gerai - - + + Cancel Atsisakyti - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Jungiamumas - + Auto Registration After Expired - + Network interface Tinklo sąsaja - + Use UPnP Naudoti UPnP - + Use TURN Naudoti TURN - + TURN address TURN adresas - + TURN username TURN naudotojo vardas - + TURN password TURN slaptažodis - + TURN Realm - + Use STUN Naudoti STUN - + STUN address STUN adresas - + Allow IP Auto Rewrite - + Public address - + Address Adresas - + Port Prievadas - + Media Medija - + Enable video Įjungti vaizdą - + Video Codecs Vaizdo kodekai - + Audio Codecs Garso kodekai - + Name Server Vardų serveris - + SDP Session Negotiation (ICE Fallback) SDP seanso derėjimasis (ICE surogatas) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration OpenDHT konfigūracija - + Enable proxy Įjungti įgaliotąjį serverį - + Proxy address Įgaliotojo serverio adresas - + Bootstrap Pradinė įkeltis - + Back Atgal - + Account Settings Paskyros nustatymai - + Account Paskyra - - + + General Bendra - + Plugin - + Audio/Video Garsas/Vaizdas - + Audio Garsas - + Microphone Mikrofonas - + Select audio input device - + Output device Išvesties įrenginys - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Vaizdas - + Select video device - + Device Įrenginys - + Resolution Raiška - + Select video resolution - + Enable hardware acceleration Įjungti aparatinės įrangos spartinimą - + Preview unavailable Peržiūra neprieinama - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video nėra vaizdo įrašo - + Backup account here - + Backup your account! - + Backup account Padaryti paskyros atsarginę kopiją - + Skip Praleisti - + Success Pavyko - + Error Klaida - + Never show me this again Daugiau neberodyti - + Recommended Rekomenduojamas - + Jami archive files Jami archyvo failai - + All files Visi failai - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you jums skambina - - + + Mute - - + + Unmute - + Add participant Pridėti dalyvį - + Add participants - + Chat Pokalbis - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Iškirpti - + Paste Įdėti - + Start video call Pradėti vaizdo skambutį - + Start audio call Pradėti garso skambutį - + Clear conversation Išvalyti pokalbį - + Remove conversation Šalinti pokalbį - + Remove contact Šalinti adresatą - + Block contact Užblokuoti adresatą - + Contact details - + Hold Užlaikyta - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Išeiti iš viso ekrano režimo - + Share screen Bendrinti ekraną - + Share window Siųsti langą - + Share screen area Bendrinti ekrano sritį - + Share file Bendrinti failą - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view Slėpti pokalbio rodinį - + Place audio call Pradėti garso skambutį - + Place video call Pradėti vaizdo skambutį - + Show available plugins - + Add to conversations - + Jump to latest Slinkite į pokalbio pabaigą - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Prisijungti - + Back to welcome page - + Choose name - + Choose username - + Create account Sukurti paskyrą - + Confirm password Patvirtinkite slaptažodį - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Pasirinkite savo naudotojo vardą - + Invalid name - + Invalid username Neteisingas naudotojo vardas - + Name already taken Vardas jau užimtas - + Username already taken Naudotojo vardas jau užimtas - + Proxy Įgaliotasis serveris - + Server Serveris - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Atsarginė kopija nepavyko - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Pakeisti slaptažodį - - + + Set password Nustatyti slaptažodį - + Change current password - + Backup account to a .gz file - + Enable account Įjungti paskyrą - + Set username - + Registering name - + Register a username - + Register username Registruoti naudotojo vardą - + Link a new device to this account - + Link another device Susieti kitą įrenginį - + Exporting account… Eksportuojama paskyra… - + Remove Device Šalinti įrenginį - + Are you sure you wish to remove this device? Ar tikrai norite pašalinti šį įrenginį? - + Linked Devices Susieti įrenginiai - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications Įjungti pranešimus - + Enable dark theme - + Keep minimized on close Užvėrus, palikti suskleistą - + Run application on system startup - + Downloads directory Atsisiuntimų aplankas - + Choose download directory - + Record call Įrašyti skambutį - + Chatview Pokalbis - + Display hyperlink previews in the chatview Rodyti saito peržiūras - + User interface language Vartotojo sąsajos kalba - + File transfer Failų persiuntimas - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registruoti - + Incorrect password Neteisingas slaptažodis - + Save file Įrašyti failą - + Open location - + Install beta version - + Check for updates now Tikrinti dabar ar yra atnaujinimų - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Atnaujinimai - + Update Atnaujinimas - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Diegimo programos atsisiuntimas atšauktas - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Kažkas nutiko - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Stabdyti - + Generating account… - + Import from backup Importuoti iš atsarginės kopijos - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Sveiki atvykę į - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Siųsti failą - + Leave audio message - + Leave video message - + Send Siųsti - + Remove Šalinti - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopijuoti - + Participant is still muted on their device - + You are still muted on your device - + View full screen Viso ekrano rodinys - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Slėpti užblokuotus adresatus - + Layout Išdėstymas - + Vertical view Vertikalus rodinys - + Horizontal view Horizontalus rodinys - + Keyboard Shortcut Table - + Conversation - + Call Skambutis - + Settings Nustatymai - + Report Bug - + Clear Išvalyti - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Atverti failą - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Užverti - + Enter your account password Įveskite savo paskyros slaptažodį - + Add Device Pridėti įrenginį - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Įveskite šios paskyros slaptažodį, kad patvirtintumėte šio įrenginio šalinimą - + Enter new password - + Confirm new password - + Change - + Confirm Patvirtinti - + Export Eksportuoti - + Choose a picture as avatar - + Import avatar from image file - + Take photo Padaryti nuotrauką - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Pasirinkite ekraną, kurį norite bendrinti - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Tai yra jūsų Jami naudotojo vardas. Nukopijuokite ir dalinkitės juo su draugais! - + Link this device to an existing account Susieti šį įrenginį su esama paskyra - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account Pridėti SIP paskyrą - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Paieškos rezultatai - + Delete Ištrinti - + Set moderator - + Unset moderator - + Maximize - + Minimize Suskleisti - + Hangup Padėti ragelį - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Nukopijuokite ir dalinkitės juo su draugais! KeyboardShortcutTable - + Open account list Atverti paskyrų sąrašą - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Visas ekranas - + Start an audio call Pradėti garso skambutį - + Start a video call Pradėti vaizdo skambutį - + Clear history Išvalyti istoriją - + Block contact Užblokuoti adresatą - + Remove conversation Šalinti pokalbį - + Accept contact request - + Media settings - + General settings Bendri nustatymai - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Baigti skambutį - + Decline the call request @@ -2456,17 +2456,17 @@ Nukopijuokite ir dalinkitės juo su draugais! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Nukopijuokite ir dalinkitės juo su draugais! PhotoboothView - + Image Files - + All files Visi failai @@ -2487,7 +2487,7 @@ Nukopijuokite ir dalinkitės juo su draugais! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Nukopijuokite ir dalinkitės juo su draugais! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Nukopijuokite ir dalinkitės juo su draugais! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Nukopijuokite ir dalinkitės juo su draugais! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Gerai - + Cancel Atsisakyti - + Uninstall @@ -2544,17 +2544,17 @@ Nukopijuokite ir dalinkitės juo su draugais! PluginListSettingsView - + Plugin Files - + All files Visi failai - + Installed plugins @@ -2562,7 +2562,7 @@ Nukopijuokite ir dalinkitės juo su draugais! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Nukopijuokite ir dalinkitės juo su draugais! QObject - + Created by: Sukūrė: - + Artwork by: Apipavidalino: - + Based on the SFLPhone project Pagrįsta SFLPhone projektu - + Sending - + Failure Nesėkmė - + Sent - + Connecting Sujungiama - + Accept Priimti - + Canceled Atsisakyta - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Užbaigta - + %1 days ago - + one day ago prieš vieną dieną - + %1 hours ago - + one hour ago prieš vieną valandą - + %1 minutes ago - + just now ką tik @@ -2678,22 +2678,22 @@ Nukopijuokite ir dalinkitės juo su draugais! RecordingSettings - + Call Recording - + Always record calls Visada įrašinėti skambučius - + Quality Kokybė - + Save in Įrašyti į @@ -2701,7 +2701,7 @@ Nukopijuokite ir dalinkitės juo su draugais! RevokeDevicePasswordDialog - + Remove Šalinti @@ -2709,7 +2709,7 @@ Nukopijuokite ir dalinkitės juo su draugais! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Nukopijuokite ir dalinkitės juo su draugais! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Nukopijuokite ir dalinkitės juo su draugais! SmartListModel - - - - - - + + + + + + Calls Skambučiai - - - - - - + + + + + + Contacts Adresatai @@ -2748,17 +2748,17 @@ Nukopijuokite ir dalinkitės juo su draugais! SystemSettings - + System Sistema - + Enable dark theme - + Enable desktop notifications Rodyti pranešimus @@ -2766,27 +2766,27 @@ Nukopijuokite ir dalinkitės juo su draugais! SystemTray - + Answer Atsiliepti - + Decline Atmesti - + Open conversation Atverti pokalbį - + Accept Priimti - + Refuse Atmesti @@ -2794,7 +2794,7 @@ Nukopijuokite ir dalinkitės juo su draugais! UserIdentity - + Identity Tapatybė @@ -2802,17 +2802,17 @@ Nukopijuokite ir dalinkitės juo su draugais! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Numatytasis - + System Sistema diff --git a/translations/ring_client_windows_ml.ts b/translations/ring_client_windows_ml.ts index 8d850e41..382c063d 100644 --- a/translations/ring_client_windows_ml.ts +++ b/translations/ring_client_windows_ml.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ശരി - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ശരി @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call കോൾ അവസാനിപ്പിക്കുക - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ശരി - - + + Cancel റദ്ദാക്കുക - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video വീഡിയോ ഇല്ല - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen പൂർണ്ണ സ്ക്രീനില്‍ നിന്ന് പുറത്തുകടക്കുക - + Share screen സ്ക്രീൻ പങ്കിടുക - + Share window വിൻഡോ പങ്കിടുക - + Share screen area സ്ക്രീൻ ഏരിയ പങ്കിടുക - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest സംഭാഷണത്തിന്‍റെ അവസാനത്തിലേക്ക് സ്‌ക്രോൾ ചെയ്യുക - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ഫോൾഡർ ഡൗൺലോഡ് ചെയ്യുന്നു - + Choose download directory - + Record call - + Chatview ചാറ്റ് - + Display hyperlink previews in the chatview ലിങ്ക് പ്രിവ്യൂകൾ കാണിക്കുക - + User interface language ഉപയോക്തൃ ഇന്റർഫേസ് ഭാഷ - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ഇൻസ്റ്റാളർ ഡൗൺലോഡ് റദ്ദാക്കി - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ഫയൽ അയയ്ക്കുക - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen മുഴുവന്‍ സ്ക്രീനില്‍ കാണുക - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout ലേഔട്ട് - + Vertical view ലംബമായ കാഴ്ച - + Horizontal view തിരശ്ചീന കാഴ്ച - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share പങ്കിടാൻ ഒരു സ്ക്രീൻ തിരഞ്ഞെടുക്കുക - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen മുഴുവൻ സ്ക്രീൻ - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call കോൾ അവസാനിപ്പിക്കുക - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ശരി - + Cancel റദ്ദാക്കുക - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled റദ്ദാക്കി - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System സിസ്റ്റം - + Enable dark theme - + Enable desktop notifications അറിയിപ്പുകൾ കാണിക്കുക @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps സെക്കൻഡിൽ %1 മെഗാബൈറ്റ് - + Default ഡിഫോൾട്ട് - + System സിസ്റ്റം diff --git a/translations/ring_client_windows_mn_MN.ts b/translations/ring_client_windows_mn_MN.ts index 21ce27d0..855c24c9 100644 --- a/translations/ring_client_windows_mn_MN.ts +++ b/translations/ring_client_windows_mn_MN.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Зүгээр - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Зүгээр @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Дуудлагыг дуусгах - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Зүгээр - - + + Cancel Цуцлах - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video видео байхгүй - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Дэлгэц дүүрэн горимоос гарах - + Share screen Дэлгэц хуваалцах - + Share window Хуваалцах цонх - + Share screen area Дэлгэцийн хэсгийг хуваалцах - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Татаж авсан файлын хавтас - + Choose download directory - + Record call - + Chatview Чат - + Display hyperlink previews in the chatview Холбоосыг урьдчилан харах - + User interface language Хэрэглэгчийн интерфейсийн хэл - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Суулгагчийг татаж авахыг цуцалсан - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN ПИН код - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Файл илгээх - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Дэлгэц дүүрэн харах - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Цэгцлэлт - + Vertical view Босоо харах - + Horizontal view Хэвтээ харах - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Хуваалцах дэлгэцээ сонго - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Дэлгэц дүүрэн - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Дуудлагыг дуусгах - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Зүгээр - + Cancel Цуцлах - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Цуцаллаа - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Систем - + Enable dark theme - + Enable desktop notifications Мэдэгдлүүдийг харуул @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/с - + Default Өгөгдмөл - + System Систем diff --git a/translations/ring_client_windows_mr.ts b/translations/ring_client_windows_mr.ts index 76fbcfa2..172cb7a9 100644 --- a/translations/ring_client_windows_mr.ts +++ b/translations/ring_client_windows_mr.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ठीक - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ठीक @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call कॉल समाप्त करा - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ठीक - - + + Cancel रद्द करा - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio ऑडिओ - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video व्हिडिओ - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video व्हिडिओ नाही - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen पूर्ण स्क्रीन मधून निर्गमन करावे - + Share screen स्क्रीन सामायिक करा - + Share window शेअर विंडो - + Share screen area स्क्रीन क्षेत्र शेअर करा - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest संभाषण संपवण्‍यासाठी स्‍क्रोल करा - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory फोल्डर डाउनलोड करा - + Choose download directory - + Record call - + Chatview चॅट - + Display hyperlink previews in the chatview लिंक पूर्वावलोकने दर्शवा - + User interface language वापरकर्ता इंटरफेस भाषा - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled इंस्टॉलर डाउनलोड रद्द केले - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file फाइल पाठवा - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen पूर्ण स्क्रीन पाहा - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout मांडणी - + Vertical view अनुलंब दृश्य - + Horizontal view क्षैतिज दृश्य - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share शेअर करण्यासाठी स्क्रीन निवडा - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen फुल स्क्रीन - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call कॉल समाप्त करा - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ठीक - + Cancel रद्द करा - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled रद्द केले - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System सिस्टम - + Enable dark theme - + Enable desktop notifications अधिसूचना दर्शवा @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 मेगाबिट प्रति सेकंद - + Default डिफॉल्ट - + System सिस्टम diff --git a/translations/ring_client_windows_ms.ts b/translations/ring_client_windows_ms.ts index 9a77ef2f..f23a9c7b 100644 --- a/translations/ring_client_windows_ms.ts +++ b/translations/ring_client_windows_ms.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fail Certificate - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fail Certificate - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Panggilan masuk - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error Gagal - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versi - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Kredit - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Kara laluan - + Username Nama pengguna - + Alias Nama panggilan - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Terima - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Penyulitan - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Tamatkan panggilan - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Rangkaian gagal - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel Batal - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Guna TURN - + TURN address - + TURN username Nama pengguna TURN - + TURN password Kata laluan TURN - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port Port - + Media Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Bootstrap - + Back - + Account Settings - + Account Akaun - - + + General Utama - + Plugin - + Audio/Video Audio/Video - + Audio Bunyi - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video tiada video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error Gagal - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold Tangguh - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Keluar skrin penuh - + Share screen Kongsi skrin - + Share window Tetingkap kongsi - + Share screen area Kongsi kawasan skrin - + Share file - + Select sharing method - + View plugin - + No video device - + N/A Tiada - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Cipta akaun - + Confirm password Sahkan kata laluan - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nama pengguna tidak sah - + Name already taken - + Username already taken Nama pengguna telah digunakan pengguna lain - + Proxy Proksi - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Eksport gagal - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Folder muat turun - + Choose download directory - + Record call - + Chatview Sembang - + Display hyperlink previews in the chatview Tunjukkan pratonton pautan - + User interface language Bahasa antara muka pengguna - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Daftar - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Muat turun pemasang dibatalkan - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Berhenti - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Hantar fail - + Leave audio message - + Leave video message - + Send - + Remove Hapus - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Papar skrin penuh - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Tataletak - + Vertical view Pandangan menegak - + Horizontal view Pandangan melintang - + Keyboard Shortcut Table - + Conversation - + Call Panggilan - + Settings Tetapan - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Eksport - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Pilih skrin untuk dikongsi - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete Hapus - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Skrin penuh - + Start an audio call - + Start a video call - + Clear history Padamkan sejarah - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Tamatkan panggilan - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel Batal - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Dicipta oleh: - + Artwork by: Kerja seni oleh: - + Based on the SFLPhone project Berdasarkan projek - + Sending - + Failure - + Sent - + Connecting Menyambung - + Accept Terima - + Canceled Dibatalkan - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Hapus @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Panggilan - - - - - - + + + + + + Contacts Kenalan @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Tunjukkan pemberitahuan @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Bantah panggilan - + Open conversation - + Accept Terima - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 megabit sesaat - + Default Lalai - + System Sistem diff --git a/translations/ring_client_windows_nb.ts b/translations/ring_client_windows_nb.ts index 88d1d847..a8676b1f 100644 --- a/translations/ring_client_windows_nb.ts +++ b/translations/ring_client_windows_nb.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Opprett konto @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Lydfiler - + All files Alle filer @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Sertifikatfil - - - + + + All files Alle filer - + Key File Nøkkelfil @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Sertifikatfil - - - + + + All files Alle filer - + Key File Nøkkelfil @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Avanserte kontoinnstillinger @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Blokkerte kontakter @@ -89,32 +89,32 @@ CallAdapter - + Missed call Tapt anrop - + Missed call with %1 - + me meg - + Incoming call Innkommende samtale - + %1 is calling you %1 ringer - + is calling you ringer @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Legg til konferanse - + Transfer this call Overfør denne samtalen - + Add default moderator Legg til forhåndsvalgt moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Ny melding - + Trust request Stol på henvendelse @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Vellykket - - + + Error Feil - + Jami archive files Jami arkiv filer - + All files Alle filer @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Klarte ikke å koble til Ring-nissen (dring) på nytt. Jami avslutter nå. - + Trying to reconnect to the Jami daemon (jamid)… Prøver å koble til Ring-nissen (jamid) på nytt… - + Ok OK @@ -211,7 +211,7 @@ Jami avslutter nå. DeviceItemDelegate - + Device Id Enhets id @@ -219,2130 +219,2130 @@ Jami avslutter nå. JamiStrings - + Find a user or search for a conversation Finn en bruker eller søk etter en samtale - + Search your invitations Let blant mottatte invitasjoner - + Invitations Invitasjoner - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami er gratis programvare for universell kommunikasjon som respekterer brukernes friheter og personvern. - + Version Versjon - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami er en gratis programvare for universell kommunikasjon som respekterer brukernes frihet og privatliv. - + Credits Bidragsytere - + Display QR code Vis QR kode - + Open settings Åpne innstillinger - + Close settings Lukk innstillinger - + Authentication required Autentisering kreves - + Your session has expired or been revoked on this device. Please enter your password. Din økt har utløpt eller blitt tilbakekalt på denne enheten. Vennligst tast inn ditt passord. - + JAMS server JAMS tjener - + Authenticate Autentiser - + Delete account Slett konto - + Authentication failed Autentisering mislyktes - + Password Passord - + Username Brukernavn - + Alias Alias - + Call Settings Samtale innstillinger - + Allow incoming calls from unknown contacts Tillat anrop fra ukjente kontakter - + In progress… I gang... - + Accept Aksepter - + Refuse Avslå - + Incoming audio call from {} Innkommende lydanrop fra {} - + Incoming video call from {} Innkommende videoanrop fra {} - + Convert your account into a rendezvous point Konverter din konto til en møteplass - + Automatically answer calls Svar samtaler automatisk - + Enable custom ringtone Aktiver tilpasset ringetone - + Select custom ringtone Velg tilpasset ringetone - + Add a custom ringtone Legg til tilpasset ringetone - + Select a new ringtone Velg en ny ringetone - + Voicemail Telefonsvarer - + Voicemail dial code Tastekode telefonsvarer - + Security Sikkerhet - + Encrypt media streams (SRTP) Krypter mediastrømmer (SRTP) - + Enable SDES key exchange Aktiver SDES nøkkelutveksling - + Allow fallback on RTP Tillat å falle tilbake på RTP - + Encrypt negotiation (TLS) Krypter forhandling (TLS) - + CA certificate CA-sertifikat - + User certificate Brukersertifikat - + Private key Privat nøkkel - + Private key password Passord for privatnøkkel - + Verify certificates for incoming TLS connections Bekreft sertifikater for innkommende TLS-tilkoblinger - + Verify server TLS certificates Verifiser tjener TLS sertifikater - + Require certificate for incoming TLS connections Krev sertifikat for innkommende TLS tilkoblinger - + TLS protocol method TLS-protokollmetode - + Audio input device selector Lydinndataenhets-velger - + TLS server name TLS tjener navn - + Negotiation timeout (seconds) Tidsgrense for forhandling (sekunder) - + Select a private key Velg en privat nøkkel - + Select a user certificate Velg et brukersertifikat - + Registration expiration time (seconds) - + Use custom address and port Bruk tilpasset adresse og port - + Enable local peer discovery Tillat lokal gruppe detektering - + Audio and Video Settings Lyd og video innstillinger - + Frames per second Bilder per sekund - + Select video frame rate (frames per second) Velg videofrekvens (bilder per sekund) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Avslutt samtale - + Pause call Sett samtale på vent - + Resume call Gjenopta samtale - + Pause video Pause video - + Resume video - + Creating account… Oppretter konto... - + Encrypt account with password Krypter konto med passord - + Create a rendezvous point Opprett møteplass - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Velg et passord for å kryptere kontoen din på denne enheten. Merk at passordet ikke kan gjenopprettes. - + Choose a name for your rendezvous point Velg et navn for din møteplass - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup Kjør ved oppstart - + Enable typing indicators Aktiver inntastingindikator - - + + Network error Nettverksfeil - + SSL error SSL feil - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Skriv inn PIN-koden fra en annen konfigurert Jami-konto. Bruk funksjonen "Tilknytt en annen enhet" for å få en PIN-kode. - + Link device Lenk enhet - + Conversations Samtaler - + Enable Aktivèr - + Display or hide preferences Vis eller skjul innstillinger - + Add new plugin Legg til ny programvareutvidelse - + Select a file Velg en fil - + Select Velg - + Choose image file Velg avbildningsfil - + Enter the rendezvous point's name Tast inn navn på møteplass - + Creating rendezvous point… Oppretter møteplass... - + Create account from Jami Account Management Server (JAMS) Opprett konto fra Jami kontoadministrasjonstjener (JAMS) - + Create new rendezvous point Opprett en ny møteplass - + Create a Jami account Opprett en Jami-konto - + About Jami Om Jami - + Decline contact request Avslå kontaktforespørsel - + Accept contact request Aksepter kontaktforespørsel - + Automatically check for updates Se etter oppdateringer automatisk - + Ok OK - - + + Cancel Avbryt - + Accept in audio Motta med lyd - + Accept in video Motta med video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation Opprett ny samtale - + Chat Settings - + Enable read receipts Aktiver lesekvitteringer - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate Velg et CA sertifikat - + Connectivity Forbindelsesstatus - + Auto Registration After Expired Automatisk registrering etter utløpt - + Network interface Nettverksgrensesnitt - + Use UPnP Bruk UPnP - + Use TURN Bruk TURN - + TURN address TURN-adresse - + TURN username TURN-brukernavn - + TURN password TURN-passord - + TURN Realm TURN Realm - + Use STUN Bruk STUN - + STUN address STUN-adresse - + Allow IP Auto Rewrite Tillat automatisk overskriving av IP-adresse - + Public address Offentlig adresse - + Address Adresse - + Port Port - + Media Media - + Enable video Aktiver video - + Video Codecs Video-kodeker - + Audio Codecs Lydkodeker - + Name Server Navnetjener - + SDP Session Negotiation (ICE Fallback) SDP-øktforhandling (ICE-reserve) - + Only used during negotiation in case ICE is not supported Brukes bare under forhandlinger i tilfelle ICE ikke støttes - + Audio RTP minimum Port Audio RTP minimum Port - + Audio RTP maximum Port Audio RTP maksmum Port - + Video RTP minimum Port Video RTP minimum Port - + Video RTP maximum port Video RTP maksimum port - + Connect to other DHT nodes advertising on your local network. Koble til andre DHT noder som averterer på ditt lokale nettverk. - + OpenDHT Configuration OpenDHT konfigurasjon - + Enable proxy Aktiver proxy - + Proxy address Mellomtjeneradresse - + Bootstrap Bootstrap - + Back Tilbake - + Account Settings Kontoinnstillinger - + Account Konto - - + + General Generelt - + Plugin Utvidelse - + Audio/Video Lyd/bilde - + Audio Lyd - + Microphone Mikrofon - + Select audio input device Velg enhet for lydinngang - + Output device Utgangsenhet - + Select audio output device Velg utgangsenhet for lyd - + Ringtone device Ringetoneenhet - + Select ringtone output device Velg utgangsenhet for ringetone - + Audio manager Lydbehandler - + Video Video - + Select video device Velg video enhet - + Device Enhet - + Resolution Oppløsning - + Select video resolution Velg videooppløsning - + Enable hardware acceleration Aktiver maskinvareakselerasjon - + Preview unavailable Forhåndsvisning ikke tilgjengelig - + Screen Sharing Skjermdeling - + Select screen sharing frame rate (frames per second) Velg bildefrekvens for skjermdeling (bilder per sekund) - + no video ingen video - + Backup account here Sikkerhetskopier kontoen her - + Backup your account! Sikkerhetskopier din konto! - + Backup account Sikkerhetskopier konto - + Skip Hopp over - + Success Vellykket - + Error Feil - + Never show me this again Ikke vis meg dette igjen - + Recommended Anbefalt - + Jami archive files Jami arkiv filer - + All files Alle filer - + Reinstate as contact Gjenopprett som kontakt - + name navn - + Identifier Identifikator - + is recording tar opp - + are recording tar opp - + Peer stopped recording Meddeler har sluttet å ta opp - + is calling you ringer deg - - + + Mute Mikrofon av - - + + Unmute Mikrofon på - + Add participant Legg til deltager - + Add participants Legg til deltakere - + Chat Sludring - + More options Flere alternativer - + Mosaic Mosaikk - + You are still muted by moderator - + You are muted by a moderator Ordstyreren har koblet ut lyd fra deg - + Moderator Ordstyrer - + Host Vert - + Local and Moderator muted Lyd er av både lokalt og fra ordstyrer - + Moderator muted - + Not muted - + Cut Klipp - + Paste Lim inn - + Start video call Start videosamtale - + Start audio call Start lydsamtale - + Clear conversation Slett samtalen - + Remove conversation Slett samtale - + Remove contact Fjern kontakt - + Block contact Blokker kontakt - + Contact details Kontaktdetaljer - + Hold Parker - + Sip input panel Sip input panel - + Transfer call Overfør samtale - + Stop recording Stopp opptak - + Start recording Start opptak - + Exit full screen Avslutt full skjerm - + Share screen Del skjerm - + Share window Del vindu - + Share screen area Del skjermområde - + Share file Del fil - + Select sharing method Velg delingsmåte - + View plugin Vis utvidelse - + No video device Ingen video enhet - + N/A N/A - + Lower hand Ta ned hånden - + Raise hand Rekk opp hånden - + Hide chat view Skjul sludrevisning - + Place audio call Ny lydsamtale - + Place video call Ny videosamtale - + Show available plugins Vis tilgjengelige utvidelser - + Add to conversations Legg til i samtaler - + Jump to latest Bla til slutten av samtalen - + {} is typing… {} skriver... - + {} are typing… {} skriver... - + Several people are typing… Det er flere som skriver... - + and og - + Enter Jami Account Management Server (JAMS) URL Tast inn URL til Jami kontoadministrasjonstjeneren (JAMS) - + Required Obligatorisk - + Jami Account Management Server URL Jami kontoadministrasjonstjener URL - + Enter your JAMS credentials Tast inn dine JAMS opplysninger - + Connect Koble til - + Back to welcome page Tilbake til velkomstside - + Choose name Velg navn - + Choose username Velg brukernavn - + Create account Opprett kongo - + Confirm password Bekreft passord - + Optional Valgfritt - + Choose a username for your account Velg brukernavn for din konto - + Choose a name Velg et navn - + Choose your username Velg ditt brukernavn - + Invalid name Ugyldig navn - + Invalid username Ugyldig brukernavn - + Name already taken Navn allerede i bruk - + Username already taken Brukernavnet er allerede i bruk - + Proxy Mellomtjener - + Server Tjener - + Create SIP account Opprett SIP konto - + Configure an existing SIP account Konfigurer en eksisterende SIP konto - + Backup successful Sikkerhetskopiering fullført - + Backup failed Sikkerhetskopiering feilet - + Password changed successfully Passordet ble endret - + Password change failed Endring av passord mislyktes - + Password set successfully Passordet ble lagret - + Password set failed Passordet ble ikke lagret - + Change password Endre passord - - + + Set password Lagre passord - + Change current password Endre nåværende passord - + Backup account to a .gz file Sikkerhetskopier konto til en .gz fil - + Enable account Aktiver konto - + Set username Lagre brukernavn - + Registering name Registrerer navn - + Register a username Registrer et brukernavn - + Register username Registrer brukernavn - + Link a new device to this account Koble en ny enhet til denne kontoen - + Link another device Koble til ny enhet - + Exporting account… Eksporterer konto... - + Remove Device Fjern enhet - + Are you sure you wish to remove this device? Er du sikker på at du ønsker å fjerne denne enheten? - + Linked Devices Tilknyttede enheter - + Your PIN is: Din PIN er: - + Error connecting to the network. Please try again later. Feil ved tilkobling til nettverket Vennligst forsøk igjen senere. - + Do you really want to delete this account? Ønsker du virkelig å slette denne kontoen? - + Save new device name Lagre nytt enhetsnavn - + Edit device name Rediger enhetsnavn - + Unlink device from account Koble enhet fra konto - + Select a folder Velg en mappe - + Enable notifications Skru på varsler - + Enable dark theme Aktiver mørkt tema - + Keep minimized on close Behold minimert ved lukking - + Run application on system startup Kjør applikasjon ved oppstart - + Downloads directory Nedlastingsmappe - + Choose download directory Velg nedlastningsmappe - + Record call Ta opp samtale - + Chatview Chat - + Display hyperlink previews in the chatview Vis forhåndsvisninger av koblinger - + User interface language Brukergrensesnittspråk - + File transfer Filoverføring - + Allow incoming files from unknown contacts Tillat innkommende filer fra ukjente kontakter - + Automatically accept incoming files Godta automatisk innkommende filer - + Accept transfer limit Godta overføringsbegrensningen - + in MB, 0 = unlimited i MB, 0 = ubegrenset - + Register Registrer - + Incorrect password Feil passord - + Save file Lagre fil - + Open location Åpne filplassering - + Install beta version Installer beta versjon - + Check for updates now Se etter oppdateringer nå - + Enable/Disable automatic updates Aktiver/deaktiver automatiske oppdateringer - + toggle automatic updates slå automatiske oppdateringer av/på - + Updates Oppdateringer - + Update Oppdater - + A new version of Jami was found Would you like to update now? En ny versjon av Jami ble funnet Ønsker du å oppdatere nå? - + No new version of Jami was found Ingen ny versjon av Jami ble funnet - + An error occured when checking for a new version En feil oppstod ved søk etter en ny versjon - + Installer download canceled Nedlasting av installasjonsprogram kansellert - + This will uninstall your current Release version and you can always download the latest Release version on our website Dette vil avinstallere din nåværende versjon, og du kan alltid laste ned den nyeste versjonsversjonen på nettstedet vårt - + Network disconnected Nettverk frakoblet - - + + Something went wrong Noe gikk galt - + Troubleshoot Feilsøking - + Open logs Åpne logger - + Get logs Hent logger - + Select a record directory Velg en opptaksmappe - + Debug - + Show Stats Vis statistikk - + Start Sett i gang - + Stop Stopp - + Generating account… Oppretter kontoen... - + Import from backup Importer fra sikkerhetskopi - + PIN PIN - + Stop taking photo Slutt å ta bilde - + Clear avatar image Fjern avatarbilde - + Go back to plugins list Gå tilbake til liste for utvidelser - + Profile is only shared with contacts Profil deles bare med kontakter - + Enter your name Tast inn ditt navn - + Import account from other device Importer konto fra annen enhet - + Import account from backup file Importer konto fra sikkerhetskopi - + Hide advanced features Skjul funksjoner for viderekommende - + Create new Jami account Opprett ny Jami konto - + Create new SIP account Opprett ny SIP konto - + Welcome to Velkommen til - + Upgrade Oppgrader - + Later Senere - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… Prøver å koble til Ring-nissen (jamid) på nytt… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Klarte ikke å koble til Ring-nissen (dring) på nytt. Jami avslutter nå. - + Is swarm: Er sverm: - + True Sant - + False Usant - + Add emoji Legg til emoji - + Send file Send fil - + Leave audio message Legg igjen samtalemelding - + Leave video message Legg igjen videomelding - + Send Send - + Remove Slett - + Write to %1 Skriv til %1 - + %1 has sent you a request for a conversation. %1 har sendt deg en samtaleforespørsel. - + Hello, Would you like to join the conversation? Hei Vil du bli med i samtalen? - + You have accepted the conversation request Du har takket ja til samtaleforespørselen. - + Waiting until %1 connects to synchronize the conversation. Venter til %1 kobler seg til for å synkronisere samtalen. - - + + Copy Kopier - + Participant is still muted on their device - + You are still muted on your device - + View full screen Vis full skjerm - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts VIs blokkerte kontakter - + Hide banned contacts Skjul blokkerte kontakter - + Layout Oppsett - + Vertical view Loddrett visning - + Horizontal view Vannrett visning - + Keyboard Shortcut Table Tabell for tastatursnarveier - + Conversation Samtale - + Call Ring - + Settings Innstillinger - + Report Bug Meld ifra om feil - + Clear Slett - + Copied to clipboard! - + Receive Logs Motta logger - + Archive Arkiv - + Open file Åpne fil - + Create your account from a backup Gjenopprett din konto fra en sikkerhetskopi - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Du kan skaffe et arkiv ved å klikke på "Sikkerhetskopier konto" i kontoinnstillingene. Dette vil opprette en .gz-fil på enheten din. - + Restore an account from backup Gjenopprett en konto fra sikkerhetskopi - + Enter Jami account password Tast inn Jami konto passord - + The PIN and the account password should be entered in your device within 10 minutes. PIN-koden og kontopassordet må tastes inn på enheten din innen 10 minutter. - + Close Lukk - + Enter your account password Tast inn ditt konto passord - + Add Device Legg til enhet - + Enter the password Tast inn passordet - + Enter current password Tast inn nåværende passord - + Enter this account's password to confirm the removal of this device Skriv inn passordet til denne kontoen for å bekrefte sletting av denne enheten - + Enter new password Tast inn nytt passord - + Confirm new password Bekreft nytt passord - + Change Endre - + Confirm Bekreft - + Export Eksporter - + Choose a picture as avatar Velg et bilde som avatar - + Import avatar from image file Importer avatar fra bildefil - + Take photo Ta bilde - + Reset Nullstill - + Select a plugin to install Velg utvidelse som skal installeres - + Install plugin Installer utvidelse - + Save profile Lagre profil - + Information Informasjon - + Enter the account password to confirm the removal of this device Angi kontopassordet for å bekrefte sletting av denne enheten - + Select a screen to share Velg en skjerm å dele - + Select a window to share Velg vindu å dele - + All Screens Alle skjermer - + Screens Skjermer - + Windows Vinduer - + QR code QR kode - + Account QR Konto QR - + This is your Jami username. Copy and share it with your friends! Dette er Jami-brukernavnet ditt. Kopier og del det med dine venner! - + Link this device to an existing account Lenk denne enheten til en eksisterende konto - + Advanced features Avanserte funksjoner - + Show advanced features Vis avanserte funksjoner - + Connect to a JAMS server Koble til en JAMS tjener - + Add a SIP account Legg til SIP konto - + Error while creating your account. Check your credentials. Feil ved opprettelse av din konto. Kontroller dine opplysninger. - + Clear Text Slett tekst - + Search Results Søkeresultater - + Delete Slett - + Set moderator Angi ordstyrer - + Unset moderator Avløs ordstyrer - + Maximize Maksimer - + Minimize Minimer - + Hangup Legg på - + Conference moderation Konferanseordstyring - + Default moderators Forvalgte ordstyrere - + Enable local moderators Tillat lokal moderering - + Make all participants moderators Gjør alle deltakere til ordstyrere - + Add default moderator Legg til forhåndsvalgt moderator - + Remove default moderator Avløs forvalgt ordstyrer @@ -2350,112 +2350,112 @@ Kopier og del det med dine venner! KeyboardShortcutTable - + Open account list Åpne kontoliste - + Focus conversations list Fokusert samtaleliste - + Requests list Forespørsleliste - + Previous conversation Forrige samtale - + Next conversation Neste samtale - + Search bar Søkelinje - + Full screen Full skjerm - + Start an audio call Start en lydsamtale - + Start a video call Start en videosamtale - + Clear history Slett historikk - + Block contact Blokker kontakt - + Remove conversation Slett samtale - + Accept contact request Aksepter kontaktforespørsel - + Media settings Mediainnstillinger - + General settings Generelle innstillinger - + Account settings Kontoinnstillinger - + Plugin settings Innstillinger for programtillegg - + Open account creation wizard Åpne veiviseren for kontooppretting - + Open keyboard shortcut table Åpne tabell for tastatursnarveier - + Answer an incoming call Svar innkommende anrop - + End call Avslutt samtale - + Decline the call request Avvis samtaleforespørselen @@ -2463,17 +2463,17 @@ Kopier og del det med dine venner! MainApplication - + E&xit L&ukk - + &Quit &Avslutt - + &Show Jami &Vis Jami @@ -2481,12 +2481,12 @@ Kopier og del det med dine venner! PhotoboothView - + Image Files Avbildningsfiler - + All files Alle filer @@ -2494,7 +2494,7 @@ Kopier og del det med dine venner! PluginHandlerItemDelegate - + On/Off På/Av @@ -2502,12 +2502,12 @@ Kopier og del det med dine venner! PluginHandlerPicker - + Choose plugin Velg utvidelse - + Preferences Innstillinger @@ -2515,7 +2515,7 @@ Kopier og del det med dine venner! PluginItemDelegate - + Load/Unload Start/stopp @@ -2523,27 +2523,27 @@ Kopier og del det med dine venner! PluginListPreferencesView - + Uninstall plugin Avinstaller utvidelse - + Reset preferences Tilbakestill innstillinger - + Ok OK - + Cancel Avbryt - + Uninstall Avinstaller @@ -2551,17 +2551,17 @@ Kopier og del det med dine venner! PluginListSettingsView - + Plugin Files Filer utvidelser - + All files Alle filer - + Installed plugins Installerte utvidelser @@ -2569,7 +2569,7 @@ Kopier og del det med dine venner! PreferenceItemDelegate - + Edit preference Rediger innstillinger @@ -2577,107 +2577,107 @@ Kopier og del det med dine venner! QObject - + Created by: Opprettet av: - + Artwork by: Omslagskunst av: - + Based on the SFLPhone project Basert på SFLPhone-prosjektet - + Sending Sender - + Failure Mislyktes - + Sent Sendt - + Connecting Kobler opp - + Accept Aksepter - + Canceled Avbrutt - + Unable to make contact Kan ikke ta kontakt - + Ongoing Pågående - + Waiting for contact Venter på kontakt - + Incoming transfer Innkommende overføring - + Timed out waiting for contact Tidsavbrudd ventet på kontakt - + Finished Fullført - + %1 days ago %1 dager siden - + one day ago i går - + %1 hours ago %1 timer siden - + one hour ago en time siden - + %1 minutes ago %1 minutter siden - + just now akkurat nå @@ -2685,22 +2685,22 @@ Kopier og del det med dine venner! RecordingSettings - + Call Recording Samtaleopptak - + Always record calls Alltid ta opp samtaler - + Quality Kvalitet - + Save in Lagre i @@ -2708,7 +2708,7 @@ Kopier og del det med dine venner! RevokeDevicePasswordDialog - + Remove Fjern @@ -2716,7 +2716,7 @@ Kopier og del det med dine venner! SelectScreen - + Screen Skjerm @@ -2724,7 +2724,7 @@ Kopier og del det med dine venner! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopier og del det med dine venner! SmartListModel - - - - - - + + + + + + Calls Samtaler - - - - - - + + + + + + Contacts Kontakter @@ -2755,17 +2755,17 @@ Kopier og del det med dine venner! SystemSettings - + System System - + Enable dark theme Aktiver mørkt tema - + Enable desktop notifications Vis varsler @@ -2773,27 +2773,27 @@ Kopier og del det med dine venner! SystemTray - + Answer Svar - + Decline Avslå - + Open conversation Åpne samtale - + Accept Aksepter - + Refuse Avslå @@ -2801,7 +2801,7 @@ Kopier og del det med dine venner! UserIdentity - + Identity Identitet @@ -2809,17 +2809,17 @@ Kopier og del det med dine venner! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Standard - + System System diff --git a/translations/ring_client_windows_nb_NO.ts b/translations/ring_client_windows_nb_NO.ts index bb2e9971..0e61ab97 100644 --- a/translations/ring_client_windows_nb_NO.ts +++ b/translations/ring_client_windows_nb_NO.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Passord… - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel Avbryt - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel Avbryt - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_ne.ts b/translations/ring_client_windows_ne.ts index f8385203..3af80a02 100644 --- a/translations/ring_client_windows_ne.ts +++ b/translations/ring_client_windows_ne.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ठीक छ - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ठीक छ @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call कल समाप्त पार्नुहोस् - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ठीक छ - - + + Cancel रद्द गर्नुहोस् - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video भिडियो छैन - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen को पूर्ण स्क्रिनबाट बाहिरिनुहोस् - + Share screen स्क्रिन साझेदारी - + Share window साझा विन्डो - + Share screen area स्क्रिन क्षेत्र साझेदारी - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory फोल्डर डाउनलोड गर्छ - + Choose download directory - + Record call - + Chatview च्याट - + Display hyperlink previews in the chatview लिङ्क समीक्षाहरू देखाउनुहोस् - + User interface language प्रयोगकर्ता इन्टरफेस भाषा - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled स्थापनाकर्ता डाउनलोड रद्द गरियो - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN पिन - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file फाइलहरू पठाउनुहोस् - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen पूरा स्क्रिनमा हेर्नुहोस् - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout सजावट - + Vertical view ठाडो दृश्य - + Horizontal view तेर्सो दृश्य - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share साझेदारी गर्न स्क्रिन चयन गर्नुहोस् - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen पूरा स्क्रिन - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call कल समाप्त पार्नुहोस् - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ठीक छ - + Cancel रद्द गर्नुहोस् - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled रद्द गरियो - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System प्रणाली - + Enable dark theme - + Enable desktop notifications सूचनाहरू देखाउनुहोस् @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 एमबीपीएस - + Default पूर्वनिर्धारित - + System प्रणाली diff --git a/translations/ring_client_windows_nl.ts b/translations/ring_client_windows_nl.ts index 1c432f3f..d8245b7f 100644 --- a/translations/ring_client_windows_nl.ts +++ b/translations/ring_client_windows_nl.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Account toevoegen @@ -10,7 +10,7 @@ AccountProfile - + Profile Profiel @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Geavanceerde accountinstellingen @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Geblokkeerde contacten @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Inkomende oproep - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Toevoegen aan groepsgesprek - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nieuw bericht - + Trust request Vertrouwensverzoek @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok In orde - - + + Success Klaar - - + + Error Fout - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok In orde @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Apparaat-ID @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Uitnodigingen - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versie - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Met dank aan - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Account verwijderen - + Authentication failed Aanmelding mislukt - + Password Wachtwoord - + Username Gebruikersnaam - + Alias Alias - + Call Settings Oproepinstellingen - + Allow incoming calls from unknown contacts Sta inkomende oproepen van onbekende contacten toe - + In progress… - + Accept Accepteren - + Refuse Afwijzen - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Voeg een aangepaste beltoon toe - + Select a new ringtone - + Voicemail Voicemail - + Voicemail dial code - + Security Beveiliging - + Encrypt media streams (SRTP) Mediastreams versleutelen (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Onderhandeling versleutelen (TLS) - + CA certificate CA-certificaat - + User certificate Gebruikerscertificaat - + Private key Persoonlijke sleutel - + Private key password Wachtwoord persoonlijke sleutel - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS-protocolmethode - + Audio input device selector Selectie audio-invoerapparaat - + TLS server name - + Negotiation timeout (seconds) Tijdslimiet voor onderhandeling (seconden) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Voeg aangepast adres en poort toe - + Enable local peer discovery Lokale verwanten ontdekken inschakelen - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Oproep beëindigen - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Mijn account versleutelen - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators Typ indicator inschakelen - - + + Network error Netwerkfout - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Apparaat koppelen - + Conversations Gesprekken - + Enable Inschakelen - + Display or hide preferences - + Add new plugin - + Select a file - + Select Selecteren - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Een Jami-account aanmaken - + About Jami Over Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automatisch op updates controleren - + Ok In orde - - + + Cancel Annuleren - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Ontvangst bevestigingen inschakelen - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Connectiviteit - + Auto Registration After Expired - + Network interface Netwerkinterface - + Use UPnP UPnP gebruiken - + Use TURN TURN gebruiken - + TURN address TURN-adres - + TURN username TURN-gebruikersnaam - + TURN password TURN-wachtwoord - + TURN Realm - + Use STUN STUN gebruiken - + STUN address STUN-adres - + Allow IP Auto Rewrite - + Public address - + Address Adres - + Port Poort - + Media Media - + Enable video Video inschakelen - + Video Codecs Videocodecs - + Audio Codecs Audiocodecs - + Name Server Naamserver - + SDP Session Negotiation (ICE Fallback) SDP-sessieonderhandeling (ICE-terugvaloptie) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration OpenDHT-configuratie - + Enable proxy Proxy inschakelen - + Proxy address Proxyadres - + Bootstrap Bootstrap - + Back Terug - + Account Settings Accountinstellingen - + Account Account - - + + General Algemeen - + Plugin - + Audio/Video Audio/video - + Audio Geluid - + Microphone Microfoon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Apparaat - + Resolution Resolutie - + Select video resolution - + Enable hardware acceleration Hardware versnelling inschakelen - + Preview unavailable Voorbeeld niet beschikbaar - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video geen video - + Backup account here - + Backup your account! Maak een back-up van uw account! - + Backup account Reservekopie van account maken - + Skip Overslaan - + Success Klaar - + Error Fout - + Never show me this again Toon deze boodschap nooit meer - + Recommended Aanbevolen - + Jami archive files - + All files - + Reinstate as contact - + name naam - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Dempen - - + + Unmute Dempen opheffen - + Add participant Deelnemer toevoegen - + Add participants - + Chat Gesprek - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Knippen - + Paste Plakken - + Start video call Video-oproep starten - + Start audio call Audio-oproep starten - + Clear conversation Gesprek wissen - + Remove conversation Gesprek verwijderen - + Remove contact Contact verwijderen - + Block contact Contact blokkeren - + Contact details Contactdetails - + Hold In wacht zetten - + Sip input panel - + Transfer call Gesprek overdragen - + Stop recording Opname beëindigen - + Start recording - + Exit full screen Volledig scherm sluiten - + Share screen Scherm delen - + Share window Venster delen - + Share screen area Schermgebied delen - + Share file Bestand delen - + Select sharing method - + View plugin - + No video device - + N/A N.v.t. - + Lower hand - + Raise hand Hand opsteken - + Hide chat view Gespreksweergave verbergen - + Place audio call Audio-oproep plaatsen - + Place video call Video-oproep plaatsen - + Show available plugins - + Add to conversations Toevoegen aan gesprekken - + Jump to latest Naar het einde van het gesprek schuiven - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Vereist - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Verbinden - + Back to welcome page - + Choose name - + Choose username - + Create account Account aanmaken - + Confirm password Bevestig wachtwoord - + Optional Optioneel - + Choose a username for your account Kies een unieke naam waarop men u kan zoeken - + Choose a name - + Choose your username Kies uw gebruikersnaam - + Invalid name - + Invalid username Ongeldige gebruikersnaam - + Name already taken - + Username already taken Gebruikersnaam reeds in gebruik - + Proxy Proxy - + Server Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Reservekopie maken mislukt - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Wachtwoord wijzigen - - + + Set password Wachtwoord instellen - + Change current password - + Backup account to a .gz file - + Enable account Account inschakelen - + Set username - + Registering name - + Register a username Een gebruikersnaam registreren - + Register username Gebruikersnaam registreren - + Link a new device to this account - + Link another device Een ander apparaat koppelen - + Exporting account… - + Remove Device Apparaat verwijderen - + Are you sure you wish to remove this device? Weet u zeker dat u dit apparaat wilt verwijderen? - + Linked Devices Gekoppelde apparaten - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Nieuwe apparaatnaam opslaan - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications Meldingen inschakelen - + Enable dark theme - + Keep minimized on close Minimaliseren bij sluiten - + Run application on system startup - + Downloads directory Downloadmap - + Choose download directory - + Record call Gesprek opnemen - + Chatview Gespreksweergave - + Display hyperlink previews in the chatview Voorbeeld van koppelingen weergeven - + User interface language Taal gebruikersinterface - + File transfer Bestandsoverdracht - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registreren - + Incorrect password Verkeerd wachtwoord - + Save file Bestand opslaan - + Open location - + Install beta version - + Check for updates now Nu controleren op updates - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Updates - + Update Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Download van installatieprogramma geannuleerd - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Er ging iets mis - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Stoppen - + Generating account… - + Import from backup Importeren uit back-up - + PIN Pincode - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Uw profiel wordt enkel gedeeld met uw contacten - + Enter your name Voer uw scherm naam in - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Welkom bij - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Bestand verzenden - + Leave audio message - + Leave video message - + Send Versturen - + Remove Verwijderen - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiëren - + Participant is still muted on their device - + You are still muted on your device - + View full screen Volledig scherm weergeven - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Geblokkeerde contacten verbergen - + Layout Indeling - + Vertical view Verticale weergave - + Horizontal view Horizontale weergave - + Keyboard Shortcut Table - + Conversation - + Call Oproep - + Settings Instellingen - + Report Bug - + Clear Wissen - + Copied to clipboard! - + Receive Logs - + Archive Archief - + Open file Bestand openen - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Sluiten - + Enter your account password Voer uw accountwachtwoord in - + Add Device Apparaat toevoegen - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Voer het wachtwoord van dit account in om het verwijderen van dit apparaat te bevestigen - + Enter new password - + Confirm new password - + Change - + Confirm Bevestigen - + Export Exporteren - + Choose a picture as avatar - + Import avatar from image file - + Take photo Foto nemen - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Selecteer een scherm om te delen - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Dit is uw Jami-gebruikersnaam. Deel deze met uw vrienden! - + Link this device to an existing account Dit apparaat aan een bestaand account koppelen - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Zoekresultaten - + Delete Verwijderen - + Set moderator - + Unset moderator - + Maximize Maximaliseren - + Minimize Minimaliseren - + Hangup Ophangen - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Deel deze met uw vrienden! KeyboardShortcutTable - + Open account list Accountlijst openen - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Volledig scherm - + Start an audio call Start een audio-oproep - + Start a video call Start een video-oproep - + Clear history Geschiedenis wissen - + Block contact Contact blokkeren - + Remove conversation Gesprek verwijderen - + Accept contact request - + Media settings - + General settings Algemene instellingen - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Oproep beëindigen - + Decline the call request @@ -2456,17 +2456,17 @@ Deel deze met uw vrienden! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Deel deze met uw vrienden! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Deel deze met uw vrienden! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Deel deze met uw vrienden! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Deel deze met uw vrienden! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Deel deze met uw vrienden! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok In orde - + Cancel Annuleren - + Uninstall @@ -2544,17 +2544,17 @@ Deel deze met uw vrienden! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Deel deze met uw vrienden! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Deel deze met uw vrienden! QObject - + Created by: Geschreven door: - + Artwork by: Illustraties door: - + Based on the SFLPhone project Gebaseerd op het SFLPhone-project - + Sending Bezig met versturen - + Failure Fout - + Sent - + Connecting Verbinden - + Accept Accepteren - + Canceled Geannuleerd - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Beëindigd - + %1 days ago - + one day ago een dag geleden - + %1 hours ago - + one hour ago een uur geleden - + %1 minutes ago - + just now zonet @@ -2678,22 +2678,22 @@ Deel deze met uw vrienden! RecordingSettings - + Call Recording Oproepopname - + Always record calls Oproepen altijd opnemen - + Quality Kwaliteit - + Save in Opslaan in @@ -2701,7 +2701,7 @@ Deel deze met uw vrienden! RevokeDevicePasswordDialog - + Remove Verwijderen @@ -2709,7 +2709,7 @@ Deel deze met uw vrienden! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Deel deze met uw vrienden! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Deel deze met uw vrienden! SmartListModel - - - - - - + + + + + + Calls Oproepen - - - - - - + + + + + + Contacts Contacten @@ -2748,17 +2748,17 @@ Deel deze met uw vrienden! SystemSettings - + System Systeem - + Enable dark theme - + Enable desktop notifications Meldingen weergeven @@ -2766,27 +2766,27 @@ Deel deze met uw vrienden! SystemTray - + Answer Beantwoorden - + Decline Weigeren - + Open conversation Gesprek openen - + Accept Accepteren - + Refuse Afwijzen @@ -2794,7 +2794,7 @@ Deel deze met uw vrienden! UserIdentity - + Identity Identiteit @@ -2802,17 +2802,17 @@ Deel deze met uw vrienden! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Standaard - + System Systeem diff --git a/translations/ring_client_windows_nl_BE.ts b/translations/ring_client_windows_nl_BE.ts index 94634e3e..36d2d8d3 100644 --- a/translations/ring_client_windows_nl_BE.ts +++ b/translations/ring_client_windows_nl_BE.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Account toevoegen @@ -10,7 +10,7 @@ AccountProfile - + Profile Profiel @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Geavanceerde accountinstellingen @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Geblokkeerde contacten @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Inkomende oproep - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Toevoegen aan groepsgesprek - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nieuw bericht - + Trust request Vertrouwensverzoek @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok In orde - - + + Success Klaar - - + + Error Fout - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok In orde @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Apparaats-ID @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Uitnodigingen - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versie - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Met dank aan - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Account verwijderen - + Authentication failed Aanmelding mislukt - + Password Paswoord - + Username Gebruikersnaam - + Alias Alias - + Call Settings Oproepinstellingen - + Allow incoming calls from unknown contacts Sta inkomende oproepen van onbekende contacten toe - + In progress… - + Accept Aanvaarden - + Refuse Afwijzen - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Voeg een aangepaste beltoon toe - + Select a new ringtone - + Voicemail Voicemail - + Voicemail dial code - + Security Beveiliging - + Encrypt media streams (SRTP) Mediastreams versleutelen (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Onderhandeling versleutelen (TLS) - + CA certificate CA-certificaat - + User certificate Gebruikerscertificaat - + Private key Geheime sleutel - + Private key password Paswoord persoonlijke sleutel - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS-protocolmethode - + Audio input device selector Selectie audio-invoerapparaat - + TLS server name - + Negotiation timeout (seconds) Tijdslimiet voor onderhandeling (seconden) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Voeg aangepast adres en poort toe - + Enable local peer discovery Lokale verwanten ontdekken inschakelen - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Oproep beëindigen - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Mijn account versleutelen - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators Typ indicator inschakelen - - + + Network error Netwerkfout - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Apparaat koppelen - + Conversations Gesprekken - + Enable Inschakelen - + Display or hide preferences - + Add new plugin - + Select a file - + Select Selecteren - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Een Jami-account aanmaken - + About Jami Over Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automatisch op updates controleren - + Ok In orde - - + + Cancel Annuleren - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Ontvangst bevestigingen inschakelen - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Connectiviteit - + Auto Registration After Expired - + Network interface Netwerkinterface - + Use UPnP UPnP gebruiken - + Use TURN TURN gebruiken - + TURN address TURN-adres - + TURN username TURN-gebruikersnaam - + TURN password TURN-paswoord - + TURN Realm - + Use STUN STUN gebruiken - + STUN address STUN-adres - + Allow IP Auto Rewrite - + Public address - + Address Adres - + Port Poort - + Media Media - + Enable video Video inschakelen - + Video Codecs Videocodecs - + Audio Codecs Audiocodecs - + Name Server Naamserver - + SDP Session Negotiation (ICE Fallback) SDP-sessieonderhandeling (ICE-terugvaloptie) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration OpenDHT-configuratie - + Enable proxy Proxy inschakelen - + Proxy address Proxyadres - + Bootstrap Bootstrap - + Back Terug - + Account Settings Accountinstellingen - + Account Account - - + + General Algemeen - + Plugin - + Audio/Video Audio/video - + Audio Geluid - + Microphone Microfoon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Apparaat - + Resolution Resolutie - + Select video resolution - + Enable hardware acceleration Hardware versnelling inschakelen - + Preview unavailable Voorbeeld onbeschikbaar - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video geen video - + Backup account here - + Backup your account! Maak een back-up van uw account! - + Backup account Back-up maken van account - + Skip Overslaan - + Success Klaar - + Error Fout - + Never show me this again Laat mij deze boodschap nooit meer zien - + Recommended Aanbevolen - + Jami archive files - + All files - + Reinstate as contact - + name naam - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Dempen - - + + Unmute Dempen opheffen - + Add participant Deelnemer toevoegen - + Add participants - + Chat Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Knippen - + Paste Plakken - + Start video call Video-oproep starten - + Start audio call Audio-oproep starten - + Clear conversation Gesprek wissen - + Remove conversation Gesprek verwijderen - + Remove contact Contact verwijderen - + Block contact Contact blokkeren - + Contact details Contactdetails - + Hold In wacht zetten - + Sip input panel - + Transfer call Gesprek overdragen - + Stop recording Opname beëindigen - + Start recording - + Exit full screen Volledig scherm sluiten - + Share screen Scherm delen - + Share window Venster delen - + Share screen area Schermgebied delen - + Share file Bestand delen - + Select sharing method - + View plugin - + No video device - + N/A N.v.t. - + Lower hand - + Raise hand Hand opsteken - + Hide chat view Gespreksweergave verbergen - + Place audio call Audio-oproep plaatsen - + Place video call Video-oproep plaatsen - + Show available plugins - + Add to conversations Toevoegen aan gesprekken - + Jump to latest Naar het einde van het gesprek schuiven - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Vereist - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Verbinden - + Back to welcome page - + Choose name - + Choose username - + Create account Account aanmaken - + Confirm password Bevestig paswoord - + Optional Optioneel - + Choose a username for your account Kies een unieke naam waarop men u kan zoeken - + Choose a name - + Choose your username Kies uw gebruikersnaam - + Invalid name - + Invalid username Ongeldige gebruikersnaam - + Name already taken - + Username already taken Gebruikersnaam reeds in gebruik - + Proxy Proxy - + Server Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Reservekopie maken mislukt - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Paswoord wijzigen - - + + Set password Paswoord instellen - + Change current password - + Backup account to a .gz file - + Enable account Account inschakelen - + Set username - + Registering name - + Register a username Een gebruikersnaam registreren - + Register username Gebruikersnaam registreren - + Link a new device to this account - + Link another device Een ander apparaat koppelen - + Exporting account… - + Remove Device Apparaat verwijderen - + Are you sure you wish to remove this device? Weet u zeker dat u dit apparaat wilt verwijderen? - + Linked Devices Gekoppelde apparaten - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Nieuwe apparaatsnaam opslaan - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications Meldingen inschakelen - + Enable dark theme - + Keep minimized on close Minimaliseren bij sluiten - + Run application on system startup - + Downloads directory Downloadmap - + Choose download directory - + Record call Gesprek opnemen - + Chatview Gespreksweergave - + Display hyperlink previews in the chatview Voorbeeld van koppelingen weergeven - + User interface language Taal gebruikersinterface - + File transfer Bestandsoverdracht - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registreren - + Incorrect password Verkeerd paswoord - + Save file Bestand opslaan - + Open location - + Install beta version - + Check for updates now Nu controleren op updates - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Updates - + Update Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Download van installatieprogramma geannuleerd - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Er is iets misgegaan - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Stoppen - + Generating account… - + Import from backup Importeren uit back-up - + PIN Pincode - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Uw profiel wordt enkel gedeeld met uw contacten - + Enter your name Voer uw scherm naam in - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Welkom bij - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Bestand verzenden - + Leave audio message - + Leave video message - + Send Versturen - + Remove Verwijderen - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiëren - + Participant is still muted on their device - + You are still muted on your device - + View full screen Volledig scherm weergeven - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Geblokkeerde contacten verbergen - + Layout Indeling - + Vertical view Verticale weergave - + Horizontal view Horizontale weergave - + Keyboard Shortcut Table - + Conversation - + Call Oproep - + Settings Instellingen - + Report Bug - + Clear Wissen - + Copied to clipboard! - + Receive Logs - + Archive Archief - + Open file Bestand openen - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Sluiten - + Enter your account password Geef uw accountpaswoord in - + Add Device Apparaat toevoegen - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Geef het paswoord van deze account in om het verwijderen van dit apparaat te bevestigen - + Enter new password - + Confirm new password - + Change - + Confirm Bevestigen - + Export Exporteren - + Choose a picture as avatar - + Import avatar from image file - + Take photo Foto trekken - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Selecteer een scherm om te delen - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Dit is uw Jami-gebruikersnaam. Deel hem met uw vrienden! - + Link this device to an existing account Dit apparaat aan een bestaande account koppelen - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Zoekresultaten - + Delete Verwijderen - + Set moderator - + Unset moderator - + Maximize Maximaliseren - + Minimize Minimaliseren - + Hangup Ophangen - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Deel hem met uw vrienden! KeyboardShortcutTable - + Open account list Accountlijst openen - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Volledig scherm - + Start an audio call Start een audio-oproep - + Start a video call Start een video-oproep - + Clear history Geschiedenis wissen - + Block contact Contact blokkeren - + Remove conversation Gesprek verwijderen - + Accept contact request - + Media settings - + General settings Algemene instellingen - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Oproep beëindigen - + Decline the call request @@ -2456,17 +2456,17 @@ Deel hem met uw vrienden! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Deel hem met uw vrienden! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Deel hem met uw vrienden! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Deel hem met uw vrienden! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Deel hem met uw vrienden! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Deel hem met uw vrienden! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok In orde - + Cancel Annuleren - + Uninstall @@ -2544,17 +2544,17 @@ Deel hem met uw vrienden! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Deel hem met uw vrienden! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Deel hem met uw vrienden! QObject - + Created by: Geschreven door: - + Artwork by: Illustraties door: - + Based on the SFLPhone project Gebaseerd op het SFLPhone-project - + Sending Bezig met versturen - + Failure Fout - + Sent - + Connecting Verbinden - + Accept Aanvaarden - + Canceled Geannuleerd - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Beëindigd - + %1 days ago - + one day ago een dag geleden - + %1 hours ago - + one hour ago een uur geleden - + %1 minutes ago - + just now Nu net @@ -2678,22 +2678,22 @@ Deel hem met uw vrienden! RecordingSettings - + Call Recording Oproepopname - + Always record calls Oproepen altijd opnemen - + Quality Kwaliteit - + Save in Opslaan in @@ -2701,7 +2701,7 @@ Deel hem met uw vrienden! RevokeDevicePasswordDialog - + Remove Verwijderen @@ -2709,7 +2709,7 @@ Deel hem met uw vrienden! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Deel hem met uw vrienden! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Deel hem met uw vrienden! SmartListModel - - - - - - + + + + + + Calls Oproepen - - - - - - + + + + + + Contacts Contacten @@ -2748,17 +2748,17 @@ Deel hem met uw vrienden! SystemSettings - + System Systeem - + Enable dark theme - + Enable desktop notifications Meldingen weergeven @@ -2766,27 +2766,27 @@ Deel hem met uw vrienden! SystemTray - + Answer Beantwoorden - + Decline Weigeren - + Open conversation Gesprek openen - + Accept Aanvaarden - + Refuse Afwijzen @@ -2794,7 +2794,7 @@ Deel hem met uw vrienden! UserIdentity - + Identity Identiteit @@ -2802,17 +2802,17 @@ Deel hem met uw vrienden! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Standaard - + System Systeem diff --git a/translations/ring_client_windows_nl_NL.ts b/translations/ring_client_windows_nl_NL.ts index aa17bc69..61775fe0 100644 --- a/translations/ring_client_windows_nl_NL.ts +++ b/translations/ring_client_windows_nl_NL.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Account toevoegen @@ -10,7 +10,7 @@ AccountProfile - + Profile Profiel @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certificaatbestand - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Geavanceerde accountinstellingen @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Geblokkeerde contacten @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Inkomende oproep - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Toevoegen aan groepsgesprek - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nieuw bericht - + Trust request Vertrouwensverzoek @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok In orde - - + + Success Klaar - - + + Error Fout - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok In orde @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Apparaat-ID @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Uitnodigingen - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versie - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Met dank aan - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Account verwijderen - + Authentication failed Aanmelding mislukt - + Password Wachtwoord - + Username Gebruikersnaam - + Alias Alias - + Call Settings Oproepinstellingen - + Allow incoming calls from unknown contacts Sta inkomende oproepen van onbekende contacten toe - + In progress… - + Accept Aanvaarden - + Refuse Afwijzen - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Voeg een aangepaste beltoon toe - + Select a new ringtone - + Voicemail Voicemail - + Voicemail dial code - + Security Beveiliging - + Encrypt media streams (SRTP) Mediastreams versleutelen (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Onderhandeling versleutelen (TLS) - + CA certificate CA-certificaat - + User certificate Gebruikerscertificaat - + Private key Persoonlijke sleutel - + Private key password Wachtwoord persoonlijke sleutel - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS-protocolmethode - + Audio input device selector Selectie audio-invoerapparaat - + TLS server name - + Negotiation timeout (seconds) Tijdslimiet voor onderhandeling (seconden) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Voeg aangepast adres en poort toe - + Enable local peer discovery Lokale verwanten ontdekken inschakelen - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Oproep beëindigen - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Mijn account versleutelen - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators Typ indicator inschakelen - - + + Network error Netwerkfout - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Apparaat koppelen - + Conversations Gesprekken - + Enable Inschakelen - + Display or hide preferences - + Add new plugin - + Select a file - + Select Selecteren - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Een Jami-account aanmaken - + About Jami Over Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automatisch op updates controleren - + Ok In orde - - + + Cancel Annuleren - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Ontvangst bevestigingen inschakelen - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Connectiviteit - + Auto Registration After Expired - + Network interface Netwerkinterface - + Use UPnP UPnP gebruiken - + Use TURN TURN gebruiken - + TURN address TURN-adres - + TURN username TURN-gebruikersnaam - + TURN password TURN-paswoord - + TURN Realm - + Use STUN STUN gebruiken - + STUN address STUN-adres - + Allow IP Auto Rewrite - + Public address - + Address Adres - + Port Poort - + Media Media - + Enable video Video inschakelen - + Video Codecs Videocodecs - + Audio Codecs Audiocodecs - + Name Server Naamserver - + SDP Session Negotiation (ICE Fallback) SDP-sessieonderhandeling (ICE-terugvaloptie) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration OpenDHT-configuratie - + Enable proxy Proxy inschakelen - + Proxy address Proxyadres - + Bootstrap Bootstrap - + Back Terug - + Account Settings Accountinstellingen - + Account Account - - + + General Algemeen - + Plugin - + Audio/Video Audio/video - + Audio Geluid - + Microphone Microfoon - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Beeld - + Select video device - + Device Apparaat - + Resolution Resolutie - + Select video resolution - + Enable hardware acceleration Hardware versnelling inschakelen - + Preview unavailable Voorbeeld niet beschikbaar - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video geen video - + Backup account here - + Backup your account! Maak een back-up van uw account! - + Backup account Reservekopie van account maken - + Skip Overslaan - + Success Klaar - + Error Fout - + Never show me this again Laat mij deze boodschap nooit meer zien - + Recommended Aanbevolen - + Jami archive files - + All files - + Reinstate as contact - + name naam - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Dempen - - + + Unmute Dempen opheffen - + Add participant Deelnemer toevoegen - + Add participants - + Chat Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Knippen - + Paste Plakken - + Start video call Video-oproep starten - + Start audio call Audio-oproep starten - + Clear conversation Gesprek wissen - + Remove conversation Gesprek verwijderen - + Remove contact Contact verwijderen - + Block contact Contact blokkeren - + Contact details Contactdetails - + Hold In wacht zetten - + Sip input panel - + Transfer call Gesprek overdragen - + Stop recording Opname beëindigen - + Start recording - + Exit full screen Volledig scherm sluiten - + Share screen Scherm delen - + Share window Venster delen - + Share screen area Schermgebied delen - + Share file Bestand delen - + Select sharing method - + View plugin - + No video device - + N/A N.v.t. - + Lower hand - + Raise hand Hand opsteken - + Hide chat view Gespreksweergave verbergen - + Place audio call Audio-oproep plaatsen - + Place video call Video-oproep plaatsen - + Show available plugins - + Add to conversations Toevoegen aan gesprekken - + Jump to latest Naar het einde van het gesprek schuiven - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Vereist - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Verbinden - + Back to welcome page - + Choose name - + Choose username - + Create account Account aanmaken - + Confirm password Bevestig paswoord - + Optional Optioneel - + Choose a username for your account Kies een unieke naam waarop men u kan zoeken - + Choose a name - + Choose your username Kies uw gebruikersnaam - + Invalid name - + Invalid username Ongeldige gebruikersnaam - + Name already taken - + Username already taken Gebruikersnaam reeds in gebruik - + Proxy Proxy - + Server Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed Reservekopie maken mislukt - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Paswoord wijzigen - - + + Set password Paswoord instellen - + Change current password - + Backup account to a .gz file - + Enable account Account inschakelen - + Set username - + Registering name - + Register a username Een gebruikersnaam registreren - + Register username Gebruikersnaam registreren - + Link a new device to this account - + Link another device Een ander apparaat koppelen - + Exporting account… - + Remove Device Apparaat verwijderen - + Are you sure you wish to remove this device? Weet u zeker dat u dit apparaat wilt verwijderen? - + Linked Devices Gekoppelde apparaten - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Nieuwe apparaatnaam opslaan - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications Meldingen inschakelen - + Enable dark theme - + Keep minimized on close Minimaliseren bij sluiten - + Run application on system startup - + Downloads directory Downloadmap - + Choose download directory - + Record call Gesprek opnemen - + Chatview Gespreksweergave - + Display hyperlink previews in the chatview Voorbeeld van koppelingen weergeven - + User interface language Taal gebruikersinterface - + File transfer Bestandsoverdracht - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registreren - + Incorrect password Verkeerd wachtwoord - + Save file Bestand opslaan - + Open location - + Install beta version - + Check for updates now Nu controleren op updates - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Updates - + Update Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Download van installatieprogramma geannuleerd - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Er is iets misgegaan - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Stoppen - + Generating account… - + Import from backup Importeren uit back-up - + PIN Pincode - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Uw profiel wordt enkel gedeeld met uw contacten - + Enter your name Voer uw scherm naam in - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Welkom bij - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Bestand verzenden - + Leave audio message - + Leave video message - + Send Versturen - + Remove Verwijderen - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiëren - + Participant is still muted on their device - + You are still muted on your device - + View full screen Volledig scherm weergeven - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Geblokkeerde contacten verbergen - + Layout Indeling - + Vertical view Verticale weergave - + Horizontal view Horizontale weergave - + Keyboard Shortcut Table - + Conversation - + Call Bellen - + Settings Instellingen - + Report Bug - + Clear Wissen - + Copied to clipboard! - + Receive Logs - + Archive Archief - + Open file Bestand openen - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Sluiten - + Enter your account password Voer uw accountwachtwoord in - + Add Device Apparaat toevoegen - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Geef het paswoord van deze account in om het verwijderen van dit apparaat te bevestigen - + Enter new password - + Confirm new password - + Change - + Confirm Bevestigen - + Export Exporteren - + Choose a picture as avatar - + Import avatar from image file - + Take photo Foto trekken - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Selecteer een scherm om te delen - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Dit is uw Jami-gebruikersnaam. Deel hem met uw vrienden! - + Link this device to an existing account Dit apparaat aan een bestaand account koppelen - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Zoekresultaten - + Delete Verwijderen - + Set moderator - + Unset moderator - + Maximize Maximaliseren - + Minimize Minimaliseren - + Hangup Ophangen - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Deel hem met uw vrienden! KeyboardShortcutTable - + Open account list Accountlijst openen - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Volledig scherm - + Start an audio call Start een audio-oproep - + Start a video call Start een video-oproep - + Clear history Geschiedenis wissen - + Block contact Contact blokkeren - + Remove conversation Gesprek verwijderen - + Accept contact request - + Media settings - + General settings Algemene instellingen - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Oproep beëindigen - + Decline the call request @@ -2456,17 +2456,17 @@ Deel hem met uw vrienden! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Deel hem met uw vrienden! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Deel hem met uw vrienden! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Deel hem met uw vrienden! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Deel hem met uw vrienden! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Deel hem met uw vrienden! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok In orde - + Cancel Annuleren - + Uninstall @@ -2544,17 +2544,17 @@ Deel hem met uw vrienden! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Deel hem met uw vrienden! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Deel hem met uw vrienden! QObject - + Created by: Geschreven door: - + Artwork by: Illustraties door: - + Based on the SFLPhone project Gebaseerd op het SFLPhone-project - + Sending Bezig met versturen - + Failure Fout - + Sent - + Connecting Verbinden - + Accept Aanvaarden - + Canceled Geannuleerd - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Beëindigd - + %1 days ago - + one day ago een dag geleden - + %1 hours ago - + one hour ago een uur geleden - + %1 minutes ago - + just now Nu net @@ -2678,22 +2678,22 @@ Deel hem met uw vrienden! RecordingSettings - + Call Recording Oproepopname - + Always record calls Oproepen altijd opnemen - + Quality Kwaliteit - + Save in Opslaan in @@ -2701,7 +2701,7 @@ Deel hem met uw vrienden! RevokeDevicePasswordDialog - + Remove Verwijderen @@ -2709,7 +2709,7 @@ Deel hem met uw vrienden! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Deel hem met uw vrienden! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Deel hem met uw vrienden! SmartListModel - - - - - - + + + + + + Calls Oproepen - - - - - - + + + + + + Contacts Contacten @@ -2748,17 +2748,17 @@ Deel hem met uw vrienden! SystemSettings - + System Systeem - + Enable dark theme - + Enable desktop notifications Meldingen weergeven @@ -2766,27 +2766,27 @@ Deel hem met uw vrienden! SystemTray - + Answer Beantwoorden - + Decline Weigeren - + Open conversation Gesprek openen - + Accept Aanvaarden - + Refuse Afwijzen @@ -2794,7 +2794,7 @@ Deel hem met uw vrienden! UserIdentity - + Identity Identiteit @@ -2802,17 +2802,17 @@ Deel hem met uw vrienden! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Standaard - + System Systeem diff --git a/translations/ring_client_windows_nn.ts b/translations/ring_client_windows_nn.ts index bee959d1..389981c2 100644 --- a/translations/ring_client_windows_nn.ts +++ b/translations/ring_client_windows_nn.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Avslutt samtale - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel Avbryt - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ingen video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Avslutt fullskjerm - + Share screen Del skjerm - + Share window Del vindauge - + Share screen area Del skjermområde - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Rekk opp handa - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Bla til slutten av samtalen - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Nedlastingsmappe - + Choose download directory - + Record call - + Chatview Chat - + Display hyperlink previews in the chatview Vis førehandsvising av koplingar - + User interface language Brukergrensesnittspråk - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Nedlasting av installasjonsprogram kansellert - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN PIN-kode - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Sende fil - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Vis fullskjerm - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Oppsett - + Vertical view Loddrett visning - + Horizontal view Vannrett visning - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Velg en skjerm å dele - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Fullskjerm - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Avslutt samtale - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel Avbryt - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Avbrutt - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System System - + Enable dark theme - + Enable desktop notifications Vis varslingar @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Misligholde - + System System diff --git a/translations/ring_client_windows_oc.ts b/translations/ring_client_windows_oc.ts index 2c4ab3d0..1c84a23d 100644 --- a/translations/ring_client_windows_oc.ts +++ b/translations/ring_client_windows_oc.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Ajustar compte @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fichièr de certificat - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fichièr de certificat - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nòu messatge - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok D’acòrdi - - + + Success - - + + Error Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok D’acòrdi @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Invitacions - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami es un logicial liure per comunicacions universalas que respèctan la libertat e la vida privada de sos utilizaires. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami es un logicial liure per comunicacions universalas que respèctan la libertat e la vida privada de sos utilizaires. - + Credits Crèdit - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Suprimir lo compte - + Authentication failed - + Password Senhal - + Username Nom d’utilizaire - + Alias Alias - + Call Settings Paramètres sonada - + Allow incoming calls from unknown contacts - + In progress… - + Accept Acceptar - + Refuse Refusar - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Seguretat - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Negociacion chiframent (TLS) - + CA certificate Certificat de CA - + User certificate Certificat utilizaire - + Private key Clau privada - + Private key password Senhal de clau privada - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method metòde de protocòl TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Terminar - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Error ret - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Discutidas - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Crear un compte Jami - + About Jami A prepaus de Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok D’acòrdi - - + + Cancel Anullar - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Connectivitat - + Auto Registration After Expired - + Network interface Interfàcia ret - + Use UPnP Utilizar UPnP - + Use TURN Utilizar TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN Utilizar STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address Adreça - + Port Pòrt - + Media Mèdia - + Enable video Activar la vidèo - + Video Codecs Codecs vidèo - + Audio Codecs Codecs àudio - + Name Server Nom del servidor - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Tornar - + Account Settings - + Account Compte - - + + General General - + Plugin Extension - + Audio/Video - + Audio Àudio - + Microphone - + Select audio input device - + Output device Periferic de sortida - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager Gestionari àudio - + Video Vidèo - + Select video device - + Device Periferic - + Resolution Resolucion - + Select video resolution - + Enable hardware acceleration Activar accelaracion materiala - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! Salvagardatz vòstre compte ! - + Backup account - + Skip Saultar - + Success - + Error Error - + Never show me this again Me mostrar pas mai aquò - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name nom - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Ajustar participant - + Add participants - + Chat Conversacion - + More options Mai d’opcions - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Talhar - + Paste Pegar - + Start video call - + Start audio call - + Clear conversation - + Remove conversation Suprimir discutida - + Remove contact - + Block contact Blocar contacte - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording Quitar d’enregistrar - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call Començar sonada - + Place video call Començar visioconferéncia - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Se connectar - + Back to welcome page - + Choose name - + Choose username - + Create account Crear compte - + Confirm password Confirmar lo senhal - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nom d’utilizaire invalid - + Name already taken - + Username already taken Nom d’utilizaire ja pres - + Proxy Servidor mandatari - + Server Servidor - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Cambiar senhal - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account Activar compte - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password Marrit senhal - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Arrestar - + Generating account… - + Import from backup - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to La benvenguda a Jami - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Enviar un fichiè - + Leave audio message Daissar un messatge àudio - + Leave video message Daissar un messatge vidèo - + Send Enviar - + Remove Suprimir - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Copiar - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call Sonar - + Settings Paramètres - + Report Bug - + Clear Escafar - + Copied to clipboard! - + Receive Logs - + Archive Archius - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Tampar - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo Prendre fòto - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Aquò es vòstre nom d’utilizaire Jami. Copiatz-lo e partejatz-lo a vòstres amics ! - + Link this device to an existing account - + Advanced features Foncionalitats avançadas - + Show advanced features - + Connect to a JAMS server Connexion a un servidor JAMS - + Add a SIP account Apondre un compte SIP - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete Suprimir - + Set moderator - + Unset moderator - + Maximize Maximizar - + Minimize Reduire - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Copiatz-lo e partejatz-lo a vòstres amics ! KeyboardShortcutTable - + Open account list Dobrir la liste de comptes - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call Aviar una sonada àudio - + Start a video call Aviar una sonada vidèo - + Clear history Escafar l’istoric - + Block contact Blocar contacte - + Remove conversation Suprimir discutida - + Accept contact request - + Media settings - + General settings Paramètres generals - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Terminar - + Decline the call request @@ -2456,17 +2456,17 @@ Copiatz-lo e partejatz-lo a vòstres amics ! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok D’acòrdi - + Cancel anullar - + Uninstall @@ -2544,17 +2544,17 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Copiatz-lo e partejatz-lo a vòstres amics ! QObject - + Created by: Creat per : - + Artwork by: - + Based on the SFLPhone project - + Sending Mandadís - + Failure - + Sent - + Connecting Connexion - + Accept Acceptar - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now Ara meteis @@ -2678,22 +2678,22 @@ Copiatz-lo e partejatz-lo a vòstres amics ! RecordingSettings - + Call Recording Enregistrament sonadas - + Always record calls Totjorn enregistrar las sonadas - + Quality - + Save in @@ -2701,7 +2701,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! RevokeDevicePasswordDialog - + Remove Suprimir @@ -2709,7 +2709,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Copiatz-lo e partejatz-lo a vòstres amics ! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts Contactes @@ -2748,17 +2748,17 @@ Copiatz-lo e partejatz-lo a vòstres amics ! SystemSettings - + System Sistèma - + Enable dark theme - + Enable desktop notifications @@ -2766,27 +2766,27 @@ Copiatz-lo e partejatz-lo a vòstres amics ! SystemTray - + Answer Respondre - + Decline Regetar - + Open conversation Dobrir conversacions - + Accept Acceptar - + Refuse Refusar @@ -2794,7 +2794,7 @@ Copiatz-lo e partejatz-lo a vòstres amics ! UserIdentity - + Identity @@ -2802,17 +2802,17 @@ Copiatz-lo e partejatz-lo a vòstres amics ! UtilsAdapter - + %1 Mbps - + Default - + System Sistèma diff --git a/translations/ring_client_windows_pa.ts b/translations/ring_client_windows_pa.ts index d2df76b2..58c843a5 100644 --- a/translations/ring_client_windows_pa.ts +++ b/translations/ring_client_windows_pa.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile ਪ੍ਰੋਫ਼ਾਈਲ @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File ਪ੍ਰਮਾਣ-ਪੱਤਰ ਫ਼ਾਈਲ - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File ਪ੍ਰਮਾਣ-ਪੱਤਰ ਫ਼ਾਈਲ - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call ਆਉਂਦੀ ਕਾਲ - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ਠੀਕ ਹੈ - - + + Success ਸਫਲਤਾ - - + + Error ਗੜਬੜ - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ਠੀਕ ਹੈ @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations ਸੱਦੇ - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version ਵਰਜਨ - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits ਸ਼ਲਾਘਾਯੋਗ ਵਿਅਕਤੀ - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed ਪ੍ਰਮਾਣੀਕਰਨ ਨਹੀਂ ਹੋਇਆ - + Password ਪਾਸਵਰਡ - + Username ਵਰਤੋਂਕਾਰ ਨਾਂ - + Alias ਦੂਜਾ ਨਾਂ - + Call Settings - + Allow incoming calls from unknown contacts ਅਣਜਾਣ ਸੰਪਰਕਾਂ ਤੋਂ ਕਾਲਾਂ ਆਉਣ ਦਿਓ - + In progress… - + Accept ਮਨਜ਼ੂਰ ਕਰੋ - + Refuse ਨਾ-ਮਨਜ਼ੂਰ ਕਰੋ - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security ਸੁਰੱਖਿਆ - + Encrypt media streams (SRTP) ਮੀਡੀਆ ਦੇ ਵਹਿਣਾਂ (SRTP) ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰੋ - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery ਸਥਾਨਕ ਸਾਥੀ ਦੀ ਭਾਲ ਚਾਲੂ ਕਰੋ - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call ਕਾਲ ਸਮਾਪਤ ਕਰੋ - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password ਪਾਸਵਰਡ ਨਾਲ ਖਾਤੇ ਵਿੱਚ ਗੁਪਤ ਸੰਕੇਤ ਪਾਓ - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error ਨੈੱਟਵਰਕ ਗੜਬੜ - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device ਡੀਵਾਈਸ ਲਿੰਕ ਕਰੋ - + Conversations ਗੱਲਾਂਬਾਤਾਂ - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Jami ਖਾਤਾ ਬਣਾਓ - + About Jami Jami ਬਾਰੇ - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ਠੀਕ ਹੈ - - + + Cancel ਰੱਦ ਕਰੋ - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN TURN ਵਰਤੋ - + TURN address - + TURN username TURN ਵਰਤੋਂਕਾਰ ਨਾਂ - + TURN password TURN ਪਾਸਵਰਡ - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media ਮੀਡੀਆ - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap ਬੂਟਸਟ੍ਰੈਪ - + Back ਪਿੱਛੇ - + Account Settings - + Account ਖਾਤਾ - - + + General ਸਧਾਰਨ - + Plugin - + Audio/Video - + Audio ਅਵਾਜ਼ - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video ਵੀਡੀਓ - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ਕੋਈ ਵੀਡਿਓ ਨਹੀਂ - + Backup account here - + Backup your account! - + Backup account ਬੈਕਅੱਪ ਖਾਤਾ - + Skip ਲੰਘਾਓ - + Success ਸਫਲਤਾ - + Error ਗੜਬੜ - + Never show me this again - + Recommended ਸਿਫ਼ਾਰਸ਼ੀ - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact ਸੰਪਰਕ 'ਤੇ ਬੰਦਸ਼ ਲਗਾਓ - + Contact details ਸੰਪਰਕ ਵੇਰਵੇ - + Hold ਰੋਕ ਕੇ ਰੱਖੀ - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen ਪੂਰੀ ਸਕ੍ਰੀਨ ਤੋਂ ਨਿਕਾਸ ਕਰੋ - + Share screen ਸਕਰੀਨ ਸਾਂਝੀ ਕਰੋ - + Share window ਸ਼ੇਅਰ ਵਿੰਡੋ - + Share screen area ਸਕਰੀਨ ਖੇਤਰ ਨੂੰ ਸਾਂਝਾ ਕਰੋ - + Share file ਫ਼ਾਈਲ ਸਾਂਝੀ ਕਰੋ - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest ਵਾਰਤਾਲਾਪ ਦੇ ਅੰਤ ਤੱਕ ਸਕ੍ਰੌਲ ਕਰੋ - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required ਲੁੜੀਂਦਾ - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect ਜੋੜੋ - + Back to welcome page - + Choose name - + Choose username - + Create account ਖਾਤਾ ਬਣਾਓ - + Confirm password - + Optional ਮਰਜ਼ੀ ਮੁਤਾਬਕ - + Choose a username for your account ਆਪਣੇ ਖਾਤੇ ਲਈ ਕੋਈ ਵਰਤੋਂਕਾਰ ਨਾਂ ਚੁਣੋ - + Choose a name - + Choose your username - + Invalid name - + Invalid username ਅਵੈਧ ਵਰਤੋਂਕਾਰ ਨਾਂ - + Name already taken - + Username already taken ਵਰਤੋਂਕਾਰ ਨਾਂ ਪਹਿਲਾਂ ਹੀ ਲਿਆ ਗਿਆ - + Proxy ਪ੍ਰੌਕਸੀ - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password ਪਾਸਵਰਡ ਬਦਲੋ - - + + Set password ਪਾਸਵਰਡ ਸੈੱਟ ਕਰੋ - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices ਜੁੜੇ ਹੋਏ ਡੀਵਾਈਸ - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ਫੋਲਡਰ ਨੂੰ ਡਾਉਨਲੋਡ ਕਰਦਾ ਹੈ - + Choose download directory - + Record call - + Chatview ਚੈਟ - + Display hyperlink previews in the chatview ਲਿੰਕ ਪੂਰਵਦਰਸ਼ਨ ਦਿਖਾਓ - + User interface language ਯੂਜ਼ਰ ਇੰਟਰਫੇਸ ਭਾਸ਼ਾ - + File transfer ਫ਼ਾਈਲ ਤਬਾਦਲਾ - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register ਦਰਜ ਹੋਵੋ - + Incorrect password - + Save file ਫ਼ਾਈਲ ਸਾਂਭੋ - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled ਇੰਸਟੌਲਰ ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN ਪਿੰਨ - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts ਪ੍ਰੋਫ਼ਾਈਲ ਸਿਰਫ਼ ਸੰਪਰਕਾਂ ਨਾਲ ਸਾਂਝੀ ਕੀਤੀ ਜਾਂਦੀ ਹੈ - + Enter your name ਆਪਣਾ ਨਾਂ ਦਾਖਲ ਕਰੋ - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ਫ਼ਾਈਲ ਭੇਜੋ - + Leave audio message - + Leave video message - + Send ਭੇਜੋ - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy ਨਕਲ ਲਾਹੋ - + Participant is still muted on their device - + You are still muted on your device - + View full screen ਪੂਰੀ ਸਕ੍ਰੀਨ ਦੇਖੋ - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout ਲੇਆਉਟ - + Vertical view ਲੰਬਕਾਰੀ ਦ੍ਰਿਸ਼ - + Horizontal view ਹਰੀਜ਼ੱਟਲ ਦ੍ਰਿਸ਼ - + Keyboard Shortcut Table - + Conversation - + Call - + Settings ਸੈਟਿੰਗਾਂ - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file ਫ਼ਾਈਲ ਖੋਲ੍ਹੋ - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo ਫ਼ੋਟੋ ਖਿੱਚੋ - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share ਸਾਂਝਾ ਕਰਨ ਲਈ ਇੱਕ ਸਕ੍ਰੀਨ ਚੁਣੋ - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results ਖੋਜ ਨਤੀਜੇ - + Delete ਮਿਟਾਓ - + Set moderator - + Unset moderator - + Maximize ਵੱਡਾ ਕਰੋ - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen ਪੂਰੀ ਸਕਰੀਨ - + Start an audio call - + Start a video call - + Clear history ਇਤਿਹਾਸ ਮਿਟਾਓ - + Block contact ਸੰਪਰਕ 'ਤੇ ਬੰਦਸ਼ ਲਗਾਓ - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call ਕਾਲ ਸਮਾਪਤ ਕਰੋ - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ਠੀਕ ਹੈ - + Cancel ਰੱਦ ਕਰੋ - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting ਕਨੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ - + Accept ਮਨਜ਼ੂਰ ਕਰੋ - + Canceled ਰੱਦ ਕੀਤਾ ਗਿਆ - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls ਕਾਲਾਂ - - - - - - + + + + + + Contacts ਸੰਪਰਕ @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System ਸਿਸਟਮ - + Enable dark theme - + Enable desktop notifications ਸੂਚਨਾਵਾਂ ਦਿਖਾਓ @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline ਕਾਲ ਕੱਟੋ - + Open conversation - + Accept ਮਨਜ਼ੂਰ ਕਰੋ - + Refuse ਨਾ-ਮਨਜ਼ੂਰ ਕਰੋ @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity ਪਛਾਣ @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 ਮੈਗਾਬਾਈਟ ਪ੍ਰਤੀ ਸਕਿੰਟ - + Default طے شدہ - + System ਸਿਸਟਮ diff --git a/translations/ring_client_windows_pl.ts b/translations/ring_client_windows_pl.ts index aac98432..08f51253 100644 --- a/translations/ring_client_windows_pl.ts +++ b/translations/ring_client_windows_pl.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Dodaj Konto @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Pliki dźwiękowe - + All files Wszystkie pliki @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Plik Certyfikatu - - - + + + All files Wszystkie pliki - + Key File Plik klucza @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Plik Certyfikatu - - - + + + All files Wszystkie pliki - + Key File Plik klucza @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Zaawansowane Ustawienia Konta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Zablokowane Kontakty @@ -89,32 +89,32 @@ CallAdapter - + Missed call Nieodebrane połączenie - + Missed call with %1 - + me ja - + Incoming call Połączenie przychodzące - + %1 is calling you %1 dzwoni do ciebie - + is calling you dzwoni do ciebie @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Dodaj do rozmowy - + Transfer this call Przełącz rozmowę - + Add default moderator Dodaj domyślnego moderatora @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nowa wiadomość - + Trust request Rządanie zaufania @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Sukces - - + + Error Błąd - + Jami archive files Jami pliki archiwum - + All files Wszystkie pliki @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id ID Urządzenia @@ -218,2126 +218,2126 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation Wyszukiwanie użytkowników lub wiadomości - + Search your invitations Znajdź swoje zaproszenia - + Invitations Zaproszenia - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami jest wolnym oprogramowaniem do uniwersalnej komunikacji, szanującym wolność i prywatność swoich użytkowników. - + Version Wersja - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami jest wolnym oprogramowaniem do uniwersalnej komunikacji, szanującym wolność i prywatność swoich użytkowników. - + Credits Podziękowania - + Display QR code Wyświetl kod QR - + Open settings Otwórz ustawienia - + Close settings Zamknij ustawienia - + Authentication required Wymagana autoryzacja - + Your session has expired or been revoked on this device. Please enter your password. Twoja sesja wygasła lub została unieważniona na tym urządzeniu. Proszę wprowadzić swoje hasło. - + JAMS server Serwer JAMS - + Authenticate Uwierzytelniać - + Delete account Usuń konto - + Authentication failed Autoryzacja nie powiodła się - + Password Hasło - + Username Nazwa użytkownika - + Alias Nazwa konta - + Call Settings Ustawienia Połączeń - + Allow incoming calls from unknown contacts Zezwól na połączenia od nieznanych użytkowników - + In progress… W trakcie... - + Accept Akceptuj - + Refuse Odmów - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point Przekształć swoje konto w punkt spotkania - + Automatically answer calls Automatycznie odbieraj połączenia - + Enable custom ringtone Włącz niestandardowy dzwonek - + Select custom ringtone Wybierz niestandardowy dzwonek - + Add a custom ringtone Dodaj własny dzwonek - + Select a new ringtone Wybierz nowy dzwonek - + Voicemail Poczta głosowa - + Voicemail dial code Number kierunkowy poczty głosowej - + Security Zabezpieczenia - + Encrypt media streams (SRTP) Szyfrowanie strumieni multimedialnych (SRTP) - + Enable SDES key exchange Włącz wymianę klucza SDES - + Allow fallback on RTP Zezwój na cofanie się do RTP - + Encrypt negotiation (TLS) Negocjacja szyfrowania (TLS) - + CA certificate Certyfikat CA - + User certificate Certyfikat użytkownika - + Private key Klucz prywatny - + Private key password Hasło klucza prywatnego - + Verify certificates for incoming TLS connections Weryfikuj certyfikaty dla wychodzących połączeń TLS - + Verify server TLS certificates Weryfikuj certyfikaty TLS serwera - + Require certificate for incoming TLS connections Wymagaj certyfikatów dla wychodzących połączeń TLS - + TLS protocol method Metoda protokołu TLS - + Audio input device selector Pole wyboru urządzenia wejściowego audio - + TLS server name Nazwa serwera TLS - + Negotiation timeout (seconds) Limit czasu do negocjacji (w sekundach) - + Select a private key Wybierz klucz prywatny - + Select a user certificate Wybierz certyfikat użytkownika - + Registration expiration time (seconds) - + Use custom address and port Użyj własny adres i port - + Enable local peer discovery Aktywuj wyszukiwanie lokalnych partnerów - + Audio and Video Settings Ustawienia Dźwięku i Obrazu - + Frames per second Klatki na sekundę - + Select video frame rate (frames per second) Wybierz poziom odświeżania wideo (klatki na sekundę) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Twoje konto istnieje wyłącznie na tym urządzeniu. Jeśli stracisz swoje urządzenie lub odinstalujesz aplikację, twoje konto zostanie usunięte i nie będzie możliwe jego odzyskanie. Możesz utworzyć kopię zapasową twojego konta teraz lub później. - - + + End call Skończ rozmowę - + Pause call Wstrzymaj połączenie - + Resume call Wznów połączenie - + Pause video Wstrzymaj wideo - + Resume video Wznów wide - + Creating account… Tworzenie konta... - + Encrypt account with password Zaszyfruj konto przy pomocy hasła - + Create a rendezvous point Utwórz spotkanie - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Wybierz hasło do zaszyfrowania konta na tym urządzeniu. Pamiętaj że hasło nie będzie mogło zostać odzyskane. - + Choose a name for your rendezvous point Wybierz nazwę dla swojego punktu spotkania - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Jeśli twoje konto nie posiada kopii zapasowej lub nie jest obecne na innym urządzeniu, twoje konto oraz zarejestrowana nazwa zostaną bezpowrotnie utracone. - + Launch at startup Uruchamiaj przy starcie - + Enable typing indicators Włącz wskaźniki pisania - - + + Network error Błąd sieci - + SSL error Błąd SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Wprowadź PIN z urządzenia ze skonfigurowanym kontem Jami. Użyj opcji "Podłącz Kolejne Urządzenie", aby wyświetlić kod PIN. - + Link device Połącz urządzenie - + Conversations Rozmowy - + Enable Włącz - + Display or hide preferences Wyświetl lub ukryj ustawienia - + Add new plugin Dodaj nową wtyczkę - + Select a file Wybierz plik - + Select Wybierz - + Choose image file Wybierz plik obrazu - + Enter the rendezvous point's name Wprowadź nazwę punktu spotkania - + Creating rendezvous point… Tworzenie punktu spotkania... - + Create account from Jami Account Management Server (JAMS) Utwórz konto przy pomocy Jami Account Management Server (JAMS) - + Create new rendezvous point Utwórz nowy punkt spotkania - + Create a Jami account Stwórz konto Jami - + About Jami O Jami - + Decline contact request Odrzuć zaproszenie - + Accept contact request Akceptuj zaproszenie - + Automatically check for updates Automatycznie sprawdź po aktualizacje - + Ok Ok - - + + Cancel Anuluj - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Włącz potwierdzenia odczytu - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate Wybierz certyfikat CA - + Connectivity Łączność - + Auto Registration After Expired Automatyczna rejestracja po wygaśnięciu - + Network interface Interfejs sieciowy - + Use UPnP Użyj UPnP - + Use TURN Użyj TURN - + TURN address Adres TURN - + TURN username Nazwa użytkownika TURN - + TURN password Hasło TURN - + TURN Realm Domena TURN - + Use STUN Użyj STUN - + STUN address Adres STUN - + Allow IP Auto Rewrite - + Public address Adres publiczny - + Address Adres - + Port Port - + Media Multimedia - + Enable video Włącz video - + Video Codecs Kodeki Wideo - + Audio Codecs Kodeki Audio - + Name Server Serwer Nazw - + SDP Session Negotiation (ICE Fallback) Negocjacja sesji SDP (użyjcie ICE w przypadku awari) - + Only used during negotiation in case ICE is not supported Używane tylko podczas negocjacji w przypadku kiedy ICE nie jest wspierane - + Audio RTP minimum Port Minimalny port RTP dźwięku - + Audio RTP maximum Port Maksymalny port RTP dźwięku - + Video RTP minimum Port Minimalny port RTP obrazu - + Video RTP maximum port Maksymalny port RTP obrazu - + Connect to other DHT nodes advertising on your local network. Połącz z innymi węzłami DHT ogłaszającymi się w twojej sieci lokalnej. - + OpenDHT Configuration Konfiguracja OpenDHT - + Enable proxy Włącz proxy - + Proxy address Adres proxy - + Bootstrap Bootstrap - + Back Wstecz - + Account Settings Ustawienia Konta - + Account Konto - - + + General Generalne - + Plugin Wtyczka - + Audio/Video Audio/Wideo - + Audio Audio - + Microphone Mikrofon - + Select audio input device Wybierz urządzenie wejściowe dźwięku - + Output device Urządzenie wyjściowe - + Select audio output device Wybierz urządzenie wyjściowe dźwięku - + Ringtone device Urządzenie dzwonka - + Select ringtone output device Wybierz urządzenie wyjściowe dla dzwonka - + Audio manager Menedżer audio - + Video Wideo - + Select video device Wybierz urządzenie obrazu - + Device Urządzenie - + Resolution Rozdzielczość - + Select video resolution Wybierz rozdzielczość obrazu - + Enable hardware acceleration Włącz przyśpieszanie sprzętowe - + Preview unavailable Podgląd niedostępny - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video brak wideo - + Backup account here Zabezpiecz swoje konto tutaj - + Backup your account! Zabezpiecz swoje konto! - + Backup account Wykonaj kopię zapasową - + Skip Pomiń - + Success Sukces - + Error Błąd - + Never show me this again Nie pokazuj mi tego ponownie - + Recommended Zalecane - + Jami archive files Jami pliki archiwum - + All files Wszystkie pliki - + Reinstate as contact Przywróć kontakty - + name nazwa - + Identifier Identyfikator - + is recording nagrywa - + are recording nagrywają - + Peer stopped recording - + is calling you dzwoni do ciebie - - + + Mute Wycisz - - + + Unmute Wyłącz wyciszenie - + Add participant Dodaj uczestnika - + Add participants Dodaj uczestników - + Chat Czat - + More options Więcej opcji - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Tnij - + Paste Wyklej - + Start video call Rozpocznij rozmowę wideo - + Start audio call Rozpocznij połączenie głosowe - + Clear conversation Wyczyść rozmowę - + Remove conversation Usuń rozmowę - + Remove contact Usuń kontakt - + Block contact Blokuj kontakt - + Contact details Detale kontaktu - + Hold Czekanie - + Sip input panel Panel wejściowy Sip - + Transfer call Przełącz rozmowę - + Stop recording Wyłącz nagrywanie - + Start recording Rozpocznij nagrywanie - + Exit full screen Wyjdź z pełnego ekranu - + Share screen Udostępnij ekran - + Share window Udostępnij okno - + Share screen area Udostępnij obszar ekranu - + Share file Podziel się plikiem - + Select sharing method - + View plugin Pokaż wtyczki - + No video device Brak urządzenia wideo - + N/A Nie dotyczy - + Lower hand - + Raise hand Podnieś rękę - + Hide chat view Schowaj chat - + Place audio call Wykonaj połączenie głosowe - + Place video call Rozpocznij rozmowę wideo - + Show available plugins Pokaż dostępne wtyczki - + Add to conversations Dodaj do rozmowy - + Jump to latest Przewiń do końca konwersacji - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL Wprowadź adres URL Jami Account Management Server (JAMS) - + Required Wymagane - + Jami Account Management Server URL Jami Account Management Server URL - + Enter your JAMS credentials Wprowadź swoje dane logowania JAMS - + Connect Połącz - + Back to welcome page Powrót do strony powitalnej - + Choose name Wybierz nazwę - + Choose username Wybierz nazwę użytkownika - + Create account Stwórz konto - + Confirm password Potwierdź hasło - + Optional Opcjonalne - + Choose a username for your account Wybierz nazwę użytkownika dla swojego konta - + Choose a name Wybierz nazwę - + Choose your username Wybierz swoją nazwę użytkownika - + Invalid name Niepoprawna nazwa - + Invalid username Nieprawidłowa nazwa użytkownika - + Name already taken Nazwa jest już zajęta - + Username already taken Nazwa użytkownika zajęta - + Proxy Pełnomocnik - + Server Serwer - + Create SIP account Utwórz konto SIP - + Configure an existing SIP account Konfiguruj istniejące konto SIP - + Backup successful Tworzenie kopii zapasowej zakończone powodzeniem - + Backup failed Tworzenie kopii zapasowej zakończone niepowodzeniem - + Password changed successfully Pomyślna zmiana hasła - + Password change failed Niepowodzenie zmiany hasła - + Password set successfully Pomyślnie ustalone hasło - + Password set failed Niepowodzenie ustawienia hasła - + Change password Zmień hasło - - + + Set password Ustaw hasło - + Change current password Zmień obecne hasło - + Backup account to a .gz file Zapisz kopię zapasową do pliku .gz - + Enable account Aktywuj konto - + Set username Ustaw nazwę użytkownika - + Registering name Zarejestruj nazwę - + Register a username Zarejestruj nazwę użytkownika - + Register username Zarejestruj nazwę użytkownika - + Link a new device to this account Podłącz nowe urządzenie do tego konta - + Link another device Połącz nowe urządzenie - + Exporting account… Eksportowanie konta... - + Remove Device Usuń Urządzenie - + Are you sure you wish to remove this device? Czy jesteś pewny, że chcesz usunąć to urządzenie? - + Linked Devices Połączone Urządzenia - + Your PIN is: Twój kod PIN to: - + Error connecting to the network. Please try again later. Błąd podczas połączenia z siecią. Spróbuj ponownie później. - + Do you really want to delete this account? Czy jesteś pewien, że chcesz usunąć to konto? - + Save new device name Zapisz nazwę nowego urządzenia - + Edit device name Edytuj nazwę urządzenia - + Unlink device from account Odłącz to urządzenie od konta - + Select a folder Wybierz folder - + Enable notifications Aktywuj powiadomienia - + Enable dark theme Aktywuj ciemny motyw - + Keep minimized on close Przechowaj zminimalizowane przy zamknięciu - + Run application on system startup Uruchamiaj aplikacje podczas startu systemu - + Downloads directory Folder pobranych plików - + Choose download directory Wybierz lokalizację dla pobranych plików - + Record call Nagraj Rozmowę - + Chatview Czat - + Display hyperlink previews in the chatview Pokaż podglądy linków - + User interface language Język interfejsu użytkownika - + File transfer Transfer pliku - + Allow incoming files from unknown contacts Akceptuj przychodzące pliki od nieznanych kontaktów - + Automatically accept incoming files Automatycznie akceptuj przychodzące pliki - + Accept transfer limit - + in MB, 0 = unlimited - + Register Zarejestruj - + Incorrect password Niepoprawne hasło - + Save file Zapisz plik - + Open location - + Install beta version Zainstaluj wersję testową - + Check for updates now Sprawdź aktualizacje teraz - + Enable/Disable automatic updates Wł/Wył automatyczne aktualizacje - + toggle automatic updates przełącz automatyczne aktualizacje - + Updates Aktualizacje - + Update Aktualizacja - + A new version of Jami was found Would you like to update now? Znaleziono nową wersję Jami Czy chcesz teraz dokonać aktualizacji? - + No new version of Jami was found Nie znaleziono nowej wersji Jami - + An error occured when checking for a new version Wystąpił błąd podczas sprawdzania dostępności nowej wersji - + Installer download canceled Pobieranie instalatora zostało anulowane - + This will uninstall your current Release version and you can always download the latest Release version on our website Ta operacja usunie obecną wersję wydania i zawsze możesz pobrać ostatnią wersję wydania ze swojej strony internetowej - + Network disconnected Rozłączenie z siecią - - + + Something went wrong Coś poszło nie tak - + Troubleshoot - + Open logs - + Get logs - + Select a record directory Wybierz lokalizację nagrań - + Debug - + Show Stats - + Start - + Stop Zatrzymaj - + Generating account… Generowanie konta… - + Import from backup Importuj z kopii zapasowej - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list Wróć do listy wtyczek - + Profile is only shared with contacts Profil jest udostępniany wyłącznie kontaktom - + Enter your name Wprowadź swoją nazwę - + Import account from other device Importuj konto z innego urządzenia - + Import account from backup file Importuj konto z pliku kopii zapasowej - + Hide advanced features - + Create new Jami account Utwórz nowe konto Jami - + Create new SIP account Utwórz nowe konto SIP - + Welcome to Witaj! - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji Dodaj emoji - + Send file Wyślij plik - + Leave audio message Zostaw wiadomość głosową - + Leave video message Zostaw wiadomość wideo - + Send Wyślij - + Remove Usuń - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Skopiuj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Wyświetl na pełnym ekranie - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Ukryj zablokowane kontakty - + Layout Układ - + Vertical view Widok pionowy - + Horizontal view Widok poziomy - + Keyboard Shortcut Table - + Conversation - + Call Dzwoń - + Settings Ustawienia - + Report Bug - + Clear Wyczyść - + Copied to clipboard! - + Receive Logs - + Archive Archiwum - + Open file Otwórz plik - + Create your account from a backup Utwórz konto z kopii zapasowej - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Archiwum można uzyskać, klikając opcję „Kopia zapasowa konta” w ustawieniach konta. Spowoduje to utworzenie pliku .gz na Twoim urządzeniu. - + Restore an account from backup Odzyskaj konto z kopii zapasowej - + Enter Jami account password Wprowadź hasło do konta Jami - + The PIN and the account password should be entered in your device within 10 minutes. Kod PIN oraz hasło do konta powinno zostać wprowadzone na twoim urządzeniu w przeciągu 10 minut. - + Close Zamknij - + Enter your account password Wprowadź hasło do twojego konta - + Add Device Dodaj urządzenie - + Enter the password Wprowadź hasło - + Enter current password Wprowadź obecne hasło - + Enter this account's password to confirm the removal of this device Wprowadź hasło do tego konta, aby potwierdzić usunięcie tego urządzenia - + Enter new password Wprowadź nowe hasło - + Confirm new password Potwierdź nowe hasło - + Change Zmień - + Confirm Potwierdź - + Export Wyeksportuj - + Choose a picture as avatar Wybierz obraz jako awatar - + Import avatar from image file Importuj awatar z pliku obrazu - + Take photo Zrób zdjęcie - + Reset Zresetuj - + Select a plugin to install Wybierz wtyczkę do zainstalowania - + Install plugin Zainstaluj wtyczkę - + Save profile Zapisz profil - + Information Informacje - + Enter the account password to confirm the removal of this device Wprowadź hasło do konta aby potwierdzić usunięcie go z tego urządzenie - + Select a screen to share Wybierz ekran do udostępniania - + Select a window to share - + All Screens Wszystkie Ekrany - + Screens - + Windows - + QR code Kod QR - + Account QR QR konta - + This is your Jami username. Copy and share it with your friends! To jest twoja nazwa użytkownika Jami. Skopiuj i podziel się nią z przyjaciółmi! - + Link this device to an existing account Połącz to urządzenie z istniejącym kontem - + Advanced features Opcje zaawansowane - + Show advanced features Pokaż opcje zaawansowane - + Connect to a JAMS server Połącz z serwerem JAMS - + Add a SIP account Dodaj konto SIP - + Error while creating your account. Check your credentials. Wystąpił błąd podczas tworzenia konta. Sprawdź swoje dane logowania - + Clear Text Wyczyść Tekst - + Search Results Wyniki wyszukiwania - + Delete Usuń - + Set moderator Zaznacz moderatora - + Unset moderator Odznacz moderatora - + Maximize Maksymalizuj - + Minimize Zminimalizuj - + Hangup Odłoż słuchawkę - + Conference moderation Moderowanie konferencji - + Default moderators Domyślni moderatorzy - + Enable local moderators Włącz lokalnych moderatorów - + Make all participants moderators Uczyń wszystkich uczestników moderatorami - + Add default moderator Dodaj domyślnego moderatora - + Remove default moderator Usuń domyślnego moderatora @@ -2345,112 +2345,112 @@ Skopiuj i podziel się nią z przyjaciółmi! KeyboardShortcutTable - + Open account list Otwórz listę kont - + Focus conversations list Lista rozmów - + Requests list Lista zaproszeń - + Previous conversation Poprzednia konwersacja - + Next conversation Następna konwersacja - + Search bar Pasek wyszukiwania - + Full screen Pełny ekran - + Start an audio call Rozpocznij połączenie głosowe - + Start a video call Rozpocznij rozmowę wideo - + Clear history Wyczyść historię - + Block contact Blokuj kontakt - + Remove conversation Usuń rozmowę - + Accept contact request Akceptuj zaproszenie - + Media settings Ustawienia multimediów - + General settings Ogólne ustawienia - + Account settings Ustawienia konta - + Plugin settings - + Open account creation wizard Otwórz kreator tworzenia konta - + Open keyboard shortcut table - + Answer an incoming call Odbierz połączenie przychodzące - + End call Skończ rozmowę - + Decline the call request Odrzuć połączenie przychodzące @@ -2458,17 +2458,17 @@ Skopiuj i podziel się nią z przyjaciółmi! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2476,12 +2476,12 @@ Skopiuj i podziel się nią z przyjaciółmi! PhotoboothView - + Image Files Pliki graficzne - + All files Wszystkie pliki @@ -2489,7 +2489,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginHandlerItemDelegate - + On/Off Wł/Wył @@ -2497,12 +2497,12 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginHandlerPicker - + Choose plugin Wybierz wtyczkę - + Preferences Preferencje @@ -2510,7 +2510,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginItemDelegate - + Load/Unload Włączenie/Wyłączenie @@ -2518,27 +2518,27 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginListPreferencesView - + Uninstall plugin Odinstaluj wtyczkę - + Reset preferences Zresetuj ustawienia - + Ok Ok - + Cancel Anuluj - + Uninstall Odinstaluj @@ -2546,17 +2546,17 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginListSettingsView - + Plugin Files Pliki wtyczki - + All files Wszystkie pliki - + Installed plugins Zainstalowane wtyczki @@ -2564,7 +2564,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PreferenceItemDelegate - + Edit preference Edytuj ustawnienia @@ -2572,107 +2572,107 @@ Skopiuj i podziel się nią z przyjaciółmi! QObject - + Created by: Stworzone przez: - + Artwork by: Obrazki przez: - + Based on the SFLPhone project Na podstawie projektu SFLPhone - + Sending Wysyłanie - + Failure Nie powiodło się - + Sent - + Connecting Łączenie - + Accept Akceptuj - + Canceled Anulowano - + Unable to make contact Nie udało się nawiązać kontaktu - + Ongoing W trakcie - + Waiting for contact Czekanie na kontakt - + Incoming transfer Przychodzący transfer - + Timed out waiting for contact Przekroczono czas czekając na kontakt - + Finished Zakończono - + %1 days ago - + one day ago jeden dzień temu - + %1 hours ago - + one hour ago jedną godzinę temu - + %1 minutes ago - + just now teraz @@ -2680,22 +2680,22 @@ Skopiuj i podziel się nią z przyjaciółmi! RecordingSettings - + Call Recording Nagrywanie rozmów - + Always record calls Zawsze nagrywaj rozmowy - + Quality Jakość - + Save in Zapisz w @@ -2703,7 +2703,7 @@ Skopiuj i podziel się nią z przyjaciółmi! RevokeDevicePasswordDialog - + Remove Usuń @@ -2711,7 +2711,7 @@ Skopiuj i podziel się nią z przyjaciółmi! SelectScreen - + Screen Ekran @@ -2719,7 +2719,7 @@ Skopiuj i podziel się nią z przyjaciółmi! SettingParaCombobox - + @@ -2727,22 +2727,22 @@ Skopiuj i podziel się nią z przyjaciółmi! SmartListModel - - - - - - + + + + + + Calls Rozmowy - - - - - - + + + + + + Contacts Kontakty @@ -2750,17 +2750,17 @@ Skopiuj i podziel się nią z przyjaciółmi! SystemSettings - + System System - + Enable dark theme Aktywuj ciemny motyw - + Enable desktop notifications Pokaż powiadomienia @@ -2768,27 +2768,27 @@ Skopiuj i podziel się nią z przyjaciółmi! SystemTray - + Answer Odbierz - + Decline Odrzuć - + Open conversation Otwórz rozmowę - + Accept Akceptuj - + Refuse Odmów @@ -2796,7 +2796,7 @@ Skopiuj i podziel się nią z przyjaciółmi! UserIdentity - + Identity Tożsamość @@ -2804,17 +2804,17 @@ Skopiuj i podziel się nią z przyjaciółmi! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Domyślne - + System System diff --git a/translations/ring_client_windows_pl_PL.ts b/translations/ring_client_windows_pl_PL.ts index 11c4e066..a1d0801e 100644 --- a/translations/ring_client_windows_pl_PL.ts +++ b/translations/ring_client_windows_pl_PL.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Dodaj konto @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Pliki dźwiękowe - + All files Wszystkie pliki @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Plik Certyfikatu - - - + + + All files Wszystkie pliki - + Key File Plik Klucza @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Plik Certyfikatu - - - + + + All files Wszystkie pliki - + Key File Plik Klucza @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Zaawansowane ustawienia konta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Zablokowane kontakty @@ -89,32 +89,32 @@ CallAdapter - + Missed call Nieodebrane połączenie - + Missed call with %1 - + me ja - + Incoming call Połączenie przychodzące - + %1 is calling you %1 dzwoni do ciebie - + is calling you dzwoni do ciebie @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Dodaj do rozmowy - + Transfer this call Przełącz tą rozmowę - + Add default moderator Dodaj domyślnego moderatora @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nowa wiadomość - + Trust request Rządanie zaufania @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Sukces - - + + Error Błąd - + Jami archive files Archiwum Jami - + All files Wszystkie pliki @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Identyfikator urządzenia @@ -218,2126 +218,2126 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation Wyszukiwanie użytkowników lub wiadomości - + Search your invitations Znajdź swoje zaproszenia - + Invitations Zaproszenia - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami jest wolnym oprogramowaniem do uniwersalnej komunikacji, szanującym wolność i prywatność swoich użytkowników. - + Version Wersja - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami jest wolnym oprogramowaniem do uniwersalnej komunikacji, szanującym wolność i prywatność swoich użytkowników. - + Credits Podziękowania - + Display QR code Wyświetl kod QR - + Open settings Otwórz ustawienia - + Close settings Zamknij ustawienia - + Authentication required Wymagana autoryzacja - + Your session has expired or been revoked on this device. Please enter your password. Twoja sesja wygasła lub została unieważniona na tym urządzeniu. Proszę wprowadzić swoje hasło. - + JAMS server Serwer JAMS - + Authenticate Uwierzytelniać - + Delete account Usuń konto - + Authentication failed Autoryzacja nie powiodła się - + Password Hasło - + Username Nazwa użytkownika - + Alias Nazwa konta - + Call Settings Ustawienia Połączeń - + Allow incoming calls from unknown contacts Umożliwiaj rozmowy od nieznajomych - + In progress… W trakcie... - + Accept Akceptuj - + Refuse Odmów - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point Przekształć swoje konto w punkt spotkania - + Automatically answer calls Automatycznie odbieraj połączenia - + Enable custom ringtone Włącz niestandardowy dzwonek - + Select custom ringtone Wybierz niestandardowy dzwonek - + Add a custom ringtone Dodaj własny dzwonek - + Select a new ringtone Wybierz nowy dzwonek - + Voicemail Poczta głosowa - + Voicemail dial code Number kierunkowy poczty głosowej - + Security Zabezpieczenia - + Encrypt media streams (SRTP) Szyfrowanie strumieni multimedialnych (SRTP) - + Enable SDES key exchange Włącz wymianę klucza SDES - + Allow fallback on RTP Zezwój na cofanie się do RTP - + Encrypt negotiation (TLS) Negocjacja szyfrowania (TLS) - + CA certificate Certyfikat CA - + User certificate Certyfikat użytkownika - + Private key Klucz prywatny - + Private key password Hasło klucza prywatnego - + Verify certificates for incoming TLS connections Weryfikuj certyfikaty dla wychodzących połączeń TLS - + Verify server TLS certificates Weryfikuj certyfikaty TLS serwera - + Require certificate for incoming TLS connections Wymagaj certyfikatów dla wychodzących połączeń TLS - + TLS protocol method Metoda protokołu TLS - + Audio input device selector Pole wyboru urządzenia wejściowego audio - + TLS server name Nazwa serwera TLS - + Negotiation timeout (seconds) Limit czasu do negocjacji (w sekundach) - + Select a private key Wybierz klucz prywatny - + Select a user certificate Wybierz certyfikat użytkownika - + Registration expiration time (seconds) - + Use custom address and port Użyj własny adres i port - + Enable local peer discovery Aktywuj wyszukiwanie lokalnych partnerów - + Audio and Video Settings Ustawienia Dźwięku i Obrazu - + Frames per second Klatki na sekundę - + Select video frame rate (frames per second) Wybierz poziom odświeżania wideo (klatki na sekundę) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Twoje konto istnieje wyłącznie na tym urządzeniu. Jeśli stracisz swoje urządzenie lub odinstalujesz aplikację, twoje konto zostanie usunięte i nie będzie możliwe jego odzyskanie. Możesz utworzyć kopię zapasową twojego konta teraz lub później. - - + + End call Skończ rozmowę - + Pause call Wstrzymaj połączenie - + Resume call Wznów połączenie - + Pause video Wstrzymaj wideo - + Resume video Wznów wide - + Creating account… Tworzenie konta... - + Encrypt account with password Zaszyfruj konto przy pomocy hasła - + Create a rendezvous point Utwórz spotkanie - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Wybierz hasło do zaszyfrowania konta na tym urządzeniu. Pamiętaj że hasło nie będzie mogło zostać odzyskane. - + Choose a name for your rendezvous point Wybierz nazwę dla swojego punktu spotkania - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Jeśli twoje konto nie posiada kopii zapasowej lub nie jest obecne na innym urządzeniu, twoje konto oraz zarejestrowana nazwa zostaną bezpowrotnie utracone. - + Launch at startup Uruchamiaj przy starcie - + Enable typing indicators Włącz wskaźniki pisania - - + + Network error Błąd sieci - + SSL error Błąd SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Wprowadź PIN z urządzenia ze skonfigurowanym kontem Jami. Użyj opcji "Podłącz Kolejne Urządzenie", aby wyświetlić kod PIN. - + Link device Połącz urządzenie - + Conversations Rozmowy - + Enable Włącz - + Display or hide preferences Wyświetl lub ukryj ustawienia - + Add new plugin Dodaj nową wtyczkę - + Select a file Wybierz plik - + Select Wybierz - + Choose image file Wybierz plik obrazu - + Enter the rendezvous point's name Wprowadź nazwę punktu spotkania - + Creating rendezvous point… Tworzenie punktu spotkania... - + Create account from Jami Account Management Server (JAMS) Utwórz konto przy pomocy Jami Account Management Server (JAMS) - + Create new rendezvous point Utwórz nowy punkt spotkania - + Create a Jami account Utwórz konto Jami - + About Jami O Jami - + Decline contact request Odrzuć zaproszenie - + Accept contact request Akceptuj zaproszenie - + Automatically check for updates Automatycznie sprawdź po aktualizacje - + Ok Ok - - + + Cancel Anuluj - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts Włącz potwierdzenia odczytu - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate Wybierz certyfikat CA - + Connectivity Łączność - + Auto Registration After Expired Automatyczna rejestracja po wygaśnięciu - + Network interface Interfejs sieciowy - + Use UPnP Użyj UPnP - + Use TURN Użyj TURN - + TURN address Adres TURN - + TURN username Nazwa użytkownika TURN - + TURN password Hasło TURN - + TURN Realm Domena TURN - + Use STUN Użyj STUN - + STUN address Adres STUN - + Allow IP Auto Rewrite - + Public address Adres publiczny - + Address Adres - + Port Port - + Media Multimedia - + Enable video Włącz video - + Video Codecs Kodeki Wideo - + Audio Codecs Kodeki audio - + Name Server Serwer nazw - + SDP Session Negotiation (ICE Fallback) Negocjacja sesji SDP (użyjcie ICE w przypadku awari) - + Only used during negotiation in case ICE is not supported Używane tylko podczas negocjacji w przypadku kiedy ICE nie jest wspierane - + Audio RTP minimum Port Minimalny port RTP dźwięku - + Audio RTP maximum Port Maksymalny port RTP dźwięku - + Video RTP minimum Port Minimalny port RTP obrazu - + Video RTP maximum port Maksymalny port RTP obrazu - + Connect to other DHT nodes advertising on your local network. Połącz z innymi węzłami DHT ogłaszającymi się w twojej sieci lokalnej. - + OpenDHT Configuration Konfiguracja OpenDHT - + Enable proxy Włącz proxy - + Proxy address Adres proxy - + Bootstrap Bootstrap - + Back Wstecz - + Account Settings Ustawienia Konta - + Account Konto - - + + General Podstawowe - + Plugin Wtyczka - + Audio/Video Audio/Video - + Audio Audio - + Microphone Mikrofon - + Select audio input device Wybierz urządzenie wejściowe dźwięku - + Output device Urządzenie wyjściowe - + Select audio output device Wybierz urządzenie wyjściowe dźwięku - + Ringtone device Urządzenie dzwonka - + Select ringtone output device Wybierz urządzenie wyjściowe dla dzwonka - + Audio manager Menedżer audio - + Video Wideo - + Select video device Wybierz urządzenie obrazu - + Device Urządzenie - + Resolution Rozdzielczość - + Select video resolution Wybierz rozdzielczość obrazu - + Enable hardware acceleration Włącz przyśpieszanie sprzętowe - + Preview unavailable Podgląd niedostępny - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video brak wideo - + Backup account here Zabezpiecz swoje konto tutaj - + Backup your account! Zabezpiecz swoje konto! - + Backup account Wykonaj kopię zapasową - + Skip Pomiń - + Success Sukces - + Error Błąd - + Never show me this again Nie pokazuj mi tego ponownie - + Recommended Zalecane - + Jami archive files Archiwum Jami - + All files Wszystkie pliki - + Reinstate as contact Przywróć kontakty - + name nazwa - + Identifier Identyfikator - + is recording nagrywa - + are recording nagrywają - + Peer stopped recording - + is calling you dzwoni do ciebie - - + + Mute Wycisz - - + + Unmute Wyłącz wyciszenie - + Add participant Dodaj uczestnika - + Add participants Dodaj uczestników - + Chat Czat - + More options Więcej opcji - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Wytnij - + Paste Wklej - + Start video call Rozpocznij rozmowę wideo - + Start audio call Rozpocznij połączenie głosowe - + Clear conversation Wyczyść rozmowę - + Remove conversation Usuń rozmowę - + Remove contact Usuń kontakt - + Block contact Blokuj kontakt - + Contact details Szczegóły kontaktu - + Hold Czekanie - + Sip input panel Panel wejściowy Sip - + Transfer call Przełącz rozmowę - + Stop recording Wyłącz nagrywanie - + Start recording Rozpocznij nagrywanie - + Exit full screen Wyjdź z pełnego ekranu - + Share screen Udostępnij ekran - + Share window Udostępnij okno - + Share screen area Udostępnij obszar ekranu - + Share file Podziel się plikiem - + Select sharing method - + View plugin Pokaż wtyczki - + No video device Brak urządzenia wideo - + N/A Nie dotyczy - + Lower hand - + Raise hand Podnieś rękę - + Hide chat view Schowaj chat - + Place audio call Wykonaj połączenie głosowe - + Place video call Rozpocznij rozmowę wideo - + Show available plugins Pokaż dostępne wtyczki - + Add to conversations Dodaj do rozmowy - + Jump to latest Przewiń do końca konwersacji - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL Wprowadź adres URL Jami Account Management Server (JAMS) - + Required Wymagane - + Jami Account Management Server URL Jami Account Management Server URL - + Enter your JAMS credentials Wprowadź swoje dane logowania JAMS - + Connect Połącz - + Back to welcome page Powrót do strony powitalnej - + Choose name Wybierz nazwę - + Choose username Wybierz nazwę użytkownika - + Create account Stwórz konto - + Confirm password Potwierdź hasło - + Optional Opcjonalne - + Choose a username for your account Wybierz nazwę użytkownika dla swojego konta - + Choose a name Wybierz nazwę - + Choose your username Wybierz swoją nazwę użytkownika - + Invalid name Nieprawidłowa nazwa - + Invalid username Nieprawidłowa nazwa użytkownika - + Name already taken Nazwa została już zajęta - + Username already taken Nazwa użytkownika zajęta - + Proxy Pełnomocnik - + Server Serwer - + Create SIP account Utwórz konto SIP - + Configure an existing SIP account Konfiguruj istniejące konto SIP - + Backup successful Tworzenie kopii zapasowej zakończone powodzeniem - + Backup failed Tworzenie kopii zapasowej zakończone niepowodzeniem - + Password changed successfully Pomyślna zmiana hasła - + Password change failed Niepowodzenie zmiany hasła - + Password set successfully Pomyślnie ustalone hasło - + Password set failed Niepowodzenie ustawienia hasła - + Change password Zmień hasło - - + + Set password Ustaw hasło - + Change current password Zmień obecne hasło - + Backup account to a .gz file Zapisz kopię zapasową do pliku .gz - + Enable account Aktywuj konto - + Set username Ustaw nazwę użytkownika - + Registering name Zarejestruj nazwę - + Register a username Zarejestruj nazwę użytkownika - + Register username Zarejestruj nazwę użytkownika - + Link a new device to this account Podłącz nowe urządzenie do tego konta - + Link another device Połącz nowe urządzenie - + Exporting account… Eksportowanie konta - + Remove Device Usuń Urządzenie - + Are you sure you wish to remove this device? Czy jesteś pewny, że chcesz usunąć to urządzenie? - + Linked Devices Połączone Urządzenia - + Your PIN is: Twój kod PIN to: - + Error connecting to the network. Please try again later. Błąd podczas połączenia z siecią. Spróbuj ponownie później. - + Do you really want to delete this account? Czy jesteś pewien, że chcesz usunąć to konto? - + Save new device name Zapisz nową nazwę urządzenia - + Edit device name Edytuj nazwę urządzenia - + Unlink device from account Odłącz to urządzenie od konta - + Select a folder Wybierz folder - + Enable notifications Aktywuj powiadomienia - + Enable dark theme Aktywuj ciemny motyw - + Keep minimized on close Przechowaj zminimalizowane przy zamknięciu - + Run application on system startup Uruchamiaj aplikacje podczas startu systemu - + Downloads directory Folder pobranych plików - + Choose download directory Wybierz lokalizację dla pobranych plików - + Record call Nagraj rozmowę - + Chatview Czat - + Display hyperlink previews in the chatview Pokaż podglądy linków - + User interface language Język interfejsu użytkownika - + File transfer Transfer pliku - + Allow incoming files from unknown contacts Umożliwiaj rozmowy od nieznajomych - + Automatically accept incoming files Automatycznie akceptuj przychodzące pliki - + Accept transfer limit - + in MB, 0 = unlimited - + Register Zarejestruj - + Incorrect password Nieprawidłowe hasło - + Save file Zapisz plik - + Open location - + Install beta version Zainstaluj wersję testową - + Check for updates now Sprawdź aktualizacje teraz - + Enable/Disable automatic updates Wł/Wył automatyczne aktualizacje - + toggle automatic updates przełącz automatyczne aktualizacje - + Updates Aktualizacje - + Update Aktualizacja - + A new version of Jami was found Would you like to update now? Znaleziono nową wersję Jami Czy chcesz teraz dokonać aktualizacji? - + No new version of Jami was found Nie znaleziono nowej wersji Jami - + An error occured when checking for a new version Wystąpił błąd podczas sprawdzania dostępności nowej wersji - + Installer download canceled Pobieranie instalatora zostało anulowane - + This will uninstall your current Release version and you can always download the latest Release version on our website Ta operacja usunie obecną wersję wydania i zawsze możesz pobrać ostatnią wersję wydania ze swojej strony internetowej - + Network disconnected Rozłączenie z siecią - - + + Something went wrong Coś poszło nie tak - + Troubleshoot - + Open logs - + Get logs - + Select a record directory Wybierz lokalizację nagrań - + Debug - + Show Stats - + Start - + Stop Stop - + Generating account… Tworzenie konta - + Import from backup Importuj z kopii zapasowej - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list Wróć do listy wtyczek - + Profile is only shared with contacts Profil jest udostępniany wyłącznie kontaktom - + Enter your name Wprowadź swoją nazwę - + Import account from other device Importuj konto z innego urządzenia - + Import account from backup file Importuj konto z pliku kopii zapasowej - + Hide advanced features - + Create new Jami account Utwórz nowe konto Jami - + Create new SIP account Utwórz nowe konto SIP - + Welcome to Witaj! - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji Dodaj emoji - + Send file Wyślij plik - + Leave audio message Nagraj wiadomość głosową - + Leave video message Nagraj wiadomość wideo - + Send Wyślij - + Remove Usuń - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiuj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Wyświetl na pełnym ekranie - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Ukryj zablokowane kontakty - + Layout Układ - + Vertical view Widok pionowy - + Horizontal view Widok poziomy - + Keyboard Shortcut Table - + Conversation - + Call Dzwoń - + Settings Ustawienia - + Report Bug - + Clear Wyczyść - + Copied to clipboard! - + Receive Logs - + Archive Archiwum - + Open file Otwórz plik - + Create your account from a backup Utwórz konto z kopii zapasowej - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Archiwum można uzyskać, klikając opcję „Kopia zapasowa konta” w ustawieniach konta. Spowoduje to utworzenie pliku .gz na Twoim urządzeniu. - + Restore an account from backup Odzyskaj konto z kopii zapasowej - + Enter Jami account password Wprowadź hasło do konta Jami - + The PIN and the account password should be entered in your device within 10 minutes. Kod PIN oraz hasło do konta powinno zostać wprowadzone na twoim urządzeniu w przeciągu 10 minut. - + Close Zamknij - + Enter your account password Wprowadź hasło do twojego konta - + Add Device Dodaj urządzenie - + Enter the password Wprowadź hasło - + Enter current password Wprowadź obecne hasło - + Enter this account's password to confirm the removal of this device Wprowadź hasło do tego konta, aby potwierdzić usunięcie tego urządzenia - + Enter new password Wprowadź nowe hasło - + Confirm new password Potwierdź nowe hasło - + Change Zmień - + Confirm Potwierdź - + Export Wyeksportuj - + Choose a picture as avatar Wybierz obraz jako awatar - + Import avatar from image file Importuj awatar z pliku obrazu - + Take photo Zrób zdjęcie - + Reset Zresetuj - + Select a plugin to install Wybierz wtyczkę do zainstalowania - + Install plugin Zainstaluj wtyczkę - + Save profile Zapisz profil - + Information Informacje - + Enter the account password to confirm the removal of this device Wprowadź hasło do konta aby potwierdzić usunięcie go z tego urządzenie - + Select a screen to share Wybierz ekran do udostępniania - + Select a window to share - + All Screens Wszystkie Ekrany - + Screens - + Windows - + QR code Kod QR - + Account QR QR konta - + This is your Jami username. Copy and share it with your friends! To jest twoja nazwa użytkownika Jami. Skopiuj i podziel się nią z przyjaciółmi! - + Link this device to an existing account Połącz to urządzenie z istniejącym kontem - + Advanced features Opcje zaawansowane - + Show advanced features Pokaż opcje zaawansowane - + Connect to a JAMS server Połącz z serwerem JAMS - + Add a SIP account Dodaj konto SIP - + Error while creating your account. Check your credentials. Wystąpił błąd podczas tworzenia konta. Sprawdź swoje dane logowania - + Clear Text Wyczyść Tekst - + Search Results Wyniki wyszukiwania - + Delete Usuń - + Set moderator Zaznacz moderatora - + Unset moderator Odznacz moderatora - + Maximize Maksymalizuj - + Minimize Minimalizuj - + Hangup Odłożyć słuchawkę - + Conference moderation Moderowanie konferencji - + Default moderators Domyślni moderatorzy - + Enable local moderators Włącz lokalnych moderatorów - + Make all participants moderators Uczyń wszystkich uczestników moderatorami - + Add default moderator Dodaj domyślnego moderatora - + Remove default moderator Usuń domyślnego moderatora @@ -2345,112 +2345,112 @@ Skopiuj i podziel się nią z przyjaciółmi! KeyboardShortcutTable - + Open account list Otwórz listę kont - + Focus conversations list Lista rozmów - + Requests list Lista zaproszeń - + Previous conversation Poprzednia konwersacja - + Next conversation Następna konwersacja - + Search bar Pasek wyszukiwania - + Full screen Pełny ekran - + Start an audio call Rozpocznij połączenie głosowe - + Start a video call Rozpocznij rozmowę wideo - + Clear history Wyczyść historię - + Block contact Blokuj kontakt - + Remove conversation Usuń rozmowę - + Accept contact request Akceptuj zaproszenie - + Media settings Ustawienia multimediów - + General settings Ogólne ustawienia - + Account settings Ustawienia konta - + Plugin settings - + Open account creation wizard Otwórz kreator tworzenia konta - + Open keyboard shortcut table - + Answer an incoming call Odbierz połączenie przychodzące - + End call Skończ rozmowę - + Decline the call request Odrzuć połączenie przychodzące @@ -2458,17 +2458,17 @@ Skopiuj i podziel się nią z przyjaciółmi! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2476,12 +2476,12 @@ Skopiuj i podziel się nią z przyjaciółmi! PhotoboothView - + Image Files Pliki graficzne - + All files Wszystkie pliki @@ -2489,7 +2489,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginHandlerItemDelegate - + On/Off Wł/Wył @@ -2497,12 +2497,12 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginHandlerPicker - + Choose plugin Wybierz wtyczkę - + Preferences Preferencje @@ -2510,7 +2510,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginItemDelegate - + Load/Unload Włączenie/Wyłączenie @@ -2518,27 +2518,27 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginListPreferencesView - + Uninstall plugin Odinstaluj wtyczkę - + Reset preferences Zresetuj ustawienia - + Ok Ok - + Cancel Anuluj - + Uninstall Odinstaluj @@ -2546,17 +2546,17 @@ Skopiuj i podziel się nią z przyjaciółmi! PluginListSettingsView - + Plugin Files Pliki wtyczki - + All files Wszystkie pliki - + Installed plugins Zainstalowane wtyczki @@ -2564,7 +2564,7 @@ Skopiuj i podziel się nią z przyjaciółmi! PreferenceItemDelegate - + Edit preference Edytuj ustawnienia @@ -2572,107 +2572,107 @@ Skopiuj i podziel się nią z przyjaciółmi! QObject - + Created by: Stworzone przez: - + Artwork by: Obrazki przez: - + Based on the SFLPhone project Na podstawie projektu SFLPhone - + Sending Wysyłanie - + Failure Nie powiodło się - + Sent - + Connecting Łączenie - + Accept Akceptuj - + Canceled Anulowano - + Unable to make contact Nie udało się nawiązać kontaktu - + Ongoing W trakcie - + Waiting for contact Czekanie na kontakt - + Incoming transfer Przychodzący transfer - + Timed out waiting for contact Przekroczono czas czekając na kontakt - + Finished Zakończono - + %1 days ago - + one day ago jeden dzień temu - + %1 hours ago - + one hour ago jedną godzinę temu - + %1 minutes ago - + just now teraz @@ -2680,22 +2680,22 @@ Skopiuj i podziel się nią z przyjaciółmi! RecordingSettings - + Call Recording Nagrywanie rozmowy - + Always record calls Zawsze nagrywaj rozmowy - + Quality Jakość - + Save in Zapisz w @@ -2703,7 +2703,7 @@ Skopiuj i podziel się nią z przyjaciółmi! RevokeDevicePasswordDialog - + Remove Usuń @@ -2711,7 +2711,7 @@ Skopiuj i podziel się nią z przyjaciółmi! SelectScreen - + Screen Ekran @@ -2719,7 +2719,7 @@ Skopiuj i podziel się nią z przyjaciółmi! SettingParaCombobox - + @@ -2727,22 +2727,22 @@ Skopiuj i podziel się nią z przyjaciółmi! SmartListModel - - - - - - + + + + + + Calls Rozmowy - - - - - - + + + + + + Contacts Kontakty @@ -2750,17 +2750,17 @@ Skopiuj i podziel się nią z przyjaciółmi! SystemSettings - + System System - + Enable dark theme Aktywuj ciemny motyw - + Enable desktop notifications Pokaż powiadomienia @@ -2768,27 +2768,27 @@ Skopiuj i podziel się nią z przyjaciółmi! SystemTray - + Answer Odbierz - + Decline Odrzuć - + Open conversation Otwórz rozmowę - + Accept Akceptuj - + Refuse Odmów @@ -2796,7 +2796,7 @@ Skopiuj i podziel się nią z przyjaciółmi! UserIdentity - + Identity Tożsamość @@ -2804,17 +2804,17 @@ Skopiuj i podziel się nią z przyjaciółmi! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Domyślne - + System System diff --git a/translations/ring_client_windows_pt.ts b/translations/ring_client_windows_pt.ts index a22077f1..f4ac249d 100644 --- a/translations/ring_client_windows_pt.ts +++ b/translations/ring_client_windows_pt.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Adicionar Conta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Arquivos de Áudio - + All files Todos os arquivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Ficheiro do Certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Ficheiro do Certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configurações avançadas de conta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos Banidos @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chamada perdida - + Missed call with %1 - + me eu - + Incoming call Chamada recebida - + %1 is calling you %1 está chamando - + is calling you está chamando você @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Adicionar à conferência - + Transfer this call Transferir esta chamada - + Add default moderator Adicionar moderador padrão @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nova mensagem - + Trust request Confiar no pedido @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Sucesso - - + + Error Erro - + Jami archive files Arquivos Jami - + All files Todos os arquivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Ok OK @@ -211,7 +211,7 @@ Jami será finalizado agora. DeviceItemDelegate - + Device Id ID do dispositivo @@ -219,2130 +219,2130 @@ Jami será finalizado agora. JamiStrings - + Find a user or search for a conversation Encontre um usuário ou procure por uma conversa - + Search your invitations Pesquise seus convites - + Invitations Convites - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Version Versão - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Credits Créditos - + Display QR code Mostrar o código QR - + Open settings Abrir configurações - + Close settings Fechar configurações - + Authentication required Autenticação requerida - + Your session has expired or been revoked on this device. Please enter your password. Sua sessão expirou ou foi revogada neste dispositivo. Por favor, digite sua senha. - + JAMS server Servidor de JAMS - + Authenticate Autenticado - + Delete account Eliminar conta - + Authentication failed autenticação falhou - + Password Palavra-chave - + Username Nome de utilizador - + Alias Apelido - + Call Settings Configurações de chamadas - + Allow incoming calls from unknown contacts Permitir chamadas de contatos desconhecidos - + In progress… Em progresso... - + Accept Aceitar - + Refuse Recusar - + Incoming audio call from {} Recebendo chamada de áudio de {} - + Incoming video call from {} Recebendo chamada de vídeo de {} - + Convert your account into a rendezvous point Converta sua conta num ponto de encontro - + Automatically answer calls Atender chamadas automaticamente - + Enable custom ringtone Ativar o toque personalizado - + Select custom ringtone Selecione um toque personalizado - + Add a custom ringtone Adicionar um toque de chamada personalizado - + Select a new ringtone Selecione um novo toque - + Voicemail Correio de voz - + Voicemail dial code Código de discagem de voicemail - + Security Segurança - + Encrypt media streams (SRTP) Encriptar fluxo de média (SRTP) - + Enable SDES key exchange Ativar o intercâmbio de chaves SDES - + Allow fallback on RTP Permitir a solução de reserva no RTP - + Encrypt negotiation (TLS) Encriptar negociação (TLS) - + CA certificate Certificado de CA - + User certificate Certificado de utilizador - + Private key Chave privada - + Private key password Palavra-chave de chave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexões TLS recebidas - + Verify server TLS certificates Verificar os certificados TLS do servidor - + Require certificate for incoming TLS connections Exigir certificado para conexões TLS recebidas - + TLS protocol method Método de protocolo TLS - + Audio input device selector Seletor de dispositivo de entrada de áudio - + TLS server name Nome do servidor TLS - + Negotiation timeout (seconds) Tempo de espera de negociação (seg) - + Select a private key Selecione uma chave privada - + Select a user certificate Selecione um certificado de usuário - + Registration expiration time (seconds) Tempo de expiração de registro (segundos) - + Use custom address and port Usar endereço e porta personalizados - + Enable local peer discovery Ativar descoberta local de pares - + Audio and Video Settings Configurações de áudio e vídeo - + Frames per second Quadros por segundo - + Select video frame rate (frames per second) Selecione a taxa de quadros de vídeo (quadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Sua conta existe apenas neste dispositivo. Se você perder seu dispositivo ou desinstalar a aplicação, sua conta será deletada e não pode ser recuperada. Você pode fazer uma cópia da sua conta agora ou depois. - - + + End call Terminar chamada - + Pause call Pausar ligação - + Resume call Retornar chamada - + Pause video Pausar vídeo - + Resume video Retornar vídeo - + Creating account… Criando a conta... - + Encrypt account with password Criptografar conta com senha - + Create a rendezvous point Criar um ponto de encontro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Escolha uma senha para criptografar sua conta neste dispositivo. Observe que a senha não pode ser recuperada. - + Choose a name for your rendezvous point Escolha um nome para seu ponto de encontro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Se sua conta não foi copiada ou adicionada em outro dispositivo, sua conta e nome registrado será irrevogavelmente perdida. - + Launch at startup Abrir ao iniciar - + Enable typing indicators Habilitar indicadores de digitação - - + + Network error Erro de rede - + SSL error Erro de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Digite o PIN de outra conta de Jami configurada. Use a opção "Ligar Outro Dispositivo" para obter um PIN. - + Link device Associar dispositivo - + Conversations Conversas - + Enable Ativar - + Display or hide preferences Exibir ou ocultar as preferências - + Add new plugin Adicionar novo complemento - + Select a file Selecione um arquivo - + Select Selecionar - + Choose image file Escolha o arquivo de imagem - + Enter the rendezvous point's name Digite o nome do ponto de encontro - + Creating rendezvous point… Criando o ponto de encontro... - + Create account from Jami Account Management Server (JAMS) Criar a conta do Servidor de Gestão de Conta de Jami (JAMS) - + Create new rendezvous point Criando o novo ponto de encontro... - + Create a Jami account Criar uma conta Jami - + About Jami Sobre o Jami - + Decline contact request Recusar o pedido de contato - + Accept contact request Aceitar o pedido de contato - + Automatically check for updates Verificar automaticamente se há atualizações - + Ok OK - - + + Cancel Cancelar - + Accept in audio Aceitar em áudio - + Accept in video Aceitar em vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Você está vendo uma conversação onde todos os participantes, menos você, já saíram. Novas interações não serão possíveis. - + Start new conversation Iniciar uma nova conversação - + Chat Settings Configurações de chat - + Enable read receipts Ativar verificação de leitura - + Send and receive receipts indicating that a message have been displayed Enviar e receber confirmações indicando que uma mensagem foi mostrada - + Select a CA certificate Selecione um certificado CA - + Connectivity Conectividade - + Auto Registration After Expired Registro automático após expirado - + Network interface Interface de rede - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Endereço TURN - + TURN username Nome de utilizador TURN - + TURN password Palavra-chave TURN - + TURN Realm ATIVAR o Realm - + Use STUN Usar STUN - + STUN address Endereço STUN - + Allow IP Auto Rewrite Permitir reescrita automática do IP - + Public address Endereço público - + Address Endereço - + Port Porta - + Media Média - + Enable video Ativar vídeo - + Video Codecs Codecs de vídeo - + Audio Codecs Codecs de áudio - + Name Server Nome do servidor - + SDP Session Negotiation (ICE Fallback) Negociação de Sessão SDP (caso falhe o ICE) - + Only used during negotiation in case ICE is not supported Utilizado somente durante a negociação quando o ICE não é suportado - + Audio RTP minimum Port Porta mínima no RTP de áudio - + Audio RTP maximum Port Porta máxima no RTP de áudio - + Video RTP minimum Port Porta mínima no RTP de vídeo - + Video RTP maximum port Porta máxima no RTP de vídeo - + Connect to other DHT nodes advertising on your local network. Conectar ao outros nós de DHT disponíveis na sua rede local. - + OpenDHT Configuration Configuração OpenDHT - + Enable proxy Ativar proxy - + Proxy address Endereço do proxy - + Bootstrap Inicialização - + Back Voltar - + Account Settings Configurações da Conta - + Account Conta - - + + General Geral - + Plugin Plugin - + Audio/Video Áudio/Vídeo - + Audio Áudio - + Microphone Microfone - + Select audio input device Selecione o dispositivo de entrada de áudio - + Output device Dispositivo de saída - + Select audio output device Selecione o dispositivo de saída de áudio - + Ringtone device Tons de toque do dispositivo - + Select ringtone output device Selecione o dispositivo de saída do toque de chamada - + Audio manager Gerenciador de áudio - + Video Vídeo - + Select video device Selecione o dispositivo de vídeo - + Device Dispositivo - + Resolution Resolução - + Select video resolution Selecione a resolução de vídeo - + Enable hardware acceleration Ativar aceleração de hardware - + Preview unavailable Pré-visualização não disponível - + Screen Sharing Compartilhamento de tela - + Select screen sharing frame rate (frames per second) Selecionar a taxa de quadros no compartilhamento de tela (quadros por segundo) - + no video nenhum vídeo - + Backup account here Conta de backup aqui - + Backup your account! Faça um backup da sua conta! - + Backup account Conta de cópia de segurança - + Skip Ignorar - + Success Sucesso - + Error Erro - + Never show me this again Não voltar a mostrar - + Recommended Recomendado - + Jami archive files Arquivos Jami - + All files Todos os arquivos - + Reinstate as contact Reintegrar como contato - + name nome - + Identifier Identificador - + is recording Está gravando - + are recording Estão gravando - + Peer stopped recording Par parou de gravar - + is calling you está chamando você - - + + Mute Mudo - - + + Unmute Não silenciar - + Add participant Adicionar participante - + Add participants Adicionar participantes - + Chat Conversa - + More options Mais opções - + Mosaic Mosaico - + You are still muted by moderator Você ainda está com o microfone desligado pelo moderador - + You are muted by a moderator Você está com o microfone desligado por um moderador - + Moderator Moderador - + Host Servidor - + Local and Moderator muted Seu microfone está desligado localmente e também pelo moderador - + Moderator muted Seu microfone está desligado pelo moderador - + Not muted Seu microfone não está desligado - + Cut Recortar - + Paste Colar - + Start video call Começar chamada de vídeo - + Start audio call Começar chamada de áudio - + Clear conversation Limpar conversação - + Remove conversation Remover conversação - + Remove contact Remover contacto - + Block contact Bloquear contacto - + Contact details Detalhes do contacto - + Hold Modo de espera - + Sip input panel Painel de entrada de Sip - + Transfer call Transferir chamada - + Stop recording Parar de gravar - + Start recording Iniciar a gravação - + Exit full screen Sair do ecrã inteiro - + Share screen Partilhar ecrã - + Share window Partilhar janela - + Share screen area Partilhar área do ecrã - + Share file Partilhar ficheiro - + Select sharing method Selecionar o método de compartilhamento - + View plugin Ver os complementos - + No video device Nenhum dispositivo de vídeo - + N/A N/A - + Lower hand Abaixar a mão - + Raise hand Levantar a mão - + Hide chat view Ocultar visualização da conversa - + Place audio call Fazer chamada de áudio - + Place video call Fazer video-chamada - + Show available plugins Mostrar extensões disponíveis - + Add to conversations Adicionar às conversas - + Jump to latest Ir para o fim da conversa - + {} is typing… {} está escrevendo... - + {} are typing… {} estão escrevendo... - + Several people are typing… Várias pessoas estão escrevendo... - + and e - + Enter Jami Account Management Server (JAMS) URL Digite a URL de Servidor de Gerenciamento de Contas do Jami (JAMS) - + Required Requerido - + Jami Account Management Server URL URL do servidor de gestão de conta de Jami - + Enter your JAMS credentials Digite suas credenciais de JAMS - + Connect Ligar - + Back to welcome page Voltar à página de início - + Choose name Escolha um nome - + Choose username Escolha um nome de usuário - + Create account Criar conta - + Confirm password Confirmar palavra-chave - + Optional Opcional - + Choose a username for your account Escolha nome de usuário para sua conta - + Choose a name Escolha um nome - + Choose your username Escolha o seu nome de utilizador - + Invalid name Nome inválido - + Invalid username O nome de utilizador não é válido - + Name already taken O nome já existe - + Username already taken O nome de utilizador já está registado - + Proxy Proxy - + Server Servidor - + Create SIP account Criar uma conta SIP - + Configure an existing SIP account Configurar uma conta existente de SIP - + Backup successful Backup bem-sucedido - + Backup failed Falha na criação de cópia de segurança - + Password changed successfully A senha alterada com sucesso - + Password change failed Não foi possível alterar a senha - + Password set successfully A senha definida com sucesso - + Password set failed Não foi possível definir a senha - + Change password Alterar palavra-chave - - + + Set password Definir palavra-chave - + Change current password Alterar a senha atual - + Backup account to a .gz file Backup a conta para um arquivo .gz - + Enable account Ativar conta - + Set username Definir um nome de usuário - + Registering name Registro de nome - + Register a username Registar um nome de utilizador - + Register username Registar nome de utilizador - + Link a new device to this account Vincular um novo dispositivo a esta conta - + Link another device Associar outro dispositivo - + Exporting account… A exportar conta... - + Remove Device Remover dispositivo - + Are you sure you wish to remove this device? Tem a certeza que quer remover este dispositivo? - + Linked Devices Dispositivos associados - + Your PIN is: Seu PIN é: - + Error connecting to the network. Please try again later. Erro de conexão na rede. Por favor, tente novamente mais tarde. - + Do you really want to delete this account? Você realmente quer excluir esta conta? - + Save new device name Guardar o novo nome do dispositivo - + Edit device name Editar o nome do dispositivo - + Unlink device from account Desvincular o dispositivo de conta - + Select a folder Selecione uma pasta - + Enable notifications Ativar notificações - + Enable dark theme Ativar tema escuro - + Keep minimized on close Manter minimizado ao fechar - + Run application on system startup Abrir aplicativo durante inicialização do sistema - + Downloads directory Pasta de transferências - + Choose download directory Escolha a pasta de Downloads - + Record call Gravar chamada - + Chatview Conversar - + Display hyperlink previews in the chatview Mostrar pré-visualizações de ligações - + User interface language Idioma da interface do utilizador - + File transfer Transferência de ficheiro - + Allow incoming files from unknown contacts Permitir o recebimento de arquivos de contatos desconhecidos - + Automatically accept incoming files Aceitar automaticamente os novos arquivos - + Accept transfer limit Aceitar o limite de transferência - + in MB, 0 = unlimited em MB, 0 = ilimitado - + Register Registar - + Incorrect password Palavra-chave incorreta - + Save file Gravar ficheiro - + Open location Abrir o local - + Install beta version Instalar a versão beta - + Check for updates now Verificar se existem atualizações - + Enable/Disable automatic updates Desativar/Ativar a atualização automática - + toggle automatic updates alternar a atualização automática - + Updates Atualizações - + Update Atualização - + A new version of Jami was found Would you like to update now? Uma nova versão de Jami foi encontrada Gostaria de atualizar agora? - + No new version of Jami was found Você está usando a versão mais recente de Jami - + An error occured when checking for a new version Ocorreu um erro ao verificar por uma nova versão - + Installer download canceled Download do instalador cancelado - + This will uninstall your current Release version and you can always download the latest Release version on our website Isto irá desinstalar sua versão atual porém você sempre poderá baixar a última versão em nosso site - + Network disconnected Rede desconectada - - + + Something went wrong Algo correu mal - + Troubleshoot Resolução de problemas - + Open logs Abrir logs - + Get logs Obter logs - + Select a record directory Selecione um pasta para registros - + Debug Debug - + Show Stats Mostrar estatísticas - + Start Iniciar - + Stop Parar - + Generating account… Criando a conta... - + Import from backup Importar cópia de segurança - + PIN PIN - + Stop taking photo Parar de fotografar - + Clear avatar image Remover a imagem de avatar - + Go back to plugins list Voltar à lista de complementos - + Profile is only shared with contacts O perfil só é compartilhado com contatos - + Enter your name Digite seu nome - + Import account from other device Importar a conta de outro dispositivo - + Import account from backup file Importar a conta do arquivo de backup - + Hide advanced features Esconder os recursos avançados - + Create new Jami account Criar uma nova conta de Jami - + Create new SIP account Criar uma nova conta de SIP - + Welcome to Bem-vindo(a) à - + Upgrade Atualizar - + Later Mais tarde - + Local muted Seu microfone está desligado localmente - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Is swarm: É swarm: - + True Verdadeiro - + False Falso - + Add emoji Adicionar emoji - + Send file Enviar ficheiro - + Leave audio message Deixe uma mensagem de áudio - + Leave video message Deixe uma mensagem de vídeo - + Send Enviar - + Remove Remover - + Write to %1 Escrever para %1 - + %1 has sent you a request for a conversation. %1 te enviou um pedido para uma conversação. - + Hello, Would you like to join the conversation? Olá, Você gostaria de entrar na conversação? - + You have accepted the conversation request Você aceitou o pedido de conversação - + Waiting until %1 connects to synchronize the conversation. Aguardando até %1 conectar para sincronizar a conversação. - - + + Copy Copiar - + Participant is still muted on their device O participante ainda está com o microfone desligado, pelo equipamento dele. - + You are still muted on your device Você ainda está com o seu microfone desligado em seu dispositivo - + View full screen Ver ecrã inteiro - + Stop sharing screen or file Parar o compartilhamento de tela ou de arquivo - + Display advanced settings Exibir as configurações avançadas - + Hide advanced settings Ocultar as configurações avançadas - + Display banned contacts Exibir os contatos bloqueados - + Hide banned contacts Esconder contactos banidos - + Layout Esquema - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table - + Conversation - + Call Chamar - + Settings Configurações - + Report Bug Report falha (bug) - + Clear Limpar - + Copied to clipboard! Copiado para a área de transferência - + Receive Logs Receber logs - + Archive Arquivo - + Open file Abrir ficheiro - + Create your account from a backup Criar sua conta de um backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Você pode obter um arquivo clicando no "Backup de conta" em configurações de conta. Isto criará um arquivo .gz em seu dispositivo. - + Restore an account from backup Restaurar uma conta de um backup - + Enter Jami account password Digite a senha da conta de Jami - + The PIN and the account password should be entered in your device within 10 minutes. O PIN e a senha da conta devem ser digitados no seu dispositivo dentro de 10 minutos. - + Close Fechar - + Enter your account password Introduza a palavra-chave da sua conta - + Add Device Adicionar Dispositivo - + Enter the password Digite a senha - + Enter current password Digite a senha atual - + Enter this account's password to confirm the removal of this device Introduza a palavra-chave desta conta para confirmar a remoção deste dispositivo - + Enter new password Digite a nova senha - + Confirm new password Confirmar nova senha - + Change Mudar - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Escolha uma foto como avatar - + Import avatar from image file Importar avatar do arquivo de imagem - + Take photo Tirar fotografia - + Reset Resetar - + Select a plugin to install Selecione um complemento para instalar - + Install plugin Instalar plugin - + Save profile Salvar perfil - + Information Informação - + Enter the account password to confirm the removal of this device Digite a senha de conta para confirmar a remoção deste dispositivo - + Select a screen to share Selecione uma tela para compartilhar - + Select a window to share - + All Screens Todas as telas - + Screens Telas - + Windows Janelas - + QR code Código QR - + Account QR Conta QR - + This is your Jami username. Copy and share it with your friends! Este é o seu nome de utilizador no Jami. Copie e o partilhe-o com os seus amigos! - + Link this device to an existing account Associar este dispositivo a uma conta existente - + Advanced features Recursos avançados - + Show advanced features Mostrar os recursos avançados - + Connect to a JAMS server Conectar a um servidor JAMS - + Add a SIP account Adicionar uma conta SIP - + Error while creating your account. Check your credentials. Erro ao criar sua conta. Verifique suas credenciais. - + Clear Text Limpar texto - + Search Results Resultados da Pesquisa - + Delete Eliminar - + Set moderator Definir moderador - + Unset moderator Moderador não definido - + Maximize Maximizar - + Minimize Minimizar - + Hangup Desligar - + Conference moderation Moderação de conferência - + Default moderators Moderadores padrão - + Enable local moderators Ativar moderadores locais - + Make all participants moderators Torne todos os participantes moderadores - + Add default moderator Adicionar moderador padrão - + Remove default moderator Remover moderador padrão @@ -2350,112 +2350,112 @@ Copie e o partilhe-o com os seus amigos! KeyboardShortcutTable - + Open account list Abrir lista de contas - + Focus conversations list Foco na lista de conversas - + Requests list Lista de pedidos - + Previous conversation Conversa anterior - + Next conversation Próxima conversa - + Search bar Barra de pesquisa - + Full screen Ecrã inteiro - + Start an audio call Iniciar uma chamada de áudio - + Start a video call Iniciar uma chamada de vídeo - + Clear history Limpar histórico - + Block contact Bloquear contacto - + Remove conversation Remover conversação - + Accept contact request Aceitar o pedido de contato - + Media settings Configurações de mídia - + General settings Configurações gerais - + Account settings Configurações da conta - + Plugin settings - + Open account creation wizard Abrir o assistente de criação de conta - + Open keyboard shortcut table - + Answer an incoming call Responder a uma chamada recebida - + End call Terminar chamada - + Decline the call request Declinar o pedido de chamada @@ -2463,17 +2463,17 @@ Copie e o partilhe-o com os seus amigos! MainApplication - + E&xit Sai&r - + &Quit Sai&r - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copie e o partilhe-o com os seus amigos! PhotoboothView - + Image Files Arquivos de Imagens - + All files Todos os arquivos @@ -2494,7 +2494,7 @@ Copie e o partilhe-o com os seus amigos! PluginHandlerItemDelegate - + On/Off Ativar/Desativar @@ -2502,12 +2502,12 @@ Copie e o partilhe-o com os seus amigos! PluginHandlerPicker - + Choose plugin Escolha o Complemento - + Preferences Preferências @@ -2515,7 +2515,7 @@ Copie e o partilhe-o com os seus amigos! PluginItemDelegate - + Load/Unload Carregar/Descarregar @@ -2523,27 +2523,27 @@ Copie e o partilhe-o com os seus amigos! PluginListPreferencesView - + Uninstall plugin Desinstalar o complemento - + Reset preferences Redefinir as preferências - + Ok OK - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copie e o partilhe-o com os seus amigos! PluginListSettingsView - + Plugin Files Arquivos de Complementos - + All files Todos os arquivos - + Installed plugins Complemento instalados @@ -2569,7 +2569,7 @@ Copie e o partilhe-o com os seus amigos! PreferenceItemDelegate - + Edit preference Editar as preferências @@ -2577,107 +2577,107 @@ Copie e o partilhe-o com os seus amigos! QObject - + Created by: Criado por: - + Artwork by: Arte por: - + Based on the SFLPhone project Baseado no projeto SFLPhone - + Sending A enviar - + Failure Falha - + Sent Enviado - + Connecting A conectar - + Accept Aceitar - + Canceled Cancelada - + Unable to make contact Não é possível fazer contato - + Ongoing Em andamento - + Waiting for contact Aguardando pelo contato - + Incoming transfer Recebendo transferência - + Timed out waiting for contact O tempo de aguardo pelo contato chegou ao fim - + Finished Terminado - + %1 days ago %1 dias atrás - + one day ago há um dia - + %1 hours ago %1 horas atrás - + one hour ago há uma hora - + %1 minutes ago %1 minutos atrás - + just now agora mesmo @@ -2685,22 +2685,22 @@ Copie e o partilhe-o com os seus amigos! RecordingSettings - + Call Recording Gravação de Chamadas - + Always record calls Sempre gravar as chamadas - + Quality Qualidade - + Save in Gravar em @@ -2708,7 +2708,7 @@ Copie e o partilhe-o com os seus amigos! RevokeDevicePasswordDialog - + Remove Remover @@ -2716,7 +2716,7 @@ Copie e o partilhe-o com os seus amigos! SelectScreen - + Screen Tela @@ -2724,7 +2724,7 @@ Copie e o partilhe-o com os seus amigos! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copie e o partilhe-o com os seus amigos! SmartListModel - - - - - - + + + + + + Calls Chamadas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copie e o partilhe-o com os seus amigos! SystemSettings - + System Sistema - + Enable dark theme Ativar tema escuro - + Enable desktop notifications Mostrar notificações @@ -2773,27 +2773,27 @@ Copie e o partilhe-o com os seus amigos! SystemTray - + Answer Resposta - + Decline Rejeitar - + Open conversation Abrir conversação - + Accept Aceitar - + Refuse Recusar @@ -2801,7 +2801,7 @@ Copie e o partilhe-o com os seus amigos! UserIdentity - + Identity Identificação @@ -2809,17 +2809,17 @@ Copie e o partilhe-o com os seus amigos! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Predefinição - + System Sistema diff --git a/translations/ring_client_windows_pt_BR.ts b/translations/ring_client_windows_pt_BR.ts index 9a700357..de2deffb 100644 --- a/translations/ring_client_windows_pt_BR.ts +++ b/translations/ring_client_windows_pt_BR.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Adicionar Conta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Arquivos de Áudio - + All files Todos os arquivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Arquivo de certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Arquivo de certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configurações avançadas de conta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contatos Banidos @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chamada perdida - + Missed call with %1 - + me eu - + Incoming call Chamada recebida - + %1 is calling you %1 está chamando - + is calling you está chamando você @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Adicionar a conferência - + Transfer this call Transferir esta chamada - + Add default moderator Adicionar moderador padrão @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nova mensagem - + Trust request Confiar na requisição @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success Sucesso - - + + Error Erro - + Jami archive files Arquivos Jami - + All files Todos os arquivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Ok Ok @@ -211,7 +211,7 @@ Jami será finalizado agora. DeviceItemDelegate - + Device Id Id do Dispositivo @@ -219,2130 +219,2130 @@ Jami será finalizado agora. JamiStrings - + Find a user or search for a conversation Encontre um usuário ou procure por uma conversa - + Search your invitations Pesquise seus convites - + Invitations Convites - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Version Versão - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Credits Créditos - + Display QR code Mostrar o código QR - + Open settings Abrir configurações - + Close settings Fechar configurações - + Authentication required Autenticação requerida - + Your session has expired or been revoked on this device. Please enter your password. Sua sessão expirou ou foi revogada neste dispositivo. Por favor, digite sua senha. - + JAMS server Servidor de JAMS - + Authenticate Autenticado - + Delete account Deletar conta - + Authentication failed Falha na autenticação - + Password Senha - + Username Nome de usuário - + Alias Apelido - + Call Settings Configurações de Chamada - + Allow incoming calls from unknown contacts Permitir chamadas de contatos desconhecidos - + In progress… Em progresso... - + Accept Aceitar - + Refuse Recusar - + Incoming audio call from {} Recebendo chamada de áudio de {} - + Incoming video call from {} Recebendo chamada de vídeo de {} - + Convert your account into a rendezvous point Converta sua conta num ponto de encontro - + Automatically answer calls Atender chamadas automaticamente - + Enable custom ringtone Ativar o toque personalizado - + Select custom ringtone Selecione um toque personalizado - + Add a custom ringtone Adicionar um toque personalizado - + Select a new ringtone Selecione um novo toque - + Voicemail Correio de voz - + Voicemail dial code Código de discagem de voicemail - + Security Segurança - + Encrypt media streams (SRTP) Encriptar fluxo de mídia (SRTP) - + Enable SDES key exchange Ativar o intercâmbio de chaves SDES - + Allow fallback on RTP Permitir a solução de reserva no RTP - + Encrypt negotiation (TLS) Negociação de encriptação(TLS) - + CA certificate Certificado de CA - + User certificate Certificado de usuário - + Private key Chave privada - + Private key password Senha de chave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexões TLS recebidas - + Verify server TLS certificates Verificar os certificados TLS do servidor - + Require certificate for incoming TLS connections Exigir certificado para conexões TLS recebidas - + TLS protocol method Método de Protocolo TLS - + Audio input device selector Seletor de dispositivo de entrada de áudio - + TLS server name Nome do servidor TLS - + Negotiation timeout (seconds) Tempo de espera de negociação (seg) - + Select a private key Selecione uma chave privada - + Select a user certificate Selecione um certificado de usuário - + Registration expiration time (seconds) Tempo de expiração de registro (segundos) - + Use custom address and port Use endereço e porta personalizados - + Enable local peer discovery Ativar descoberta local de pares - + Audio and Video Settings Configurações de áudio e vídeo - + Frames per second Quadros por segundo - + Select video frame rate (frames per second) Selecione a taxa de quadros de vídeo (quadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Sua conta existe apenas neste dispositivo. Se você perder seu dispositivo ou desinstalar a aplicação, sua conta será deletada e não pode ser recuperada. Você pode fazer uma cópia da sua conta agora ou depois. - - + + End call Finalizar chamada - + Pause call Pausar ligação - + Resume call Retornar chamada - + Pause video Pausar vídeo - + Resume video Retornar vídeo - + Creating account… Criando a conta... - + Encrypt account with password Criptografar conta com senha - + Create a rendezvous point Criar um ponto de encontro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Escolha uma senha para criptografar sua conta neste dispositivo. Observe que a senha não pode ser recuperada. - + Choose a name for your rendezvous point Escolha um nome para seu ponto de encontro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Se sua conta não foi copiada ou adicionada em outro dispositivo, sua conta e nome registrado será irrevogavelmente perdida. - + Launch at startup Abrir ao iniciar - + Enable typing indicators Habilitar indicadores de digitação - - + + Network error Erro de rede - + SSL error Erro de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Digite o PIN de outra conta de Jami configurada. Use a opção "Ligar Outro Dispositivo" para obter um PIN. - + Link device Associar dispositivo - + Conversations Conversas - + Enable Habilitar - + Display or hide preferences Exibir ou ocultar as preferências - + Add new plugin Adicionar novo complemento - + Select a file Selecione um arquivo - + Select Selecionar - + Choose image file Escolha o arquivo de imagem - + Enter the rendezvous point's name Digite o nome do ponto de encontro - + Creating rendezvous point… Criando o ponto de encontro... - + Create account from Jami Account Management Server (JAMS) Criar a conta do Servidor de Gestão de Conta de Jami (JAMS) - + Create new rendezvous point Criando o novo ponto de encontro... - + Create a Jami account Criar uma conta no Jami - + About Jami Sobre Jami - + Decline contact request Recusar o pedido de contato - + Accept contact request Aceitar o pedido de contato - + Automatically check for updates Verificar automaticamente se há atualizações - + Ok Ok - - + + Cancel Cancelar - + Accept in audio Aceitar em áudio - + Accept in video Aceitar em vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Você está vendo uma conversação onde todos os participantes, menos você, já saíram. Novas interações não serão possíveis. - + Start new conversation Iniciar uma nova conversação - + Chat Settings Configurações de chat - + Enable read receipts Ativar verificação de leitura - + Send and receive receipts indicating that a message have been displayed Enviar e receber confirmações indicando que uma mensagem foi mostrada - + Select a CA certificate Selecione um certificado CA - + Connectivity Conectividade - + Auto Registration After Expired Registro automático após expirado - + Network interface Interface de Rede - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Endereço TURN - + TURN username Nome de usuário TURN - + TURN password Senha TURN - + TURN Realm ATIVAR o Realm - + Use STUN Usar STUN - + STUN address Endereço STUN - + Allow IP Auto Rewrite Permitir reescrita automática do IP - + Public address Endereço público - + Address Endereço - + Port Porta - + Media Mídia - + Enable video Habilitar vídeo - + Video Codecs Codecs de Vídeo - + Audio Codecs Codecs de Áudio - + Name Server Servidor de Nome - + SDP Session Negotiation (ICE Fallback) Negociação de sessão SDP ( ICE Fallback) - + Only used during negotiation in case ICE is not supported Utilizado somente durante a negociação quando o ICE não é suportado - + Audio RTP minimum Port Porta mínima no RTP de áudio - + Audio RTP maximum Port Porta máxima no RTP de áudio - + Video RTP minimum Port Porta mínima no RTP de vídeo - + Video RTP maximum port Porta máxima no RTP de vídeo - + Connect to other DHT nodes advertising on your local network. Conectar ao outros nós de DHT disponíveis na sua rede local. - + OpenDHT Configuration Configuração OpenDHT - + Enable proxy Habilitar proxy - + Proxy address Endereço do proxy - + Bootstrap Inicialização - + Back Voltar - + Account Settings Configurações da Conta - + Account Conta - - + + General Geral - + Plugin Plugin - + Audio/Video Áudio/Vídeo - + Audio Áudio - + Microphone Microfone - + Select audio input device Selecione o dispositivo de entrada de áudio - + Output device Dispositivo de saída - + Select audio output device Selecione o dispositivo de saída de áudio - + Ringtone device Tons de toque do dispositivo - + Select ringtone output device Selecione o dispositivo de saída do toque de chamada - + Audio manager Gerenciador de áudio - + Video Vídeo - + Select video device Selecione o dispositivo de vídeo - + Device Dispositivo - + Resolution Resolução - + Select video resolution Selecione a resolução de vídeo - + Enable hardware acceleration Ativar aceleração de hardware - + Preview unavailable Pré-visualização indisponível - + Screen Sharing Compartilhamento de tela - + Select screen sharing frame rate (frames per second) Selecionar a taxa de quadros no compartilhamento de tela (quadros por segundo) - + no video sem vídeo - + Backup account here Conta de backup aqui - + Backup your account! Faça um backup da sua conta! - + Backup account Cópia de segurança da conta - + Skip Pular - + Success Sucesso - + Error Erro - + Never show me this again Nunca me mostre isso novamente. - + Recommended Recomendado - + Jami archive files Arquivos Jami - + All files Todos os arquivos - + Reinstate as contact Reintegrar como contato - + name nome - + Identifier Identificador - + is recording Está gravando - + are recording Estão gravando - + Peer stopped recording Par parou de gravar - + is calling you está chamando você - - + + Mute Mudo - - + + Unmute Não silenciar - + Add participant Adicionar participante - + Add participants Adicionar participantes - + Chat Conversa - + More options Mais opções - + Mosaic Mosaico - + You are still muted by moderator Você ainda está com o microfone desligado pelo moderador - + You are muted by a moderator Você está com o microfone desligado por um moderador - + Moderator Moderador - + Host Servidor - + Local and Moderator muted Seu microfone está desligado localmente e também pelo moderador - + Moderator muted Seu microfone está desligado pelo moderador - + Not muted Seu microfone não está desligado - + Cut Recortar - + Paste Colar - + Start video call Iniciar videochamada - + Start audio call Iniciar chamada de áudio - + Clear conversation Eliminar a conversa - + Remove conversation Excluir uma conversa - + Remove contact Remover contato - + Block contact Bloquear contato - + Contact details Detalhes do contato - + Hold Modo de espera - + Sip input panel Painel de entrada de Sip - + Transfer call Transferir chamada - + Stop recording Pare de gravar - + Start recording Iniciar a gravação - + Exit full screen Sair da tela inteira - + Share screen Compartilhar tela - + Share window Compartilhar janela - + Share screen area Compartilhar área da tela - + Share file Compartilhar arquivo - + Select sharing method Selecionar o método de compartilhamento - + View plugin Ver os complementos - + No video device Nenhum dispositivo de vídeo - + N/A N/A - + Lower hand Abaixar a mão - + Raise hand Levantar a mão - + Hide chat view Ocultar visão do bate-papo - + Place audio call Fazer chamada de áudio - + Place video call Fazer videochamada - + Show available plugins Mostrar extensões disponíveis - + Add to conversations Adicionar às conversas - + Jump to latest Rolar para o fim da conversa - + {} is typing… {} está escrevendo... - + {} are typing… {} estão escrevendo... - + Several people are typing… Várias pessoas estão escrevendo... - + and e - + Enter Jami Account Management Server (JAMS) URL Digite a URL de Servidor de Gerenciamento de Contas do Jami (JAMS) - + Required Requerido - + Jami Account Management Server URL URL do servidor de gestão de conta de Jami - + Enter your JAMS credentials Digite suas credenciais de JAMS - + Connect Conectar - + Back to welcome page Voltar à página de início - + Choose name Escolha um nome - + Choose username Escolha um nome de usuário - + Create account Criar conta - + Confirm password Confirmar senha - + Optional Opcional - + Choose a username for your account Escolha nome de usuário para sua conta - + Choose a name Escolha um nome - + Choose your username Escolha seu nome de usuário - + Invalid name Nome inválido - + Invalid username Nome de usuário inválido - + Name already taken O nome já existe - + Username already taken Nome de usuário já em uso - + Proxy Proxy - + Server Servidor - + Create SIP account Criar uma conta SIP - + Configure an existing SIP account Configurar uma conta existente de SIP - + Backup successful Backup bem-sucedido - + Backup failed Falha na criação de cópia de segurança - + Password changed successfully A senha alterada com sucesso - + Password change failed Não foi possível alterar a senha - + Password set successfully A senha definida com sucesso - + Password set failed Não foi possível definir a senha - + Change password Mudar senha - - + + Set password Definir senha - + Change current password Alterar a senha atual - + Backup account to a .gz file Backup a conta para um arquivo .gz - + Enable account Ativar conta - + Set username Definir um nome de usuário - + Registering name Registro de nome - + Register a username Registre um nome de usuário - + Register username Registrar nome de usuário - + Link a new device to this account Vincular um novo dispositivo a esta conta - + Link another device Associar outro dispositivo - + Exporting account… Exportando a conta... - + Remove Device Excluir o dispositivo - + Are you sure you wish to remove this device? Realmente quer excluir este dispositivo? - + Linked Devices Dispositivos ligados - + Your PIN is: Seu PIN é: - + Error connecting to the network. Please try again later. Erro de conexão na rede. Por favor, tente novamente mais tarde. - + Do you really want to delete this account? Você realmente quer excluir esta conta? - + Save new device name Salvar o novo nome do dispositivo - + Edit device name Editar o nome do dispositivo - + Unlink device from account Desvincular o dispositivo de conta - + Select a folder Selecione uma pasta - + Enable notifications Ativar notificações - + Enable dark theme Ativar tema escuro - + Keep minimized on close Manter minimizado ao fechar - + Run application on system startup Abrir aplicativo durante inicialização do sistema - + Downloads directory Pasta Downloads - + Choose download directory Escolha a pasta de Downloads - + Record call Gravar chamada - + Chatview Chat - + Display hyperlink previews in the chatview Mostrar visualizações de link - + User interface language Idioma da interface do usuário - + File transfer Transferência de arquivo - + Allow incoming files from unknown contacts Permitir o recebimento de arquivos de contatos desconhecidos - + Automatically accept incoming files Aceitar automaticamente os novos arquivos - + Accept transfer limit Aceitar o limite de transferência - + in MB, 0 = unlimited em MB, 0 = ilimitado - + Register Registrar - + Incorrect password Senha incorreta - + Save file Salvar arquivo - + Open location Abrir o local - + Install beta version Instalar a versão beta - + Check for updates now Checar por atualizações agora - + Enable/Disable automatic updates Desativar/Ativar a atualização automática - + toggle automatic updates alternar a atualização automática - + Updates Atualizações - + Update Atualização - + A new version of Jami was found Would you like to update now? Uma nova versão de Jami foi encontrada Gostaria de atualizar agora? - + No new version of Jami was found Você está usando a versão mais recente de Jami - + An error occured when checking for a new version Ocorreu um erro ao verificar por uma nova versão - + Installer download canceled Download do instalador cancelado - + This will uninstall your current Release version and you can always download the latest Release version on our website Isto irá desinstalar sua versão atual porém você sempre poderá baixar a última versão em nosso site - + Network disconnected Rede desconectada - - + + Something went wrong Algo deu errado - + Troubleshoot Resolução de problemas - + Open logs Abrir logs - + Get logs Obter logs - + Select a record directory Selecione um pasta para registros - + Debug Debug - + Show Stats Mostrar estatísticas - + Start Iniciar - + Stop Parar - + Generating account… Criando a conta... - + Import from backup Importar de um backup - + PIN PIN - + Stop taking photo Parar de fotografar - + Clear avatar image Remover a imagem de avatar - + Go back to plugins list Voltar à lista de complementos - + Profile is only shared with contacts O perfil só é compartilhado com contatos - + Enter your name Digite seu nome - + Import account from other device Importar a conta de outro dispositivo - + Import account from backup file Importar a conta do arquivo de backup - + Hide advanced features Esconder os recursos avançados - + Create new Jami account Criar uma nova conta de Jami - + Create new SIP account Criar uma nova conta de SIP - + Welcome to Bem-vindo à - + Upgrade Atualizar - + Later Mais tarde - + Local muted Seu microfone está desligado localmente - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Is swarm: É swarm: - + True Verdadeiro - + False Falso - + Add emoji Adicionar emoji - + Send file Enviar arquivo - + Leave audio message Deixe uma mensagem de áudio - + Leave video message Deixe uma mensagem de vídeo - + Send Enviar - + Remove Remover - + Write to %1 Escrever para %1 - + %1 has sent you a request for a conversation. %1 te enviou um pedido para uma conversação. - + Hello, Would you like to join the conversation? Olá, Você gostaria de entrar na conversação? - + You have accepted the conversation request Você aceitou o pedido de conversação - + Waiting until %1 connects to synchronize the conversation. Aguardando até %1 conectar para sincronizar a conversação. - - + + Copy Copiar - + Participant is still muted on their device O participante ainda está com o microfone desligado, pelo equipamento dele. - + You are still muted on your device Você ainda está com o seu microfone desligado em seu dispositivo - + View full screen Exibir em tela inteira - + Stop sharing screen or file Parar o compartilhamento de tela ou de arquivo - + Display advanced settings Exibir as configurações avançadas - + Hide advanced settings Ocultar as configurações avançadas - + Display banned contacts Exibir os contatos bloqueados - + Hide banned contacts Esconder contatos banidos - + Layout Layout - + Vertical view Exibição vertical - + Horizontal view Exibição horizontal - + Keyboard Shortcut Table - + Conversation - + Call Chamar - + Settings Configurações - + Report Bug Report falha (bug) - + Clear Limpar - + Copied to clipboard! Copiado para a área de transferência - + Receive Logs Receber logs - + Archive Arquivo - + Open file Abrir arquivo - + Create your account from a backup Criar sua conta de um backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Você pode obter um arquivo clicando no "Backup de conta" em configurações de conta. Isto criará um arquivo .gz em seu dispositivo. - + Restore an account from backup Restaurar uma conta de um backup - + Enter Jami account password Digite a senha da conta de Jami - + The PIN and the account password should be entered in your device within 10 minutes. O PIN e a senha da conta devem ser digitados no seu dispositivo dentro de 10 minutos. - + Close Fechar - + Enter your account password Entre com a senha de sua conta - + Add Device Adicionar Dispositivo - + Enter the password Digite a senha - + Enter current password Digite a senha atual - + Enter this account's password to confirm the removal of this device Digite a senha desta conta para confirmar a remoção deste dispositivo - + Enter new password Digite a nova senha - + Confirm new password Confirmar nova senha - + Change Mudar - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Escolha uma foto como avatar - + Import avatar from image file Importar avatar do arquivo de imagem - + Take photo Tirar foto - + Reset Resetar - + Select a plugin to install Selecione um complemento para instalar - + Install plugin Instalar plugin - + Save profile Salvar perfil - + Information Informação - + Enter the account password to confirm the removal of this device Digite a senha de conta para confirmar a remoção deste dispositivo - + Select a screen to share Selecione uma tela para compartilhar - + Select a window to share - + All Screens Todas as telas - + Screens Telas - + Windows Janelas - + QR code Código QR - + Account QR Conta QR - + This is your Jami username. Copy and share it with your friends! Este é o seu nome de usuário no Jami. Copie-o e compartilhe com seus amigos! - + Link this device to an existing account Associar este dispositivo à uma conta existente - + Advanced features Recursos avançados - + Show advanced features Mostrar os recursos avançados - + Connect to a JAMS server Conectar a um servidor JAMS - + Add a SIP account Adicionar uma conta SIP - + Error while creating your account. Check your credentials. Erro ao criar sua conta. Verifique suas credenciais. - + Clear Text Limpar texto - + Search Results Resultados da Busca - + Delete Deletar - + Set moderator Definir moderador - + Unset moderator Moderador não definido - + Maximize Maximizar - + Minimize Minimizar - + Hangup Desligar - + Conference moderation Moderação de conferência - + Default moderators Moderadores padrão - + Enable local moderators Ativar moderadores locais - + Make all participants moderators Torne todos os participantes moderadores - + Add default moderator Adicionar moderador padrão - + Remove default moderator Remover moderador padrão @@ -2350,112 +2350,112 @@ Copie-o e compartilhe com seus amigos! KeyboardShortcutTable - + Open account list Abrir a lista de contas - + Focus conversations list Foco na lista de conversas - + Requests list Lista de pedidos - + Previous conversation Conversa anterior - + Next conversation Próxima conversa - + Search bar Barra de pesquisa - + Full screen Tela inteira - + Start an audio call Iniciar uma chamada de áudio - + Start a video call Iniciar uma chamada de vídeo - + Clear history Limpar histórico - + Block contact Bloquear contato - + Remove conversation Excluir uma conversa - + Accept contact request Aceitar o pedido de contato - + Media settings Configurações de mídia - + General settings Configurações gerais - + Account settings Configurações da conta - + Plugin settings - + Open account creation wizard Abrir o assistente de criação de conta - + Open keyboard shortcut table - + Answer an incoming call Responder a uma chamada recebida - + End call Finalizar chamada - + Decline the call request Declinar o pedido de chamada @@ -2463,17 +2463,17 @@ Copie-o e compartilhe com seus amigos! MainApplication - + E&xit Sai&r - + &Quit Sai&r - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copie-o e compartilhe com seus amigos! PhotoboothView - + Image Files Arquivos de Imagens - + All files Todos os arquivos @@ -2494,7 +2494,7 @@ Copie-o e compartilhe com seus amigos! PluginHandlerItemDelegate - + On/Off Ativar/Desativar @@ -2502,12 +2502,12 @@ Copie-o e compartilhe com seus amigos! PluginHandlerPicker - + Choose plugin Escolha o Complemento - + Preferences Preferências @@ -2515,7 +2515,7 @@ Copie-o e compartilhe com seus amigos! PluginItemDelegate - + Load/Unload Carregar/Descarregar @@ -2523,27 +2523,27 @@ Copie-o e compartilhe com seus amigos! PluginListPreferencesView - + Uninstall plugin Desinstalar o complemento - + Reset preferences Redefinir as preferências - + Ok Ok - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copie-o e compartilhe com seus amigos! PluginListSettingsView - + Plugin Files Arquivos de Complementos - + All files Todos os arquivos - + Installed plugins Complemento instalados @@ -2569,7 +2569,7 @@ Copie-o e compartilhe com seus amigos! PreferenceItemDelegate - + Edit preference Editar as preferências @@ -2577,107 +2577,107 @@ Copie-o e compartilhe com seus amigos! QObject - + Created by: Criado por: - + Artwork by: Arte por: - + Based on the SFLPhone project Baseado no projeto SFLPhone - + Sending Enviando - + Failure Falha - + Sent Enviado - + Connecting Conectando - + Accept Aceitar - + Canceled Cancelada - + Unable to make contact Não é possível fazer contato - + Ongoing Em andamento - + Waiting for contact Aguardando pelo contato - + Incoming transfer Recebendo transferência - + Timed out waiting for contact O tempo de aguardo pelo contato chegou ao fim - + Finished Terminado - + %1 days ago %1 dias atrás - + one day ago um dia atrás - + %1 hours ago %1 horas atrás - + one hour ago uma hora atrás - + %1 minutes ago %1 minutos atrás - + just now Agora @@ -2685,22 +2685,22 @@ Copie-o e compartilhe com seus amigos! RecordingSettings - + Call Recording Gravação de Chamadas - + Always record calls Sempre gravar as chamadas - + Quality Qualidade - + Save in Salvar em @@ -2708,7 +2708,7 @@ Copie-o e compartilhe com seus amigos! RevokeDevicePasswordDialog - + Remove Remover @@ -2716,7 +2716,7 @@ Copie-o e compartilhe com seus amigos! SelectScreen - + Screen Tela @@ -2724,7 +2724,7 @@ Copie-o e compartilhe com seus amigos! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copie-o e compartilhe com seus amigos! SmartListModel - - - - - - + + + + + + Calls Chamadas - - - - - - + + + + + + Contacts Contatos @@ -2755,17 +2755,17 @@ Copie-o e compartilhe com seus amigos! SystemSettings - + System Sistema - + Enable dark theme Ativar tema escuro - + Enable desktop notifications Mostrar notificações @@ -2773,27 +2773,27 @@ Copie-o e compartilhe com seus amigos! SystemTray - + Answer Resposta - + Decline Rejeitar - + Open conversation Conversa em curso - + Accept Aceitar - + Refuse Recusar @@ -2801,7 +2801,7 @@ Copie-o e compartilhe com seus amigos! UserIdentity - + Identity Identificação @@ -2809,17 +2809,17 @@ Copie-o e compartilhe com seus amigos! UtilsAdapter - + %1 Mbps %1 Mbps - + Default Predefinição - + System Sistema diff --git a/translations/ring_client_windows_pt_PT.ts b/translations/ring_client_windows_pt_PT.ts index e786f0bb..dc40fee7 100644 --- a/translations/ring_client_windows_pt_PT.ts +++ b/translations/ring_client_windows_pt_PT.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Adicionar Conta @@ -10,7 +10,7 @@ AccountProfile - + Profile Perfil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Arquivos de Áudio - + All files Todos os arquivos @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Ficheiro do Certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Ficheiro do Certificado - - - + + + All files Todos os arquivos - + Key File Arquivo chave @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Configurações avançadas de conta @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contactos Banidos @@ -89,32 +89,32 @@ CallAdapter - + Missed call Chamada perdida - + Missed call with %1 - + me eu - + Incoming call Chamada recebida - + %1 is calling you %1 está chamando - + is calling you está chamando você @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Adicionar à conferência - + Transfer this call Transferir esta chamada - + Add default moderator Adicionar moderador padrão @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nova mensagem - + Trust request Confiar no pedido @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Sucesso - - + + Error Erro - + Jami archive files Arquivos Jami - + All files Todos os arquivos @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Ok OK @@ -211,7 +211,7 @@ Jami será finalizado agora. DeviceItemDelegate - + Device Id ID do dispositivo @@ -219,2130 +219,2130 @@ Jami será finalizado agora. JamiStrings - + Find a user or search for a conversation Encontre um usuário ou procure por uma conversa - + Search your invitations Pesquise seus convites - + Invitations Convites - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Version Versão - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami é um software livre de comunicação universal que respeita as liberdades e a privacidade de seus usuários. - + Credits Créditos - + Display QR code Mostrar o código QR - + Open settings Abrir configurações - + Close settings Fechar configurações - + Authentication required Autenticação requerida - + Your session has expired or been revoked on this device. Please enter your password. Sua sessão expirou ou foi revogada neste dispositivo. Por favor, digite sua senha. - + JAMS server Servidor de JAMS - + Authenticate Autenticado - + Delete account Eliminar conta - + Authentication failed autenticação falhou - + Password Palavra-chave - + Username Nome de utilizador - + Alias Apelido - + Call Settings Configurações de chamadas - + Allow incoming calls from unknown contacts Permitir chamadas de contatos desconhecidos - + In progress… Em progresso... - + Accept Aceitar - + Refuse Recusar - + Incoming audio call from {} Recebendo chamada de áudio de {} - + Incoming video call from {} Recebendo chamada de vídeo de {} - + Convert your account into a rendezvous point Converta sua conta num ponto de encontro - + Automatically answer calls Atender chamadas automaticamente - + Enable custom ringtone Ativar o toque personalizado - + Select custom ringtone Selecione um toque personalizado - + Add a custom ringtone Adicionar um toque de chamada personalizado - + Select a new ringtone Selecione um novo toque - + Voicemail Correio de voz - + Voicemail dial code Código de discagem de voicemail - + Security Segurança - + Encrypt media streams (SRTP) Encriptar fluxo de média (SRTP) - + Enable SDES key exchange Ativar o intercâmbio de chaves SDES - + Allow fallback on RTP Permitir a solução de reserva no RTP - + Encrypt negotiation (TLS) Encriptar negociação (TLS) - + CA certificate Certificado de CA - + User certificate Certificado de utilizador - + Private key Chave privada - + Private key password Palavra-chave de chave privada - + Verify certificates for incoming TLS connections Verificar certificados para conexões TLS recebidas - + Verify server TLS certificates Verificar os certificados TLS do servidor - + Require certificate for incoming TLS connections Exigir certificado para conexões TLS recebidas - + TLS protocol method Método de protocolo TLS - + Audio input device selector Seletor de dispositivo de entrada de áudio - + TLS server name Nome do servidor TLS - + Negotiation timeout (seconds) Tempo de espera de negociação (seg) - + Select a private key Selecione uma chave privada - + Select a user certificate Selecione um certificado de usuário - + Registration expiration time (seconds) Tempo de expiração de registro (segundos) - + Use custom address and port Usar endereço e porta personalizados - + Enable local peer discovery Ativar a descoberta de membros locais - + Audio and Video Settings Configurações de áudio e vídeo - + Frames per second Quadros por segundo - + Select video frame rate (frames per second) Selecione a taxa de quadros de vídeo (quadros por segundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Sua conta existe apenas neste dispositivo. Se você perder seu dispositivo ou desinstalar a aplicação, sua conta será deletada e não pode ser recuperada. Você pode fazer uma cópia da sua conta agora ou depois. - - + + End call Terminar chamada - + Pause call Pausar ligação - + Resume call Retornar chamada - + Pause video Pausar vídeo - + Resume video Retornar vídeo - + Creating account… Criando a conta... - + Encrypt account with password Criptografar conta com senha - + Create a rendezvous point Criar um ponto de encontro - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Escolha uma senha para criptografar sua conta neste dispositivo. Observe que a senha não pode ser recuperada. - + Choose a name for your rendezvous point Escolha um nome para seu ponto de encontro - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Se sua conta não foi copiada ou adicionada em outro dispositivo, sua conta e nome registrado será irrevogavelmente perdida. - + Launch at startup Abrir ao iniciar - + Enable typing indicators Habilitar indicadores de digitação - - + + Network error Erro de rede - + SSL error Erro de SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Digite o PIN de outra conta de Jami configurada. Use a opção "Ligar Outro Dispositivo" para obter um PIN. - + Link device Associar dispositivo - + Conversations Conversas - + Enable Ativar - + Display or hide preferences Exibir ou ocultar as preferências - + Add new plugin Adicionar novo complemento - + Select a file Selecione um arquivo - + Select Selecionar - + Choose image file Escolha o arquivo de imagem - + Enter the rendezvous point's name Digite o nome do ponto de encontro - + Creating rendezvous point… Criando o ponto de encontro... - + Create account from Jami Account Management Server (JAMS) Criar a conta do Servidor de Gestão de Conta de Jami (JAMS) - + Create new rendezvous point Criando o novo ponto de encontro... - + Create a Jami account Criar uma conta Jami - + About Jami Sobre o Jami - + Decline contact request Recusar o pedido de contato - + Accept contact request Aceitar o pedido de contato - + Automatically check for updates Verificar automaticamente se há atualizações - + Ok OK - - + + Cancel Cancelar - + Accept in audio Aceitar em áudio - + Accept in video Aceitar em vídeo - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Você está vendo uma conversação onde todos os participantes, menos você, já saíram. Novas interações não serão possíveis. - + Start new conversation Iniciar uma nova conversação - + Chat Settings Configurações de chat - + Enable read receipts Ativar verificação de leitura - + Send and receive receipts indicating that a message have been displayed Enviar e receber confirmações indicando que uma mensagem foi mostrada - + Select a CA certificate Selecione um certificado CA - + Connectivity Conectividade - + Auto Registration After Expired Registro automático após expirado - + Network interface Interface de rede - + Use UPnP Usar UPnP - + Use TURN Usar TURN - + TURN address Endereço TURN - + TURN username Nome de utilizador TURN - + TURN password Palavra-chave TURN - + TURN Realm ATIVAR o Realm - + Use STUN Usar STUN - + STUN address Endereço STUN - + Allow IP Auto Rewrite Permitir reescrita automática do IP - + Public address Endereço público - + Address Endereço - + Port Porta - + Media Média - + Enable video Ativar vídeo - + Video Codecs Codecs de vídeo - + Audio Codecs Codecs de áudio - + Name Server Nome do servidor - + SDP Session Negotiation (ICE Fallback) Negociação de Sessão SDP (caso falhe o ICE) - + Only used during negotiation in case ICE is not supported Utilizado somente durante a negociação quando o ICE não é suportado - + Audio RTP minimum Port Porta mínima no RTP de áudio - + Audio RTP maximum Port Porta máxima no RTP de áudio - + Video RTP minimum Port Porta mínima no RTP de vídeo - + Video RTP maximum port Porta máxima no RTP de vídeo - + Connect to other DHT nodes advertising on your local network. Conectar ao outros nós de DHT disponíveis na sua rede local. - + OpenDHT Configuration Configuração OpenDHT - + Enable proxy Ativar proxy - + Proxy address Endereço do proxy - + Bootstrap Inicialização - + Back Voltar - + Account Settings Configurações da Conta - + Account Conta - - + + General Geral - + Plugin Plugin - + Audio/Video Áudio/Vídeo - + Audio Áudio - + Microphone Microfone - + Select audio input device Selecione o dispositivo de entrada de áudio - + Output device Dispositivo de saída - + Select audio output device Selecione o dispositivo de saída de áudio - + Ringtone device Tons de toque do dispositivo - + Select ringtone output device Selecione o dispositivo de saída do toque de chamada - + Audio manager Gerenciador de áudio - + Video Vídeo - + Select video device Selecione o dispositivo de vídeo - + Device Dispositivo - + Resolution Resolução - + Select video resolution Selecione a resolução de vídeo - + Enable hardware acceleration Ativar aceleração de hardware - + Preview unavailable Pré-visualização não disponível - + Screen Sharing Compartilhamento de tela - + Select screen sharing frame rate (frames per second) Selecionar a taxa de quadros no compartilhamento de tela (quadros por segundo) - + no video nenhum vídeo - + Backup account here Conta de backup aqui - + Backup your account! Fazer cópia de segurança da sua conta! - + Backup account Conta de cópia de segurança - + Skip Ignorar - + Success Sucesso - + Error Erro - + Never show me this again Não voltar a mostrar - + Recommended Recomendado - + Jami archive files Arquivos Jami - + All files Todos os arquivos - + Reinstate as contact Reintegrar como contato - + name nome - + Identifier Identificador - + is recording Está gravando - + are recording Estão gravando - + Peer stopped recording Par parou de gravar - + is calling you está chamando você - - + + Mute Mudo - - + + Unmute Não silenciar - + Add participant Adicionar participante - + Add participants Adicionar participantes - + Chat Conversa - + More options Mais opções - + Mosaic Mosaico - + You are still muted by moderator Você ainda está com o microfone desligado pelo moderador - + You are muted by a moderator Você está com o microfone desligado por um moderador - + Moderator Moderador - + Host Servidor - + Local and Moderator muted Seu microfone está desligado localmente e também pelo moderador - + Moderator muted Seu microfone está desligado pelo moderador - + Not muted Seu microfone não está desligado - + Cut Recortar - + Paste Colar - + Start video call Começar chamada de vídeo - + Start audio call Começar chamada de áudio - + Clear conversation Limpar conversação - + Remove conversation Remover conversação - + Remove contact Remover contacto - + Block contact Bloquear contacto - + Contact details Detalhes do contacto - + Hold Modo de espera - + Sip input panel Painel de entrada de Sip - + Transfer call Transferir chamada - + Stop recording Parar de gravar - + Start recording Iniciar a gravação - + Exit full screen Sair da tela inteira - + Share screen Partilhar ecrã - + Share window Partilhar janela - + Share screen area Partilhar área do ecrã - + Share file Partilhar ficheiro - + Select sharing method Selecionar o método de compartilhamento - + View plugin Ver os complementos - + No video device Nenhum dispositivo de vídeo - + N/A N/A - + Lower hand Abaixar a mão - + Raise hand Levantar a mão - + Hide chat view Ocultar visualização da conversa - + Place audio call Fazer chamada de áudio - + Place video call Fazer video-chamada - + Show available plugins Mostrar extensões disponíveis - + Add to conversations Adicionar às conversas - + Jump to latest Ir para o fim da conversa - + {} is typing… {} está escrevendo... - + {} are typing… {} estão escrevendo... - + Several people are typing… Várias pessoas estão escrevendo... - + and e - + Enter Jami Account Management Server (JAMS) URL Digite a URL de Servidor de Gerenciamento de Contas do Jami (JAMS) - + Required Requerido - + Jami Account Management Server URL URL do servidor de gestão de conta de Jami - + Enter your JAMS credentials Digite suas credenciais de JAMS - + Connect Ligar - + Back to welcome page Voltar à página de início - + Choose name Escolha um nome - + Choose username Escolha um nome de usuário - + Create account Criar conta - + Confirm password Confirmar palavra-chave - + Optional Opcional - + Choose a username for your account Escolha nome de usuário para sua conta - + Choose a name Escolha um nome - + Choose your username Escolha o seu nome de utilizador - + Invalid name Nome inválido - + Invalid username O nome de utilizador não é válido - + Name already taken O nome já existe - + Username already taken O nome de utilizador já está registado - + Proxy Proxy - + Server Servidor - + Create SIP account Criar uma conta SIP - + Configure an existing SIP account Configurar uma conta existente de SIP - + Backup successful Backup bem-sucedido - + Backup failed Falha na criação de cópia de segurança - + Password changed successfully A senha alterada com sucesso - + Password change failed Não foi possível alterar a senha - + Password set successfully A senha definida com sucesso - + Password set failed Não foi possível definir a senha - + Change password Alterar palavra-chave - - + + Set password Definir palavra-chave - + Change current password Alterar a senha atual - + Backup account to a .gz file Backup a conta para um arquivo .gz - + Enable account Ativar conta - + Set username Definir um nome de usuário - + Registering name Registro de nome - + Register a username Registar um nome de utilizador - + Register username Registar nome de utilizador - + Link a new device to this account Vincular um novo dispositivo a esta conta - + Link another device Associar outro dispositivo - + Exporting account… A exportar conta... - + Remove Device Remover dispositivo - + Are you sure you wish to remove this device? Tem a certeza que quer remover este dispositivo? - + Linked Devices Dispositivos associados - + Your PIN is: Seu PIN é: - + Error connecting to the network. Please try again later. Erro de conexão na rede. Por favor, tente novamente mais tarde. - + Do you really want to delete this account? Você realmente quer excluir esta conta? - + Save new device name Guardar o novo nome do dispositivo - + Edit device name Editar o nome do dispositivo - + Unlink device from account Desvincular o dispositivo de conta - + Select a folder Selecione uma pasta - + Enable notifications Ativar notificações - + Enable dark theme Ativar tema escuro - + Keep minimized on close Manter minimizado ao fechar - + Run application on system startup Abrir aplicativo durante inicialização do sistema - + Downloads directory Pasta de transferências - + Choose download directory Escolha a pasta de Downloads - + Record call Gravar chamada - + Chatview Conversar - + Display hyperlink previews in the chatview Mostrar pré-visualizações de ligações - + User interface language Idioma da interface do utilizador - + File transfer Transferência de ficheiro - + Allow incoming files from unknown contacts Permitir o recebimento de arquivos de contatos desconhecidos - + Automatically accept incoming files Aceitar automaticamente os novos arquivos - + Accept transfer limit Aceitar o limite de transferência - + in MB, 0 = unlimited em MB, 0 = ilimitado - + Register Registar - + Incorrect password Palavra-chave incorreta - + Save file Gravar ficheiro - + Open location Abrir o local - + Install beta version Instalar a versão beta - + Check for updates now Verificar se existem atualizações - + Enable/Disable automatic updates Desativar/Ativar a atualização automática - + toggle automatic updates alternar a atualização automática - + Updates Atualizações - + Update Atualização - + A new version of Jami was found Would you like to update now? Uma nova versão de Jami foi encontrada Gostaria de atualizar agora? - + No new version of Jami was found Você está usando a versão mais recente de Jami - + An error occured when checking for a new version Ocorreu um erro ao verificar por uma nova versão - + Installer download canceled Download do instalador cancelado - + This will uninstall your current Release version and you can always download the latest Release version on our website Isto irá desinstalar sua versão atual porém você sempre poderá baixar a última versão em nosso site - + Network disconnected Rede desconectada - - + + Something went wrong Algo correu mal - + Troubleshoot Resolução de problemas - + Open logs Abrir logs - + Get logs Obter logs - + Select a record directory Selecione um pasta para registros - + Debug Debug - + Show Stats Mostrar estatísticas - + Start Iniciar - + Stop Parar - + Generating account… Criando a conta... - + Import from backup Importar cópia de segurança - + PIN PIN - + Stop taking photo Parar de fotografar - + Clear avatar image Remover a imagem de avatar - + Go back to plugins list Voltar à lista de complementos - + Profile is only shared with contacts O perfil só é compartilhado com contatos - + Enter your name Digite seu nome - + Import account from other device Importar a conta de outro dispositivo - + Import account from backup file Importar a conta do arquivo de backup - + Hide advanced features Esconder os recursos avançados - + Create new Jami account Criar uma nova conta de Jami - + Create new SIP account Criar uma nova conta de SIP - + Welcome to Bem-vindo(a) à - + Upgrade Atualizar - + Later Mais tarde - + Local muted Seu microfone está desligado localmente - + Trying to reconnect to the Jami daemon (jamid)… Tentando se reconectar ao daemon do Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Não conseguiu se reconectar ao daemon do Jami (jamid). Jami será finalizado agora. - + Is swarm: É swarm: - + True Verdadeiro - + False Falso - + Add emoji Adicionar emoji - + Send file Enviar ficheiro - + Leave audio message Deixe uma mensagem de áudio - + Leave video message Deixe uma mensagem de vídeo - + Send Enviar - + Remove Remover - + Write to %1 Escrever para %1 - + %1 has sent you a request for a conversation. %1 te enviou um pedido para uma conversação. - + Hello, Would you like to join the conversation? Olá, Você gostaria de entrar na conversação? - + You have accepted the conversation request Você aceitou o pedido de conversação - + Waiting until %1 connects to synchronize the conversation. Aguardando até %1 conectar para sincronizar a conversação. - - + + Copy Copiar - + Participant is still muted on their device O participante ainda está com o microfone desligado, pelo equipamento dele. - + You are still muted on your device Você ainda está com o seu microfone desligado em seu dispositivo - + View full screen Exibir em tela inteira - + Stop sharing screen or file Parar o compartilhamento de tela ou de arquivo - + Display advanced settings Exibir as configurações avançadas - + Hide advanced settings Ocultar as configurações avançadas - + Display banned contacts Exibir os contatos bloqueados - + Hide banned contacts Esconder contactos banidos - + Layout Esquema - + Vertical view Vista vertical - + Horizontal view Vista horizontal - + Keyboard Shortcut Table - + Conversation - + Call Chamar - + Settings Configurações - + Report Bug Report falha (bug) - + Clear Limpar - + Copied to clipboard! Copiado para a área de transferência - + Receive Logs Receber logs - + Archive Arquivo - + Open file Abrir ficheiro - + Create your account from a backup Criar sua conta de um backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Você pode obter um arquivo clicando no "Backup de conta" em configurações de conta. Isto criará um arquivo .gz em seu dispositivo. - + Restore an account from backup Restaurar uma conta de um backup - + Enter Jami account password Digite a senha da conta de Jami - + The PIN and the account password should be entered in your device within 10 minutes. O PIN e a senha da conta devem ser digitados no seu dispositivo dentro de 10 minutos. - + Close Fechar - + Enter your account password Introduza a palavra-chave da sua conta - + Add Device Adicionar Dispositivo - + Enter the password Digite a senha - + Enter current password Digite a senha atual - + Enter this account's password to confirm the removal of this device Introduza a palavra-chave desta conta para confirmar a remoção deste dispositivo - + Enter new password Digite a nova senha - + Confirm new password Confirmar nova senha - + Change Mudar - + Confirm Confirmar - + Export Exportar - + Choose a picture as avatar Escolha uma foto como avatar - + Import avatar from image file Importar avatar do arquivo de imagem - + Take photo Tirar fotografia - + Reset Resetar - + Select a plugin to install Selecione um complemento para instalar - + Install plugin Instalar plugin - + Save profile Salvar perfil - + Information Informação - + Enter the account password to confirm the removal of this device Digite a senha de conta para confirmar a remoção deste dispositivo - + Select a screen to share Selecione uma tela para compartilhar - + Select a window to share - + All Screens Todas as telas - + Screens Telas - + Windows Janelas - + QR code Código QR - + Account QR Conta QR - + This is your Jami username. Copy and share it with your friends! Este é o seu nome de utilizador no Jami. Copie e o partilhe-o com os seus amigos! - + Link this device to an existing account Associar este dispositivo a uma conta existente - + Advanced features Recursos avançados - + Show advanced features Mostrar os recursos avançados - + Connect to a JAMS server Conectar a um servidor JAMS - + Add a SIP account Adicionar uma conta SIP - + Error while creating your account. Check your credentials. Erro ao criar sua conta. Verifique suas credenciais. - + Clear Text Limpar texto - + Search Results Resultados da Pesquisa - + Delete Eliminar - + Set moderator Definir moderador - + Unset moderator Moderador não definido - + Maximize Maximizar - + Minimize Minimizar - + Hangup Desligar - + Conference moderation Moderação de conferência - + Default moderators Moderadores padrão - + Enable local moderators Ativar moderadores locais - + Make all participants moderators Torne todos os participantes moderadores - + Add default moderator Adicionar moderador padrão - + Remove default moderator Remover moderador padrão @@ -2350,112 +2350,112 @@ Copie e o partilhe-o com os seus amigos! KeyboardShortcutTable - + Open account list Abrir lista de contas - + Focus conversations list Foco na lista de conversas - + Requests list Lista de pedidos - + Previous conversation Conversa anterior - + Next conversation Próxima conversa - + Search bar Barra de pesquisa - + Full screen Tela inteira - + Start an audio call Iniciar uma chamada de áudio - + Start a video call Iniciar uma chamada de vídeo - + Clear history Limpar histórico - + Block contact Bloquear contacto - + Remove conversation Remover conversação - + Accept contact request Aceitar o pedido de contato - + Media settings Configurações de mídia - + General settings Configurações gerais - + Account settings Configurações da conta - + Plugin settings - + Open account creation wizard Abrir o assistente de criação de conta - + Open keyboard shortcut table - + Answer an incoming call Responder a uma chamada recebida - + End call Terminar chamada - + Decline the call request Declinar o pedido de chamada @@ -2463,17 +2463,17 @@ Copie e o partilhe-o com os seus amigos! MainApplication - + E&xit Sai&r - + &Quit Sai&r - + &Show Jami &Mostrar Jami @@ -2481,12 +2481,12 @@ Copie e o partilhe-o com os seus amigos! PhotoboothView - + Image Files Arquivos de Imagens - + All files Todos os arquivos @@ -2494,7 +2494,7 @@ Copie e o partilhe-o com os seus amigos! PluginHandlerItemDelegate - + On/Off Ativar/Desativar @@ -2502,12 +2502,12 @@ Copie e o partilhe-o com os seus amigos! PluginHandlerPicker - + Choose plugin Escolha o Complemento - + Preferences Preferências @@ -2515,7 +2515,7 @@ Copie e o partilhe-o com os seus amigos! PluginItemDelegate - + Load/Unload Carregar/Descarregar @@ -2523,27 +2523,27 @@ Copie e o partilhe-o com os seus amigos! PluginListPreferencesView - + Uninstall plugin Desinstalar o complemento - + Reset preferences Redefinir as preferências - + Ok OK - + Cancel Cancelar - + Uninstall Desinstalar @@ -2551,17 +2551,17 @@ Copie e o partilhe-o com os seus amigos! PluginListSettingsView - + Plugin Files Arquivos de Complementos - + All files Todos os arquivos - + Installed plugins Complemento instalados @@ -2569,7 +2569,7 @@ Copie e o partilhe-o com os seus amigos! PreferenceItemDelegate - + Edit preference Editar as preferências @@ -2577,107 +2577,107 @@ Copie e o partilhe-o com os seus amigos! QObject - + Created by: Criado por: - + Artwork by: Arte por: - + Based on the SFLPhone project Baseado no projeto SFLPhone - + Sending A enviar - + Failure Falha - + Sent Enviado - + Connecting A conectar - + Accept Aceitar - + Canceled Cancelada - + Unable to make contact Não é possível fazer contato - + Ongoing Em andamento - + Waiting for contact Aguardando pelo contato - + Incoming transfer Recebendo transferência - + Timed out waiting for contact O tempo de aguardo pelo contato chegou ao fim - + Finished Terminado - + %1 days ago %1 dias atrás - + one day ago há um dia - + %1 hours ago %1 horas atrás - + one hour ago há uma hora - + %1 minutes ago %1 minutos atrás - + just now agora mesmo @@ -2685,22 +2685,22 @@ Copie e o partilhe-o com os seus amigos! RecordingSettings - + Call Recording A Gravar Chamada - + Always record calls Gravar sempre as chamadas - + Quality Qualidade - + Save in Gravar em @@ -2708,7 +2708,7 @@ Copie e o partilhe-o com os seus amigos! RevokeDevicePasswordDialog - + Remove Remover @@ -2716,7 +2716,7 @@ Copie e o partilhe-o com os seus amigos! SelectScreen - + Screen Tela @@ -2724,7 +2724,7 @@ Copie e o partilhe-o com os seus amigos! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copie e o partilhe-o com os seus amigos! SmartListModel - - - - - - + + + + + + Calls Chamadas - - - - - - + + + + + + Contacts Contactos @@ -2755,17 +2755,17 @@ Copie e o partilhe-o com os seus amigos! SystemSettings - + System Sistema - + Enable dark theme Ativar tema escuro - + Enable desktop notifications Mostrar notificações @@ -2773,27 +2773,27 @@ Copie e o partilhe-o com os seus amigos! SystemTray - + Answer Resposta - + Decline Rejeitar - + Open conversation Abrir conversação - + Accept Aceitar - + Refuse Recusar @@ -2801,7 +2801,7 @@ Copie e o partilhe-o com os seus amigos! UserIdentity - + Identity Identificação @@ -2809,17 +2809,17 @@ Copie e o partilhe-o com os seus amigos! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Predefinição - + System Sistema diff --git a/translations/ring_client_windows_ro.ts b/translations/ring_client_windows_ro.ts index b6e3b38d..314ceba1 100644 --- a/translations/ring_client_windows_ro.ts +++ b/translations/ring_client_windows_ro.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Parola - + Username Nume de utilizator - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Seuritate - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General General - + Plugin - + Audio/Video - + Audio Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blocați contactul - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file Distribuie fișierul - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registrare - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete Șterge - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact Blocați contactul - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System Sistem diff --git a/translations/ring_client_windows_ro_RO.ts b/translations/ring_client_windows_ro_RO.ts index 838129e6..e66e3097 100644 --- a/translations/ring_client_windows_ro_RO.ts +++ b/translations/ring_client_windows_ro_RO.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Adaugă un cont @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Fișiere Audio - + All files Toate fișierele @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fișierul certificatului - - - + + + All files Toate fișierele - + Key File Fișierul cheii @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fișierul certificatului - - - + + + All files Toate fișierele - + Key File Fișierul cheii @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Reglări avansate ale contului @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Contacte blocate @@ -89,32 +89,32 @@ CallAdapter - + Missed call Apel pierdut - + Missed call with %1 Apel pierdut de la %1 - + me eu - + Incoming call Apel primit - + %1 is calling you te sună %1 - + is calling you te sună @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Adaugă la conferință - + Transfer this call Transferă acest apel - + Add default moderator Adaugă un moderator prestabilit @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Mesaj nou - + Trust request Cerere de încredere @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Bine - - + + Success Succes - - + + Error Eroare - + Jami archive files Fișierul arhivei Jami - + All files Toate fișierele @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Reconectare imposibilă la serviciul Jami (jamid). Jami se va închide acum. - + Trying to reconnect to the Jami daemon (jamid)… Reconectare la serviciul Jami (jamid)… - + Ok Bine @@ -211,7 +211,7 @@ Jami se va închide acum. DeviceItemDelegate - + Device Id ID-ul aparatului @@ -219,2129 +219,2129 @@ Jami se va închide acum. JamiStrings - + Find a user or search for a conversation Caută sau începe o conversație - + Search your invitations Caută invitațiile primite - + Invitations Invitații - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami este un program liber pentru comunicare universală care respectă libertățile și intimitatea utilizatorilor săi. - + Version Versiune - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami este un program liber pentru comunicare universală care respectă libertățile și intimitatea utilizatorilor săi. - + Credits Merite - + Display QR code Arată codul QR - + Open settings Deschide reglările - + Close settings Închide reglările - + Authentication required Autentificare obligatorie - + Your session has expired or been revoked on this device. Please enter your password. Sesiunea ta a expirat sau a fost închisă pentru acest aparat. Introdu parola. - + JAMS server Server JAMS - + Authenticate Autentificare - + Delete account Șterge contul - + Authentication failed Autentificare nereușită - + Password Parola - + Username Nume de Utilizator - + Alias Alias - + Call Settings Reglări apeluri - + Allow incoming calls from unknown contacts Primește apeluri de la persoane necunoscute - + In progress… În curs… - + Accept Acceptă - + Refuse Refuză - + Incoming audio call from {} Apel vocal primit de la {} - + Incoming video call from {} Apel video primit de la {} - + Convert your account into a rendezvous point Transformă-ți contul într-un loc de conferință - + Automatically answer calls Răspuns automat la apeluri - + Enable custom ringtone Activează sonerii personalizate - + Select custom ringtone Alege o sonerie personalizată - + Add a custom ringtone Adaugă o sonerie personalizată - + Select a new ringtone Alege o sonerie nouă - + Voicemail Mesagerie vocală - + Voicemail dial code Codul mesageriei vocale - + Security Protecție - + Encrypt media streams (SRTP) Cifrează fluxurile Media (SRTP) - + Enable SDES key exchange Activează SDES pentru schimbul de chei - + Allow fallback on RTP Revino la RTP - + Encrypt negotiation (TLS) Cifrează negocierea (TLS) - + CA certificate Certificat CA - + User certificate Certificat de utilizator - + Private key Cheie privată - + Private key password Parola cheii private - + Verify certificates for incoming TLS connections Verifică certificatele pentru conexiunile TLS primite - + Verify server TLS certificates Verifică certificatele TLS de server - + Require certificate for incoming TLS connections Solicită un certificat pentru conexiunile TLS primite - + TLS protocol method Metoda protocolului TLS - + Audio input device selector Selector de dispozitiv de intrare pentru audio - + TLS server name Numele serverului TLS - + Negotiation timeout (seconds) Timp de negociere (secunde) - + Select a private key Alege o cheie privată - + Select a user certificate Alege un certificat de utilizator - + Registration expiration time (seconds) Timp maxim de înscriere (secunde) - + Use custom address and port Folosește adresă și Port personalizate - + Enable local peer discovery Activează descoperirea utilizatorilor locali - + Audio and Video Settings Reglări Audio și Video - + Frames per second Imagini pe secundă - + Select video frame rate (frames per second) Alege frecvența video (imagini/secundă) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Acest cont există doar în acest aparat. Dacă ai pierdut aparatul sau ai dezinstalat aplicația, contul tău va fi șters și nu va putea fi recuperat. Poți face o copie de rezervă acum sau mai tîrziu. - - + + End call Închide apelul - + Pause call Pauză apel - + Resume call Reia apelul - + Pause video Întrerupe video - + Resume video Pornește video - + Creating account… Se creează contul... - + Encrypt account with password Cifrează contul cu o parolă - + Create a rendezvous point Creează un loc de conferință - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Alege o parolă pentru a cifra contul tău în acest aparat. Reține că parola nu poate fi recuperată. - + Choose a name for your rendezvous point Alege un nume pentru locul de conferință - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Dacă contul tău nu a fost asociat altui aparat și nu ai o copie de rezervă, va fi pierdut definitiv împreună cu numele înscris. - + Launch at startup Pornește odată cu sistemul - + Enable typing indicators Arată indicatorul de scriere - - + + Network error Eroare de rețea - + SSL error eroare SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Introdu codul PIN obținut de la un cont Jami. Folosește opțiunea „Asociază alt aparat” pentru a obține codul PIN. - + Link device Asociază aparatul - + Conversations Conversații - + Enable Activează - + Display or hide preferences Arată sau ascunde preferințele - + Add new plugin Adaugă o extensie nouă - + Select a file Alege un fișier - + Select Alege - + Choose image file Alege o imagine - + Enter the rendezvous point's name Introdu numele locului de conferință - + Creating rendezvous point… Se creează locul de conferință… - + Create account from Jami Account Management Server (JAMS) Creează un cont de pe Jami Account Management Server (JAMS) - + Create new rendezvous point Creează un loc nou de conferință - + Create a Jami account Creează un cont Jami - + About Jami Despre Jami - + Decline contact request Refuză cererea de contact - + Accept contact request Acceptă cererea de contact - + Automatically check for updates Caută actualizările automat - + Ok Bine - - + + Cancel Renunță - + Accept in audio Doar vocal - + Accept in video Răspunde cu video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Vezi o conversație în care toți participanții, în afară de tine, au plecat. Nu vor fi posibile noi interacțiuni. - + Start new conversation Conversație nouă - + Chat Settings Reglări discuții - + Enable read receipts Arată confirmarea de citire - + Send and receive receipts indicating that a message have been displayed Trimite și primește confirmări de citire care arată că un mesaj a fost citit. - + Select a CA certificate Alege un certificat CA - + Connectivity Conectare - + Auto Registration After Expired Înscriere Automată După Expirare - + Network interface Interfață de rețea - + Use UPnP Folosește UPnP - + Use TURN Folosește TURN - + TURN address Adresa TURN - + TURN username Nume de utilizator TURN - + TURN password Parola TURN - + TURN Realm Domeniul TURN - + Use STUN Folosește STUN - + STUN address Adresa STUN - + Allow IP Auto Rewrite Permite rescrierea automată a IP - + Public address Adresa publică - + Address Adresa - + Port Port - + Media Media - + Enable video Activează video - + Video Codecs Codec video - + Audio Codecs Codec audio - + Name Server Server de nume - + SDP Session Negotiation (ICE Fallback) Negociere Sesiune SDP (folosește ICE în caz de eșec) - + Only used during negotiation in case ICE is not supported Folosit numai în timpul negocierii SDP în caz că ICE nu este acceptat - + Audio RTP minimum Port Port audio RTP minim - + Audio RTP maximum Port Port audio RTP maxim - + Video RTP minimum Port Port video RTP minim - + Video RTP maximum port Port video RTP maxim - + Connect to other DHT nodes advertising on your local network. Conectează-te la alte noduri DHT din rețeaua ta locală. - + OpenDHT Configuration Configurare OpenDHT - + Enable proxy Activează proxy - + Proxy address Adresa proxy - + Bootstrap Server de pornire - + Back Înapoi - + Account Settings Reglările Contului - + Account Cont - - + + General Generale - + Plugin Extensie - + Audio/Video Audio/Video - + Audio Audio - + Microphone Microfon - + Select audio input device Alege dispozitivul de intrare pentru audio - + Output device Dispozitiv de ieșire - + Select audio output device Alege dispozitivul de ieșire pentru audio - + Ringtone device Dispozitiv sonerie - + Select ringtone output device Alege dispozitivul de ieșire pentru sonerie - + Audio manager Administrare Audio - + Video Video - + Select video device Alege dispozitivul video - + Device Aparat - + Resolution Claritate - + Select video resolution Alege claritatea video - + Enable hardware acceleration Activează accelerarea hardware - + Preview unavailable Previzualizare indisponibilă - + Screen Sharing Distribuirea ecranului - + Select screen sharing frame rate (frames per second) Alege frecvența video a distribuirii (imagini/secundă) - + no video fără video - + Backup account here Fă aici o copie de rezervă a contului - + Backup your account! Fă o copie de rezervă a contului! - + Backup account Fă o copie de rezervă - + Skip Omite - + Success Succes - + Error Eroare - + Never show me this again Nu îmi mai arăta asta - + Recommended Recomandat - + Jami archive files Fișierul arhivei Jami - + All files Toate fișierele - + Reinstate as contact Restabilește contactul - + name nume - + Identifier Identificator - + is recording e înregistrată - + are recording sînt înregistrate - + Peer stopped recording Interlocutorul a oprit înregistrarea - + is calling you te sună - - + + Mute Oprește microfonul - - + + Unmute Pornește microfonul - + Add participant Adaugă un participant - + Add participants Adaugă participanți - + Chat Discuție - + More options Alte opțiuni - + Mosaic Mozaic - + You are still muted by moderator Moderatorul încă nu te lasă să vorbești - + You are muted by a moderator Un moderator nu te lasă să vorbești - + Moderator Moderator - + Host Gazdă - + Local and Moderator muted Microfon oprit la tine și la Moderator - + Moderator muted Microfon oprit la Moderator - + Not muted Pornit - + Cut Taie - + Paste Lipește - + Start video call Începe un apel video - + Start audio call Începe un apel vocal - + Clear conversation Șterge conversația - + Remove conversation Șterge conversația - + Remove contact Șterge contactul - + Block contact Blochează contactul - + Contact details Detaliile contactului - + Hold Pauză - + Sip input panel Tastatură SIP - + Transfer call Transferă apelul - + Stop recording Oprește înregistrarea - + Start recording Începe înregistrarea - + Exit full screen Micșorează - + Share screen Distribuie ecranul - + Share window Distribuie fereastra - + Share screen area Distribuie zona ecranului - + Share file Distribuie fișierul - + Select sharing method Alege metoda de distribuire - + View plugin Arată extensia - + No video device Niciun dispozitiv video - + N/A Indisponibil - + Lower hand Coboară mîna - + Raise hand Ridică mîna - + Hide chat view Ascunde discuția - + Place audio call Fă apel vocal - + Place video call Fă apel video - + Show available plugins Arată extensiile disponibile - + Add to conversations Adaugă la conversații - + Jump to latest Saltă la ultimul - + {} is typing… {} scrie… - + {} are typing… {} scriu… - + Several people are typing… Cîteva persoane scriu… - + and și - + Enter Jami Account Management Server (JAMS) URL Introdu URL-ul Serverului de Administrare a Conturilor JAMI (JAMS) - + Required Obligatoriu - + Jami Account Management Server URL URL-ul Serverului de Administrare a Conturilor - + Enter your JAMS credentials Introdu datele de autentificare JAMS - + Connect Conectează - + Back to welcome page Înapoi la prima pagina - + Choose name Alege un nume - + Choose username Alege numele de utilizator - + Create account Creează contul - + Confirm password Confirmă parola - + Optional Facultativ - + Choose a username for your account Alege un nume de utilizator pentru contul tău - + Choose a name Alege un nume - + Choose your username Alege numele de utilizator - + Invalid name Nume greșit - + Invalid username Nume greșit - + Name already taken Nume ales deja - + Username already taken Nume de utilizator ales deja - + Proxy Proxy - + Server Server - + Create SIP account Creează un cont SIP - + Configure an existing SIP account Configurează un cont SIP existent - + Backup successful Copie de rezervă reușită - + Backup failed Copie de rezervă nereușită - + Password changed successfully Parolă schimbată cu succes - + Password change failed Schimbare nereușită a parolei - + Password set successfully Parolă pusă cu succes - + Password set failed Parola nu a putut fi pusă - + Change password Schimbă parola - - + + Set password Pune o parolă - + Change current password Schimbă parola actuală - + Backup account to a .gz file Copie de rezervă a contului ca fișier .gz - + Enable account Activează contul - + Set username Nume de utilizator - + Registering name Se înscrie numele - + Register a username Înscrie un nume de utilizator - + Register username Înscrie numele de utilizator - + Link a new device to this account Asociază alt aparat acestui cont - + Link another device Asociază alt aparat - + Exporting account… Se exportă contul... - + Remove Device Elimină aparatul - + Are you sure you wish to remove this device? Sigur vrei să elimini acest aparat? - + Linked Devices Aparate asociate - + Your PIN is: Codul tău PIN e: - + Error connecting to the network. Please try again later. Eroare la conectarea la rețea. Încearcă din nou mai tîrziu. - + Do you really want to delete this account? Chiar vrei să ștergi acest cont? - + Save new device name Salvează noul nume al aparatului - + Edit device name Modifică numele aparatului - + Unlink device from account Disociază aparatul de cont - + Select a folder Alege un dosar - + Enable notifications Activează notificările - + Enable dark theme Activează fondul negru - + Keep minimized on close Menține activ după închidere - + Run application on system startup Pornește programul odată cu sistemul - + Downloads directory Descarcă în dosarul - + Choose download directory Alege locul de descărcare - + Record call Înregistrează apelul - + Chatview Discuție - + Display hyperlink previews in the chatview Arată adresele web în discuții - + User interface language Limba interfeței cu utilizatorul - + File transfer Transfer de fișiere - + Allow incoming files from unknown contacts Primește fișiere de la persoane necunoscute - + Automatically accept incoming files Acceptă automat fișierele primite - + Accept transfer limit Limita transferului acceptat - + in MB, 0 = unlimited în MB, 0 = nelimitat - + Register Înscrie-te - + Incorrect password Parolă greșită - + Save file Salvează fișierul - + Open location Deschide poziția - + Install beta version Instalează versiunea beta - + Check for updates now Caută actualizări acum - + Enable/Disable automatic updates Act/Dez actualizările automate - + toggle automatic updates Act/Dez actualizările automate - + Updates Actualizări - + Update Actualizare - + A new version of Jami was found Would you like to update now? Jami are o versiune nouă Vrei să actualizezi acum? - + No new version of Jami was found Jami nu are o versiune nouă - + An error occured when checking for a new version A apărut o eroare la căutarea unei noi versiuni - + Installer download canceled Descărcarea programului a fost anulată - + This will uninstall your current Release version and you can always download the latest Release version on our website Aceasta va dezinstala versiunea actuală și poți descărca cînd vrei ultima versiune de pe situl nostru web - + Network disconnected Rețea deconectată - - + + Something went wrong Ceva n-a mers bine - + Troubleshoot Depanare - + Open logs Deschide jurnalul - + Get logs Obține jurnalul - + Select a record directory Alege un loc pentru înregistrări - + Debug Depanare - + Show Stats Arată statistici - + Start Pornește - + Stop Stop - + Generating account… Se creează contul... - + Import from backup Importă din copia de rezervă - + PIN PIN - + Stop taking photo Nu mai face poze - + Clear avatar image Șterge poza de profil - + Go back to plugins list Întoarce-te la extensii - + Profile is only shared with contacts Profilul este distribuit doar contactelor - + Enter your name Introdu numele tău - + Import account from other device Importă contul din alt aparat - + Import account from backup file Importă contul din copia de rezervă - + Hide advanced features Ascunde caracteristicile avansate - + Create new Jami account Creează un cont Jami nou - + Create new SIP account Creează un cont SIP nou - + Welcome to Bine ai venit pe - + Upgrade Actualizare - + Later Mai tîrziu - + Local muted Microfon local oprit - + Trying to reconnect to the Jami daemon (jamid)… Reconectare la serviciul Jami (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Reconectare imposibilă la serviciul Jami (jamid). Jami se va închide acum. - + Is swarm: Este grupul: - + True Adevărat - + False Fals - + Add emoji Adaugă emoji - + Send file Trimite un fișier - + Leave audio message Trimite mesaj vocal - + Leave video message Trimite mesaj video - + Send Trimite - + Remove Elimină - + Write to %1 Scrie pentru %1 - + %1 has sent you a request for a conversation. %1 ți-a trimis o invitație la o conversație. - + Hello, Would you like to join the conversation? Vrei să participi la conversație? - + You have accepted the conversation request Ai acceptat invitația la conversație. - + Waiting until %1 connects to synchronize the conversation. Se așteaptă ca %1 să se conecteze pentru a sincroniza conversația. - - + + Copy Copiază - + Participant is still muted on their device Participantul încă are microfonul oprit în aparatul său - + You are still muted on your device Microfonul aparatului tău încă este oprit - + View full screen Pe tot ecranul - + Stop sharing screen or file Oprește distribuirea ecranului sau a fișierului - + Display advanced settings Arată reglările avansate - + Hide advanced settings Ascunde reglările avansate - + Display banned contacts Arată contactele blocate - + Hide banned contacts Ascunde contactele blocate - + Layout Aranjare - + Vertical view Pe verticală - + Horizontal view Pe orizontală - + Keyboard Shortcut Table Taste Rapide - + Conversation Conversație - + Call Apel - + Settings Reglări - + Report Bug Raportează erori - + Clear Șterge - + Copied to clipboard! Copiat în notițe! - + Receive Logs Obține jurnalul - + Archive Arhivă - + Open file Deschide fișierul - + Create your account from a backup Creează contul tău dintr-o copie de rezervă - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Poți obține o arhivă făcînd clic pe „Copie de rezervă a contului” în reglările contului. Asta va crea un fișier .gz în aparatul tău. - + Restore an account from backup Recuperează un cont din copia de rezervă - + Enter Jami account password Introdu parola contului tău Jami - + The PIN and the account password should be entered in your device within 10 minutes. Codul PIN și parola contului trebuie introduse în aparatul tău în 10 minute. - + Close Închide - + Enter your account password Introdu parola contului - + Add Device Adaugă un Aparat - + Enter the password Introdu parola - + Enter current password Introdu parola actuală - + Enter this account's password to confirm the removal of this device Introdu parola acestui cont pentru a confirma eliminarea acestui aparat - + Enter new password Introdu parola nouă - + Confirm new password Confirmă parola nouă - + Change Schimbă - + Confirm Confirmă - + Export Exportă - + Choose a picture as avatar Alege o poză de profil - + Import avatar from image file Importă poza de profil - + Take photo Fă o poză - + Reset Restabilește - + Select a plugin to install Alege o extensie de instalat - + Install plugin Instalează extensia - + Save profile Salvează profilul - + Information Informație - + Enter the account password to confirm the removal of this device Introdu parola acestui cont pentru a confirma eliminarea acestui aparat - + Select a screen to share Alege ecranul de distribuit - + Select a window to share Alege fereastra de distribuit - + All Screens Toate Ecranele - + Screens Ecrane - + Windows Ferestre - + QR code Cod QR - + Account QR Codul QR al contului - + This is your Jami username. Copy and share it with your friends! Acesta e numele tău de utilizator Jami. Copiază-l și distribuie-l prietenilor! - + Link this device to an existing account Asociază acest aparat unui cont existent - + Advanced features Caracteristici avansate - + Show advanced features Arată caracteristicile avansate - + Connect to a JAMS server Conectează-te la un server JAMS - + Add a SIP account Adaugă un cont SIP - + Error while creating your account. Check your credentials. Eroare la crearea contului. Verifică datele de autentificare. - + Clear Text Șterge textul - + Search Results Rezultatele căutării - + Delete Șterge - + Set moderator Pune un moderator - + Unset moderator Elimină moderatorul - + Maximize Maximizează - + Minimize Minimizează - + Hangup Închide - + Conference moderation Moderarea conferinței - + Default moderators Moderatori prestabiliți - + Enable local moderators Activează moderatori locali - + Make all participants moderators Fă-i moderatori pe toți participanții - + Add default moderator Adaugă un moderator prestabilit - + Remove default moderator Elimină moderatorul prestabilit @@ -2349,112 +2349,112 @@ Copiază-l și distribuie-l prietenilor! KeyboardShortcutTable - + Open account list Deschide lista de conturi - + Focus conversations list Arată lista conversațiilor - + Requests list Lista cererilor - + Previous conversation Conversația precedentă - + Next conversation Conversația următoare - + Search bar Spațiul de căutare - + Full screen Pe tot ecranul - + Start an audio call Începe un apel vocal - + Start a video call Începe un apel video - + Clear history Șterge conversația - + Block contact Blochează contactul - + Remove conversation Șterge conversația - + Accept contact request Acceptă cererea de contact - + Media settings Reglările Media - + General settings Reglări generale - + Account settings Reglările contului - + Plugin settings Reglări Extensii - + Open account creation wizard Deschide asistentul de creare a contului - + Open keyboard shortcut table Arată tastele rapide - + Answer an incoming call Răspunde la apel - + End call Închide apelul - + Decline the call request Refuză apelul @@ -2462,17 +2462,17 @@ Copiază-l și distribuie-l prietenilor! MainApplication - + E&xit I&eșire - + &Quit Î&nchide - + &Show Jami &Arată Jami @@ -2480,12 +2480,12 @@ Copiază-l și distribuie-l prietenilor! PhotoboothView - + Image Files Imagini - + All files Toate fișierele @@ -2493,7 +2493,7 @@ Copiază-l și distribuie-l prietenilor! PluginHandlerItemDelegate - + On/Off Pornit/Oprit @@ -2501,12 +2501,12 @@ Copiază-l și distribuie-l prietenilor! PluginHandlerPicker - + Choose plugin Alege extensia - + Preferences Preferințe @@ -2514,7 +2514,7 @@ Copiază-l și distribuie-l prietenilor! PluginItemDelegate - + Load/Unload Pornește/Oprește @@ -2522,27 +2522,27 @@ Copiază-l și distribuie-l prietenilor! PluginListPreferencesView - + Uninstall plugin Dezinstalează extensia - + Reset preferences Restabilește preferințele inițiale - + Ok Bine - + Cancel Renunță - + Uninstall Dezinstalează @@ -2550,17 +2550,17 @@ Copiază-l și distribuie-l prietenilor! PluginListSettingsView - + Plugin Files Fișiere Extensie - + All files Toate fișierele - + Installed plugins Extensii instalate @@ -2568,7 +2568,7 @@ Copiază-l și distribuie-l prietenilor! PreferenceItemDelegate - + Edit preference Modifică preferințele @@ -2576,107 +2576,107 @@ Copiază-l și distribuie-l prietenilor! QObject - + Created by: Creat de: - + Artwork by: Grafică de: - + Based on the SFLPhone project Bazat pe proiectul SFLPhone - + Sending Se trimite - + Failure Eșec - + Sent Trimis - + Connecting Se conectează - + Accept Acceptă - + Canceled Anulat - + Unable to make contact Imposibil de contactat - + Ongoing În curs - + Waiting for contact În așteptare - + Incoming transfer Transfer primit - + Timed out waiting for contact Timpul de așteptare a expirat - + Finished Terminat - + %1 days ago acum %1 zile - + one day ago acum o zi - + %1 hours ago acum %1 ore - + one hour ago acum o oră - + %1 minutes ago acum %1 minute - + just now chiar acum @@ -2684,22 +2684,22 @@ Copiază-l și distribuie-l prietenilor! RecordingSettings - + Call Recording Înregistrare apeluri - + Always record calls Înregistrează mereu apelurile - + Quality Calitate - + Save in Salvează în @@ -2707,7 +2707,7 @@ Copiază-l și distribuie-l prietenilor! RevokeDevicePasswordDialog - + Remove Elimină @@ -2715,7 +2715,7 @@ Copiază-l și distribuie-l prietenilor! SelectScreen - + Screen Ecran @@ -2723,7 +2723,7 @@ Copiază-l și distribuie-l prietenilor! SettingParaCombobox - + @@ -2731,22 +2731,22 @@ Copiază-l și distribuie-l prietenilor! SmartListModel - - - - - - + + + + + + Calls Apeluri - - - - - - + + + + + + Contacts Contacte @@ -2754,17 +2754,17 @@ Copiază-l și distribuie-l prietenilor! SystemSettings - + System Sistem - + Enable dark theme Activează fondul negru - + Enable desktop notifications Afișați notificări @@ -2772,27 +2772,27 @@ Copiază-l și distribuie-l prietenilor! SystemTray - + Answer Răspunde - + Decline Refuză - + Open conversation Deschide conversația - + Accept Acceptă - + Refuse Refuză @@ -2800,7 +2800,7 @@ Copiază-l și distribuie-l prietenilor! UserIdentity - + Identity Identitate @@ -2808,17 +2808,17 @@ Copiază-l și distribuie-l prietenilor! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Prestabilit - + System Sistem diff --git a/translations/ring_client_windows_ru.ts b/translations/ring_client_windows_ru.ts index d5f80e8f..655e9275 100644 --- a/translations/ring_client_windows_ru.ts +++ b/translations/ring_client_windows_ru.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Добавить аккаунт @@ -10,7 +10,7 @@ AccountProfile - + Profile Профиль @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Аудио файлы - + All files Все файлы @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Файл сертификата - - - + + + All files Все файлы - + Key File Файл ключа @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Файл сертификата - - - + + + All files Все файлы - + Key File Файл ключа @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Дополнительные настройки аккаунта @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Заблокированные контакты @@ -89,32 +89,32 @@ CallAdapter - + Missed call Пропущенный вызов - + Missed call with %1 - + me мне - + Incoming call Входящий звонок - + %1 is calling you %1 звонит вам - + is calling you звонит вам @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Добавить к конференции - + Transfer this call Передать этот звонок - + Add default moderator Добавить модератора по умолчанию @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Новое сообщение - + Trust request Запрос доверия @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok В порядке - - + + Success Успешно - - + + Error Ошибка - + Jami archive files Файлы архива Jami - + All files Все файлы @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Не удалось повторно подключиться к демону Jami (jamid). Jami сейчас завершит работу. - + Trying to reconnect to the Jami daemon (jamid)… Попытка повторного подключения к демону Jami (jamid)... - + Ok В порядке @@ -211,7 +211,7 @@ Jami сейчас завершит работу. DeviceItemDelegate - + Device Id Устройство ID @@ -219,2129 +219,2129 @@ Jami сейчас завершит работу. JamiStrings - + Find a user or search for a conversation Найдите пользователя или выполните поиск по чату - + Search your invitations Найти ваши инвайты - + Invitations Приглашения - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami - это свободное программное обеспечение для универсальной коммуникации, которое уважает свободу и конфиденциальность своих пользователей. - + Version Версия - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami - это свободное программное обеспечение для универсальной коммуникации, которое уважает свободу и конфиденциальность своих пользователей. - + Credits Благодарности - + Display QR code Показать QR код - + Open settings Открыть настройки - + Close settings Закрыть настройки - + Authentication required Необходима авторизация - + Your session has expired or been revoked on this device. Please enter your password. Ваш сеанс истек или был отозван на этом устройстве. Пожалуйста, введите свой пароль. - + JAMS server JAMS сервер - + Authenticate Аутентификация - + Delete account Удалить аккаунт - + Authentication failed Аутентификация не удалась - + Password Пароль - + Username Имя пользователя - + Alias Псевдоним - + Call Settings Настройки вызовов - + Allow incoming calls from unknown contacts Разрешить входящие звонки от неизвестных контактов - + In progress… Выполняется... - + Accept Принять - + Refuse Отказать - + Incoming audio call from {} Входящий вызов от {} - + Incoming video call from {} Входящий вызов от {} - + Convert your account into a rendezvous point Преобразовать вашу учетную запись в точку встречи - + Automatically answer calls Автоматически отвечать на звонки - + Enable custom ringtone Свой рингтон - + Select custom ringtone Выбрать пользовательский рингтон - + Add a custom ringtone Добавить свою мелодию звонка - + Select a new ringtone Выбрать новый рингтон - + Voicemail Голосовая почта - + Voicemail dial code Код набора голосовой почты - + Security Безопасность - + Encrypt media streams (SRTP) Шифровать медиа потоки (SRTP) - + Enable SDES key exchange Включить обмен SDES-ключами - + Allow fallback on RTP Разрешить откат на RTP - + Encrypt negotiation (TLS) Шифровать разговор (TLS) - + CA certificate Сертификат удостоверяющего центра - + User certificate Сертификат пользователя - + Private key Закрытый ключ - + Private key password Пароль закрытого ключа - + Verify certificates for incoming TLS connections Проверять сертификаты для входящих TLS-соединений - + Verify server TLS certificates Проверка серверных TLS сертификатов - + Require certificate for incoming TLS connections Требовать сертификат для входящих TLS-соединений - + TLS protocol method Метод протокола TLS - + Audio input device selector Выбор входного аудиоустройства - + TLS server name имя TLS сервера - + Negotiation timeout (seconds) Ожидание разговора (секунд) - + Select a private key Выбрать приватный ключ - + Select a user certificate Пользовательский сертификат - + Registration expiration time (seconds) Срок действия регистрации (секунд) - + Use custom address and port Использовать указанные адрес и порт - + Enable local peer discovery Включить обнаружение локальных пиров - + Audio and Video Settings Аудио и Видео Настройки - + Frames per second Кадров в секунду - + Select video frame rate (frames per second) Выберите частоту кадров видео (кадров в секунду) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ваша учётная запись существует только на этом устройстве. Если вы потеряете устройство или удалите приложение, учётная запись будет удалена, после чего восстановить её будет невозможно. Вы можете создать резервную копию учётной записи сейчас или позднее. - - + + End call Завершить вызов - + Pause call Приостановить звонок - + Resume call Продолжить звонок - + Pause video Приостановить видео - + Resume video Продолжить видео - + Creating account… Создание учетной записи… - + Encrypt account with password Зашифровать учётную запись паролем - + Create a rendezvous point Создайте точку встречи - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Выберите пароль для шифрования вашей учетной записи на этом устройстве. Учтите, что пароль восстановить нельзя. - + Choose a name for your rendezvous point Выберите название для места встречи - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Если для вашей учётной записи не создана резервная копия, или эта учётная запись не добавлена на другое устройство, то она, вместе с регистрационным именем, будет безвозвратно потеряна. - + Launch at startup Запускать при старте системы - + Enable typing indicators Включить оповещения о наборе текста - - + + Network error Ошибка сети - + SSL error Ошибка SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Введите ПИН-код из другой настроенной учетной записи Jami. Используйте функцию «Связать другое устройство», чтобы получить PIN-код. - + Link device Привязать устройство - + Conversations Разговоры - + Enable Задействовать - + Display or hide preferences Отобразить или скрыть настройки - + Add new plugin Добавить новый плагин - + Select a file Выбрать файл - + Select Выбрать - + Choose image file Выбрать изображение - + Enter the rendezvous point's name Введите название места встречи - + Creating rendezvous point… Создание места встречи... - + Create account from Jami Account Management Server (JAMS) Создайте аккаунт на сервере Управления Аккаунтами Jami (JAMS) - + Create new rendezvous point Создайте новую точку встречи - + Create a Jami account Создать учётную запись Jami - + About Jami О программе Jami - + Decline contact request Отказать в запросе на контакт - + Accept contact request Принять запрос в контакты - + Automatically check for updates Автоматически проверять наличие обновлений - + Ok В порядке - - + + Cancel Отмена - + Accept in audio Принять в аудио - + Accept in video Принять в видео - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Вы просматриваете беседу, все участники которой, кроме вас, покинули ее. Новые взаимодействия будут невозможны. - + Start new conversation Начать новый разговор - + Chat Settings Настройки чата - + Enable read receipts Включить подтверждения прочтения - + Send and receive receipts indicating that a message have been displayed Отправлять и получать уведомления о прочтении - + Select a CA certificate Выбрать сертификат CA - + Connectivity Связь - + Auto Registration After Expired Автоматическая Регистрация После Истечения Срока Действия - + Network interface Сетевой интерфейс - + Use UPnP Использовать UPnP - + Use TURN Использовать TURN - + TURN address Адрес TURN - + TURN username Имя пользователя TURN - + TURN password Пароль TURN - + TURN Realm Домен TURN - + Use STUN Использовать STUN - + STUN address Адрес STUN - + Allow IP Auto Rewrite Разрешить автоматическую перезапись IP-адресов - + Public address Публичный адрес - + Address Адрес - + Port Порт - + Media Медиа - + Enable video Разрешить видео - + Video Codecs Видео кодеки - + Audio Codecs Аудио кодеки - + Name Server Сервер имён - + SDP Session Negotiation (ICE Fallback) Согласование сесcии SDP (ICE недоступен) - + Only used during negotiation in case ICE is not supported Используется только во время переговоров, если ICE не поддерживается - + Audio RTP minimum Port Аудио RTP минимальный Порт - + Audio RTP maximum Port Аудио RTP максимальный Порт - + Video RTP minimum Port Видео RTP минимальный Порт - + Video RTP maximum port Видео RTP максимальный Порт - + Connect to other DHT nodes advertising on your local network. Подключайтесь к другим узлам DHT, работающим в вашей локальной сети. - + OpenDHT Configuration Конфигурация OpenDHT - + Enable proxy Включить прокси - + Proxy address Адрес прокси - + Bootstrap Инициализация - + Back Назад - + Account Settings Настройки аккаунта - + Account Аккаунт - - + + General Общие - + Plugin Дополнение - + Audio/Video Аудио/Видео - + Audio Звук - + Microphone Микрофон - + Select audio input device Выбрать входное аудиоустройство - + Output device Устройство вывода - + Select audio output device Выбрать выходное аудиоустройство - + Ringtone device Рингтон устройства - + Select ringtone output device Выбрать устройство вывода рингтона - + Audio manager Менеджер звука - + Video Видео - + Select video device Выберите видеоустройство - + Device Устройство - + Resolution Разрешение - + Select video resolution Выбрать разрешение видео - + Enable hardware acceleration Включить аппаратное ускорение - + Preview unavailable Предпросмотр недоступен - + Screen Sharing Совместное использование экрана - + Select screen sharing frame rate (frames per second) Выберите частоту кадров совместного доступа к экрану (кадров в секунду) - + no video нет видео - + Backup account here Резервный аккаунт здесь - + Backup your account! Создайте резервную копию! - + Backup account Создать резервную копию аккаунта - + Skip Пропустить - + Success Успешно - + Error Ошибка - + Never show me this again Больше не показывать - + Recommended Рекомендуется - + Jami archive files Файлы архива Jami - + All files Все файлы - + Reinstate as contact Восстановить как контакт - + name имя - + Identifier Идентификатор - + is recording записывает - + are recording записывают - + Peer stopped recording Пир приостановил запись - + is calling you звонит вам - - + + Mute Беззвучно - - + + Unmute Включить звук - + Add participant Добавить участника - + Add participants Добавить участника - + Chat Чат - + More options Дополнительные опции - + Mosaic Мозаика - + You are still muted by moderator Вы всё ещё заблокированы модератором - + You are muted by a moderator Вы заблокированы модератором - + Moderator Модератор - + Host Хост - + Local and Moderator muted Отключён локальный звук и звук модератора - + Moderator muted Модератор отключил звук - + Not muted Не отключается - + Cut Вырезать - + Paste Вставить - + Start video call Начать видеовызов - + Start audio call Начать голосовой вызов - + Clear conversation Очистить разговор - + Remove conversation Удалить диалог - + Remove contact Удалить контакт - + Block contact Заблокировать контакт - + Contact details Информация о контакте - + Hold Удерживать - + Sip input panel Панель ввода Sip - + Transfer call Передать звонок - + Stop recording Остановить запись - + Start recording Начать запись - + Exit full screen Выйти из полноэкранного режима - + Share screen Демонстрация экрана - + Share window Показать окно - + Share screen area Демонстрация области экрана - + Share file Поделиться файлом - + Select sharing method Выберите метод доступа - + View plugin Плагин просмотра - + No video device Нет устройства захвата - + N/A Недоступно - + Lower hand Опущенная рука - + Raise hand Поднять руку - + Hide chat view Скрыть чат - + Place audio call Сделать аудиозвонок - + Place video call Сделать видеозвонок - + Show available plugins Показать доступные плагины - + Add to conversations Добавить к контактам - + Jump to latest Прокрутить до конца беседы - + {} is typing… {} печатает... - + {} are typing… {} печатают... - + Several people are typing… Несколько человек печатает... - + and и - + Enter Jami Account Management Server (JAMS) URL Введите URL-адрес сервера управления учетной записью Jami (JAMS) - + Required Требуется - + Jami Account Management Server URL URL-адрес сервера управления аккаунтами Jami - + Enter your JAMS credentials Введите свои учетные данные JAMS - + Connect Соединение - + Back to welcome page Назад на страницу приветствия - + Choose name Выберите имя - + Choose username Выберите имя пользователя - + Create account Создать аккаунт - + Confirm password Подтверждение пароля - + Optional По желанию - + Choose a username for your account Выберите имя пользователя для вашей учётной записи - + Choose a name Выберите имя - + Choose your username Выберите ваше имя пользователя - + Invalid name Неправильное имя - + Invalid username Недопустимое имя пользователя - + Name already taken Имя уже занято - + Username already taken Имя пользователя уже занято - + Proxy Прокси - + Server Сервер - + Create SIP account Создать SIP aккаунт - + Configure an existing SIP account Настройте существующую учетную запись SIP - + Backup successful Резервное копирование завершено - + Backup failed Не удалось создать резервную копию - + Password changed successfully Пароль успешно изменён - + Password change failed Не удалось изменить пароль - + Password set successfully Успешно установлен пароль - + Password set failed Не удалось установить пароль - + Change password Изменить пароль - - + + Set password Установить пароль - + Change current password Изменить текущий пароль - + Backup account to a .gz file Резервная копия аккаунта в .gz файл - + Enable account Включить аккаунт - + Set username Задать имя пользователя - + Registering name Регистрация имени - + Register a username Зарегистрировать имя пользователя - + Register username Зарегистрировать имя пользователя - + Link a new device to this account Свяжите новое устройство с этим аккаунтом - + Link another device Привязать другое устройство - + Exporting account… Экспорт аккаунта… - + Remove Device Удалить устройство - + Are you sure you wish to remove this device? Вы действительно хотите удалить это устройство? - + Linked Devices Привязанные устройства - + Your PIN is: Ваш PIN: - + Error connecting to the network. Please try again later. Ошибка подключения к сети. Пожалуйста, попробуйте еще раз позже. - + Do you really want to delete this account? Вы действительно хотите удалить этот аккаунт? - + Save new device name Сохранить новое имя устройства - + Edit device name Изменить имя устройства - + Unlink device from account Отвязать устройство от аккаунта - + Select a folder Выберите папку - + Enable notifications Включить уведомления - + Enable dark theme Включить темную тему - + Keep minimized on close Сворачивать вместо закрытия - + Run application on system startup Запускать приложение при старте системы - + Downloads directory Папка "Загрузки" - + Choose download directory Изменить папку для загрузки - + Record call Записать разговор - + Chatview Чат - + Display hyperlink previews in the chatview Показывать эскизы ссылок - + User interface language Язык интерфейса пользователя - + File transfer Передача файла - + Allow incoming files from unknown contacts Разрешить принятие файлов от неизвестных контактов - + Automatically accept incoming files Автоматически принимать входящие файлы - + Accept transfer limit Принять лимит на передачу - + in MB, 0 = unlimited в МБ, 0 = неограниченно - + Register Зарегистрировать - + Incorrect password Неверный пароль - + Save file Сохранить файл - + Open location Открыть расположение - + Install beta version Установить бета версию - + Check for updates now Проверить обновления - + Enable/Disable automatic updates Вкл/Выкл автоматические обновления - + toggle automatic updates переключить автоматические обновления - + Updates Обновления - + Update Обновить - + A new version of Jami was found Would you like to update now? Была найдена новая версия Jami Хотите обновить сейчас? - + No new version of Jami was found Не найдено обновлений для Jami - + An error occured when checking for a new version Произошла ошибка при проверке новой версии - + Installer download canceled Загрузка установщика отменена - + This will uninstall your current Release version and you can always download the latest Release version on our website Это удалит вашу текущую версию программы, и вы всегда можете скачать последнюю версию на нашем сайте. - + Network disconnected Сеть отключена - - + + Something went wrong Что-то пошло не так. - + Troubleshoot Устранение неполадок - + Open logs Открыть журнал логов - + Get logs Получить журнал логов - + Select a record directory Выберите директорию для записи - + Debug Отладка - + Show Stats Показать статистику - + Start Начать - + Stop Стоп - + Generating account… Создание учётной записи... - + Import from backup Импортировать из резервной копии - + PIN PIN - + Stop taking photo Прекратить фотографировать - + Clear avatar image Очистить изображение аватара - + Go back to plugins list Вернуться к списку дополнений - + Profile is only shared with contacts Ваш профиль доступен только вашим контактам - + Enter your name Введите своё имя - + Import account from other device Импорт аккаунта с другого устройства - + Import account from backup file Импортировать аккаунт из файла - + Hide advanced features Скрыть дополнительные функции - + Create new Jami account Создать новый Jami аккаунт - + Create new SIP account Создать SIP аккаунт - + Welcome to Добро пожаловать в - + Upgrade Обновить - + Later Позже - + Local muted Отключён звук локально - + Trying to reconnect to the Jami daemon (jamid)… Попытка повторного подключения к демону Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Не удалось повторно подключиться к демону Jami (jamid). Jami сейчас завершит работу. - + Is swarm: Рой: - + True Правда - + False Ложь - + Add emoji Добавить эмоджи - + Send file Отправить файл - + Leave audio message Оставить аудио сообщение - + Leave video message Оставить видео сообщение - + Send Отправить - + Remove Удалить - + Write to %1 Запись в %1 - + %1 has sent you a request for a conversation. %1 отправил вам запрос на разговор. - + Hello, Would you like to join the conversation? Привет, Вы хотите присоединиться к разговору? - + You have accepted the conversation request Вы приняли запрос на разговор - + Waiting until %1 connects to synchronize the conversation. Ожидание, пока %1 подключится для синхронизации разговора. - - + + Copy Копировать - + Participant is still muted on their device Участник по-прежнему отключён на своём устройстве - + You are still muted on your device Вы все ещё отключены на вашем устройстве - + View full screen Полноэкранный вид - + Stop sharing screen or file Остановить трансляцию или доступ к файлу - + Display advanced settings Отображение расширенных настроек - + Hide advanced settings Скрыть расширенные настройки - + Display banned contacts Отображение запрещенных контактов - + Hide banned contacts Скрыть заблокированные контакты - + Layout Макет - + Vertical view Вертикальное представление - + Horizontal view Горизонтальное представление - + Keyboard Shortcut Table Таблица сочетаний клавиш - + Conversation Беседа - + Call Звонок - + Settings Настройки - + Report Bug Сообщить об ошибке - + Clear Очистить - + Copied to clipboard! Cкопировано в буфер обмена! - + Receive Logs Получить журнал логов - + Archive Архив - + Open file Открыть файл - + Create your account from a backup Создать аккаунт из резервной копии - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Архив можно получить, нажав на кнопку «Резервное копирование учетной записи» в настройках аккаунта. В результате будет создан файл .gz на вашем устройстве. - + Restore an account from backup Восстановить аккаунт из резервной копии - + Enter Jami account password Введите пароль Jami аккаунта - + The PIN and the account password should be entered in your device within 10 minutes. PIN-код и пароль учетной записи должны быть введены в устройство в течение 10 минут. - + Close Закрыть - + Enter your account password Введите пароль вашего аккаунта - + Add Device Добавить устройство - + Enter the password Введите пароль - + Enter current password Введите текущий пароль - + Enter this account's password to confirm the removal of this device Введите пароль аккаунта для удаления этого устройства - + Enter new password Введите новый пароль - + Confirm new password Подтвердите новый пароль - + Change Изменить - + Confirm Подтвердить - + Export Экспорт - + Choose a picture as avatar Выбрать изображение для аватарки - + Import avatar from image file Импортировать аватар из файла изображения - + Take photo Сфотографировать - + Reset Сброс - + Select a plugin to install Выбрать дополнение чтобы установить - + Install plugin Установить дополнение - + Save profile Сохранить профиль - + Information Информация - + Enter the account password to confirm the removal of this device Введите пароль учетной записи, чтобы подтвердить удаление этого устройства - + Select a screen to share Выбрать экран - + Select a window to share Выберите окно, чтобы поделиться - + All Screens Все экраны - + Screens Экраны - + Windows Окна - + QR code QR код - + Account QR QR Аккаунта - + This is your Jami username. Copy and share it with your friends! Это ваше имя пользователя Jami. Скопируйте и поделитесь им с друзьями! - + Link this device to an existing account Привязать это устройство к существующему аккаунту - + Advanced features Дополнительные функции - + Show advanced features Показать расширенные функции - + Connect to a JAMS server Подключиться к JAMS серверу - + Add a SIP account Добавить аккаунт SIP - + Error while creating your account. Check your credentials. Ошибка при создании учетной записи. Проверьте свои учетные данные. - + Clear Text Очистить Текст - + Search Results Результаты поиска - + Delete Удалить - + Set moderator Установить модератора - + Unset moderator Отменить установку модератора - + Maximize Максимизировать - + Minimize Свернуть - + Hangup Повесить трубку - + Conference moderation Модерирование конференции - + Default moderators Модераторы по умолчанию - + Enable local moderators Включить локальных модераторов - + Make all participants moderators Сделать всех участников модераторами - + Add default moderator Добавить модератора по умолчанию - + Remove default moderator Удалить модератора по умолчанию @@ -2349,112 +2349,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Открыть список учётных записей - + Focus conversations list Фокус на списке разговоров - + Requests list Список запросов - + Previous conversation Предыдущий разговор - + Next conversation Новый чат - + Search bar Панель поиска - + Full screen Полноэкранный - + Start an audio call Сделать аудиозвонок - + Start a video call Сделать видеозвонок - + Clear history Очистить историю - + Block contact Заблокировать контакт - + Remove conversation Удалить диалог - + Accept contact request Принять запрос в контакты - + Media settings Настройки медиа - + General settings Основные настройки - + Account settings Настройка аккаунта - + Plugin settings Настройки плагина - + Open account creation wizard Мастер создания аккаунта - + Open keyboard shortcut table Открыть таблицу сочетаний клавиш - + Answer an incoming call Ответ на входящий звонок - + End call Завершить вызов - + Decline the call request Отклонить вызов @@ -2462,17 +2462,17 @@ Copy and share it with your friends! MainApplication - + E&xit В&ыход - + &Quit &Выход - + &Show Jami &Показать Jami @@ -2480,12 +2480,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Изображения - + All files Все файлы @@ -2493,7 +2493,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Вкл/Выкл @@ -2501,12 +2501,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Выбрать дополнение - + Preferences Настройки @@ -2514,7 +2514,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Загрузка/Выгрузка @@ -2522,27 +2522,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Удалить дополнение - + Reset preferences Сбросить настройки - + Ok В порядке - + Cancel Отмена - + Uninstall Удалить @@ -2550,17 +2550,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Файл дополнения - + All files Все файлы - + Installed plugins Установленные дополнения @@ -2568,7 +2568,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Изменить настройки @@ -2576,107 +2576,107 @@ Copy and share it with your friends! QObject - + Created by: Авторы проекта: - + Artwork by: Дизайн: - + Based on the SFLPhone project Основано на проекте SFLPhone - + Sending Отправка - + Failure Ошибка - + Sent Отправлено - + Connecting Подключение - + Accept Принять - + Canceled Отменено - + Unable to make contact Не удалось установить контакт - + Ongoing Текущий - + Waiting for contact Ожидание контакта - + Incoming transfer Входящий перевод - + Timed out waiting for contact Тайм-аут ожидания контакта - + Finished Завершён - + %1 days ago %1 дней назад - + one day ago один день назад - + %1 hours ago %1 часов назад - + one hour ago один час назад - + %1 minutes ago %1 минут назад - + just now прямо сейчас @@ -2684,22 +2684,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Запись разговоров - + Always record calls Всегда записывать разговоры - + Quality Качество - + Save in Сохранить в @@ -2707,7 +2707,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Удалить @@ -2715,7 +2715,7 @@ Copy and share it with your friends! SelectScreen - + Screen Экран @@ -2723,7 +2723,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2731,22 +2731,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Звонки - - - - - - + + + + + + Contacts Контакты @@ -2754,17 +2754,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme Включить темную тему - + Enable desktop notifications Показывать уведомления @@ -2772,27 +2772,27 @@ Copy and share it with your friends! SystemTray - + Answer Ответить - + Decline Отклонить - + Open conversation Открыть разговор - + Accept Принять - + Refuse Отказать @@ -2800,7 +2800,7 @@ Copy and share it with your friends! UserIdentity - + Identity Идентификатор @@ -2808,17 +2808,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/с - + Default По умолчанию - + System Система diff --git a/translations/ring_client_windows_ru_RU.ts b/translations/ring_client_windows_ru_RU.ts index 5941ef17..f89d5ecc 100644 --- a/translations/ring_client_windows_ru_RU.ts +++ b/translations/ring_client_windows_ru_RU.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Добавить аккаунт @@ -10,7 +10,7 @@ AccountProfile - + Profile Профиль @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Аудио Файлы - + All files Все файлы @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Файл сертификата - - - + + + All files Все файлы - + Key File Ключ-Файл @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Файл сертификата - - - + + + All files Все файлы - + Key File Ключ-Файл @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Дополнительные Настройки Аккаунта @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Заблокированные Контакты @@ -89,32 +89,32 @@ CallAdapter - + Missed call Пропущенный вызов - + Missed call with %1 - + me я - + Incoming call Входящий вызов - + %1 is calling you %1 звонит вам - + is calling you звонит вам @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Добавить в чат - + Transfer this call Передать этот звонок - + Add default moderator Добавить модератора по умолчанию @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Новое сообщение - + Trust request Запрос доверия @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok В порядке - - + + Success Успешно - - + + Error Ошибка - + Jami archive files Jami архив файлы - + All files Все файлы @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Не удалось повторно подключиться к демону Jami (jamid). Jami сейчас завершит работу. - + Trying to reconnect to the Jami daemon (jamid)… Попытка повторного подключения к демону Jami (jamid)... - + Ok В порядке @@ -211,7 +211,7 @@ Jami сейчас завершит работу. DeviceItemDelegate - + Device Id Id Устройства @@ -219,2129 +219,2129 @@ Jami сейчас завершит работу. JamiStrings - + Find a user or search for a conversation Найдите пользователя или выполните поиск по чату - + Search your invitations Найти ваши инвайты - + Invitations Приглашения - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami - это свободное программное обеспечение для универсальной коммуникации, которое уважает свободу и конфиденциальность своих пользователей. - + Version Версия - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami - это свободное программное обеспечение для универсальной коммуникации, которое уважает свободу и конфиденциальность своих пользователей. - + Credits Авторы - + Display QR code Показать QR код - + Open settings Открыть настройки - + Close settings Закрыть настройки - + Authentication required Необходима авторизация - + Your session has expired or been revoked on this device. Please enter your password. Ваш сеанс истек или был отозван на этом устройстве. Пожалуйста, введите свой пароль. - + JAMS server JAMS сервер - + Authenticate Аутентификация - + Delete account Удалить аккаунт - + Authentication failed Аутентификация не удалась - + Password Пароль - + Username Имя пользователя - + Alias Псевдоним - + Call Settings Настройки вызова - + Allow incoming calls from unknown contacts Разрешить входящие звонки от незнакомых контактов - + In progress… Выполняется... - + Accept Принять - + Refuse Отказать - + Incoming audio call from {} Входящий вызов от {} - + Incoming video call from {} Входящий вызов от {} - + Convert your account into a rendezvous point Преобразовать вашу учетную запись в точку встречи - + Automatically answer calls Автоматически отвечать на звонки - + Enable custom ringtone Свой рингтон - + Select custom ringtone Выбрать пользовательский рингтон - + Add a custom ringtone Добавить свой рингтон - + Select a new ringtone Выбрать новый рингтон - + Voicemail Голосовая почта - + Voicemail dial code Код набора голосовой почты - + Security Безопасность - + Encrypt media streams (SRTP) Шифровать медиа потоки (SRTP) - + Enable SDES key exchange Включить обмен SDES-ключами - + Allow fallback on RTP Разрешить откат на RTP - + Encrypt negotiation (TLS) Шифровать разговор (TLS) - + CA certificate Сертификат удостоверяющего центра - + User certificate Сертификат пользователя - + Private key Приватный ключ - + Private key password Пароль приватного ключа - + Verify certificates for incoming TLS connections Проверять сертификаты для входящих TLS-соединений - + Verify server TLS certificates Проверка серверных TLS сертификатов - + Require certificate for incoming TLS connections Требовать сертификат для входящих TLS-соединений - + TLS protocol method Метод протокола TLS - + Audio input device selector Селектор устройства аудиовхода - + TLS server name имя TLS сервера - + Negotiation timeout (seconds) Ожидание разговора (секунд) - + Select a private key Выбрать приватный ключ - + Select a user certificate Пользовательский сертификат - + Registration expiration time (seconds) Срок действия регистрации (секунд) - + Use custom address and port Использовать указанные адрес и порт - + Enable local peer discovery Включить обнаружение локальных пиров - + Audio and Video Settings Аудио и Видео Настройки - + Frames per second Кадров в секунду - + Select video frame rate (frames per second) Выберите частоту кадров видео (кадров в секунду) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ваша учётная запись существует только на этом устройстве. Если вы потеряете устройство или удалите приложение, учётная запись будет удалена, после чего восстановить её будет невозможно. Вы можете создать резервную копию учётной записи сейчас или позднее. - - + + End call Завершить вызов - + Pause call Приостановить звонок - + Resume call Продолжить звонок - + Pause video Приостановить видео - + Resume video Продолжить видео - + Creating account… Создание учетной записи… - + Encrypt account with password Зашифровать аккаунт с помощью пароля - + Create a rendezvous point Создайте точку встречи - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Выберите пароль для шифрования вашей учетной записи на этом устройстве. Учтите, что пароль восстановить нельзя. - + Choose a name for your rendezvous point Выберите название для места встречи - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Если для вашей учётной записи не создана резервная копия, или эта учётная запись не добавлена на другое устройство, то она, вместе с регистрационным именем, будет безвозвратно потеряна. - + Launch at startup Запускать при старте системы - + Enable typing indicators Включить оповещения о наборе текста - - + + Network error Ошибка сети - + SSL error Ошибка SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Введите ПИН-код из другой настроенной учетной записи Jami. Используйте функцию «Связать другое устройство», чтобы получить PIN-код. - + Link device Привязать устройство - + Conversations Разговоры - + Enable Включить - + Display or hide preferences Отобразить или скрыть настройки - + Add new plugin Добавить новый плагин - + Select a file Выбрать наилучший - + Select Выбрать - + Choose image file Выбрать изображение - + Enter the rendezvous point's name Введите название места встречи - + Creating rendezvous point… Создание места встречи... - + Create account from Jami Account Management Server (JAMS) Создайте аккаунт на сервере Управления Аккаунтами Jami (JAMS) - + Create new rendezvous point Создайте новую точку встречи - + Create a Jami account Создать учётную запись Jami - + About Jami О Jami - + Decline contact request Отказать в запросе на контакт - + Accept contact request Принять запрос в контакты - + Automatically check for updates Автоматически проверять наличие обновлений - + Ok В порядке - - + + Cancel Отмена - + Accept in audio Принять в аудио - + Accept in video Принять в видео - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Вы просматриваете беседу, все участники которой, кроме вас, покинули ее. Новые взаимодействия будут невозможны. - + Start new conversation Начать новый разговор - + Chat Settings Настройки чата - + Enable read receipts Включить подтверждения прочтения - + Send and receive receipts indicating that a message have been displayed Отправлять и получать уведомления о прочтении - + Select a CA certificate Выбрать сертификат CA - + Connectivity Связь - + Auto Registration After Expired Автоматическая Регистрация После Истечения Срока Действия - + Network interface Сетевой интерфейс - + Use UPnP Использовать UPnP - + Use TURN Использовать TURN - + TURN address Адрес TURN - + TURN username Имя пользователя - + TURN password Пароль - + TURN Realm Домен TURN - + Use STUN Использовать STUN - + STUN address Адрес STUN - + Allow IP Auto Rewrite Разрешить автоматическую перезапись IP-адресов - + Public address Публичный адрес - + Address Адрес - + Port Порт - + Media Медиа - + Enable video Разрешить видео - + Video Codecs Видеокодеки - + Audio Codecs Аудиокодеки - + Name Server Имя Сервера - + SDP Session Negotiation (ICE Fallback) Согласование сесcии SDP (ICE недоступен) - + Only used during negotiation in case ICE is not supported Используется только во время переговоров, если ICE не поддерживается - + Audio RTP minimum Port Аудио RTP минимальный Порт - + Audio RTP maximum Port Аудио RTP максимальный Порт - + Video RTP minimum Port Видео RTP минимальный Порт - + Video RTP maximum port Видео RTP максимальный Порт - + Connect to other DHT nodes advertising on your local network. Подключайтесь к другим узлам DHT, работающим в вашей локальной сети. - + OpenDHT Configuration Конфигурация OpenDHT - + Enable proxy Включить прокси - + Proxy address Адрес прокси - + Bootstrap Начальная загрузка - + Back Назад - + Account Settings Настройки аккаунта - + Account Учётная запись - - + + General Основные - + Plugin Дополнения - + Audio/Video Звук/Видео - + Audio Звук - + Microphone Микрофон - + Select audio input device Выбрать входное аудиоустройство - + Output device Устройства вывода - + Select audio output device Выбрать выходное аудиоустройство - + Ringtone device Устройство для звонка - + Select ringtone output device Выбрать устройство вывода рингтона - + Audio manager Аудио менеджер - + Video Видео - + Select video device Выберите видеоустройство - + Device Устройство - + Resolution Разрешение - + Select video resolution Выбрать разрешение видео - + Enable hardware acceleration Включить аппаратное ускорение - + Preview unavailable Предварительный просмотр недоступен - + Screen Sharing Совместное использование экрана - + Select screen sharing frame rate (frames per second) Выберите частоту кадров совместного доступа к экрану (кадров в секунду) - + no video нет видео - + Backup account here Резервный аккаунт здесь - + Backup your account! Создайте резервную копию! - + Backup account Резервная копия аккаунта - + Skip Пропустить - + Success Успешно - + Error Ошибка - + Never show me this again Никогда не показывать мне это снова - + Recommended Рекомендуется - + Jami archive files Jami архив файлы - + All files Все файлы - + Reinstate as contact Восстановить как контакт - + name имя - + Identifier Идентификатор - + is recording записывает - + are recording записывают - + Peer stopped recording Пир приостановил запись - + is calling you звонит вам - - + + Mute Заглушить - - + + Unmute Включить звук - + Add participant Добавить участника - + Add participants Добавить участника - + Chat Чат - + More options Дополнительные опции - + Mosaic Мозаика - + You are still muted by moderator Вы всё ещё заблокированы модератором - + You are muted by a moderator Вы заблокированы модератором - + Moderator Модератор - + Host Хост - + Local and Moderator muted Отключён локальный звук и звук модератора - + Moderator muted Модератор отключил звук - + Not muted Не отключается - + Cut Вырезать - + Paste Вставить - + Start video call Начать видеозвонок - + Start audio call Начать аудиозвонок - + Clear conversation Очистить переписку - + Remove conversation Удалить диалог - + Remove contact Удалить контакт - + Block contact Заблокировать контакт - + Contact details Контактная информация - + Hold Удержать - + Sip input panel Панель ввода Sip - + Transfer call Передать звонок - + Stop recording Остановить запись - + Start recording Начать запись - + Exit full screen Выйти из полноэкранного режима - + Share screen Демонстрация экрана - + Share window Показать окно - + Share screen area Демонстрация области экрана - + Share file Поделится файлом - + Select sharing method Выберите метод доступа - + View plugin Плагин просмотра - + No video device Нет видеоустройства - + N/A Недоступно - + Lower hand Опущенная рука - + Raise hand Поднять руку - + Hide chat view Скрыть чат - + Place audio call Сделать аудиозвонок - + Place video call Сделать видеозвонок - + Show available plugins Показать доступные плагины - + Add to conversations Добавить к контактам - + Jump to latest Прокрутить до конца беседы - + {} is typing… {} печатает... - + {} are typing… {} печатают... - + Several people are typing… Несколько человек печатает... - + and и - + Enter Jami Account Management Server (JAMS) URL Введите URL-адрес сервера управления учетной записью Jami (JAMS) - + Required Требуется - + Jami Account Management Server URL URL-адрес сервера управления аккаунтами Jami - + Enter your JAMS credentials Введите свои учетные данные JAMS - + Connect Соединение... - + Back to welcome page Назад на страницу приветствия - + Choose name Выберите имя - + Choose username Выберите имя пользователя - + Create account Создать аккаунт - + Confirm password Подтверждение пароля - + Optional По желанию - + Choose a username for your account Выберите имя пользователя для вашей учётной записи - + Choose a name Выберите имя - + Choose your username Выберите ваше имя пользователя - + Invalid name Неправильное имя - + Invalid username Недопустимое имя пользователя - + Name already taken Имя уже занято - + Username already taken Имя пользователя уже занято - + Proxy Прокси - + Server Сервер - + Create SIP account Создать SIP aккаунт - + Configure an existing SIP account Настройте существующую учетную запись SIP - + Backup successful Резервное копирование завершено - + Backup failed Не удалось создать резервную копию - + Password changed successfully Пароль успешно изменён - + Password change failed Не удалось изменить пароль - + Password set successfully Успешно установлен пароль - + Password set failed Не удалось установить пароль - + Change password Изменить пароль - - + + Set password Задать пароль - + Change current password Изменить текущий пароль - + Backup account to a .gz file Резервная копия аккаунта в .gz файл - + Enable account Включить аккаунт - + Set username Задать имя пользователя - + Registering name Регистрация имени - + Register a username Зарегистрировать имя пользователя - + Register username Зарегистрировать имя пользователя - + Link a new device to this account Свяжите новое устройство с этим аккаунтом - + Link another device Привязать другое устройство - + Exporting account… Экспорт аккаунта… - + Remove Device Удалить устройство - + Are you sure you wish to remove this device? Вы уверены, что хотите удалить это устройство? - + Linked Devices Привязанные Устройства - + Your PIN is: Ваш PIN: - + Error connecting to the network. Please try again later. Ошибка подключения к сети. Попробуйте немного попозже снова. - + Do you really want to delete this account? Вы действительно хотите удалить этот аккаунт? - + Save new device name Сохранить новое имя устройства - + Edit device name Изменить имя устройства - + Unlink device from account Отвязать устройство от аккаунта - + Select a folder Выберите папку - + Enable notifications Включить уведомления - + Enable dark theme Включить темную тему - + Keep minimized on close Оставлять свернутым при закрытии - + Run application on system startup Запускать приложение при старте системы - + Downloads directory Папка "Загрузки" - + Choose download directory Изменить папку для загрузки - + Record call Записывать звонок - + Chatview Чат - + Display hyperlink previews in the chatview Показывать эскизы ссылок - + User interface language Язык интерфейса пользователя - + File transfer Передача файлов - + Allow incoming files from unknown contacts Разрешить принятие файлов от неизвестных контактов - + Automatically accept incoming files Автоматически принимать входящие файлы - + Accept transfer limit Принять лимит на передачу - + in MB, 0 = unlimited в МБ, 0 = неограниченно - + Register Зарегистрировать - + Incorrect password Неверный пароль - + Save file Сохранить файл - + Open location Открыть расположение - + Install beta version Установить бета версию - + Check for updates now Проверить наличие обновлений - + Enable/Disable automatic updates Вкл/Выкл автоматические обновления - + toggle automatic updates переключить автоматические обновления - + Updates Обновления - + Update Обновить - + A new version of Jami was found Would you like to update now? Была найдена новая версия Jami Хотите обновить сейчас? - + No new version of Jami was found Не найдено обновлений для Jami - + An error occured when checking for a new version Произошла ошибка при проверке новой версии - + Installer download canceled Загрузка установщика отменена - + This will uninstall your current Release version and you can always download the latest Release version on our website Это удалит вашу текущую версию программы, и вы всегда можете скачать последнюю версию на нашем сайте. - + Network disconnected Сеть отключена - - + + Something went wrong Что-то пошло не так - + Troubleshoot Устранение неполадок - + Open logs Открыть журнал логов - + Get logs Получить журнал логов - + Select a record directory Выберите директорию для записи - + Debug Отладка - + Show Stats Показать статистику - + Start Начать - + Stop Стоп - + Generating account… Создание учётной записи... - + Import from backup Импортировать из резервной копии - + PIN PIN - + Stop taking photo Прекратить фотографировать - + Clear avatar image Очистить изображение аватара - + Go back to plugins list Назад к списку плагинов - + Profile is only shared with contacts Ваш профиль доступен только вашим контактам - + Enter your name Введите своё имя - + Import account from other device Импорт аккаунта с другого устройства - + Import account from backup file Импортировать аккаунт из файла - + Hide advanced features Скрыть дополнительные функции - + Create new Jami account Создать Jami аккаунт - + Create new SIP account Создать SIP аккаунт - + Welcome to Добро пожаловать в - + Upgrade Обновить - + Later Позже - + Local muted Отключён звук локально - + Trying to reconnect to the Jami daemon (jamid)… Попытка повторного подключения к демону Jami (jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Не удалось повторно подключиться к демону Jami (jamid). Jami сейчас завершит работу. - + Is swarm: Рой: - + True Правда - + False Ложь - + Add emoji Добавить эмоджи - + Send file Отправить файл - + Leave audio message Оставить аудио сообщение - + Leave video message Оставить видеосообщение - + Send Отправть - + Remove Убрать - + Write to %1 Запись в %1 - + %1 has sent you a request for a conversation. %1 отправил вам запрос на разговор. - + Hello, Would you like to join the conversation? Привет, Вы хотите присоединиться к разговору? - + You have accepted the conversation request Вы приняли запрос на разговор - + Waiting until %1 connects to synchronize the conversation. Ожидание, пока %1 подключится для синхронизации разговора. - - + + Copy Копировать - + Participant is still muted on their device Участник по-прежнему отключён на своём устройстве - + You are still muted on your device Вы все ещё отключены на вашем устройстве - + View full screen Полноэкранный вид - + Stop sharing screen or file Остановить трансляцию или доступ к файлу - + Display advanced settings Отображение расширенных настроек - + Hide advanced settings Скрыть расширенные настройки - + Display banned contacts Отображение запрещенных контактов - + Hide banned contacts Скрыть заблокированные контакты - + Layout Макет - + Vertical view Вертикальное представление - + Horizontal view Горизонтальное представление - + Keyboard Shortcut Table Таблица сочетаний клавиш - + Conversation Беседа - + Call Вызов - + Settings Настройки - + Report Bug Сообщить об ошибке - + Clear Очистить - + Copied to clipboard! Cкопировано в буфер обмена! - + Receive Logs Получить журнал логов - + Archive Архив - + Open file Открыть файл - + Create your account from a backup Создать аккаунт из резервной копии - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Архив можно получить, нажав на кнопку «Резервное копирование учетной записи» в настройках аккаунта. В результате будет создан файл .gz на вашем устройстве. - + Restore an account from backup Восстановить аккаунт из резервной копии - + Enter Jami account password Введите пароль Jami аккаунта - + The PIN and the account password should be entered in your device within 10 minutes. PIN-код и пароль учетной записи должны быть введены в устройство в течение 10 минут. - + Close Закрыть - + Enter your account password Введите пароль вашего аккаунта - + Add Device Добавить устройство - + Enter the password Введите пароль - + Enter current password Введите текущий пароль - + Enter this account's password to confirm the removal of this device Введите пароль вашего аккаунта чтобы подтвердить его удаление из устройства. - + Enter new password Введите новый пароль - + Confirm new password Подтвердите новый пароль - + Change Изменить - + Confirm Подтвердить - + Export Экспорт - + Choose a picture as avatar Выбрать изображение для аватарки - + Import avatar from image file Импортировать аватар из файла изображения - + Take photo Сфотографировать - + Reset Сброс - + Select a plugin to install Выбрать дополнение чтобы установить - + Install plugin Установить дополнение - + Save profile Сохранить профиль - + Information Информация - + Enter the account password to confirm the removal of this device Введите пароль учетной записи, чтобы подтвердить удаление этого устройства - + Select a screen to share Выбрать экран - + Select a window to share Выберите окно, чтобы поделиться - + All Screens Все экраны - + Screens Экраны - + Windows Окна - + QR code QR код - + Account QR QR Аккаунта - + This is your Jami username. Copy and share it with your friends! Это ваше имя пользователя Jami. Скопируйте и поделитесь им со своими друзьями! - + Link this device to an existing account Привязать это устройство к существующему аккаунту - + Advanced features Дополнительные функции - + Show advanced features Показать расширенные функции - + Connect to a JAMS server Подключиться к JAMS серверу - + Add a SIP account Добавить аккаунт SIP - + Error while creating your account. Check your credentials. Ошибка при создании учетной записи. Проверьте свои учетные данные. - + Clear Text Очистить Текст - + Search Results Результаты поиска - + Delete Удалить - + Set moderator Установить модератора - + Unset moderator Отменить установку модератора - + Maximize На весь экран - + Minimize Минимизировать - + Hangup Разъединить - + Conference moderation Модерирование конференции - + Default moderators Модераторы по умолчанию - + Enable local moderators Включить локальных модераторов - + Make all participants moderators Сделать всех участников модераторами - + Add default moderator Добавить модератора по умолчанию - + Remove default moderator Удалить модератора по умолчанию @@ -2349,112 +2349,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list Открыть список аккаунтов - + Focus conversations list Фокус на списке разговоров - + Requests list Список запросов - + Previous conversation Предыдущий разговор - + Next conversation Следующий чат - + Search bar Поле поиска - + Full screen Полноэкранный - + Start an audio call Начать аудиозвонок - + Start a video call Начать видеозвонок - + Clear history Очистить историю - + Block contact Заблокировать контакт - + Remove conversation Удалить диалог - + Accept contact request Принять запрос в контакты - + Media settings Настройки медиа - + General settings Основные настройки - + Account settings Настройки аккаунта - + Plugin settings Настройки плагина - + Open account creation wizard Мастер создания аккаунта - + Open keyboard shortcut table Открыть таблицу сочетаний клавиш - + Answer an incoming call Ответ на входящий звонок - + End call Завершить вызов - + Decline the call request Отклонить вызов @@ -2462,17 +2462,17 @@ Copy and share it with your friends! MainApplication - + E&xit В&ыход - + &Quit &Выход - + &Show Jami &Показать Jami @@ -2480,12 +2480,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files Файлы изображений - + All files Все файлы @@ -2493,7 +2493,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off Вкл/Выкл @@ -2501,12 +2501,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin Выбрать плагин - + Preferences Настройки @@ -2514,7 +2514,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload Загрузить/Выгрузить @@ -2522,27 +2522,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin Деинсталлировать дополнение - + Reset preferences Сбросить настройки - + Ok В порядке - + Cancel Отмена - + Uninstall Деинсталлировать @@ -2550,17 +2550,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files Файл дополнения - + All files Все файлы - + Installed plugins Установленные плагины @@ -2568,7 +2568,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference Изменить настройки @@ -2576,107 +2576,107 @@ Copy and share it with your friends! QObject - + Created by: Создано: - + Artwork by: Художник: - + Based on the SFLPhone project Основано на SFLPhone проекте - + Sending Отправка - + Failure Ошибка - + Sent Отправлено - + Connecting Подключение - + Accept Принять - + Canceled Отменено - + Unable to make contact Не удалось установить контакт - + Ongoing Текущий - + Waiting for contact Ожидание контакта - + Incoming transfer Входящий перевод - + Timed out waiting for contact Тайм-аут ожидания контакта - + Finished Завершено - + %1 days ago %1 дней назад - + one day ago вчера - + %1 hours ago %1 часов назад - + one hour ago час назад - + %1 minutes ago %1 минут назад - + just now только что @@ -2684,22 +2684,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording Запись разговоров - + Always record calls Всегда записывать разговоры - + Quality Качество - + Save in Сохранить в @@ -2707,7 +2707,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Убрать @@ -2715,7 +2715,7 @@ Copy and share it with your friends! SelectScreen - + Screen Экран @@ -2723,7 +2723,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2731,22 +2731,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Звонки - - - - - - + + + + + + Contacts Контакты @@ -2754,17 +2754,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme Включить темную тему - + Enable desktop notifications Показывать уведомления @@ -2772,27 +2772,27 @@ Copy and share it with your friends! SystemTray - + Answer Ответ - + Decline Отклонить - + Open conversation Открыть разговор - + Accept Принять - + Refuse Отказать @@ -2800,7 +2800,7 @@ Copy and share it with your friends! UserIdentity - + Identity Идентичность @@ -2808,17 +2808,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/с - + Default По умолчанию - + System Система diff --git a/translations/ring_client_windows_si.ts b/translations/ring_client_windows_si.ts index d4155875..37b3a821 100644 --- a/translations/ring_client_windows_si.ts +++ b/translations/ring_client_windows_si.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok හරි - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok හරි @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version අනුවාදය - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings පසුතල විවෘත කරන්න - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call ඇමතුම අවසන් කරන්න - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok හරි - - + + Cancel අවලංගු කරන්න - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video වීඩියෝවක් නැත - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen පුන් තිරයෙන් පිට වන්න - + Share screen තිරය බෙදා ගන්න - + Share window කවුළුව බෙදාගන්න - + Share screen area තිර කලාපය බෙදා ගන්න - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ෆෝල්ඩරය බා ගැනෙයි - + Choose download directory - + Record call - + Chatview සංවාදය - + Display hyperlink previews in the chatview සබැඳි පෙරදසුන් පෙන්වන්න - + User interface language පරිශීලක අතුරුමුහුණත් භාෂාව - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ගොනුව යවන්න - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen සම්පූර්ණ තිරයේ දක්වන්න - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout පිරිසැලසුම - + Vertical view සිරස් දර්ශනය - + Horizontal view තිරස් දර්ශනය - + Keyboard Shortcut Table - + Conversation - + Call - + Settings සැකසුම් - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share බෙදා ගැනීමට තිරයක් තෝරන්න - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen පුන් තිර - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call ඇමතුම අවසන් කරන්න - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok හරි - + Cancel අවලංගු කරන්න - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled අවලංගු කළා - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System පද්ධතිය - + Enable dark theme - + Enable desktop notifications දැනුම්දීම් පෙන්වන්න @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mbps - + Default පෙරනිමිය - + System පද්ධතිය diff --git a/translations/ring_client_windows_sk.ts b/translations/ring_client_windows_sk.ts index 60cd0593..c318ea82 100644 --- a/translations/ring_client_windows_sk.ts +++ b/translations/ring_client_windows_sk.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Pridať účet @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Súbor s certifikátom - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Súbor s certifikátom - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Pokročilé nastavenia účtu @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Blokované kontakty @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Prichádzajúci hovor - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Pridať ku konferencii - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nová správa - + Trust request Veriť žiadosti @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok V poriadku - - + + Success Úspech - - + + Error Chyba - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok V poriadku @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Id zariadenia @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Pozvánky - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzia - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Autori - + Display QR code - + Open settings Otvoriť nastavenia - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Odstrániť účet - + Authentication failed Overenie zlyhalo - + Password Heslo - + Username Používateľské meno - + Alias Alias - + Call Settings Nastavenia hovoru - + Allow incoming calls from unknown contacts Povoliť prichádzajúce hovory od neznámych kontaktov - + In progress… - + Accept Prijať - + Refuse Odmietnuť - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Pridať vlastný vyzváňací tón - + Select a new ringtone - + Voicemail Hlasové správy - + Voicemail dial code - + Security Bezpečnosť - + Encrypt media streams (SRTP) Zašifrovať mediálne streamy (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Dohodnutie parametrov šifrovania (TLS) - + CA certificate CA certifikát - + User certificate Používateľský certifikát - + Private key Privátny kľúč - + Private key password Heslo privátneho kľúča - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS protokolová metóda - + Audio input device selector Volič Zvukového vstupného zariadenia - + TLS server name - + Negotiation timeout (seconds) Časový limit dohodovania (v sekundách) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Použiť vlastnú adresu a port - + Enable local peer discovery Povoliť lokálne vyhľadávanie peerov - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Ukončiť hovor - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Chyba siete - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Prepájanie zariadenia - + Conversations Konverzácie - + Enable Povoliť - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Vytvoriť Jami účet - + About Jami O programe Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automaticky kontrolovať dostupnosť aktualizácií - + Ok V poriadku - - + + Cancel Zrušiť - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Pripojenie - + Auto Registration After Expired - + Network interface Sieťové rozhranie - + Use UPnP Používať UPnP - + Use TURN Použiť TURN - + TURN address TURN adresa - + TURN username TURN používateľské meno - + TURN password TURN heslo - + TURN Realm - + Use STUN Použiť STUN - + STUN address STUN adresa - + Allow IP Auto Rewrite - + Public address - + Address Adresa - + Port Port - + Media Médiá - + Enable video Povoliť video - + Video Codecs Video kodeky - + Audio Codecs Zvukové kodeky - + Name Server Name server - + SDP Session Negotiation (ICE Fallback) SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration Konfigurácia OpenDHT - + Enable proxy Povoliť proxy - + Proxy address Adresa proxy - + Bootstrap Bootstrap - + Back Späť - + Account Settings - + Account Účet - - + + General Všeobecné - + Plugin - + Audio/Video Audio/Video - + Audio Zvuk - + Microphone Mikrofón - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Zariadenie - + Resolution Rozlíšenie - + Select video resolution - + Enable hardware acceleration Povoliť hardvérovú akceleráciu - + Preview unavailable Náhľad nedostupný - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video žiadne video - + Backup account here - + Backup your account! Zálohovať váš účet - + Backup account Zálohovať účet - + Skip Preskočiť - + Success Úspech - + Error Chyba - + Never show me this again Už viac nezobrazovať - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name meno - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Pridať účastníka - + Add participants - + Chat Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Vystrihnúť - + Paste Vlož - + Start video call Začať video hovor - + Start audio call Začať audio hovor - + Clear conversation Vymazať konverzáciu - + Remove conversation Odstrániť konverzáciu - + Remove contact Odstrániť kontakt - + Block contact Zablokovať kontakt - + Contact details Informácie o kontakte - + Hold Podržať - + Sip input panel - + Transfer call - + Stop recording Ukončiť zaznamenávanie - + Start recording - + Exit full screen Skončiť režim celej obrazovky - + Share screen Zdieľať obrazovku - + Share window Zdieľať okno - + Share screen area Zdieľať oblasť obrazovky - + Share file Zdieľať súbor - + Select sharing method - + View plugin - + No video device - + N/A N/A - + Lower hand - + Raise hand Zdvihnite ruku - + Hide chat view Skryť chat - + Place audio call Uskutočniť audio hovor - + Place video call Uskutočniť video hovor - + Show available plugins - + Add to conversations Pridať ku kontaktom - + Jump to latest Prejsť na koniec konverzácie - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Pripojiť - + Back to welcome page - + Choose name - + Choose username - + Create account Vytvoriť účet - + Confirm password Potvrďte heslo - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Zvoľte si používateľské meno - + Invalid name - + Invalid username Neplatné používateľské meno - + Name already taken - + Username already taken Používateľské meno už je použité - + Proxy Proxy - + Server Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Zmeniť heslo - - + + Set password Nastaviť heslo - + Change current password - + Backup account to a .gz file - + Enable account Povoliť účet - + Set username - + Registering name - + Register a username Registrovať používateľské meno - + Register username Registrovať používateľské meno - + Link a new device to this account - + Link another device Prepojiť ďalšie zariadenie - + Exporting account… Exportovanie účtu... - + Remove Device Odstrániť zariadenie - + Are you sure you wish to remove this device? Naozaj chcete odstrániť toto zariadenie? - + Linked Devices Prepojené zariadenia - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Uložiť nový názov zariadenia - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Ponechať minimalizované namiesto vypnutia - + Run application on system startup - + Downloads directory Priečinok Stiahnuté položky - + Choose download directory - + Record call Zaznamenať hovor - + Chatview Chat - + Display hyperlink previews in the chatview Zobrazovať ukážky prepojení - + User interface language Jazyk používateľského rozhrania - + File transfer Prenos súborov - + Allow incoming files from unknown contacts Povoliť prichádzajúce súbory od neznámych kontaktov - + Automatically accept incoming files Automaticky prijať prichádzajúce súbory - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registrovať - + Incorrect password Nesprávne heslo - + Save file Uložiť súbor - + Open location - + Install beta version - + Check for updates now Skontrolovať aktualizácie - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Aktualizácie - + Update Aktualizácia - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Došlo k chybe - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Zastaviť - + Generating account… - + Import from backup Importovať zo zálohy - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Vitajte v - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Poslať súbor - + Leave audio message - + Leave video message - + Send Poslať - + Remove Odstrániť - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopírovať - + Participant is still muted on their device - + You are still muted on your device - + View full screen Zobraziť na celú obrazovku - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Skryť blokované kontakty - + Layout Rozloženie - + Vertical view Zvislé zobrazenie - + Horizontal view Vodorovné zobrazenie - + Keyboard Shortcut Table - + Conversation - + Call Volať - + Settings Nastavenia - + Report Bug - + Clear Vyčistiť - + Copied to clipboard! - + Receive Logs - + Archive Archív - + Open file Otvoriť súbor - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Zavrieť - + Enter your account password Zadajte heslo k účtu - + Add Device Pridať zariadenie - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Potvrďte odobranie tohto zariadenia zadaním hesla zariadenia - + Enter new password - + Confirm new password - + Change - + Confirm Potvrdiť - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo Zhotoviť fotografiu - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Vyberte obrazovku na zdieľanie - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Toto je vaše Jami používateľské meno. Skopírujte ho a zdieľajte s priateľmi! - + Link this device to an existing account Prepojiť toto zariadenie s existujúcim účtom - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account Pridať SIP účet - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Výsledky vyhľadávania - + Delete Vymazať - + Set moderator - + Unset moderator - + Maximize - + Minimize Minimalizovať - + Hangup Zložiť - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Skopírujte ho a zdieľajte s priateľmi! KeyboardShortcutTable - + Open account list Otvoriť zoznam účtov - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Celá obrazovka - + Start an audio call Začať audio hovor - + Start a video call Začať video hovor - + Clear history Vymazať históriu - + Block contact Zablokovať kontakt - + Remove conversation Odstrániť konverzáciu - + Accept contact request - + Media settings - + General settings Všeobecné nastavenia - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Ukončiť hovor - + Decline the call request @@ -2456,17 +2456,17 @@ Skopírujte ho a zdieľajte s priateľmi! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Skopírujte ho a zdieľajte s priateľmi! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Skopírujte ho a zdieľajte s priateľmi! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Skopírujte ho a zdieľajte s priateľmi! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Skopírujte ho a zdieľajte s priateľmi! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Skopírujte ho a zdieľajte s priateľmi! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok V poriadku - + Cancel Zrušiť - + Uninstall @@ -2544,17 +2544,17 @@ Skopírujte ho a zdieľajte s priateľmi! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Skopírujte ho a zdieľajte s priateľmi! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Skopírujte ho a zdieľajte s priateľmi! QObject - + Created by: Vytvorili: - + Artwork by: Dizajn od: - + Based on the SFLPhone project Založené na projekte SFLPhone - + Sending Posiela sa - + Failure Chyba - + Sent - + Connecting Pripájanie - + Accept Prijať - + Canceled Zrušené - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Ukončený - + %1 days ago - + one day ago Včera - + %1 hours ago - + one hour ago Pred hodinou - + %1 minutes ago - + just now Práve teraz @@ -2678,22 +2678,22 @@ Skopírujte ho a zdieľajte s priateľmi! RecordingSettings - + Call Recording Nahrávanie hovoru - + Always record calls Vždy nahrávať hovory - + Quality - + Save in Uložiť v @@ -2701,7 +2701,7 @@ Skopírujte ho a zdieľajte s priateľmi! RevokeDevicePasswordDialog - + Remove Odstrániť @@ -2709,7 +2709,7 @@ Skopírujte ho a zdieľajte s priateľmi! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Skopírujte ho a zdieľajte s priateľmi! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Skopírujte ho a zdieľajte s priateľmi! SmartListModel - - - - - - + + + + + + Calls Hovory - - - - - - + + + + + + Contacts Kontakty @@ -2748,17 +2748,17 @@ Skopírujte ho a zdieľajte s priateľmi! SystemSettings - + System Systém - + Enable dark theme - + Enable desktop notifications Zobraziť oznámenia @@ -2766,27 +2766,27 @@ Skopírujte ho a zdieľajte s priateľmi! SystemTray - + Answer Zdvihnúť - + Decline Odmietnuť - + Open conversation Otvoriť konverzáciu - + Accept Prijať - + Refuse Odmietnuť @@ -2794,7 +2794,7 @@ Skopírujte ho a zdieľajte s priateľmi! UserIdentity - + Identity Identita @@ -2802,17 +2802,17 @@ Skopírujte ho a zdieľajte s priateľmi! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Predvolený - + System Systém diff --git a/translations/ring_client_windows_sk_SK.ts b/translations/ring_client_windows_sk_SK.ts index e6ea8bf9..038e46bb 100644 --- a/translations/ring_client_windows_sk_SK.ts +++ b/translations/ring_client_windows_sk_SK.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Pridať účet @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Súbor s certifikátom - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Súbor s certifikátom - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Pokročilé nastavenia účtu @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Blokované kontakty @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Prichádzajúci hovor - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Pridať ku konferencii - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nová správa - + Trust request Veriť žiadosti @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok V poriadku - - + + Success Úspech - - + + Error Chyba - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok V poriadku @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Id zariadenia @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations Pozvánky - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzia - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Autori - + Display QR code - + Open settings Otvoriť nastavenia - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Odstrániť účet - + Authentication failed Overenie zlyhalo - + Password Heslo - + Username Používateľské meno - + Alias Alias - + Call Settings Nastavenia hovoru - + Allow incoming calls from unknown contacts Povoliť prichádzajúce hovory od neznámych kontaktov - + In progress… - + Accept Prijať - + Refuse Odmietnuť - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone Pridať vlastný vyzváňací tón - + Select a new ringtone - + Voicemail Hlasové správy - + Voicemail dial code - + Security Bezpečnosť - + Encrypt media streams (SRTP) Zašifrovať mediálne streamy (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Dohodnutie parametrov šifrovania (TLS) - + CA certificate CA certifikát - + User certificate Používateľský certifikát - + Private key Privátny kľúč - + Private key password Heslo privátneho kľúča - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method TLS protokolová metóda - + Audio input device selector Volič Zvukového vstupného zariadenia - + TLS server name - + Negotiation timeout (seconds) Časový limit dohodovania (v sekundách) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port Použiť vlastnú adresu a port - + Enable local peer discovery Povoliť lokálne vyhľadávanie peerov - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Ukončiť hovor - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Chyba siete - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device Prepájanie zariadenia - + Conversations Konverzácie - + Enable Povoliť - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Vytvoriť Jami účet - + About Jami O programe Jami - + Decline contact request - + Accept contact request - + Automatically check for updates Automaticky kontrolovať dostupnosť aktualizácií - + Ok V poriadku - - + + Cancel Zrušiť - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity Pripojenie - + Auto Registration After Expired - + Network interface Sieťové rozhranie - + Use UPnP Používať UPnP - + Use TURN Použiť TURN - + TURN address TURN adresa - + TURN username TURN používateľské meno - + TURN password TURN heslo - + TURN Realm - + Use STUN Použiť STUN - + STUN address STUN adresa - + Allow IP Auto Rewrite - + Public address - + Address Adresa - + Port Port - + Media Médiá - + Enable video Povoliť video - + Video Codecs Video kodeky - + Audio Codecs Zvukové kodeky - + Name Server Name server - + SDP Session Negotiation (ICE Fallback) SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration Konfigurácia OpenDHT - + Enable proxy Povoliť proxy - + Proxy address Adresa proxy - + Bootstrap Bootstrap - + Back Späť - + Account Settings - + Account Účet - - + + General Všeobecné - + Plugin - + Audio/Video Audio/Video - + Audio Zvuk - + Microphone Mikrofón - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device Zariadenie - + Resolution Rozlíšenie - + Select video resolution - + Enable hardware acceleration Povoliť hardvérovú akceleráciu - + Preview unavailable Náhľad nedostupný - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video žiadne video - + Backup account here - + Backup your account! Zálohovať váš účet - + Backup account Zálohovať účet - + Skip Preskočiť - + Success Úspech - + Error Chyba - + Never show me this again Už viac nezobrazovať - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name meno - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant Pridať účastníka - + Add participants - + Chat Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Vystrihnúť - + Paste Vlož - + Start video call Začať video hovor - + Start audio call Začať audio hovor - + Clear conversation Vymazať konverzáciu - + Remove conversation Odstrániť konverzáciu - + Remove contact Odstrániť kontakt - + Block contact Zablokovať kontakt - + Contact details Informácie o kontakte - + Hold Podržať - + Sip input panel - + Transfer call - + Stop recording Ukončiť zaznamenávanie - + Start recording - + Exit full screen Skončiť režim celej obrazovky - + Share screen Zdieľať obrazovku - + Share window Zdieľať okno - + Share screen area Zdieľať oblasť obrazovky - + Share file Zdieľať súbor - + Select sharing method - + View plugin - + No video device - + N/A N/A - + Lower hand - + Raise hand Zdvihnite ruku - + Hide chat view Skryť chat - + Place audio call Uskutočniť audio hovor - + Place video call Uskutočniť video hovor - + Show available plugins - + Add to conversations Pridať ku kontaktom - + Jump to latest Prejsť na koniec konverzácie - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Pripojiť - + Back to welcome page - + Choose name - + Choose username - + Create account Vytvoriť účet - + Confirm password Potvrďte heslo - + Optional - + Choose a username for your account - + Choose a name - + Choose your username Zvoľte si používateľské meno - + Invalid name - + Invalid username Neplatné používateľské meno - + Name already taken - + Username already taken Používateľské meno už je použité - + Proxy Proxy - + Server Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Zmeniť heslo - - + + Set password Nastaviť heslo - + Change current password - + Backup account to a .gz file - + Enable account Povoliť účet - + Set username - + Registering name - + Register a username Registrovať používateľské meno - + Register username Registrovať používateľské meno - + Link a new device to this account - + Link another device Prepojiť ďalšie zariadenie - + Exporting account… Exportovanie účtu... - + Remove Device Odstrániť zariadenie - + Are you sure you wish to remove this device? Naozaj chcete odstrániť toto zariadenie? - + Linked Devices Prepojené zariadenia - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name Uložiť nový názov zariadenia - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Ponechať minimalizované namiesto vypnutia - + Run application on system startup - + Downloads directory Priečinok Stiahnuté položky - + Choose download directory - + Record call Zaznamenať hovor - + Chatview Chat - + Display hyperlink previews in the chatview Zobrazovať ukážky prepojení - + User interface language Jazyk používateľského rozhrania - + File transfer Prenos súborov - + Allow incoming files from unknown contacts Povoliť prichádzajúce súbory od neznámych kontaktov - + Automatically accept incoming files Automaticky prijať prichádzajúce súbory - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registrovať - + Incorrect password Nesprávne heslo - + Save file Uložiť súbor - + Open location - + Install beta version - + Check for updates now Skontrolovať aktualizácie - + Enable/Disable automatic updates - + toggle automatic updates - + Updates Aktualizácie - + Update Aktualizácia - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong Došlo k chybe - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Zastaviť - + Generating account… - + Import from backup Importovať zo zálohy - + PIN PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Vitajte v - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Poslať súbor - + Leave audio message - + Leave video message - + Send Poslať - + Remove Odstrániť - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopírovať - + Participant is still muted on their device - + You are still muted on your device - + View full screen Zobraziť na celú obrazovku - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Skryť blokované kontakty - + Layout Rozloženie - + Vertical view Zvislé zobrazenie - + Horizontal view Vodorovné zobrazenie - + Keyboard Shortcut Table - + Conversation - + Call Volať - + Settings Nastavenia - + Report Bug - + Clear Vyčistiť - + Copied to clipboard! - + Receive Logs - + Archive Archív - + Open file Otvoriť súbor - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Zavrieť - + Enter your account password Zadajte heslo k účtu - + Add Device Pridať zariadenie - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device Potvrďte odobranie tohto zariadenia zadaním hesla zariadenia - + Enter new password - + Confirm new password - + Change - + Confirm Potvrdiť - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo Zhotoviť fotografiu - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Vyberte obrazovku na zdieľanie - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Toto je vaše Jami používateľské meno. Skopírujte ho a zdieľajte s priateľmi! - + Link this device to an existing account Prepojiť toto zariadenie s existujúcim účtom - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account Pridať SIP účet - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Výsledky vyhľadávania - + Delete Vymazať - + Set moderator - + Unset moderator - + Maximize - + Minimize Minimalizovať - + Hangup Zložiť - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2343,112 +2343,112 @@ Skopírujte ho a zdieľajte s priateľmi! KeyboardShortcutTable - + Open account list Otvoriť zoznam účtov - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Celá obrazovka - + Start an audio call Začať audio hovor - + Start a video call Začať video hovor - + Clear history Vymazať históriu - + Block contact Zablokovať kontakt - + Remove conversation Odstrániť konverzáciu - + Accept contact request - + Media settings - + General settings Všeobecné nastavenia - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Ukončiť hovor - + Decline the call request @@ -2456,17 +2456,17 @@ Skopírujte ho a zdieľajte s priateľmi! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Skopírujte ho a zdieľajte s priateľmi! PhotoboothView - + Image Files - + All files @@ -2487,7 +2487,7 @@ Skopírujte ho a zdieľajte s priateľmi! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Skopírujte ho a zdieľajte s priateľmi! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Skopírujte ho a zdieľajte s priateľmi! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Skopírujte ho a zdieľajte s priateľmi! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok V poriadku - + Cancel Zrušiť - + Uninstall @@ -2544,17 +2544,17 @@ Skopírujte ho a zdieľajte s priateľmi! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2562,7 +2562,7 @@ Skopírujte ho a zdieľajte s priateľmi! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Skopírujte ho a zdieľajte s priateľmi! QObject - + Created by: Vytvorili: - + Artwork by: Dizajn od: - + Based on the SFLPhone project Založené na projekte SFLPhone - + Sending Posiela sa - + Failure Chyba - + Sent - + Connecting Pripájanie - + Accept Prijať - + Canceled Zrušené - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished Ukončený - + %1 days ago - + one day ago Včera - + %1 hours ago - + one hour ago Pred hodinou - + %1 minutes ago - + just now Práve teraz @@ -2678,22 +2678,22 @@ Skopírujte ho a zdieľajte s priateľmi! RecordingSettings - + Call Recording Nahrávanie hovoru - + Always record calls Vždy nahrávať hovory - + Quality - + Save in Uložiť v @@ -2701,7 +2701,7 @@ Skopírujte ho a zdieľajte s priateľmi! RevokeDevicePasswordDialog - + Remove Odstrániť @@ -2709,7 +2709,7 @@ Skopírujte ho a zdieľajte s priateľmi! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Skopírujte ho a zdieľajte s priateľmi! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Skopírujte ho a zdieľajte s priateľmi! SmartListModel - - - - - - + + + + + + Calls Hovory - - - - - - + + + + + + Contacts Kontakty @@ -2748,17 +2748,17 @@ Skopírujte ho a zdieľajte s priateľmi! SystemSettings - + System Systém - + Enable dark theme - + Enable desktop notifications Zobraziť oznámenia @@ -2766,27 +2766,27 @@ Skopírujte ho a zdieľajte s priateľmi! SystemTray - + Answer Zdvihnúť - + Decline Odmietnuť - + Open conversation Otvoriť konverzáciu - + Accept Prijať - + Refuse Odmietnuť @@ -2794,7 +2794,7 @@ Skopírujte ho a zdieľajte s priateľmi! UserIdentity - + Identity Identita @@ -2802,17 +2802,17 @@ Skopírujte ho a zdieľajte s priateľmi! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Predvolený - + System Systém diff --git a/translations/ring_client_windows_sl.ts b/translations/ring_client_windows_sl.ts index 82653e44..1bd9c242 100644 --- a/translations/ring_client_windows_sl.ts +++ b/translations/ring_client_windows_sl.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Dodaj račun @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Zvočne datoteke - + All files Vse datoteke @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Datoteka dig. potrdila - - - + + + All files Vse datoteke - + Key File Datoteka s ključem @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Datoteka dig. potrdila - - - + + + All files Vse datoteke - + Key File Datoteka s ključem @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Napredne nastavitve računa @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Zavrnjeni stiki @@ -89,32 +89,32 @@ CallAdapter - + Missed call Zgrešen klic - + Missed call with %1 Zgrešen klic: %1 - + me jaz - + Incoming call Dohodni klic - + %1 is calling you %1 vas kliče - + is calling you vas kliče @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Dodaj v konferenco - + Transfer this call Preveži ta klic - + Add default moderator Dodaj privzetega moderatorja @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Novo sporočilo - + Trust request Zaupaj zahtevku @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok V redu - - + + Success Uspelo - - + + Error Napaka - + Jami archive files Arhivske datoteke Jami - + All files Vse datoteke @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Ponovna povezava s pritajenim procesom Jami (jamid) je spodletela. Jami se bo zdaj zaprl. - + Trying to reconnect to the Jami daemon (jamid)… Poskus ponovnega povezovanja s prikritim procesom Jami (jamid) ... - + Ok V redu @@ -211,7 +211,7 @@ Jami se bo zdaj zaprl. DeviceItemDelegate - + Device Id ID naprave @@ -219,2130 +219,2130 @@ Jami se bo zdaj zaprl. JamiStrings - + Find a user or search for a conversation Najdi uporabnika ali poišči pogovor - + Search your invitations Poišči povabila - + Invitations Povabila - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami je prost in brezplačen program za univerzalno komunikacijo, ki spoštuje svobodo in zasebnost svojih uporabnikov. - + Version Različica - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami je prost in brezplačen program za univerzalno komunikacijo, ki spoštuje svobodo in zasebnost svojih uporabnikov. - + Credits Zasluge - + Display QR code Prikaži QR-kodo - + Open settings Odpri nastavitve - + Close settings Zapri nastavitve - + Authentication required Zahtevana je overitev - + Your session has expired or been revoked on this device. Please enter your password. Vaša seja je potekla ali je bila na tej napravi preklicana. Vnesite svoje geslo. - + JAMS server Strežnik JAMS - + Authenticate Overjanje - + Delete account Izbriši račun - + Authentication failed Overitev ni uspela - + Password Geslo - + Username Uporabnik - + Alias Vzdevek - + Call Settings Nastavitve klicanja - + Allow incoming calls from unknown contacts Dovoli dohodne klice neznanih stikov - + In progress… Se izvaja ... - + Accept Sprejmi - + Refuse Zavrni - + Incoming audio call from {} Dohodni klic od {} - + Incoming video call from {} Dohodni video klic od {} - + Convert your account into a rendezvous point Pretvori račun v točko srečevanja - + Automatically answer calls Samodejno odgovori na klice - + Enable custom ringtone Vklopi lastni zvok zvonjenja - + Select custom ringtone Izberi lastni zvok zvonjenja - + Add a custom ringtone Dodaj lastni zvok zvonjenja - + Select a new ringtone Izberi nov zvok zvoenjenja - + Voicemail Glasovna sporočila - + Voicemail dial code Klicna številka za glasovna sporočila - + Security Varnost - + Encrypt media streams (SRTP) Šifriranje pretoka podatkov (SRTP) - + Enable SDES key exchange Vklopi izmenjavo ključev SDES - + Allow fallback on RTP Dovoli zasilni RTP - + Encrypt negotiation (TLS) Šifriranje usklajevanja (TLS) - + CA certificate Potrdilo CA - + User certificate Osebni certifikat - + Private key Zasebni ključ - + Private key password Geslo zasebnega ključa - + Verify certificates for incoming TLS connections Preveri certifikat za dohodne TLS povezave - + Verify server TLS certificates Preveri certifikate TLS strežnika - + Require certificate for incoming TLS connections Zahtevaj certifikat za dohodne povezave TLS - + TLS protocol method Metoda protokola TLS - + Audio input device selector Izbirnik vhodne zvočne naprave - + TLS server name Ime strežnika TLS - + Negotiation timeout (seconds) Čas usklajevanja (v sekundah) - + Select a private key Izberi zasebni ključ - + Select a user certificate Izberi uporabniški certifikat - + Registration expiration time (seconds) Časovna omejitev registracije (v sekundah) - + Use custom address and port Uporabi določen naslov in vrata - + Enable local peer discovery Vklopi lokalno odkrivanje soležnikov - + Audio and Video Settings Nastavitve videa in zvoka - + Frames per second Slik na sekundo - + Select video frame rate (frames per second) Izberite hitrost videa (slik na sekundo) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Vaš račun obstaja le na tej napravi. Če boste napravo izgubili ali odstranili program, bo vaš račun izbrisan in ga ne bo mogoče obnoviti. Vaš račun lahko varnostno kopirate zdaj ali kasneje. - - + + End call Končaj klic - + Pause call Zadrži klic - + Resume call Nadaljuj klic - + Pause video Zadrži video - + Resume video Nadaljuj video - + Creating account… Ustvarjanje računa ... - + Encrypt account with password Šifriraj račun z geslom - + Create a rendezvous point Ustvari točko srečevanja - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Izberite geslo za šifriranje vašega računa na tej napravi. Upoštevajte, da gesla ni mogoče obnoviti. - + Choose a name for your rendezvous point Izberite ime za točko srečevanja - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Če vaš račun ni bil varnostno shranjen ali dodan drugi napravi, bosta vaš račun in uporabljeno ime nepovratno izgubljena. - + Launch at startup Zaženi ob zagonu - + Enable typing indicators Omogoči pokazatelja tipkanja - - + + Network error Napaka na omrežju - + SSL error Napaka SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Vnesite PIN z drugega nastavljenega računa Jami. Uporabite funkcijo "Poveži drugo napravo", da pridobite PIN. - + Link device Poveži napravo - + Conversations Pogovori - + Enable Vklopi - + Display or hide preferences Prikaži ali skrij nastavitve - + Add new plugin Dodaj nov vtičnik - + Select a file Izberi datoteko - + Select Izberi - + Choose image file Izberi slikovno datoteko - + Enter the rendezvous point's name Vnesite ime točke srečevanja - + Creating rendezvous point… Ustvarjanje točke srečevanja ... - + Create account from Jami Account Management Server (JAMS) Ustvari račun z Jami Account Management Server (JAMS) - + Create new rendezvous point Ustvari novo točko srečevanja - + Create a Jami account Ustvari račun Jami - + About Jami O programu Jami - + Decline contact request Zavrni zahtevo stika - + Accept contact request Sprejemi zahtevo stika - + Automatically check for updates Samodejno preveri posodobitve - + Ok V redu - - + + Cancel Prekliči - + Accept in audio Sprejmi zvok - + Accept in video Sprejmi video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Gledate pogovor, ki so ga vsi udeleženci razen vas zapustili. Nove interakcije niso možne. - + Start new conversation Začni nov pogovor - + Chat Settings Nastavitve klepeta - + Enable read receipts Omogoči potrdila o prebranem - + Send and receive receipts indicating that a message have been displayed Pošilja in prejema obvestila, da je bilo sporočilo prikazano. - + Select a CA certificate Izberi potrdilo CA - + Connectivity Povezljivost - + Auto Registration After Expired Samodejna registracija po zapadlosti - + Network interface Omrežni vmesnik - + Use UPnP Uporabi UPnP - + Use TURN Uporabi TURN - + TURN address Naslov TURN - + TURN username Uporabniško ime TURN - + TURN password Geslo TURN - + TURN Realm Območje TURN - + Use STUN Uporabi STUN - + STUN address Naslov STUN - + Allow IP Auto Rewrite Dovoli samodejno ponovno pisanje IP - + Public address Javni naslov - + Address Naslov - + Port Vrata - + Media Medij - + Enable video Vklopi video - + Video Codecs Video kodeki - + Audio Codecs Zvočni kodeki - + Name Server Imenski strežnik - + SDP Session Negotiation (ICE Fallback) Usklajevanje seje SDP (zasilni ICE) - + Only used during negotiation in case ICE is not supported Uporabljeno zgolj v času usklajevanja, če ICE ni podprt - + Audio RTP minimum Port Najnižja vrata za zvočni RTP - + Audio RTP maximum Port Najvišja vrata za zvočni RTP - + Video RTP minimum Port Najnižja vrata za video RTP - + Video RTP maximum port Najvišja vrata za video RTP - + Connect to other DHT nodes advertising on your local network. Poveži se na druga DHT vozilšča, ki objavljajo na lokalnem omrežju. - + OpenDHT Configuration Nastavitve OpenDTH - + Enable proxy Vklopi posredniški strežnik - + Proxy address Naslov posredniškega strežnika - + Bootstrap Začetni nalagalnik - + Back Nazaj - + Account Settings Nastavitve računa - + Account Račun - - + + General Splošno - + Plugin Vtičnik - + Audio/Video Zvok/video - + Audio Zvok - + Microphone Mikrofon - + Select audio input device Izberi vhodno zvočno napravo - + Output device Izhodna naprava - + Select audio output device Izberi izhodno zvočno napravo - + Ringtone device Naprava za zvonjenje - + Select ringtone output device Izberi napravo za predvajanje zvonjenja - + Audio manager Zvočni upravljalnik - + Video Video - + Select video device Izberi video napravo - + Device Naprava - + Resolution Ločljivost - + Select video resolution Izberi ločljivost videa - + Enable hardware acceleration Vklopi strojno pospeševanje - + Preview unavailable Predogled ni na voljo - + Screen Sharing Skupna raba zaslona - + Select screen sharing frame rate (frames per second) Izberite hitrost ob skupni rabi zaslona (sličice na sekundo) - + no video brez videoposnetka - + Backup account here Tu ustvari varnostno kopijo - + Backup your account! Ustvarite varnostno kopijo svojega računa! - + Backup account Varnostno kopiranje računa - + Skip Preskoči - + Success Uspelo - + Error Napaka - + Never show me this again Tega več ne prikaži - + Recommended Priporočeno - + Jami archive files Arhivske datoteke Jami - + All files Vse datoteke - + Reinstate as contact Obnovi kot stik - + name ime - + Identifier identifikator - + is recording snema - + are recording snemajo - + Peer stopped recording Soležnik je nehal snemati - + is calling you vas kliče - - + + Mute Utišaj - - + + Unmute Vklopi zvok - + Add participant Dodaj sodelujočega - + Add participants Dodaj sodelujoče - + Chat Pogovor - + More options Več možnosti - + Mosaic Mozaik - + You are still muted by moderator Še vedno imate izklopljen mikrofon s strani moderatorja - + You are muted by a moderator Imate izklopljen mikrofon s strani moderatorja - + Moderator Moderator - + Host Gostitelj - + Local and Moderator muted Moderator in krajevno izklopljen mikrofon - + Moderator muted Moderator ima izklopljen mikrofon - + Not muted Ni nemo - + Cut Izreži - + Paste Prilepi - + Start video call Začni video klic - + Start audio call Začni zvočni klic - + Clear conversation Počisti pogovor - + Remove conversation Odstrani pogovor - + Remove contact Odstrani stik - + Block contact Blokiraj stik - + Contact details Podrobnosti stika - + Hold Zadrži - + Sip input panel Sip vhodni pano - + Transfer call Preveži klic - + Stop recording Zaustavi snemanje - + Start recording Začni snemati - + Exit full screen Izhod iz celozaslonskega načina - + Share screen Deli zaslon - + Share window Skupna raba okna - + Share screen area Deli območje zaslona - + Share file Deli datoteko - + Select sharing method Izberite metodo skupne rabe - + View plugin Prikazni vtičnik - + No video device Ni video naprave - + N/A --- - + Lower hand Spusti roko - + Raise hand Dvignite roko - + Hide chat view Skrij klepet - + Place audio call Ustvari zvočni klic - + Place video call Ustvari video klic - + Show available plugins Pokaži razpoložljive vstavke - + Add to conversations Dodaj k pogovoru - + Jump to latest Premaknite se na konec pogovora - + {} is typing… Stik {} piše ... - + {} are typing… {} pišejo ... - + Several people are typing… Več oseb tipka ... - + and in - + Enter Jami Account Management Server (JAMS) URL Vnesite URl naslov za strežnik JAMS (Jami Account Management Server) - + Required je zahtevano - + Jami Account Management Server URL URL strežnika upravljanja z računi Jami - + Enter your JAMS credentials Vnesite svoje podatke za JAMS - + Connect Poveži - + Back to welcome page Nazaj na otvoritveno stran - + Choose name Izberite ime - + Choose username uporabniško ime - + Create account Ustvari račun - + Confirm password Potrdi geslo - + Optional Izbirno - + Choose a username for your account Izberite uporabniško ime za svoj račun - + Choose a name Izberi ime - + Choose your username Določite uporabniško ime: - + Invalid name Neveljavno ime - + Invalid username Neveljavno uporabniško ime - + Name already taken Ime je že oddano - + Username already taken Uporabniško ime je že oddano - + Proxy Proxy - + Server Strežnik - + Create SIP account Ustvari račun SIP - + Configure an existing SIP account Nastavi obstoječi račun SIP - + Backup successful Uspešno varnostno kopiranje - + Backup failed Neuspešno varnostno kopiranje - + Password changed successfully Geslo je bilo spremenjeno - + Password change failed Gesla ni bilo mogoče spremeniti - + Password set successfully Nastavljanje gesla je uspelo - + Password set failed nastavljanje gesla ni uspelo - + Change password Sprememba gesla - - + + Set password Določi geslo - + Change current password Spremeni obstoječe geslo - + Backup account to a .gz file Varnostno kopiraj račun v datoteko .gz - + Enable account Vklopi račun - + Set username Določi uporabniško ime - + Registering name Registriraj ime - + Register a username Registriraj uporabniško ime - + Register username Registriraj uporabniško ime - + Link a new device to this account Poveži novo napravo s tem računom - + Link another device Poveži še eno napravo - + Exporting account… Izvažanje računa ... - + Remove Device Odstrani napravo - + Are you sure you wish to remove this device? Ali ste prepričani, da želite odstraniti to napravo? - + Linked Devices Povezane naprave - + Your PIN is: Vaš PIN je: - + Error connecting to the network. Please try again later. Napaka ob povezovanju z omrežjem. Poskusite znova kasneje. - + Do you really want to delete this account? Ali res želite izbrisati ta račun? - + Save new device name Shrani novo ime naprave - + Edit device name Uredi ime naprave - + Unlink device from account Odstrani napravo z računa - + Select a folder Izberi mapo - + Enable notifications Omogoči obvestila - + Enable dark theme Omogoči temno temo - + Keep minimized on close Ohrani zmanjšano ob zaprtju - + Run application on system startup Zažani program ob zagonu sistema - + Downloads directory Mapa s prenosi - + Choose download directory Izberite mapo za prenose - + Record call Snemaj klic - + Chatview Klepet - + Display hyperlink previews in the chatview Prikaži predoglede povezav - + User interface language Jezik uporabniškega vmesnika - + File transfer Prenos datoteke - + Allow incoming files from unknown contacts Dovoli dodhodne datoteke neznanih stikov - + Automatically accept incoming files Samodejno sprejmi dohodne datoteke - + Accept transfer limit Sprejmi omejitev prenosa - + in MB, 0 = unlimited v MB, 0 = neomejeno - + Register Registracija - + Incorrect password Nepravilno geslo - + Save file Shrani datoteko - + Open location Odpri lokacijo - + Install beta version Namesti različico beta - + Check for updates now Preveri posodobitve zdaj - + Enable/Disable automatic updates Vklopi/izklopi samodejno posodabljanje - + toggle automatic updates preklapljanje med samodejnm posodabljanjem - + Updates Posodobitve - + Update Posodobi - + A new version of Jami was found Would you like to update now? Najdena je bila novejša različica Jami-ja Ali bi radi izvedli posodobitev? - + No new version of Jami was found Novejša različice ni bila najdena - + An error occured when checking for a new version Ob iskanju novejše različice se je zgodila napaka - + Installer download canceled Prenos posodobitve je bilo prekinjeno - + This will uninstall your current Release version and you can always download the latest Release version on our website To bo odstranilo vašo trenutno različico, lahko pa vedno prenesete zadnjo različico z naše spletne strani. - + Network disconnected Prekinjena omrežna povezava - - + + Something went wrong Nekaj je šlo narobe - + Troubleshoot Razreši težavo - + Open logs Odpri zapisnike - + Get logs Dobi zapisnike - + Select a record directory Izberite mapo za snemanje - + Debug Razhrošči - + Show Stats Pokaži statistiko - + Start Začni - + Stop Zaustavi - + Generating account… Ustvarjanje računa ... - + Import from backup Uvozi iz varnostne kopije - + PIN PIN - + Stop taking photo Nehaj slikati - + Clear avatar image Počisti sliko avatarja - + Go back to plugins list Vrni se na seznam vtičnikov - + Profile is only shared with contacts Profil se deli le s stiki - + Enter your name Vnesite svoje ime - + Import account from other device Uvozi račun iz druge naprave - + Import account from backup file Uvozi račun iz varnostne kopije - + Hide advanced features Skrij napredne možnosti - + Create new Jami account Ustvari nov račun Jami - + Create new SIP account Ustvari nov račun SIP - + Welcome to Dobrodošli v - + Upgrade Nadgradi - + Later Kasneje - + Local muted Krajevno izklopljen mikrofon - + Trying to reconnect to the Jami daemon (jamid)… Poskus ponovnega povezovanja s prikritim procesom Jami (jamid) ... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Ponovna povezava s pritajenim procesom Jami (jamid) je spodletela. Jami se bo zdaj zaprl. - + Is swarm: Je roj: - + True da - + False ne - + Add emoji Dodaj emoji - + Send file Pošlji datoteko - + Leave audio message Pusti zvočno sporočilo - + Leave video message Pusti video sporočilo - + Send Pošlji - + Remove Odstrani - + Write to %1 Piši stiku %1 - + %1 has sent you a request for a conversation. %1 vam je poslal zahtevo za pogovor. - + Hello, Would you like to join the conversation? Pozdravljeni, se želite pridružiti pogovoru? - + You have accepted the conversation request Sprejeli ste zahtevo za pogovor. - + Waiting until %1 connects to synchronize the conversation. Čakamo, da se %1 poveže, da sinhroniziramo pogovor. - - + + Copy Kopiraj - + Participant is still muted on their device Udeleženec ima še vedno izklopljen mikrofon na svoji napravi - + You are still muted on your device Še vedno imate izklopljen mikrofon na svoji napravi - + View full screen Pokaži celozaslonsko - + Stop sharing screen or file Prenehaj deliti zaslon ali datoteko - + Display advanced settings Prikaži napredne nastavitve - + Hide advanced settings Skrij napredne nastavitve - + Display banned contacts Prikaži zavrnjene stike - + Hide banned contacts Skrij zavrnjene stike - + Layout Postavitev - + Vertical view Navpičen pogled - + Horizontal view Vodoraven pogled - + Keyboard Shortcut Table Tabela tipk za bližnjice - + Conversation Pogovor - + Call Kliči - + Settings Nastavitve - + Report Bug Poročaj o hrošču - + Clear Počisiti - + Copied to clipboard! Kopirano na odložišče! - + Receive Logs Prejmi zapisnike - + Archive Arhiv - + Open file Odpri datoteko - + Create your account from a backup Ustvarite račun iz varnostne kopije - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Lahko ustvarite arhiv s klikom na "Varnostno kopiranje" na nastavitvah računa. To bo na vaši napravi ustvarilo .gz datoteko. - + Restore an account from backup Obnovi račun iz varnostne kopije - + Enter Jami account password Vnesite geslo računa Jami - + The PIN and the account password should be entered in your device within 10 minutes. PIN in geslo računa je potebno vnesti v roku 10 minut. - + Close Zapri - + Enter your account password Vnesite geslo računa - + Add Device Dodaj napravo - + Enter the password Vnesite geslo - + Enter current password Vnesite trenutno geslo - + Enter this account's password to confirm the removal of this device Vnesite geslo računa, da potrdite odstranitev te naprave - + Enter new password Vnesite novo geslo - + Confirm new password Potrdite novo geslo - + Change Spremeni - + Confirm Potrdi - + Export Izvozi - + Choose a picture as avatar Za avatar izberi sliko - + Import avatar from image file Uvozi sklikovno datoteko za avatar - + Take photo Slikaj - + Reset Ponastavi - + Select a plugin to install Izberite vtičnik za namesitev - + Install plugin Namesti vtičnik - + Save profile Shrani profil - + Information Informacije - + Enter the account password to confirm the removal of this device Vnesite geslo računa, da potrdite odstranitev te naprave - + Select a screen to share Izberite zaslon, ki ga želite deliti - + Select a window to share Izberite okno, ki ga želite deliti - + All Screens Vsi zasloni - + Screens Zasloni - + Windows Okna - + QR code QR-koda - + Account QR QR računa - + This is your Jami username. Copy and share it with your friends! To je vaše uporabniško ime Jami. Kopirajte ga in delite s prijatelji! - + Link this device to an existing account Povežite to napravo z obstoječim računom - + Advanced features Napredno - + Show advanced features Prikaži napredne funkcije - + Connect to a JAMS server Poveži se s strežnikom JAMS - + Add a SIP account Dodaj račun SIP - + Error while creating your account. Check your credentials. Napaka pri ustvarjanju računa. Preverite podatke. - + Clear Text Počisti besedilo - + Search Results Rezultati iskanja - + Delete Pobriši - + Set moderator Določi moderatorja - + Unset moderator Odstavi moderatorja - + Maximize Povečaj - + Minimize Minimaliziraj - + Hangup Odloži - + Conference moderation Moderiranje konference - + Default moderators Privzeti moderatorji - + Enable local moderators Omogoči krajevne moderatorje - + Make all participants moderators Vsi udeleženci naj postanejo moderatorji - + Add default moderator Dodaj privzetega moderatorja - + Remove default moderator Odstrani privzetega moderatorja @@ -2350,112 +2350,112 @@ Kopirajte ga in delite s prijatelji! KeyboardShortcutTable - + Open account list Odpri seznam računov - + Focus conversations list Fokusiraj seznam pogovorov - + Requests list Zahteva seznam - + Previous conversation Prejšnji pogovori - + Next conversation Naslednji pogovori - + Search bar Iskalna vrstica - + Full screen Cel zaslon - + Start an audio call Začni z zvočnim klicem - + Start a video call Začni video klic - + Clear history Počisti zgodovino - + Block contact Blokiraj stik - + Remove conversation Odstrani pogovor - + Accept contact request Sprejmi zahtevo stika - + Media settings Nastavitve medija - + General settings Splošne nastavitve - + Account settings Nastavitve računa - + Plugin settings Nastavitve vstavka - + Open account creation wizard Odpri čarovnika za ustvarjanje računa - + Open keyboard shortcut table Odpri tabelo tipk za bližnjice - + Answer an incoming call Odgovori na dohodni klic - + End call Končaj klic - + Decline the call request Zavrni klic @@ -2463,17 +2463,17 @@ Kopirajte ga in delite s prijatelji! MainApplication - + E&xit &Zapri - + &Quit I&zhod - + &Show Jami &Pokaži Jami @@ -2481,12 +2481,12 @@ Kopirajte ga in delite s prijatelji! PhotoboothView - + Image Files Slikovne datoteke - + All files Vse datoteke @@ -2494,7 +2494,7 @@ Kopirajte ga in delite s prijatelji! PluginHandlerItemDelegate - + On/Off Vklop/Izklop @@ -2502,12 +2502,12 @@ Kopirajte ga in delite s prijatelji! PluginHandlerPicker - + Choose plugin Izberi vtičnik - + Preferences Nastavitve @@ -2515,7 +2515,7 @@ Kopirajte ga in delite s prijatelji! PluginItemDelegate - + Load/Unload Naloži/Odstrani @@ -2523,27 +2523,27 @@ Kopirajte ga in delite s prijatelji! PluginListPreferencesView - + Uninstall plugin Odstrani vtičnik - + Reset preferences Ponastavi nastavitve - + Ok V redu - + Cancel Prekliči - + Uninstall Odstrani @@ -2551,17 +2551,17 @@ Kopirajte ga in delite s prijatelji! PluginListSettingsView - + Plugin Files Datoteke vtičnikov - + All files Vse datoteke - + Installed plugins Nameščeni vtičniki @@ -2569,7 +2569,7 @@ Kopirajte ga in delite s prijatelji! PreferenceItemDelegate - + Edit preference Uredi nastavitve @@ -2577,107 +2577,107 @@ Kopirajte ga in delite s prijatelji! QObject - + Created by: Ustvarjalci: - + Artwork by: Grafična podoba: - + Based on the SFLPhone project Temelji na projektu SFLPhone - + Sending Pošiljanje - + Failure Ni uspelo - + Sent Poslano - + Connecting Povezovanje - + Accept Sprejmi - + Canceled Preklicano - + Unable to make contact Stika ni mogoče vzpostaviti - + Ongoing V teku - + Waiting for contact Čakanje na stik - + Incoming transfer Dohodni prenos - + Timed out waiting for contact Čas čakanja na stik je pretekel - + Finished Končano - + %1 days ago Pred %1 dnevi - + one day ago pred enim dnevom - + %1 hours ago Pred %1 urami - + one hour ago pred eno uro - + %1 minutes ago Pred %1 minutami - + just now ravnokar @@ -2685,22 +2685,22 @@ Kopirajte ga in delite s prijatelji! RecordingSettings - + Call Recording Snemanje klica - + Always record calls Vedno snemaj klice - + Quality Kakovost - + Save in Shrani v @@ -2708,7 +2708,7 @@ Kopirajte ga in delite s prijatelji! RevokeDevicePasswordDialog - + Remove Odstrani @@ -2716,7 +2716,7 @@ Kopirajte ga in delite s prijatelji! SelectScreen - + Screen zaslon @@ -2724,7 +2724,7 @@ Kopirajte ga in delite s prijatelji! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopirajte ga in delite s prijatelji! SmartListModel - - - - - - + + + + + + Calls Klici - - - - - - + + + + + + Contacts Stiki @@ -2755,17 +2755,17 @@ Kopirajte ga in delite s prijatelji! SystemSettings - + System Sistem - + Enable dark theme Omogoči temno temo - + Enable desktop notifications Pokaži obvestila @@ -2773,27 +2773,27 @@ Kopirajte ga in delite s prijatelji! SystemTray - + Answer Odgovori - + Decline Zavrni - + Open conversation Odpri pogovor - + Accept Sprejmi - + Refuse Zavrni @@ -2801,7 +2801,7 @@ Kopirajte ga in delite s prijatelji! UserIdentity - + Identity Identiteta @@ -2809,17 +2809,17 @@ Kopirajte ga in delite s prijatelji! UtilsAdapter - + %1 Mbps %1 Mb/s - + Default Privzeto - + System Sistem diff --git a/translations/ring_client_windows_sq_AL.ts b/translations/ring_client_windows_sq_AL.ts index 3eec8706..92252c78 100644 --- a/translations/ring_client_windows_sq_AL.ts +++ b/translations/ring_client_windows_sq_AL.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Shtoni Llogari @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Kartela Audio - + All files Krejt kartelat @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Kartelë Dëshmie - - - + + + All files Krejt kartelat - + Key File Kartelë Kyçesh @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Kartelë Dëshmie - - - + + + All files Krejt kartelat - + Key File Kartelë Kyçesh @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Rregullime të Mëtejshme Llogarie @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Kontakte të Dëbuar @@ -89,32 +89,32 @@ CallAdapter - + Missed call Thirrje e humbur - + Missed call with %1 Thirrje e humbur me %1 - + me unë - + Incoming call Thirrje ardhëse - + %1 is calling you %1 po ju telefonon - + is calling you po ju thërret @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Shtoje te konferenca - + Transfer this call Shpërngule këtë thirrje - + Add default moderator Shtoni moderator parazgjedhje @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Mesazh i ri - + Trust request Kërkesë besueshmërie @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Në rregull - - + + Success Sukses - - + + Error Gabim - + Jami archive files Kartela arkivi Jami - + All files Krejt kartelat @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. S’u rilidh dot me demonin Jami (jamid). Jami tani do të mbyllet. - + Trying to reconnect to the Jami daemon (jamid)… Po provohet të rilidhet me demonin Jami (jamid)… - + Ok Në rregull @@ -211,7 +211,7 @@ Jami tani do të mbyllet. DeviceItemDelegate - + Device Id ID pajisjeje @@ -219,2130 +219,2130 @@ Jami tani do të mbyllet. JamiStrings - + Find a user or search for a conversation Gjeni një përdorues ose kërkoni për një bisedë - + Search your invitations Kërkoni te ftesat tuaja - + Invitations Ftesa - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami është software i lirë për komunikim universal që respekton liritë dhe privatësinë e përdoruesve të tij. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami është software i lirë për komunikim universal, që respekton liritë dhe privatësinë e përdoruesve të tij. - + Credits Kredite - + Display QR code Shfaq kod QR - + Open settings Hap rregullimet - + Close settings Mbylli rregullimet - + Authentication required Lyp mirëfilltësim - + Your session has expired or been revoked on this device. Please enter your password. Sesioni juaj në këtë pajisje ka skaduar ose është shfuqizuar. Ju lutemi, jepni fjalëkalimin tuaj. - + JAMS server Shërbyes JAMS - + Authenticate Mirëfilltëso - + Delete account Fshije llogarinë - + Authentication failed Mirëfilltësimi dështoi - + Password Fjalëkalim - + Username Emër përdoruesi - + Alias Alias - + Call Settings Rregullime për Thirrjet - + Allow incoming calls from unknown contacts Lejo thirrje ardhëse prej kontaktesh të panjohur - + In progress… Në ecuri e sipër… - + Accept Pranoje - + Refuse Hidhe tej - + Incoming audio call from {} Thirrje audio ardhëse prej {} - + Incoming video call from {} Thirrje video ardhëse prej {} - + Convert your account into a rendezvous point Shndërrojeni llogarinë tuaj në një pikë takimesh - + Automatically answer calls Përgjigju vetvetiu thirrjeve - + Enable custom ringtone Aktivizo zile vetjake - + Select custom ringtone Përzgjidhni zile vetjake - + Add a custom ringtone Shtoni një zile vetjake - + Select a new ringtone Përzgjidhni një zile të re - + Voicemail Voicemail - + Voicemail dial code Kod për thirrje voicemail - + Security Siguri - + Encrypt media streams (SRTP) Fshehtëzo rrjedha media (SRTP) - + Enable SDES key exchange Aktivizo shkëmbim kyçesh SDES - + Allow fallback on RTP Lejo kalim në RTP, kur s’ka rrugë tjetër - + Encrypt negotiation (TLS) Tratativë fshehtëzimi (TLS) - + CA certificate Dëshmi AD - + User certificate Dëshmi përdoruesi - + Private key Kyç privat - + Private key password Fjalëkalim kyçi privat - + Verify certificates for incoming TLS connections Verifiko dëshmi për lidhje TLS ardhëse - + Verify server TLS certificates Verifiko dëshmi TLS shërbyesi - + Require certificate for incoming TLS connections Kërko doemos dëshmi për lidhje TLS ardhëse - + TLS protocol method Metodë protokolli TLS - + Audio input device selector Përzgjedhës pajisje audio në hyrje - + TLS server name Emër shërbyesi TLS - + Negotiation timeout (seconds) Mbarim kohe tratative (sekonda) - + Select a private key Përzgjidhni një kyç privat - + Select a user certificate Përzgjidhni një dëshmi përdoruesi - + Registration expiration time (seconds) Kohë skadimi regjistrimi (sekonda) - + Use custom address and port Përdor adresë dhe portë vetjake - + Enable local peer discovery Aktivizo pikasje ortakësh vendorë - + Audio and Video Settings Rregullime Audio dhe Video - + Frames per second Kuadro për sekondë - + Select video frame rate (frames per second) Përzgjidhni shpejtësi kuadrosh video (kuadro për sekondë) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Llogaria juaj ekziston vetëm në këtë pajisje. Nëse humbni pajisjen ose çinstaloni aplikacionin, llogaria juaj do të fshihet dhe s’mund të rikthehet. Mund të bëni një kopjeruajtje të llogarisë tuaj tani ose më vonë. - - + + End call Përfundoje thirrjen - + Pause call Ndale thirren - + Resume call Rimerre thirrjen - + Pause video Ndale videon - + Resume video Rimerre videon - + Creating account… Po krijohet llogaria… - + Encrypt account with password Fshehtëzoje llogarinë me fjalëkalim - + Create a rendezvous point Krijoni një pikë takimesh - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Zgjidhni një fjalëkalim për të fshehtëzuar llogarinë tuaj në këtë pajisje. Mbani parasysh që fjalëkalimi s’mund të rikthehet. - + Choose a name for your rendezvous point Zgjidhni një emër për pikën tuaj të takimeve - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Nëse llogaria juaj s’është kopjeruajtur ose shtuar te një tjetër pajisje, llogari dhe emri që keni regjistruar do të humbë në mënyrë të pakthyeshme. - + Launch at startup Vëre në punë gjatë nisjes - + Enable typing indicators Aktivizo tregues shtypjeje - - + + Network error Gabim rrjeti - + SSL error Gabim SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Jepni PIN-in prej një llogarie tjetër Jami të formësuar. Që të merrni një PIN, përdorni veçorinë “Lidhni Pajisje Tjetër”. - + Link device Lidhni pajisje - + Conversations Biseda - + Enable Aktivizoje - + Display or hide preferences Shfaq ose fshih parapëlqime - + Add new plugin Shtoni shtojcë të re - + Select a file Përzgjidhni kartelë - + Select Përzgjidhe - + Choose image file Zgjidhni kartelë figure - + Enter the rendezvous point's name Jepni emrin e pikës së takimit - + Creating rendezvous point… Po krijohet pikë takimi… - + Create account from Jami Account Management Server (JAMS) Krijoni llogari prej Shërbyesi Administrimi Llogarish Jami (JAMS) - + Create new rendezvous point Krijoni pikë të re takimi - + Create a Jami account Krijoni një llogari Jami - + About Jami Mbi Jami-n - + Decline contact request Hidhe poshtë kërkesën për kontakt - + Accept contact request Pranoni kërkesë kontakti - + Automatically check for updates Kontrollo vetvetiu për përditësime - + Ok Në rregull - - + + Cancel Anuloje - + Accept in audio Pranoje në audio - + Accept in video Pranoje në video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Po shihni një bisedë në të cilën krejt pjesëmarrësit, hiq ju, janë larguar. S’do të jenë të mundshme ndërveprime të reja. - + Start new conversation Nisni bisedë të re - + Chat Settings Rregullime Fjalosjesh - + Enable read receipts Aktivizo dëshmi leximi - + Send and receive receipts indicating that a message have been displayed Dërgoni dhe merrni dëshmi që tregojnë se po shfaqet një mesazh. - + Select a CA certificate Përzgjidhni një dëshmi AD-je - + Connectivity Aftësi lidhjeje - + Auto Registration After Expired Vetëregjistrim Pas Skadimit - + Network interface Ndërfaqe rrjeti - + Use UPnP Përdor UPnP - + Use TURN Përdor TURN - + TURN address Adresë TURN - + TURN username Emër përdoruesi TURN - + TURN password Fjalëkalim TURN - + TURN Realm TURN shtrirje - + Use STUN Përdor STUN - + STUN address Adresë STUN - + Allow IP Auto Rewrite Lejo Vetërishkrim IP-sh - + Public address Adresë publike - + Address Adresë - + Port Portë - + Media Media - + Enable video Aktivizo video - + Video Codecs Kodekë Video - + Audio Codecs Kodekë Audio - + Name Server Shërbyes Emrash - + SDP Session Negotiation (ICE Fallback) Tratativa Sesioni SDP (ICE Fallback) - + Only used during negotiation in case ICE is not supported E përdorur gjatë tratativash vetëm nëse nuk mbulohet ICE - + Audio RTP minimum Port Portë minimum RTP audio - + Audio RTP maximum Port Portë maksimum RTP audio - + Video RTP minimum Port Portë minimum RTP video - + Video RTP maximum port Portë maksimum RTP video - + Connect to other DHT nodes advertising on your local network. Lidhu me nyje të tjera DHT të reklamuara në rrjetin tuaj vendor. - + OpenDHT Configuration Formësim OpenDHT-je - + Enable proxy Aktivizoni ndërmjetës - + Proxy address Adresë ndërmjetësi - + Bootstrap Bootstrap - + Back Mbrapsht - + Account Settings Rregullime Llogarie - + Account Llogari - - + + General Të përgjithshme - + Plugin Shtojcë - + Audio/Video Audio/Video - + Audio Audio - + Microphone Mikrofon - + Select audio input device Përzgjidhni pajisje audio në hyrje - + Output device Pajisje output-i: - + Select audio output device Përzgjidhni pajisje audio në dalje - + Ringtone device Pajisje zilesh: - + Select ringtone output device Përzgjidhni pajisje zile në dalje - + Audio manager Përgjegjës tingulli: - + Video Video - + Select video device Përzgjidhni pajisje video - + Device Pajisje - + Resolution Qartësi - + Select video resolution Përzgjidhni qartësi videoje - + Enable hardware acceleration Aktivizo përshpejtim hardware-i: - + Preview unavailable S’ka paraparje - + Screen Sharing Dhënie Ekrani - + Select screen sharing frame rate (frames per second) Përzgjidhni shpejtësi kuadrosh për dhënie ekrani (kuadro për sekondë) - + no video nuk ka video - + Backup account here Kopjeruajeni llogarinë këtu - + Backup your account! Kopjeruani llogarinë tuaj! - + Backup account Kopjeruaje llogarinë - + Skip Anashkaloje - + Success Sukses - + Error Gabim - + Never show me this again Mos ma shfaq më kurrë këtë - + Recommended E rekomanduar - + Jami archive files Kartela arkivi Jami - + All files Krejt kartelat - + Reinstate as contact Rikthejeni si kontakt - + name emër - + Identifier Identifikues - + is recording po regjistron - + are recording po regjistrojnë - + Peer stopped recording Ana tjetër ndali regjistrimin - + is calling you po ju thërret - - + + Mute Heshtoje - - + + Unmute Çheshtoje - + Add participant Shtoni pjesëmarrës - + Add participants Shtoni pjesëmarrës - + Chat Fjalosje - + More options Më tepër mundësi - + Mosaic Mozaik - + You are still muted by moderator Jeni ende i heshtuar nga moderatori - + You are muted by a moderator Jeni i heshtuar nga një moderator - + Moderator Moderator - + Host Pritës - + Local and Moderator muted Heshtuar Lokalisht dhe nga Moderator - + Moderator muted Heshtuar nga moderator - + Not muted Jo i heshtuar - + Cut Prije - + Paste Ngjite - + Start video call Filloni thirrje video - + Start audio call Filloni thirrje audio - + Clear conversation Spastroje bisedën - + Remove conversation Hiqe bisedën - + Remove contact Hiqe kontaktin - + Block contact Bllokojeni kontaktin - + Contact details Hollësi kontakti - + Hold Mbaje - + Sip input panel Panel input-esh Sip - + Transfer call Shpërngulni thirrjen - + Stop recording Ndale incizimin - + Start recording Fillo incizim - + Exit full screen Dil nga gjithë ekrani - + Share screen Bashkëndaj ekranin - + Share window Ndaje dritaren me të tjerë - + Share screen area Bashkëndaj zonën e ekranit - + Share file Ndani kartelë me të tjerë - + Select sharing method Përzgjidhni metodë ndarjeje me të tjerët - + View plugin Shihni shtojcën - + No video device S’ka pajisje video - + N/A N/A - + Lower hand Uleni dorën - + Raise hand Ngrini dorën - + Hide chat view Fshihe pamjen fjalosje - + Place audio call Bëni një thirrje audio - + Place video call Bëni një thirrje video - + Show available plugins Shfaq shtojcat e gatshme - + Add to conversations Shtoje te biseda - + Jump to latest Hidhu te më i riu - + {} is typing… {} po shtyp… - + {} are typing… {} po shtypin… - + Several people are typing… Një numër vetash po shtyp… - + and dhe - + Enter Jami Account Management Server (JAMS) URL Jepni URL Shërbyesi Administrimi Llogarish Jami (JAMS) - + Required E domosdoshme - + Jami Account Management Server URL URL Shërbyesi Administrimi Llogarish Jami - + Enter your JAMS credentials Jepni kredencialet tuaj për te JAMS - + Connect Lidhu - + Back to welcome page Mbrapsht te faqja e mirëseardhjes - + Choose name Zgjidhni emër - + Choose username Zgjidhni emër përdoruesi - + Create account Krijoni llogari - + Confirm password Ripohoni fjalëkalimin - + Optional Opsionale - + Choose a username for your account Zgjidhni një emër përdoruesi për llogarinë tuaj - + Choose a name Zgjidhni një emër - + Choose your username Zgjidhni mrin tuaj të përdoruesit - + Invalid name Emër i pavlefshëm - + Invalid username Emër përdoruesi i pavlefshëm - + Name already taken Emër tashmë i zënë - + Username already taken Emër përdoruesi tashmë i zënë - + Proxy Ndërmjetës - + Server Shërbyes - + Create SIP account Krijoni llogari SIP - + Configure an existing SIP account Formësoni një llogari SIP ekzistuese - + Backup successful Kopjeruajtje e suksesshme - + Backup failed Kopjeruajtja dështoi - + Password changed successfully Fjalëkalimi u ndryshua me sukses - + Password change failed Ndryshimi i fjalëkalimit dështoi - + Password set successfully Fjalëkalimi u caktua me sukses - + Password set failed Caktimi i fjalëkalimit dështoi - + Change password Ndryshoni fjalëkalimin - - + + Set password Caktoni fjalëkalimin - + Change current password Ndryshoni fjalëkalimin e tanishëm - + Backup account to a .gz file Kopjeruajeni llogarinë në një kartelë .gz - + Enable account Aktivizoje llogarinë - + Set username Caktoni emër përdoruesi - + Registering name Po regjistrohet emri - + Register a username Regjistroni një emër përdoruesi - + Register username Regjistroni emër përdoruesi - + Link a new device to this account Lidhni te kjo llogari një pajisje të re - + Link another device Lidhni një pajisje tjetër - + Exporting account… Po eksportohet llogari… - + Remove Device Hiqe Pajisjen - + Are you sure you wish to remove this device? Jeni i sigurt se doni të hiqet kjo pajisje? - + Linked Devices Pajisje të Lidhura - + Your PIN is: PIN-i juaj është: - + Error connecting to the network. Please try again later. Gabim në lidhjen me rrjetin. Ju lutemi, riprovoni më vonë. - + Do you really want to delete this account? Doni vërtet të fshihet kjo llogari? - + Save new device name Ruani emrin e pajisjes së re - + Edit device name Përpunoni emër pajisje - + Unlink device from account Hiqini pajisjes lidhjen prej llogarie - + Select a folder Përzgjidhni dosje - + Enable notifications Aktivizo njoftime - + Enable dark theme Aktivizo temë të errët - + Keep minimized on close Mbaje të minimizuar kur dilet - + Run application on system startup Xhiroje aplikacionin që me nisjen e sistemit - + Downloads directory Drejtori shkarkimesh - + Choose download directory Zgjidhni drejtori shkarkimesh - + Record call Incizo thirrjen - + Chatview Pamje fjalosjeje - + Display hyperlink previews in the chatview Shfaq paraafishimet e lidhjeve - + User interface language Gjuha e ndërfaqes së përdoruesit - + File transfer Shpërngulje kartelash - + Allow incoming files from unknown contacts Lejo kartela ardhëse prej kontaktesh të panjohur - + Automatically accept incoming files Prano automatikisht kartela ardhëse - + Accept transfer limit Prano kufi shpërnguljesh - + in MB, 0 = unlimited në MB, 0 = e pakufizuar - + Register Regjistrohuni - + Incorrect password Fjalëkalim i pasaktë - + Save file Ruaje kartelën - + Open location Hap vendndodhjen - + Install beta version Instalo version beta - + Check for updates now Kontrollo tani për përditësime - + Enable/Disable automatic updates Aktivizoni/Çaktivizoni përditësime automatike - + toggle automatic updates aktivizoni/çaktivizoni përditësime automatike - + Updates Përditësime - + Update Përditësim - + A new version of Jami was found Would you like to update now? U gjet një version i ri i Jami-t Do të donit të përditësohet tani? - + No new version of Jami was found S’u gjet version i ri i Jami-t - + An error occured when checking for a new version Ndodhi një gabim, kur kërkohej për një version të ri - + Installer download canceled Shkarkimi i instaluesit u anulua - + This will uninstall your current Release version and you can always download the latest Release version on our website Kjo do të çinstalojë versionin tuaj të tanishëm të Hedhjes Në Qarkullim dhe mundeni përherë të shkarkoni versionin më të ri të Hedhjes Në Qarkullim që nga sajti ynë - + Network disconnected Rrjeti u shkëput - - + + Something went wrong Diç shkoi ters - + Troubleshoot Diagnostikoje - + Open logs Hapni regjistra - + Get logs Merrni regjistra - + Select a record directory Përzgjidhni një drejtori regjistrimesh - + Debug Diagnostikoji - + Show Stats Shfaq Statistika - + Start Fillo - + Stop Ndale - + Generating account… Po prodhohet llogari… - + Import from backup Importoni prej kopjeruajtjeje - + PIN PIN - + Stop taking photo Resht së bëri foto - + Clear avatar image Spastro figurë avatari - + Go back to plugins list Kthehu te lista e shtojcave - + Profile is only shared with contacts Profili ndahet vetëm me kontaktet - + Enter your name Jepni emrin tuaj - + Import account from other device Importoni llogari nga një tjetër pajisje - + Import account from backup file Importoni llogari prej kartele kopjeruajtje - + Hide advanced features Fshihi veçoritë e thelluara - + Create new Jami account Krijoni llogari Jami të re - + Create new SIP account Krijoni llogari SIP të re - + Welcome to Mirë se vini te - + Upgrade Përmirësoje - + Later Më vonë - + Local muted Heshtuar lokalisht - + Trying to reconnect to the Jami daemon (jamid)… Po provohet të rilidhet me demonin Jami (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. S’u rilidh dot me demonin Jami (jamid). Jami tani do të mbyllet. - + Is swarm: - + True True - + False False - + Add emoji Shtoni emoji - + Send file Dërgo kartelë - + Leave audio message Lini mesazh audio - + Leave video message Lini mesazh video - + Send Dërgoje - + Remove Hiqe - + Write to %1 Shkruajini %1 - + %1 has sent you a request for a conversation. %1 ju ka dërguar një kërkesë për bisedë. - + Hello, Would you like to join the conversation? Tungjatjeta, Do të donit të merrnit pjesë në bisedë? - + You have accepted the conversation request E keni pranuar kërkesën për bisedë - + Waiting until %1 connects to synchronize the conversation. Po priter deri sa %1 të lidhet, për njëkohësim të bisedës. - - + + Copy Kopjoje - + Participant is still muted on their device Pjesëmarrësi është ende i heshtuar në pajisjen e tij - + You are still muted on your device Jeni ende i heshtuar në pajisjen tuaj - + View full screen Pamja sa i gjithë ekrani - + Stop sharing screen or file Resht së dhëni ekranin ose kartelën - + Display advanced settings Shfaq rregullime të mëtejshme - + Hide advanced settings Fshihi rregullimet e mëtejshme - + Display banned contacts Shfaq kontakte të dëbuar - + Hide banned contacts Fshihi kontaktet e dëbuar - + Layout Strukturë - + Vertical view Pamje vertikale - + Horizontal view Pamje horizontale - + Keyboard Shortcut Table Tabelë Shkurtoresh Tastiere - + Conversation Bisedë - + Call Thirre - + Settings Rregullime - + Report Bug Njoftoni të metë - + Clear Spastroje - + Copied to clipboard! U kopjua në të papastër! - + Receive Logs Merr Regjistra - + Archive Arkiv - + Open file Hap kartelë - + Create your account from a backup Krijojeni llogarinë tuaj nga një kopjeruajtje - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Një arkiv mund ta keni duke klikuar mbi “Kopjeruani llogari”, te rregullime llogarie. Kjo do të krijojë në pajisjen tuaj një kartelë .gz. - + Restore an account from backup Riktheni një llogari prej një kopjeruajtje - + Enter Jami account password Jepni fjalëkalim llogarie Jami - + The PIN and the account password should be entered in your device within 10 minutes. PIN-i dhe fjalëkalimi i llogarisë duhen dhënë te pajisja juaj brenda 10 minutash. - + Close Mbylle - + Enter your account password Jepni fjalëkalimin e llogarisë tuaj - + Add Device Shtoni Pajisje - + Enter the password Jepni fjalëkalimin - + Enter current password Jepni fjalëkalimin e tanishëm - + Enter this account's password to confirm the removal of this device Që të ripohoni heqjen e kësaj pajisje, jepni fjalëkalimin e kësaj llogarie - + Enter new password Jepni fjalëkalimin e ri - + Confirm new password Ripohoni fjalëkalimin e ri - + Change Ndryshoje - + Confirm Ripohoje - + Export Eksportoje - + Choose a picture as avatar Zgjidhni për avatar një foto - + Import avatar from image file Importo avatar prej kartele figurë - + Take photo Bëni një foto - + Reset Riktheji te parazgjedhjet - + Select a plugin to install Përzgjidhni një shtojcë për instalim - + Install plugin Instaloje shtojcën - + Save profile Ruaje profilin - + Information Informacion - + Enter the account password to confirm the removal of this device Që të ripohoni heqjen e kësaj pajisje, jepni fjalëkalimin e llogarisë - + Select a screen to share Zgjidhni një ekran për të ndarë - + Select a window to share Përzgjidhni një dritare për t’u ndarë me të tjerë - + All Screens Krejt Ekranet - + Screens Ekrane - + Windows Dritare - + QR code Kod QR - + Account QR QR llogarie - + This is your Jami username. Copy and share it with your friends! Ky është emri juaj i përdoruesit në Jami. Kopjojeni dhe jepuani shokëve! - + Link this device to an existing account Lidheni këtë pajisje me një llogari ekzistuese - + Advanced features Veçori të thelluara - + Show advanced features Shfaq veçori të thelluara - + Connect to a JAMS server Lidhu me një shërbyes JAMS - + Add a SIP account Shtoni një llogari SIP - + Error while creating your account. Check your credentials. Gabim gjatë krijimit të llogarisë tuaj. Kontrolloni kredencialet tuaja. - + Clear Text Tekst i Thjeshtë - + Search Results Përfundime Kërkimi - + Delete Fshije - + Set moderator Caktoni moderator - + Unset moderator Hiqe nga moderator - + Maximize Maksimizoje - + Minimize Minimizoje - + Hangup Mbylle - + Conference moderation Moderim konference - + Default moderators Moderatorë parazgjedhje - + Enable local moderators Aktivizo moderatorë vendorë - + Make all participants moderators Bëji krejt pjesëmarrësit moderatorë - + Add default moderator Shtoni moderator parazgjedhje - + Remove default moderator Hiq moderator parazgjedhje @@ -2350,112 +2350,112 @@ Kopjojeni dhe jepuani shokëve! KeyboardShortcutTable - + Open account list Hapni listë llogarish - + Focus conversations list Fokusohu te listë bisedash - + Requests list Listë kërkesash - + Previous conversation Biseda e mëparshme - + Next conversation Biseda pasuese - + Search bar Shtyllë kërkimesh - + Full screen Ekran i plotë - + Start an audio call Filloni një thirrje audio - + Start a video call Filloni një thirrje video - + Clear history Spastroje historikun - + Block contact Bllokojeni kontaktin - + Remove conversation Hiqe bisedën - + Accept contact request Pranoni kërkesë kontakti - + Media settings Rregullime për media - + General settings Rregullime të përgjithshme - + Account settings Rregullime llogarie - + Plugin settings Rregullime shtojce - + Open account creation wizard Hap ndihmës krijimi llogarish - + Open keyboard shortcut table Hap tabelë shkurtoresh tastiere - + Answer an incoming call Përgjigjuni një thirrje ardhëse - + End call Përfundoje thirrjen - + Decline the call request Hidh poshtë kërkesën për thirrje @@ -2463,17 +2463,17 @@ Kopjojeni dhe jepuani shokëve! MainApplication - + E&xit &Dalje - + &Quit &Mbylle - + &Show Jami &Shfaq Jami-n @@ -2481,12 +2481,12 @@ Kopjojeni dhe jepuani shokëve! PhotoboothView - + Image Files Kartela Figurash - + All files Krejt kartelat @@ -2494,7 +2494,7 @@ Kopjojeni dhe jepuani shokëve! PluginHandlerItemDelegate - + On/Off On/Off @@ -2502,12 +2502,12 @@ Kopjojeni dhe jepuani shokëve! PluginHandlerPicker - + Choose plugin Zgjidhni shtojcë - + Preferences Parapëlqime @@ -2515,7 +2515,7 @@ Kopjojeni dhe jepuani shokëve! PluginItemDelegate - + Load/Unload Ngarkoje/Shkarkoje @@ -2523,27 +2523,27 @@ Kopjojeni dhe jepuani shokëve! PluginListPreferencesView - + Uninstall plugin Çinstaloje shtojcën - + Reset preferences Rikthe parapëlqimet te parazgjedhjet - + Ok Në rregull - + Cancel Anuloje - + Uninstall Çinstaloje @@ -2551,17 +2551,17 @@ Kopjojeni dhe jepuani shokëve! PluginListSettingsView - + Plugin Files Kartela Shtojce - + All files Krejt kartelat - + Installed plugins Shtojca të instaluara @@ -2569,7 +2569,7 @@ Kopjojeni dhe jepuani shokëve! PreferenceItemDelegate - + Edit preference Përpunoni parapëlqime @@ -2577,107 +2577,107 @@ Kopjojeni dhe jepuani shokëve! QObject - + Created by: Krijuar nga: - + Artwork by: Përkujdesja grafike: - + Based on the SFLPhone project Bazuar në projektin SFLPhone - + Sending Po dërgohet - + Failure Dështim - + Sent Dërguar - + Connecting Po lidhet - + Accept Pranoje - + Canceled U anulua - + Unable to make contact S’arrihet të vendoset kontakt - + Ongoing Në punë e sipër - + Waiting for contact Po pritet për kontakt - + Incoming transfer Shpërngulje ardhëse - + Timed out waiting for contact Mbaroi koha duke pritur për kontakt - + Finished Përfundoi - + %1 days ago %1 ditë më parë - + one day ago një ditë më parë - + %1 hours ago %1 orë më parë - + one hour ago një orë më parë - + %1 minutes ago %1 minuta më parë - + just now mu tani @@ -2685,22 +2685,22 @@ Kopjojeni dhe jepuani shokëve! RecordingSettings - + Call Recording Incizim Thirrjesh - + Always record calls Incizoji përherë thirrjet - + Quality Cilësi - + Save in Ruaje te @@ -2708,7 +2708,7 @@ Kopjojeni dhe jepuani shokëve! RevokeDevicePasswordDialog - + Remove Hiqe @@ -2716,7 +2716,7 @@ Kopjojeni dhe jepuani shokëve! SelectScreen - + Screen Ekran @@ -2724,7 +2724,7 @@ Kopjojeni dhe jepuani shokëve! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopjojeni dhe jepuani shokëve! SmartListModel - - - - - - + + + + + + Calls Thirrje - - - - - - + + + + + + Contacts Kontakte @@ -2755,17 +2755,17 @@ Kopjojeni dhe jepuani shokëve! SystemSettings - + System Sistem - + Enable dark theme Aktivizo temë të errët - + Enable desktop notifications Shfaq njoftimet @@ -2773,27 +2773,27 @@ Kopjojeni dhe jepuani shokëve! SystemTray - + Answer Përgjigjuni - + Decline Hidhe tej - + Open conversation Hap bisedë - + Accept Pranoje - + Refuse Hidhe tej @@ -2801,7 +2801,7 @@ Kopjojeni dhe jepuani shokëve! UserIdentity - + Identity Identitet @@ -2809,17 +2809,17 @@ Kopjojeni dhe jepuani shokëve! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Parazgjedhja - + System Sistem diff --git a/translations/ring_client_windows_sr.ts b/translations/ring_client_windows_sr.ts index 4bc0ab8a..0e4080dc 100644 --- a/translations/ring_client_windows_sr.ts +++ b/translations/ring_client_windows_sr.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Dolazeći poziv - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok U redu - - + + Success Usprešno - - + + Error Greška - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok U redu @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Zasluge - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password šifra - + Username Korisničko ime - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Omogućite dolazne pozive nepoznatih kontakata - + In progress… - + Accept Prihvati - + Refuse Odbij - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Bezbednost - + Encrypt media streams (SRTP) Šifruj medijski strim (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery Omogući otkrivanje lokalnih parnjaka - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Završi poziv - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Šifrujte nalog sa lozinkom - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Greška na mreži - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Konverzacija - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Kreirajte Jami nalog - + About Jami O Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok U redu - - + + Cancel Otkaži - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Koristi TURN - + TURN address - + TURN username TURN korisničko ime - + TURN password TURN lozinka - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media Medija - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Bootstrap - + Back Nazad - + Account Settings - + Account Nalog - - + + General Opšte - + Plugin - + Audio/Video - + Audio Zvuk - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video nema video zapisa - + Backup account here - + Backup your account! - + Backup account - + Skip Preskoči - + Success Usprešno - + Error Greška - + Never show me this again - + Recommended Preporučeno - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Blokirati mikrofon - - + + Unmute Odblokirati mikrofon - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blokiraj kontakt - + Contact details Detalji o kontaktu - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Izađi iz prikaza preko celog ekrana - + Share screen Dijeljenje zaslona - + Share window Delite prozor - + Share screen area Dijeljenje područje zaslona - + Share file Podeli podatak - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Podignite ruku - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Pomerite se na kraj razgovora - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Zahteva - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Poveži - + Back to welcome page - + Choose name - + Choose username - + Create account Napravi nalog - + Confirm password - + Optional Opciono - + Choose a username for your account Izaberite korisnićko ime za Vaš nalog - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nepravilno korisničko ime - + Name already taken - + Username already taken Korisničko ime je zauzeto - + Proxy Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Povezni uređaji - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Fascikla za preuzimanja - + Choose download directory - + Record call - + Chatview Ćaskajte - + Display hyperlink previews in the chatview Prikaži preglede veza - + User interface language Jezik korisničkog interfejsa - + File transfer Prenos podatka - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registruj se - + Incorrect password - + Save file Sačuvajte podatak - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Profil se jedino deli sa kontaktima - + Enter your name Unesite Vaše ime - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Pošalji podatak - + Leave audio message - + Leave video message - + Send Pošalji - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiraj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Prikaži ceo ekran - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Raspored - + Vertical view Vertikalni prikaz - + Horizontal view Horizontalni prikaz - + Keyboard Shortcut Table - + Conversation - + Call - + Settings Podešavanja - + Report Bug - + Clear Jasno - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Otvorite podatak - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change Promeni - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Odaberite zaslon za dijeljenje - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Rezultat pretrage - + Delete Izbriši - + Set moderator - + Unset moderator - + Maximize Maksimizirati - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Ceo ekran - + Start an audio call - + Start a video call - + Clear history Izbriši istoriju - + Block contact Blokiraj kontakt - + Remove conversation - + Accept contact request - + Media settings - + General settings Opšte postavke - + Account settings Podešavanja za nalog - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Završi poziv - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok U redu - + Cancel Otkaži - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Povezivanje - + Accept Prihvati - + Canceled Otkazan - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Poziva - - - - - - + + + + + + Contacts Kontakti @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Prikaži obaveštenja @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Odbij - + Open conversation - + Accept Prihvati - + Refuse Odbij @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identitet @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбпс - + Default Podrazumevano - + System Sistem diff --git a/translations/ring_client_windows_sr@Cyrl.ts b/translations/ring_client_windows_sr@Cyrl.ts index 20bc3188..49daaae7 100644 --- a/translations/ring_client_windows_sr@Cyrl.ts +++ b/translations/ring_client_windows_sr@Cyrl.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Dolazeći poziv - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok U redu - - + + Success Usprešno - - + + Error Greška - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok U redu @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Zasluge - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password šifra - + Username Korisničko ime - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Omogućite dolazne pozive nepoznatih kontakata - + In progress… - + Accept Prihvati - + Refuse Odbij - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Bezbednost - + Encrypt media streams (SRTP) Šifruj medijski strim (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery Omogući otkrivanje lokalnih parnjaka - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Završi poziv - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Šifrujte nalog sa lozinkom - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Greška na mreži - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Konverzacija - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Kreirajte Jami nalog - + About Jami O Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok U redu - - + + Cancel Otkaži - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Koristi TURN - + TURN address - + TURN username TURN korisničko ime - + TURN password TURN lozinka - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media Medija - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Bootstrap - + Back Nazad - + Account Settings - + Account Nalog - - + + General Opšte - + Plugin - + Audio/Video - + Audio Аудио - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Видео - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video нема видео записа - + Backup account here - + Backup your account! - + Backup account - + Skip Preskoči - + Success Usprešno - + Error Greška - + Never show me this again - + Recommended Preporučeno - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Blokirati mikrofon - - + + Unmute Odblokirati mikrofon - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blokiraj kontakt - + Contact details Detalji o kontaktu - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Izađi iz prikaza preko celog ekrana - + Share screen Dijeljenje zaslona - + Share window Delite prozor - + Share screen area Dijeljenje područje zaslona - + Share file Podeli podatak - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Podignite ruku - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Pomerite se na kraj razgovora - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Zahteva - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Poveži - + Back to welcome page - + Choose name - + Choose username - + Create account Napravi nalog - + Confirm password - + Optional Opciono - + Choose a username for your account Izaberite korisnićko ime za Vaš nalog - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nepravilno korisničko ime - + Name already taken - + Username already taken Korisničko ime je zauzeto - + Proxy Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Povezni uređaji - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Fascikla za preuzimanja - + Choose download directory - + Record call - + Chatview Ćaskajte - + Display hyperlink previews in the chatview Prikaži preglede veza - + User interface language Jezik korisničkog interfejsa - + File transfer Prenos podatka - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registruj se - + Incorrect password - + Save file Sačuvajte podatak - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Profil se jedino deli sa kontaktima - + Enter your name Unesite Vaše ime - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Pošalji podatak - + Leave audio message - + Leave video message - + Send Pošalji - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiraj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Prikaži ceo ekran - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Raspored - + Vertical view Vertikalni prikaz - + Horizontal view Horizontalni prikaz - + Keyboard Shortcut Table - + Conversation - + Call - + Settings Podešavanja - + Report Bug - + Clear Jasno - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Otvorite podatak - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change Promeni - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Odaberite zaslon za dijeljenje - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Rezultat pretrage - + Delete Izbriši - + Set moderator - + Unset moderator - + Maximize Maksimizirati - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Ceo ekran - + Start an audio call - + Start a video call - + Clear history Izbriši istoriju - + Block contact Blokiraj kontakt - + Remove conversation - + Accept contact request - + Media settings - + General settings Opšte postavke - + Account settings Podešavanja za nalog - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Završi poziv - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok U redu - + Cancel Otkaži - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Povezivanje - + Accept Prihvati - + Canceled Otkazan - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Poziva - - - - - - + + + + + + Contacts Kontakti @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Prikaži obaveštenja @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Odbij - + Open conversation - + Accept Prihvati - + Refuse Odbij @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identitet @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбпс - + Default Podrazumevano - + System Sistem diff --git a/translations/ring_client_windows_sr@latin.ts b/translations/ring_client_windows_sr@latin.ts index 41552889..4171c94c 100644 --- a/translations/ring_client_windows_sr@latin.ts +++ b/translations/ring_client_windows_sr@latin.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Zasluge - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Napravi Jami profil - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel Otkaži - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back Nazad - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel Otkaži - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_sr_RS.ts b/translations/ring_client_windows_sr_RS.ts index 0fa8b9e8..e0469807 100644 --- a/translations/ring_client_windows_sr_RS.ts +++ b/translations/ring_client_windows_sr_RS.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Fajl sertifikata - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call Dolazeći poziv - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok U redu - - + + Success Usprešno - - + + Error Greška - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok U redu @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Verzija - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Zasluge - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password šifra - + Username Korisničko ime - + Alias Alias - + Call Settings - + Allow incoming calls from unknown contacts Omogućite dolazne pozive nepoznatih kontakata - + In progress… - + Accept Prihvati - + Refuse Odbij - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security Bezbednost - + Encrypt media streams (SRTP) Šifruj medijski strim (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery Omogući otkrivanje lokalnih parnjaka - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Završi poziv - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password Šifrujte nalog sa lozinkom - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Greška na mreži - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Konverzacija - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Kreirajte Jami nalog - + About Jami O Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok U redu - - + + Cancel Otkaži - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN Koristi TURN - + TURN address - + TURN username TURN korisničko ime - + TURN password TURN lozinka - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media Medija - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap Bootstrap - + Back Nazad - + Account Settings - + Account Nalog - - + + General Opšte - + Plugin - + Audio/Video - + Audio Zvuk - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video nema video zapisa - + Backup account here - + Backup your account! - + Backup account - + Skip Preskoči - + Success Usprešno - + Error Greška - + Never show me this again - + Recommended Preporučeno - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute Blokirati mikrofon - - + + Unmute Odblokirati mikrofon - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Blokiraj kontakt - + Contact details Detalji o kontaktu - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Izađi iz prikaza preko celog ekrana - + Share screen Dijeljenje zaslona - + Share window Delite prozor - + Share screen area Dijeljenje područje zaslona - + Share file Podeli podatak - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Podignite ruku - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Pomerite se na kraj razgovora - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Zahteva - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect Poveži - + Back to welcome page - + Choose name - + Choose username - + Create account Napravi nalog - + Confirm password - + Optional Opciono - + Choose a username for your account Izaberite korisnićko ime za Vaš nalog - + Choose a name - + Choose your username - + Invalid name - + Invalid username Nepravilno korisničko ime - + Name already taken - + Username already taken Korisničko ime je zauzeto - + Proxy Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices Povezni uređaji - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Fascikla za preuzimanja - + Choose download directory - + Record call - + Chatview Ćaskajte - + Display hyperlink previews in the chatview Prikaži preglede veza - + User interface language Jezik korisničkog interfejsa - + File transfer Prenos podatka - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Registruj se - + Incorrect password - + Save file Sačuvajte podatak - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Profil se jedino deli sa kontaktima - + Enter your name Unesite Vaše ime - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Pošalji podatak - + Leave audio message - + Leave video message - + Send Pošalji - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Kopiraj - + Participant is still muted on their device - + You are still muted on your device - + View full screen Prikaži ceo ekran - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Raspored - + Vertical view Vertikalni prikaz - + Horizontal view Horizontalni prikaz - + Keyboard Shortcut Table - + Conversation - + Call - + Settings Podešavanja - + Report Bug - + Clear Jasno - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Otvorite podatak - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change Promeni - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Odaberite zaslon za dijeljenje - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Rezultat pretrage - + Delete Izbriši - + Set moderator - + Unset moderator - + Maximize Maksimizirati - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Ceo ekran - + Start an audio call - + Start a video call - + Clear history Izbriši istoriju - + Block contact Blokiraj kontakt - + Remove conversation - + Accept contact request - + Media settings - + General settings Opšte postavke - + Account settings Podešavanja za nalog - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Završi poziv - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok U redu - + Cancel Otkaži - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting Povezivanje - + Accept Prihvati - + Canceled Otkazan - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Poziva - - - - - - + + + + + + Contacts Kontakti @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Sistem - + Enable dark theme - + Enable desktop notifications Prikaži obaveštenja @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline Odbij - + Open conversation - + Accept Prihvati - + Refuse Odbij @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity Identitet @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбпс - + Default Podrazumevano - + System Sistem diff --git a/translations/ring_client_windows_sv.ts b/translations/ring_client_windows_sv.ts index 87364db2..e43c67ad 100644 --- a/translations/ring_client_windows_sv.ts +++ b/translations/ring_client_windows_sv.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Lägg till konto @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Ljudfiler - + All files Alla filer @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Certifikatfil - - - + + + All files Alla filer - + Key File Nyckelfil @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Certifikatfil - - - + + + All files Alla filer - + Key File Nyckelfil @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Avancerade kontoinställningar @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Bannlysta kontakter @@ -89,32 +89,32 @@ CallAdapter - + Missed call Missat samtal - + Missed call with %1 Missat samtal med %1 - + me jag - + Incoming call Inkommande samtal - + %1 is calling you %1 ringer dig - + is calling you ringer dig @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Lägg till i konferens - + Transfer this call Överför samtal - + Add default moderator Ange grundinställd moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Nytt meddelande - + Trust request Lita på begäran @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok OK - - + + Success Slutfört - - + + Error Fel - + Jami archive files Jami arkivfiler - + All files Alla filer @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Kunde inte ansluta till Jami appen (jamid). Jami avslutas. - + Trying to reconnect to the Jami daemon (jamid)… Försöker återansluta till Jami-tjänsten. - + Ok OK @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id Enhetsid @@ -218,2128 +218,2128 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation Hitta en användare eller sök konversation - + Search your invitations Sök i inbjudningar - + Invitations Inbjudningar - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami är fri programvara för universell kommunikation som respekterar användarnas rättigheter. - + Version Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami är fri programvara för universell kommunikation som respekterar användarnas rättigheter. - + Credits Tack till - + Display QR code Visa QR-kod - + Open settings Öppna inställningar - + Close settings Stäng inställningar - + Authentication required Inloggning krävs - + Your session has expired or been revoked on this device. Please enter your password. Din session har löpt ut eller tagits bort från denna enhet. Ange ditt lösenord. - + JAMS server JAMS-server - + Authenticate Logga in - + Delete account Ta bort konto - + Authentication failed Autentisering misslyckades - + Password Lösenord - + Username Användarnamn - + Alias Alias - + Call Settings Samtalsinställningar - + Allow incoming calls from unknown contacts Tillåt inkommande samtal från okända kontakter - + In progress… Pågår... - + Accept Acceptera - + Refuse Neka - + Incoming audio call from {} Inkommande ljudsamtal från {0} - + Incoming video call from {} Inkommande videosamtal från {0} - + Convert your account into a rendezvous point Konvertera ditt konto till en rendevouz-punkt. - + Automatically answer calls Besvara samtal automatiskt - + Enable custom ringtone Aktivera anpassad ringsignal - + Select custom ringtone Välj anpassad ringsignal - + Add a custom ringtone Lägg till en anpassad ringsignal - + Select a new ringtone Välj en ny ringsignal - + Voicemail Röstbrevlåda - + Voicemail dial code Röstsamtalsnummer - + Security Säkerhet - + Encrypt media streams (SRTP) Kryptera mediaströmmar (SRTP) - + Enable SDES key exchange Godkänn SDES nyckel utbyte - + Allow fallback on RTP Tillåt falla tillbaka på RTP - + Encrypt negotiation (TLS) Kryptera förhandling (TLS) - + CA certificate CA-certifikat - + User certificate Användarcertifikat - + Private key Privat nyckel - + Private key password Lösenord för privat nyckel - + Verify certificates for incoming TLS connections Verifiera certifikat för inkommande TLS-anslutningar - + Verify server TLS certificates Verifiera server TLS-certifikat - + Require certificate for incoming TLS connections Begär certifikat för inkommande TLS anslutningar - + TLS protocol method TLS-protokollmetod - + Audio input device selector Val av Ljudenhet - + TLS server name TLS-servernamn - + Negotiation timeout (seconds) Tidsgräns för förhandling (sekunder) - + Select a private key Välj en privat nyckel - + Select a user certificate Välj ett användarcertifikat - + Registration expiration time (seconds) Tid för registrering går ut (sekunder) - + Use custom address and port Använd anpassad adress och port - + Enable local peer discovery Möjliggör upptäckt av lokal anslutningspunkt - + Audio and Video Settings Ljud- och bildinställningar - + Frames per second Bilder per sekund - + Select video frame rate (frames per second) Välj bilduppdateringsfrekvens (bilder per sekund) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Ditt konto finns endast på denna enhet. Om du förlorar enheten eller avinstallerar appen kommer ditt konto raderas och kan inte återställas. Du kan säkerhetskopiera nu eller senare. - - + + End call Avsluta samtal - + Pause call Pausa samtal - + Resume call Återuppta samtalet - + Pause video Pausa video - + Resume video Återuppta videosamtalet - + Creating account… Skapar konto... - + Encrypt account with password Kryptera kontot med lösenord - + Create a rendezvous point Skapa en mötesplats - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Välj lösenord för att kryptera ditt konto på denna enhet. Notera att lösenordet inte kan återställas. - + Choose a name for your rendezvous point Välj namn för din Mötespunkt - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Om ditt konto inte blivit säkerhetskopierat eller lagt till på annan enhet kommer ditt konto och ditt registrerade namn att oåterkalleligen vara förlorat. - + Launch at startup Starta automatiskt - + Enable typing indicators Visa skrivindikering - - + + Network error Nätverksfel - + SSL error SSL-fel - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Ange PIN-koden från ett annat konfigurerat Jami-konto. Använd "Koppla en annan enhet", för att få din PIN-kod. - + Link device Koppla enhet - + Conversations Konversationer - + Enable Aktivera - + Display or hide preferences Visa eller göm preferenser - + Add new plugin Lägg till tillägg - + Select a file Välj en fil - + Select Välj - + Choose image file Välj bildfil - + Enter the rendezvous point's name Ange namn på mötesrummet - + Creating rendezvous point… Skapa mötesrum - + Create account from Jami Account Management Server (JAMS) Skapa konto från Jami Account Management Server (JAMS) - + Create new rendezvous point Skapar nytt mötesrum - + Create a Jami account Skapa ett Jami-konto - + About Jami Om Jami - + Decline contact request Avslå kontakt begäran - + Accept contact request Acceptera kontaktförfrågan - + Automatically check for updates Sök automatiskt efter uppdateringar - + Ok OK - - + + Cancel Avbryt - + Accept in audio Godkänn ljud - + Accept in video Acceptera i video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Du ser en konversation där alla andra deltagare har lämnat . Nya interaktioner är inte möjliga. - + Start new conversation Starta ny konversation - + Chat Settings Chattinställningar - + Enable read receipts Visa läskvitto - + Send and receive receipts indicating that a message have been displayed Skicka och ta emot kvitto som visar ett meddelande har visats - + Select a CA certificate Välj ett CA-certifikat - + Connectivity Anslutningsbarhet - + Auto Registration After Expired Automatisk registrering upphör. - + Network interface Nätverksgränssnitt - + Use UPnP Använd UPnP - + Use TURN Använd TURN - + TURN address TURN-adress - + TURN username TURN-användarnamn - + TURN password TURN-lösenord - + TURN Realm TURN realm - + Use STUN Använd STUN - + STUN address STUN-adress - + Allow IP Auto Rewrite Tillåt IP Auto uppdatering - + Public address Publik adress - + Address Adress - + Port Port - + Media Media - + Enable video Aktivera video - + Video Codecs Videokodekar - + Audio Codecs Ljudkodekar - + Name Server Namnserver - + SDP Session Negotiation (ICE Fallback) SDP sessionsförhandling (ICE-reserv) - + Only used during negotiation in case ICE is not supported Använd endast förhandling om ICE inte stöds - + Audio RTP minimum Port Audio RTP minimum port - + Audio RTP maximum Port Audio RTP maximum port - + Video RTP minimum Port Video RTP minimum port - + Video RTP maximum port Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. Anslut till annan DHT node på ditt lokala nätverk - + OpenDHT Configuration OpenDHT-konfiguration - + Enable proxy Aktivera proxy - + Proxy address Proxyadress - + Bootstrap Bootstrap - + Back Tillbaka - + Account Settings Kontoinställningar - + Account Konto - - + + General Allmänt - + Plugin Insticksmodul - + Audio/Video Ljud/Video - + Audio Ljud - + Microphone Mikrofon - + Select audio input device Välj ljudenhet - + Output device Utdataenhet - + Select audio output device Välj högtalare - + Ringtone device Ringsignalenhet - + Select ringtone output device Välj enhet för utgående ringsignal - + Audio manager Ljudhanterare - + Video Video - + Select video device Välj kamera - + Device Enhet - + Resolution Upplösning - + Select video resolution Välj videoupplösning - + Enable hardware acceleration Aktivera hårdvaruacceleration - + Preview unavailable Förhandsvisning ej möjlig - + Screen Sharing Skärmdelning - + Select screen sharing frame rate (frames per second) Välj videouppdatering (rutor per sekund) - + no video ingen video - + Backup account here Säkerhetskopiera konto här - + Backup your account! Säkerhetskopiera ditt konto! - + Backup account Säkerhetskopiera konto - + Skip Hopa över - + Success Slutfört - + Error Fel - + Never show me this again Visa inte detta igen - + Recommended Rekommendera - + Jami archive files Jami arkivfiler - + All files Alla filer - + Reinstate as contact Återställ som kontakt - + name namn - + Identifier identifierare - + is recording spelar in - + are recording spelar in - + Peer stopped recording Nod stoppar inspelning - + is calling you ringer dig - - + + Mute Tysta - - + + Unmute Slå på ljudet - + Add participant Lägg till deltagare - + Add participants Lägg till deltagare - + Chat Chatt - + More options Fler alternativ - + Mosaic Mosiak - + You are still muted by moderator Du är fortfarande tystad av moderator - + You are muted by a moderator Du är tystad av moderator - + Moderator Moderator - + Host Värd - + Local and Moderator muted Lokal och moderator tystnade - + Moderator muted Moderator tystad - + Not muted Inte tystad - + Cut Klipp ut - + Paste Klistra in - + Start video call Starta videosamtal - + Start audio call Starta ljudsamtal - + Clear conversation Rensa konversation - + Remove conversation Ta bort konversationen - + Remove contact Ta bort kontakt - + Block contact Blockera kontakt - + Contact details Kontaktdetaljer - + Hold Parkera - + Sip input panel Panel för Sip - + Transfer call Överför samtal - + Stop recording Sluta spela in - + Start recording Spela in - + Exit full screen Lämna helskärmsläge - + Share screen Dela skärmen - + Share window Dela fönster - + Share screen area Dela skärmområde - + Share file Dela fil - + Select sharing method Välj delningsmetod - + View plugin Visa tillägg - + No video device Ingen videoenhet - + N/A N/A - + Lower hand Ta ned handen - + Raise hand Räck upp handen - + Hide chat view Dölj chattvyn - + Place audio call Placera röstsamtal - + Place video call Placera videosamtal - + Show available plugins Visa tillgängliga tillägg - + Add to conversations Lägg till i konversationer - + Jump to latest Rulla till slutet av konversationen - + {} is typing… {} skriver - + {} are typing… {} skriver - + Several people are typing… Flera personer skriver - + and och - + Enter Jami Account Management Server (JAMS) URL Ange URL till Jami Account Management Server (JAMS) - + Required Obligatorisk - + Jami Account Management Server URL Jami Account Management Server URL - + Enter your JAMS credentials Ange dina Jams-inloggningsdata - + Connect Anslut - + Back to welcome page Tillbaka till välkomstsidan - + Choose name Välj namn - + Choose username Välj användarnamn - + Create account Skapa konto - + Confirm password Bekräfta lösenord - + Optional Valfri - + Choose a username for your account Välj användarnamn för ditt konto - + Choose a name Välj namn - + Choose your username Välj användarnamn - + Invalid name Ogiltigt namn - + Invalid username Ogiltigt användarnamn - + Name already taken Namnet finns redan - + Username already taken Användarnamnet finns redan - + Proxy Proxy - + Server Server - + Create SIP account Skapa SIP-konto - + Configure an existing SIP account Konfigurera ett befintligt SIP-konto - + Backup successful Säkerhetskopiering lyckades - + Backup failed Säkerhetskopiering misslyckades - + Password changed successfully Lösenord ändrades - + Password change failed Lösenord kunde inte ändras - + Password set successfully Lösenord lyckades - + Password set failed Lösenord misslyckade - + Change password Byt lösenord - - + + Set password Ange lösenord - + Change current password Ändra nuvarande lösenord - + Backup account to a .gz file Säkerhetskopiering till en .gz fil - + Enable account Aktivera konto - + Set username Välj användarnamn - + Registering name Registrerar namn - + Register a username Registrera ett användarnamn - + Register username Registrera användarnamn - + Link a new device to this account Länka ny enhet till detta konto - + Link another device Koppla en annan enhet - + Exporting account… Exporterar konto… - + Remove Device Ta bort enhet - + Are you sure you wish to remove this device? Är du säker du vill ta bort denna enhet? - + Linked Devices Länkade enheter - + Your PIN is: Din PIN är: - + Error connecting to the network. Please try again later. Fel vid anslutning till nätverket. Försök igen senare. - + Do you really want to delete this account? Vill du verkligen ta bort det här kontot? - + Save new device name Spara nytt enhetsid - + Edit device name Redigera enhetsnamn - + Unlink device from account Ta bort länkad enhet från kontot - + Select a folder Välj katalog - + Enable notifications Aktivera aviseringar - + Enable dark theme Aktivera mörkt tema - + Keep minimized on close Minimera istället för att avsluta - + Run application on system startup Kör appen vid systemstart - + Downloads directory Mappen Hämtade filer - + Choose download directory Välj mapp för nedladdning - + Record call Spela in samtal - + Chatview Chatt - + Display hyperlink previews in the chatview Visa förhandsgranskningar av länkar - + User interface language Användargränssnittets språk - + File transfer Filöverföring - + Allow incoming files from unknown contacts Tillåt inkommande filer från okända kontakter - + Automatically accept incoming files Acceptera inkommande filer automatiskt - + Accept transfer limit Ange gräns för överföring - + in MB, 0 = unlimited in MB, 0 = obegränsad - + Register Registrera - + Incorrect password Felaktigt lösenord - + Save file Spara fil - + Open location Öppna plats - + Install beta version Installera betaversion - + Check for updates now Sök efter uppdateringar nu - + Enable/Disable automatic updates Slå på/av automatiska uppdateringar - + toggle automatic updates sök uppdateringar automatiskt - + Updates Uppdateringar - + Update Uppdatera - + A new version of Jami was found Would you like to update now? Det finns en nyare version av Jami. Vill du uppdatera nu? - + No new version of Jami was found Ingen nyare version av Jami hittades - + An error occured when checking for a new version Ett fel inträffade vid sökning efter ny version - + Installer download canceled Nedladdning av Installationsprogram avbruten - + This will uninstall your current Release version and you can always download the latest Release version on our website Detta kommer avinstallera din nuvarande version och du kan alltid ladda ned den senaste versionen på vår webbplats - + Network disconnected Nätverk frånkopplat - - + + Something went wrong Något gick fel - + Troubleshoot Felsök - + Open logs Öppna logg - + Get logs Få tag i logg - + Select a record directory Välj mapp för spara inspelning - + Debug Debug - + Show Stats Visa statistik - + Start Starta - + Stop Stopp - + Generating account… Skapar konto... - + Import from backup Importera från säkerhetskopia - + PIN PIN-kod - + Stop taking photo Avbryt ta bilder - + Clear avatar image Rensa avatarbild - + Go back to plugins list Go tillbaka till listan med tillägg - + Profile is only shared with contacts Användarprofilen delas endast med dina kontakter. - + Enter your name Ange ditt namn - + Import account from other device Importera konto från annan enhet - + Import account from backup file Importera konto från säkerhetskopia - + Hide advanced features Dölj avancerade funktioner - + Create new Jami account Skapa nytt Jami-konto - + Create new SIP account Skapa nytt SIP-konto - + Welcome to Välkommen till - + Upgrade Uppgradera - + Later Senare - + Local muted Lokal nod tystad - + Trying to reconnect to the Jami daemon (jamid)… Försöker återansluta till Jami-tjänsten. - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Kunde inte ansluta till Jami appen (jamid). Jami avslutas. - + Is swarm: Svärmar: - + True Sant - + False Falskt - + Add emoji Lägg till emoji - + Send file Skicka fil - + Leave audio message Lämna ljudmeddelande - + Leave video message Lämna videomeddelande - + Send Skicka - + Remove Ta bort - + Write to %1 Skriv till %1 - + %1 has sent you a request for a conversation. %1 har skickat begäran om konversation. - + Hello, Would you like to join the conversation? Hej! Vill du gå med i konversationen? - + You have accepted the conversation request Du har accepterat konversationsbegäran - + Waiting until %1 connects to synchronize the conversation. Inväntar tills %1 ansluter för att synkronisera konversationen. - - + + Copy Kopiera - + Participant is still muted on their device Deltagare fortfarande tystade på sina enheter - + You are still muted on your device Du är fortfarande tystad på din enhet - + View full screen Visa helskärmsläge - + Stop sharing screen or file Avsluta dela skärm eller fil - + Display advanced settings Visa avancerade inställningar - + Hide advanced settings Dölj avancerade inställningar - + Display banned contacts Visa blockerade kontakter - + Hide banned contacts Dölj bannlysta kontakter - + Layout Layout - + Vertical view Vertikal vy - + Horizontal view Vågrät vy - + Keyboard Shortcut Table Kortkommando för tangentbord - + Conversation Konversation - + Call Samtal - + Settings Inställningar - + Report Bug Rapportera bugg - + Clear Ta bort - + Copied to clipboard! kopierat till urklipp! - + Receive Logs Ta emot loggar - + Archive Arkiv - + Open file Öppna fil - + Create your account from a backup Skapa konto från säkerhetskopia - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Du kan få ett arkiv genom att klicka på "Säkerhetskopiera konto" i kontoinställningarna. Det kommer att skapa en .gz-fil på din enhet. - + Restore an account from backup Återställ konto från säkerhetskopia - + Enter Jami account password Ange lösenordet för ditt Jami-konto - + The PIN and the account password should be entered in your device within 10 minutes. PIN-kod och konto lösenord måste skrivas in på din enhet inom 10 minuter. - + Close Stäng - + Enter your account password Ange ditt kontolösenord - + Add Device Lägg till enhet - + Enter the password Ange lösenord - + Enter current password Ange nuvarande lösenord - + Enter this account's password to confirm the removal of this device Ange lösenord till detta konto för att bekräfta borttagning av denna enhet - + Enter new password Ange nytt lösenord - + Confirm new password Bekräfta nytt lösenord - + Change Ändra - + Confirm Bekräfta - + Export Exportera - + Choose a picture as avatar Välj en bild som avatar - + Import avatar from image file Importera avatar från bildfil - + Take photo Ta ett foto - + Reset Återställ - + Select a plugin to install Välj tillägg att installera - + Install plugin Installera insticksmodul - + Save profile Spara profil - + Information Information. - + Enter the account password to confirm the removal of this device Ange kontolösenord för att bekräfta borttagning av denna enhet - + Select a screen to share Välj en skärm att dela - + Select a window to share Välj fönster för att dela - + All Screens Alla skärmar - + Screens Skärmar - + Windows Skärmfönster - + QR code QR-kod - + Account QR Konto-QR - + This is your Jami username. Copy and share it with your friends! Detta är ditt Jami-användarnamn. Kopiera och dela det med dina vänner! - + Link this device to an existing account Koppla enhet till befintligt konto - + Advanced features Avancerade funktioner - + Show advanced features Visa avancerade funktioner - + Connect to a JAMS server Anslut till en JAMS-server - + Add a SIP account Lägg till ett SIP-konto - + Error while creating your account. Check your credentials. Fel uppstod när kontot skulle skapas. Kontrollera dina data. - + Clear Text Radera text - + Search Results Sökresultat - + Delete Ta bort - + Set moderator Ange moderator. - + Unset moderator Moderator inte åsatt. - + Maximize Maximera - + Minimize Minimera - + Hangup Lägg på - + Conference moderation Konferens moderering - + Default moderators Grundinställda moderatorer - + Enable local moderators Möjliggör lokala moderatorer - + Make all participants moderators Gör alla deltagare till moderatorer - + Add default moderator Ange grundinställd moderator - + Remove default moderator Ta bort grundinställd moderator @@ -2347,112 +2347,112 @@ Kopiera och dela det med dina vänner! KeyboardShortcutTable - + Open account list Öppna kontolistan - + Focus conversations list Fokus konversationslista - + Requests list Begär lista - + Previous conversation Föregående konversation - + Next conversation Nästa konversation - + Search bar Sökfält - + Full screen Helskärmsläge - + Start an audio call Starta ett röstsamtal - + Start a video call Starta ett videosamtal - + Clear history Rensa historik - + Block contact Blockera kontakt - + Remove conversation Ta bort konversationen - + Accept contact request Acceptera kontaktförfrågan - + Media settings Mediainställningar - + General settings Allmänna inställningar - + Account settings Kontoinställningar - + Plugin settings Inställningar tillägg - + Open account creation wizard Öppna hjälp för skapa konto - + Open keyboard shortcut table Öppna kortkommandolista till tangentbord - + Answer an incoming call Besvara inkommande samtal - + End call Avsluta samtal - + Decline the call request Neka samtalsförfrågan @@ -2460,17 +2460,17 @@ Kopiera och dela det med dina vänner! MainApplication - + E&xit Avsluta - + &Quit &Avsluta - + &Show Jami &Visa Jami @@ -2478,12 +2478,12 @@ Kopiera och dela det med dina vänner! PhotoboothView - + Image Files Bild filer - + All files Alla filer @@ -2491,7 +2491,7 @@ Kopiera och dela det med dina vänner! PluginHandlerItemDelegate - + On/Off På/Av @@ -2499,12 +2499,12 @@ Kopiera och dela det med dina vänner! PluginHandlerPicker - + Choose plugin Välj insticksmodul - + Preferences Inställningar @@ -2512,7 +2512,7 @@ Kopiera och dela det med dina vänner! PluginItemDelegate - + Load/Unload Aktivera/Avaktivera insticksmodul @@ -2520,27 +2520,27 @@ Kopiera och dela det med dina vänner! PluginListPreferencesView - + Uninstall plugin Avinstallera insticksmodul - + Reset preferences Återställ preferenser - + Ok OK - + Cancel Avbryt - + Uninstall Avinstallera @@ -2548,17 +2548,17 @@ Kopiera och dela det med dina vänner! PluginListSettingsView - + Plugin Files Tilläggsfiler - + All files Alla filer - + Installed plugins Installerade insticksmoduler @@ -2566,7 +2566,7 @@ Kopiera och dela det med dina vänner! PreferenceItemDelegate - + Edit preference Ändra preferenser @@ -2574,107 +2574,107 @@ Kopiera och dela det med dina vänner! QObject - + Created by: Skapad av: - + Artwork by: Bildkonst av: - + Based on the SFLPhone project Baserad på SFLPhone-projektet - + Sending Skickar - + Failure Fel - + Sent Skickat - + Connecting Ansluter - + Accept Acceptera - + Canceled Avbruten - + Unable to make contact Ej möjligt få kontakt - + Ongoing Pågående - + Waiting for contact Inväntar kontakt - + Incoming transfer Inkommande överföring - + Timed out waiting for contact Tidsfel inväntar kontakt - + Finished Slutförd - + %1 days ago %1 dagar sedan - + one day ago en dag sedan - + %1 hours ago %1 timmar sedan - + one hour ago en timma sedan - + %1 minutes ago %1 minuter sedan - + just now just nu @@ -2682,22 +2682,22 @@ Kopiera och dela det med dina vänner! RecordingSettings - + Call Recording Samtalsinspelning - + Always record calls Spela alltid in samtal - + Quality Kvalitet - + Save in Spara i @@ -2705,7 +2705,7 @@ Kopiera och dela det med dina vänner! RevokeDevicePasswordDialog - + Remove Ta bort @@ -2713,7 +2713,7 @@ Kopiera och dela det med dina vänner! SelectScreen - + Screen Skärm @@ -2721,7 +2721,7 @@ Kopiera och dela det med dina vänner! SettingParaCombobox - + @@ -2729,22 +2729,22 @@ Kopiera och dela det med dina vänner! SmartListModel - - - - - - + + + + + + Calls Samtal - - - - - - + + + + + + Contacts Kontakter @@ -2752,17 +2752,17 @@ Kopiera och dela det med dina vänner! SystemSettings - + System System - + Enable dark theme Aktivera mörkt tema - + Enable desktop notifications Visa aviseringar @@ -2770,27 +2770,27 @@ Kopiera och dela det med dina vänner! SystemTray - + Answer Svara - + Decline Avslå - + Open conversation Öppna konversation - + Accept Acceptera - + Refuse Neka @@ -2798,7 +2798,7 @@ Kopiera och dela det med dina vänner! UserIdentity - + Identity Identitet @@ -2806,17 +2806,17 @@ Kopiera och dela det med dina vänner! UtilsAdapter - + %1 Mbps %1 Mbit/s - + Default Standard - + System System diff --git a/translations/ring_client_windows_sw.ts b/translations/ring_client_windows_sw.ts index 21c706d6..4f06ce15 100644 --- a/translations/ring_client_windows_sw.ts +++ b/translations/ring_client_windows_sw.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Sawa - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Sawa @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Maliza simu hii - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Sawa - - + + Cancel Kughairi - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video hakuna video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Ondoka kwenye skrini nzima - + Share screen Shiriki skrini - + Share window Shiriki dirisha - + Share screen area Shiriki sehemu ya skrini - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Folda ya vipakuliwa - + Choose download directory - + Record call - + Chatview Soga - + Display hyperlink previews in the chatview Onyesha muhtasari wa viungo - + User interface language Lugha ya kiolesura cha mtumiaji - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Tazama skrini nzima - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Mpangilio - + Vertical view Mtazamo wa wima - + Horizontal view Mtazamo wa mlalo - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Chagua skrini ili kushiriki - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Skrini nzima - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Maliza simu hii - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Sawa - + Cancel Kughairi - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Imeghairiwa - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Mfumo - + Enable dark theme - + Enable desktop notifications Onyesha arifa @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps Megabiti %1 kwa sekunde - + Default Chaguo-msingi - + System Mfumo diff --git a/translations/ring_client_windows_ta.ts b/translations/ring_client_windows_ta.ts index 91a7b9f0..c9f62c11 100644 --- a/translations/ring_client_windows_ta.ts +++ b/translations/ring_client_windows_ta.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok சரி - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok சரி @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version பதிப்பு - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings அமைப்புகளைத் திற - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call அழைப்பை முடித்திடுக - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok சரி - - + + Cancel ரத்துசெய்க - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General பொது - + Plugin - + Audio/Video - + Audio கேள்விமாற்றி - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video காணொளி - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video வீடியோ இல்லை - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen முழுத்திரையிலிருந்து வெளியேறு - + Share screen திரையைப் பகிர் - + Share window பகிரும் சாளரம் - + Share screen area திரைப் பகுதியைப் பகிரவும் - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest உரையாடலின் முடிவுக்கு ஸ்க்ரோல் செய்யவும் - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory பதிவிறக்கங்கள் கோப்புறை - + Choose download directory - + Record call - + Chatview அரட்டை - + Display hyperlink previews in the chatview இணைப்பு முன்னோட்டங்களைக் காண்பி - + User interface language பயனர் இடைமுக மொழி - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file கோப்பை அனுப்பு - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen முழுத் திரை காட்சி - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout தளவமைப்பு - + Vertical view செங்குத்து பார்வை - + Horizontal view கிடைமட்ட காட்சி - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share பகிர ஒரு திரையைத் தேர்ந்தெடுக்கவும் - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen முழுத் திரை - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call அழைப்பை முடித்திடுக - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok சரி - + Cancel ரத்துசெய்க - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled ரத்து செய்யப்பட்டது - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System அமைப்பு - + Enable dark theme - + Enable desktop notifications அறிவிப்புகளைக் காட்டு @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps வினாடிக்கு %1 மெகாபிட் - + Default இயல்புநிலை - + System அமைப்பு diff --git a/translations/ring_client_windows_te.ts b/translations/ring_client_windows_te.ts index 395a3097..d82d8986 100644 --- a/translations/ring_client_windows_te.ts +++ b/translations/ring_client_windows_te.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok సరే - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok సరే @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings సెట్టింగ్‌లను తెరువు - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call కాల్‌ను ముగించు - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok సరే - - + + Cancel రద్దు చేయి - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video వీడియో లేదు - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen పూర్తి స్క్రీన్ మోడ్‌ని నిష్క్రమించు - + Share screen స్క్రీన్‌ని భాగస్వామ్యం చేయండి - + Share window షేర్ విండో - + Share screen area స్క్రీన్ ఏరియాను షేర్ చేయండి - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest సంభాషణ ముగింపులోకి స్క్రోల్ చేయండి - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory డౌన్‌లోడ్‌ల ఫోల్డర్ - + Choose download directory - + Record call - + Chatview చాట్ - + Display hyperlink previews in the chatview లింక్ ప్రివ్యూలను చూపు - + User interface language వినియోగదారు ఇంటర్‌ఫేస్ భాష - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN పిన్ను - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ఫైల్‌ని పంపు - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen పూర్తి తెరలో వీక్షించు - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout లేఅవుట్ - + Vertical view నిలువు వీక్షణ - + Horizontal view క్షితిజ సమాంతర వీక్షణ - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share భాగస్వామ్యం చేయడానికి స్క్రీన్‌ని ఎంచుకోండి - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen పూర్తి స్క్రీన్ - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call కాల్‌ను ముగించు - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok సరే - + Cancel రద్దు చేయి - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled రద్దు చేయబడినది - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System సిస్టమ్ - + Enable dark theme - + Enable desktop notifications నోటిఫికేషన్‌లను చూపు @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps సెకనుకు %1 మెగాబిట్లు - + Default డిఫాల్ట్ - + System సిస్టమ్ diff --git a/translations/ring_client_windows_th.ts b/translations/ring_client_windows_th.ts index 3a8a021a..08641d9f 100644 --- a/translations/ring_client_windows_th.ts +++ b/translations/ring_client_windows_th.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok ตกลง - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok ตกลง @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings เปิดการตั้งค่า - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call สิ้นสุดการโทร - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok ตกลง - - + + Cancel ยกเลิก - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video ไม่มีวิดีโอ - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen ออกจากมุมมองเต็มหน้าจอ - + Share screen แชร์หน้าจอ - + Share window แชร์หน้าต่าง - + Share screen area แบ่งปันพื้นที่หน้าจอ - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest เลื่อนไปยังจุดสิ้นสุดของการสนทนา - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory ดาวน์โหลดโฟลเดอร์ - + Choose download directory - + Record call - + Chatview แชทสนทนา - + Display hyperlink previews in the chatview แสดงตัวอย่างลิงก์ - + User interface language ภาษาที่ใช้แสดงเพื่อติดต่อกับผู้ใช้ - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN ปักหมุด - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file ส่งไฟล์ - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen ดูแบบเต็มหน้าจอ - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout เค้าโครง - + Vertical view มุมมองแนวตั้ง - + Horizontal view มุมมองแนวนอน - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share เลือกหน้าจอเพื่อแชร์ - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen เต็มหน้าจอ - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call สิ้นสุดการโทร - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok ตกลง - + Cancel ยกเลิก - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled ยกเลิกแล้ว - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System ระบบ - + Enable dark theme - + Enable desktop notifications แสดงการแจ้งเตือน @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 เมกะบิตต่อวินาที - + Default ค่าเริ่มต้น - + System ระบบ diff --git a/translations/ring_client_windows_tr.ts b/translations/ring_client_windows_tr.ts index 7e2105a6..19457b3f 100644 --- a/translations/ring_client_windows_tr.ts +++ b/translations/ring_client_windows_tr.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Hesap Ekle @@ -10,7 +10,7 @@ AccountProfile - + Profile Profil @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Ses Dosyaları - + All files Tüm dosyalar @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Sertifika Dosyası - - - + + + All files Tüm dosyalar - + Key File Anahtar Dosyası @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Sertifika Dosyası - - - + + + All files Tüm dosyalar - + Key File Anahtar Dosyası @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Gelişmiş Hesap ayarları @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Engellenmiş Kişiler @@ -89,32 +89,32 @@ CallAdapter - + Missed call Cevapsız arama - + Missed call with %1 %1 ile cevapsız arama - + me ben - + Incoming call Gelen arama - + %1 is calling you %1 sizi aramaktadır - + is calling you seni arıyor @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Konferansa ekle - + Transfer this call Bu aramayı aktar - + Add default moderator Öntanımlı oturum başkanı ekleyin @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Yeni ileti - + Trust request Güven isteği @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Tamam - - + + Success Başarılı - - + + Error Hata - + Jami archive files Jami arşiv dosyaları - + All files Tüm dosyalar @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Jami arka plan prosesine (jamid) yeniden bağlanılamadı. Jami şimdi kapatılacak. - + Trying to reconnect to the Jami daemon (jamid)… Jami arka plan prosesine (jamid) yeniden bağlanmaya çalışılıyor… - + Ok Tamam @@ -211,7 +211,7 @@ Jami şimdi kapatılacak. DeviceItemDelegate - + Device Id Aygıt Kimliği @@ -219,2130 +219,2130 @@ Jami şimdi kapatılacak. JamiStrings - + Find a user or search for a conversation Kullanıcı bul veya konuşma ara - + Search your invitations Davetiyelerinizi arayın - + Invitations Davetiyeler - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami, kullanıcılarının özgürlüklerine ve gizliliğine önem veren, evrensel iletişim için özgür yazılımdır. - + Version Sürüm - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami, kullanıcılarının özgürlüklerine ve gizliliğine önem veren, evrensel iletişim için özgür yazılımdır. - + Credits Emeği geçenler - + Display QR code QR kodunu göster - + Open settings Ayarları aç - + Close settings Ayarları kapat - + Authentication required Kimlik doğrulaması gerekli - + Your session has expired or been revoked on this device. Please enter your password. Bu aygıttaki oturumunuz sona erdi veya kaldırıldı. Parolanızı girin. - + JAMS server JAMS sunucusu - + Authenticate Doğrulamak - + Delete account Hesabı sil - + Authentication failed Yetkilendirme Başarısız - + Password Parola - + Username Kullanıcı adı - + Alias Takma ad - + Call Settings Arama Ayarları - + Allow incoming calls from unknown contacts Bilinmeyen kişilerden gelen çağrılara izin ver - + In progress… Devam ediyor... - + Accept Kabul et - + Refuse Geri Çevir - + Incoming audio call from {} {} 'dan gelen arama - + Incoming video call from {} {} 'dan gelen görüntülü arama - + Convert your account into a rendezvous point Hesabınızı bir buluşma noktasına dönüştürün - + Automatically answer calls Aramaları kendiliğinden yanıtla - + Enable custom ringtone Özel zil sesini etkinleştir - + Select custom ringtone Özel zil sesi seçin - + Add a custom ringtone Özel bir zil sesi ekle - + Select a new ringtone Yeni bir zil sesi seçin - + Voicemail Sesli ileti - + Voicemail dial code Sesli ileti arama kodu - + Security Güvenlik - + Encrypt media streams (SRTP) Ortam akışlarını şifrele (SRTP) - + Enable SDES key exchange SDES anahtar değişimini etkinleştir - + Allow fallback on RTP RTP üzerinde geri dönüşe izin ver - + Encrypt negotiation (TLS) Müzakereyi şifrele (TLS) - + CA certificate CA sertifikası - + User certificate Kullanıcı sertifikası - + Private key Özel anahtar - + Private key password Özel anahtar parolası - + Verify certificates for incoming TLS connections Gelen TLS bağlantıları için sertifikaları doğrulayın - + Verify server TLS certificates Sunucu TLS sertifikalarını doğrulayın - + Require certificate for incoming TLS connections Gelen TLS bağlantıları için sertifika iste - + TLS protocol method TLS kural yöntemi - + Audio input device selector Ses giriş aygıtı seçici - + TLS server name TLS sunucu adı - + Negotiation timeout (seconds) Görüşme zaman aşımına uğradı (saniye) - + Select a private key Bir özel anahtar seç - + Select a user certificate Kullanıcı sertifikası seç - + Registration expiration time (seconds) Kaydolma bitimi süresi (saniye) - + Use custom address and port Özel adres ve bağlanma noktası kullan - + Enable local peer discovery Yerel bağlantı bulmayı etkinleştir - + Audio and Video Settings Ses ve Görüntü ayarları - + Frames per second Saniye başına kare - + Select video frame rate (frames per second) Görüntü kare sayısı seç (saniye başına kare) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. Hesabınız yalnızca bu cihazda bulunmaktadır. Cihazınızı kaybederseniz veya uygulamayı kaldırırsanız hesabınız silinir ve kurtarılamaz. Hesabınızı şimdi ya da daha sonra yedekleyebilirsiniz. - - + + End call Çağrıyı sonlandır - + Pause call Aramayı duraklat - + Resume call Aramayı sürdür - + Pause video Görüntüyü duraklat - + Resume video Görüntüyü devam ettir - + Creating account… Hesap oluşturuluyor... - + Encrypt account with password Hesabı parola ile şifrele - + Create a rendezvous point Bir buluşma noktası oluştur - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. Bu aygıttaki hesabınızı şifrelemek için parola seçin. Parolanız kurtarılamaz, not alın. - + Choose a name for your rendezvous point Buluşma noktanız için bir ad seçin - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. Hesabınız yedeklenmediyse veya başka bir aygıta eklenmediyse, hesabınız ve kayıtlı adınız geri alınamaz bir şekilde kaybolacaktır. - + Launch at startup Başlangıçta çalıştır - + Enable typing indicators Yazma göstergelerini etkinleştir - - + + Network error Ağ hatası - + SSL error SSL hatası - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. Başka yapılandırılmış Jami hesabından PIN'i girin. PIN edinmek için "Diğer Aygıtı Bağla" özelliğini kullanın. - + Link device Aygıt bağla - + Conversations Konuşmalar - + Enable Etkin - + Display or hide preferences Tercihleri göster veya gizle - + Add new plugin Yeni eklenti ekle - + Select a file Bir dosya seç - + Select Seç - + Choose image file Görsel dosyasını seçin - + Enter the rendezvous point's name Buluşma noktasının adını girin - + Creating rendezvous point… Buluşma noktası oluşturuluyor... - + Create account from Jami Account Management Server (JAMS) Jami Hesap Yönetim Sunucusundan (JAMS) hesap oluşturun - + Create new rendezvous point Yeni buluşma noktası oluştur - + Create a Jami account Jami hesabı oluştur - + About Jami Jami Hakkında - + Decline contact request İletişim isteğini reddet - + Accept contact request İletişim talebini kabul et - + Automatically check for updates Güncellemeleri kendiliğinden denetle - + Ok Tamam - - + + Cancel İptal - + Accept in audio Sesli olarak kabul et - + Accept in video Görüntülü olarak kabul et - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. Sizin dışınızdaki tüm katılımcıların ayrıldığı bir konuşmayı görüntülüyorsunuz. Yeni etkileşimler mümkün olmayacaktır. - + Start new conversation Yeni konuşma başlat - + Chat Settings Sohbet Ayarları - + Enable read receipts Okundu onaylarını etkinleştir - + Send and receive receipts indicating that a message have been displayed Bir mesajın görüntülendiğini belirten bildirimleri gönderin ve alın - + Select a CA certificate CA sertifikası seçin - + Connectivity Bağlanabilirlik - + Auto Registration After Expired Süre Dolduktan Sonra Kendiliğinden Kayıt - + Network interface Ağ arayüzü - + Use UPnP UpnP kullan - + Use TURN TURN kullan - + TURN address TURN adresi - + TURN username TURN kullanıcı adı - + TURN password TURN parolası - + TURN Realm TURN yetki alanı - + Use STUN STUN kullan - + STUN address STUN adresi - + Allow IP Auto Rewrite Otomatik IP Yeniden Yazmaya(IP Auto Rewrite) İzin Ver - + Public address Açık adres - + Address Yer - + Port Delik - + Media Ortam - + Enable video Görüntüyü Etkinleştir - + Video Codecs Görüntü çözücüler - + Audio Codecs Ses çözücüleri - + Name Server Ad Sunucusu - + SDP Session Negotiation (ICE Fallback) SDP Görüşme Oturumu (ICE Geri çekilme) - + Only used during negotiation in case ICE is not supported Yalnızca ICE'nin desteklenmediği durumlardaki görüşmelerde kullanılır - + Audio RTP minimum Port Ses RTP en düşük bağlanma noktası - + Audio RTP maximum Port Ses RTP en yüksek bağlanma noktası - + Video RTP minimum Port Görüntü RTP en düşük bağlanma noktası - + Video RTP maximum port Görüntü RTP en yüksek bağlanma noktası - + Connect to other DHT nodes advertising on your local network. Yerel ağınızda tanıtılan diğer DHT düğümlerine bağlanın - + OpenDHT Configuration OpenDHT Yapılandırması - + Enable proxy Vekil sunucuyu etkinleştir - + Proxy address Vekil sunucu adresi - + Bootstrap Önyükleme - + Back Geri - + Account Settings Hesap Ayarları - + Account Hesap - - + + General Genel - + Plugin Eklenti - + Audio/Video Ses/Görüntü - + Audio Ses - + Microphone Mikrofon - + Select audio input device ses giriş aygıtını seçin - + Output device Çıkış aygıtı - + Select audio output device ses çıkış aygıtını seçin - + Ringtone device Zil sesi aygıtı - + Select ringtone output device Zil sesi aygıtını seçin - + Audio manager Ses yöneticisi - + Video Görüntü - + Select video device Görüntü aygıtını seçin - + Device Aygıt - + Resolution Çözünürlük - + Select video resolution Görüntü çözünürlüğünü seçin - + Enable hardware acceleration Donanım hızlandırmayı etkinleştir - + Preview unavailable Önizleme kullanılamıyor - + Screen Sharing Ekran Paylaşımı - + Select screen sharing frame rate (frames per second) Ekran paylaşımı kare hızı (saniyedeki kare sayısı) - + no video video yok - + Backup account here Hesabı buraya yedekle - + Backup your account! Hesabını yedekle! - + Backup account Hesabı yedekle - + Skip Atla - + Success Başarılı - + Error Hata - + Never show me this again Bunu bana bir daha gösterme - + Recommended Önerilen - + Jami archive files Jami arşiv dosyaları - + All files Tüm dosyalar - + Reinstate as contact Kişi olarak eski durumuna getir - + name ad - + Identifier Tanımlayıcı - + is recording kaydediyor - + are recording kaydediyor - + Peer stopped recording Eş kaydı durdurdu - + is calling you seni arıyor - - + + Mute Sessiz - - + + Unmute Sesi Aç - + Add participant Katılımcı ekle - + Add participants Katılımcı ekle - + Chat Konuşma - + More options Daha fazla seçenek - + Mosaic Mozaik - + You are still muted by moderator Hala yönetici tarafından sessize alındınız - + You are muted by a moderator Bir yönetici tarafından sessize alındınız - + Moderator Moderatör - + Host Oturum Sahibi - + Local and Moderator muted Siz ve Yönetici sessize aldı - + Moderator muted Yönetici sessize aldı - + Not muted Sesi açık - + Cut Kes - + Paste Yapıştır - + Start video call Görüntülü arama başlat - + Start audio call Sesli arama başlat - + Clear conversation Konuşmayı temizle - + Remove conversation Konuşma sil - + Remove contact Kişiyi kaldır - + Block contact Kişiyi engelle - + Contact details Kişi ayrıntıları - + Hold Beklet - + Sip input panel Sip giriş paneli - + Transfer call Aramayı aktar - + Stop recording Kaydı durdur - + Start recording Kaydı başlat - + Exit full screen Tam ekrandan çık - + Share screen Ekranı paylaş - + Share window Pencereyi paylaş - + Share screen area Ekran alanı paylaş - + Share file Dosya paylaş - + Select sharing method Paylaşım yöntemini seçin - + View plugin Eklentiyi görüntüle - + No video device Görüntü aygıtı yok - + N/A Yok - + Lower hand Elini indir - + Raise hand Elinizi kaldırın - + Hide chat view Konuşma görünümünü gizle - + Place audio call Sesli arama yeri - + Place video call Görüntülü arama yeri - + Show available plugins Kullanılabilir eklentileri göster - + Add to conversations Konuşma ekle - + Jump to latest Görüşmenin sonuna kaydır - + {} is typing… {} yazıyor... - + {} are typing… {} yazıyor... - + Several people are typing… Birkaç kişi yazıyor... - + and ve - + Enter Jami Account Management Server (JAMS) URL Jami Yönetim Sunucusu (JAMS) Adresini Girin - + Required Gerekli - + Jami Account Management Server URL Jami Yönetim Sunucusu Adresi - + Enter your JAMS credentials JAMS kimlik bilgilerinizi girin - + Connect Bağlan - + Back to welcome page Karşılama sayfasına geri dönün - + Choose name Ad seçin - + Choose username Kullanıcı adı seçin - + Create account Hesap oluştur - + Confirm password Parolayı onayla - + Optional İsteğe bağlı - + Choose a username for your account Hesabınız için kullanıcı adı seçin - + Choose a name Bir ad seçin - + Choose your username Kullanıcı adınızı seçin - + Invalid name Geçersiz ad - + Invalid username Geçersiz kullanıcı adı - + Name already taken Ad önceden alınmış - + Username already taken Kullanıcı adı önceden alınmış - + Proxy Vekil - + Server Sunucu - + Create SIP account SİP Hesabı Oluşturun - + Configure an existing SIP account Var olan SIP hesabını yapılandırın - + Backup successful Yedekleme başarılı - + Backup failed Yedekleme başarısız - + Password changed successfully Parola Başarıyla Değiştirildi - + Password change failed Parola değişikliği başarısız oldu - + Password set successfully Parola başarıyla ayarlandı - + Password set failed Parola ayarlama başarısız oldu - + Change password Parolayı değiştir - - + + Set password Parola ayarla - + Change current password Şimdiki parolayı değiştirin - + Backup account to a .gz file Hesabı bir .gz dosyasına yedekleyin - + Enable account Hesabı etkinleştir - + Set username Kullanıcı adını ayarlayın - + Registering name Kayıt adı - + Register a username Kullanıcı adı kaydet - + Register username Kullanıcı adını kaydet - + Link a new device to this account Bu hesaba yeni aygıt bağla - + Link another device Diğer aygıtı bağla - + Exporting account… Hesap dışa aktarılıyor... - + Remove Device Aygıtı Kaldır - + Are you sure you wish to remove this device? Bu aygıtı kaldırmak istediğinizden emin misiniz? - + Linked Devices Bağlı Aygıtlar - + Your PIN is: PIN'iniz: - + Error connecting to the network. Please try again later. Ağa bağlanırken hata. Lütfen yeniden deneyin. - + Do you really want to delete this account? Gerçekten bu hesabı silmek istiyor musunuz? - + Save new device name Yeni aygıt adını kaydet - + Edit device name Aygıt adını düzenle - + Unlink device from account Aygıtın hesaptan bağlantısını kaldır - + Select a folder Bir klasör seçin - + Enable notifications Bildirimleri etkinleştir - + Enable dark theme Koyu temayı etkinleştir - + Keep minimized on close Kapatırken küçültülmüş olarak tut - + Run application on system startup Sistem başlangıcında uygulamayı çalıştır - + Downloads directory İndirilenler klasörü - + Choose download directory İndirme dizinini seçin - + Record call Çağrıyı kaydet - + Chatview Sohbet - + Display hyperlink previews in the chatview Bağlantı önizlemelerini göster - + User interface language Kullanıcı arabirimi dili - + File transfer Dosya aktarımı - + Allow incoming files from unknown contacts Bilinmeyen kişilerden gelen dosyalara izin ver - + Automatically accept incoming files Gelen dosyaları kendiliğinden kabul et - + Accept transfer limit Aktarma sınırını kabul et - + in MB, 0 = unlimited MB'ta, 0 = sınırsız - + Register Kaydol - + Incorrect password Geçersiz parola - + Save file Dosyayı Kaydet - + Open location Konumu aç - + Install beta version Beta sürümünü yükle - + Check for updates now Şimdi güncellemeleri denetle - + Enable/Disable automatic updates Kendiliğinden güncellemeleri aç/kapat - + toggle automatic updates kendiliğinden güncellemeleri değiştir - + Updates Güncellemeler - + Update Güncelle - + A new version of Jami was found Would you like to update now? Jami'nin yeni bir sürümü bulundu Şimdi güncellemek ister misiniz? - + No new version of Jami was found Jami'nin yeni sürümü bulunamadı - + An error occured when checking for a new version Yeni sürüm denetlenirken hata oluştu - + Installer download canceled Yükleyici indirme işlemi iptal edildi - + This will uninstall your current Release version and you can always download the latest Release version on our website Bu, var olan uygulama sürümünüzü kaldıracak. Her zaman web sitemizdeki en son uygulama sürümünü indirebilirsiniz - + Network disconnected Ağ bağlı değil - - + + Something went wrong Bir şeyler yanlış gitti - + Troubleshoot Sorun Giderme - + Open logs Kayıtları aç - + Get logs Kayıtları al - + Select a record directory Bir kayıt dizini seçin - + Debug Hata ayıkla - + Show Stats İstatistikleri Göster - + Start Başlat - + Stop Durdur - + Generating account… Hesap oluşturuluyor... - + Import from backup Yedekten içe aktarın - + PIN PIN - + Stop taking photo Fotoğraf çekmeyi durdur - + Clear avatar image Avatar görselini kaldır - + Go back to plugins list Eklenti listesine geri gön - + Profile is only shared with contacts Profil, yalnızca kişilerle paylaşılır - + Enter your name Adınızı girin - + Import account from other device Hesabı diğer aygıttan içe aktar - + Import account from backup file Hesabı yedek dosyasından içe aktar - + Hide advanced features Gelişmiş özellikleri gizle - + Create new Jami account Yeni Jami hesabı oluşturun - + Create new SIP account Yeni SİP Hesabı Oluştur - + Welcome to Hoş Geldiniz - + Upgrade Yükselt - + Later Sonra - + Local muted Sizde sessiz - + Trying to reconnect to the Jami daemon (jamid)… Jami arka plan prosesine (jamid) yeniden bağlanmaya çalışılıyor… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. Jami arka plan prosesine (jamid) yeniden bağlanılamadı. Jami şimdi kapatılacak. - + Is swarm: Küme mi?: - + True Doğru - + False Yanlış - + Add emoji Emoji ekle - + Send file Dosya gönder - + Leave audio message Sesli mesaj bırak - + Leave video message Görüntülü ileti bırak - + Send Gönder - + Remove Kaldır - + Write to %1 %1 'e yaz - + %1 has sent you a request for a conversation. %1 size bir konuşma için istek yolladı. - + Hello, Would you like to join the conversation? Merhaba, Konuşmaya katılmak ister misin? - + You have accepted the conversation request Konuşma isteğini kabul ettiniz - + Waiting until %1 connects to synchronize the conversation. Sohbeti senkronize etmek için %1 bağlanana kadar bekleyin - - + + Copy Kopyala - + Participant is still muted on their device Katılımcılar hala kendi cihazlarında sessize alındılar - + You are still muted on your device Hala cihazınızda sessize alındınız - + View full screen Tam ekran göster - + Stop sharing screen or file Ekran veya dosya paylaşımını durdur - + Display advanced settings Gelişmiş ayarları göster - + Hide advanced settings Gelişmiş ayarları gizle - + Display banned contacts Engellenmiş kişileri görüntüle - + Hide banned contacts Engellenen kişileri gizle - + Layout Düzen - + Vertical view Dikey görünüm - + Horizontal view Yatay görünüm - + Keyboard Shortcut Table Klavye Kısayolları Tablosu - + Conversation Konuşma - + Call Ara - + Settings Ayarlar - + Report Bug Hata Bildir - + Clear Temizle - + Copied to clipboard! Panoya kopyalandı! - + Receive Logs Kayıtları Al - + Archive Arşiv - + Open file Dosyayı Aç - + Create your account from a backup Hesabınızı bir yedekten oluşturun - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. Hesap ayarlarında "Hesabı yedekle"ye tıklayarak arşiv edinebilirsiniz. Bu, aygıtınızda bir .gz dosyası oluşturacak. - + Restore an account from backup Yedekten hesap kurtar - + Enter Jami account password Jami hesap parolanızı girin - + The PIN and the account password should be entered in your device within 10 minutes. PIN ve hesap parolası 10 dakika içinde aygıtınıza girilmelidir. - + Close Kapat - + Enter your account password Hesap parolanızı girin - + Add Device Aygıt Ekle - + Enter the password Parolayı girin - + Enter current password Şimdiki parolayı girin - + Enter this account's password to confirm the removal of this device Bu aygıtın kaldırılmasını onaylamak için bu hesabın parolasını girin. - + Enter new password Yeni parolayı girin - + Confirm new password Yeni parolayı doğrulayın - + Change Değiştir - + Confirm Onayla - + Export Dışa aktar - + Choose a picture as avatar Avatar olarak bir resim seçin - + Import avatar from image file Resim dosyasından avatar içe aktarın - + Take photo Fotoğraf çek - + Reset Sıfırlama - + Select a plugin to install Kurmak için bir eklenti seçin - + Install plugin Eklenti kur - + Save profile Profili kaydet - + Information Bilgi - + Enter the account password to confirm the removal of this device Bu aygıtın kaldırılmasını doğrulamak için hesap parolasını gir - + Select a screen to share Paylaşacak ekran seç - + Select a window to share Paylaşmak için bir pencere seçin - + All Screens Tüm Ekranlar - + Screens Ekranlar - + Windows Pencereler - + QR code QR kodu - + Account QR Hesap QR'ı - + This is your Jami username. Copy and share it with your friends! Bu sizin Jami kullanıcı adınız. Kopyalayın ve arkadaşlarınızla paylaşın! - + Link this device to an existing account Bu aygıtı var olan hesaba bağla - + Advanced features Gelişmiş özellikler - + Show advanced features Gelişmiş özellikleri göster - + Connect to a JAMS server Bir JAMS sunucusuna bağlan - + Add a SIP account Bir SIP hesabı ekle - + Error while creating your account. Check your credentials. Hesabınız oluşturulurken hata oluştu. Lütfen kimlik bilgilerinizi denetleyin. - + Clear Text Yazıyı Temizle - + Search Results Arama Sonuçları - + Delete Sil - + Set moderator Oturum başkanı ayarla - + Unset moderator Oturum başkanı ayarını kaldır - + Maximize En büyük - + Minimize En küçük - + Hangup Kapat - + Conference moderation Toplantı yönetimi - + Default moderators Öntanımlı oturum başkanları - + Enable local moderators Yerel moderatörleri etkinleştir - + Make all participants moderators Tüm katılımcıları oturum başkanı yap - + Add default moderator Öntanımlı oturum başkanı ekleyin - + Remove default moderator Öntanımlı oturum başkanını kaldırın @@ -2350,112 +2350,112 @@ Kopyalayın ve arkadaşlarınızla paylaşın! KeyboardShortcutTable - + Open account list Hesap listesini aç - + Focus conversations list Konuşma listesine odaklan - + Requests list İstek listesi - + Previous conversation Önceki konuşma - + Next conversation Sonraki konuşma - + Search bar Arama çubuğu - + Full screen Tam ekran - + Start an audio call Sesli arama başlat - + Start a video call Görüntülü arama başlat - + Clear history Geçmişi temizle - + Block contact Kişiyi engelle - + Remove conversation Konuşma sil - + Accept contact request İletişim talebini kabul et - + Media settings Ortam ayarları - + General settings Genel ayarlar - + Account settings Hesap ayarları - + Plugin settings Eklenti ayarları - + Open account creation wizard Hesap oluşturma yardımcısını aç - + Open keyboard shortcut table Klavye kısayolları tablosunu aç - + Answer an incoming call Gelen aramayı yanıtla - + End call Çağrıyı sonlandır - + Decline the call request Arama isteğini reddet @@ -2463,17 +2463,17 @@ Kopyalayın ve arkadaşlarınızla paylaşın! MainApplication - + E&xit Ç&ıkış Yap - + &Quit &Kapat - + &Show Jami &Jami'yi Göster @@ -2481,12 +2481,12 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PhotoboothView - + Image Files Resim Dosyaları - + All files Tüm dosyalar @@ -2494,7 +2494,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PluginHandlerItemDelegate - + On/Off Aç/Kapat @@ -2502,12 +2502,12 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PluginHandlerPicker - + Choose plugin Eklenti seçin - + Preferences Tercihler @@ -2515,7 +2515,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PluginItemDelegate - + Load/Unload Yükle/Yüklemeyi Kaldır @@ -2523,27 +2523,27 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PluginListPreferencesView - + Uninstall plugin Eklentiyi kaldır - + Reset preferences Tercihleri sıfırla - + Ok Tamam - + Cancel İptal - + Uninstall Kaldır @@ -2551,17 +2551,17 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PluginListSettingsView - + Plugin Files Eklenti Dosyaları - + All files Tüm dosyalar - + Installed plugins Kurulu eklentiler @@ -2569,7 +2569,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! PreferenceItemDelegate - + Edit preference Tercihi düzenle @@ -2577,107 +2577,107 @@ Kopyalayın ve arkadaşlarınızla paylaşın! QObject - + Created by: Oluşturanlar: - + Artwork by: Çizenler: - + Based on the SFLPhone project SFLPhone tasarısı temel alınmıştır. - + Sending Gönderiliyor - + Failure Başarısız - + Sent Gönderildi - + Connecting Bağlanılıyor - + Accept Kabul et - + Canceled İptal edildi - + Unable to make contact İletişim kurulamadı - + Ongoing Devam Ediyor - + Waiting for contact İletişim bekleniyor - + Incoming transfer Gelen aktarım - + Timed out waiting for contact İletişim zaman aşımına uğradı - + Finished Bitti - + %1 days ago %1 gün önce - + one day ago bir gün önce - + %1 hours ago %1 saat önce - + one hour ago bir saat önce - + %1 minutes ago %1 dakika önce - + just now Şu an @@ -2685,22 +2685,22 @@ Kopyalayın ve arkadaşlarınızla paylaşın! RecordingSettings - + Call Recording Çağrı kaydetme - + Always record calls Her zaman çağrıları kaydet - + Quality Nitelik - + Save in Kaydet @@ -2708,7 +2708,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! RevokeDevicePasswordDialog - + Remove Kaldır @@ -2716,7 +2716,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! SelectScreen - + Screen Ekran @@ -2724,7 +2724,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Kopyalayın ve arkadaşlarınızla paylaşın! SmartListModel - - - - - - + + + + + + Calls Aramalar - - - - - - + + + + + + Contacts Kişiler @@ -2755,17 +2755,17 @@ Kopyalayın ve arkadaşlarınızla paylaşın! SystemSettings - + System Düzen - + Enable dark theme Koyu temayı etkinleştir - + Enable desktop notifications Bildirimleri göster @@ -2773,27 +2773,27 @@ Kopyalayın ve arkadaşlarınızla paylaşın! SystemTray - + Answer Yanıtla - + Decline Reddet - + Open conversation Konuşma aç - + Accept Kabul et - + Refuse Geri Çevir @@ -2801,7 +2801,7 @@ Kopyalayın ve arkadaşlarınızla paylaşın! UserIdentity - + Identity Kimlik @@ -2809,17 +2809,17 @@ Kopyalayın ve arkadaşlarınızla paylaşın! UtilsAdapter - + %1 Mbps %1 Mb/sn - + Default Varsayılan - + System Sistem diff --git a/translations/ring_client_windows_tr_TR.ts b/translations/ring_client_windows_tr_TR.ts index 21476a6f..10244394 100644 --- a/translations/ring_client_windows_tr_TR.ts +++ b/translations/ring_client_windows_tr_TR.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error Hata - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Versiyon - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Emek verenler - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami Jami Hakkında - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error Hata - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize Arttır - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Aramalar - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_tt.ts b/translations/ring_client_windows_tt.ts index 406975b5..141378ee 100644 --- a/translations/ring_client_windows_tt.ts +++ b/translations/ring_client_windows_tt.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Хуп - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Хуп @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings Параметрларны ачу - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Шалтыратуны тәмамлау - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Хуп - - + + Cancel Баш тарту - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video видеосыз - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Тулы экран рәвешеннән чыгарга - + Share screen Экранны бүлешү - + Share window Тәрәзәне бүлешү - + Share screen area Экран өлкәсен бүлешү - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Йөкләүләр папкасы - + Choose download directory - + Record call - + Chatview Чат - + Display hyperlink previews in the chatview Сылтама карап алуларын күрсәтү - + User interface language Кулланучының интерфейс теле - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN ПИН - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Файлларны җибәрү - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Тулы экранда карау - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Макет - + Vertical view Вертикаль күренеш - + Horizontal view Горизонталь күренеш - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Бүлешү өчен экран сайлагыз - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Тулы экран - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Шалтыратуны тәмамлау - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Хуп - + Cancel Баш тарту - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Баш тартты - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Белдерүләрне күрсәтү @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбит/с - + Default Килешенгәнчә - + System Система diff --git a/translations/ring_client_windows_uk.ts b/translations/ring_client_windows_uk.ts index cacc4c3a..d6c8b53b 100644 --- a/translations/ring_client_windows_uk.ts +++ b/translations/ring_client_windows_uk.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Додати аккаунта @@ -10,7 +10,7 @@ AccountProfile - + Profile Профіль @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files Аудіо файли - + All files Усі файли @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File Файл сертифікату - - - + + + All files Усі файли - + Key File Файл з ключем @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File Файл сертифікату - - - + + + All files Усі файли - + Key File Файл з ключем @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings Розширені налаштування аккаунту @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts Заблоковані контакти @@ -89,32 +89,32 @@ CallAdapter - + Missed call Пропущений виклик - + Missed call with %1 - + me мені - + Incoming call Вхідний виклик - + %1 is calling you %1 викликає вас - + is calling you викликає вас @@ -122,17 +122,17 @@ ContactPicker - + Add to conference Додати до конференції - + Transfer this call Передати цей виклик - + Add default moderator Додати модератора за замовчуванням @@ -140,12 +140,12 @@ ConversationsAdapter - + New message Нове повідомлення - + Trust request Запит довіри @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Гаразд - - + + Success Успішно - - + + Error Помилка - + Jami archive files Файли архіву Jami - + All files Усі файли @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Гаразд @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2124 +218,2124 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation Знайдіть користувача або пошукайте по чату - + Search your invitations Знайти ваші інвайти - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Версія - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits Подяки - + Display QR code Відобразити QR код - + Open settings Відкрити налаштування - + Close settings Закрити налаштування - + Authentication required Потрібна аутентіфікация - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account Видалити обліковий запис - + Authentication failed Помилка аутентіфікації - + Password Пароль - + Username Ім’я - + Alias Додаткове ім’я - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept Прийняти - + Refuse Скидання - + Incoming audio call from {} Вхідний аудіо виклик від {} - + Incoming video call from {} Вхідний відео виклик від {} - + Convert your account into a rendezvous point - + Automatically answer calls Приймати дзвінки автоматично - + Enable custom ringtone Увімкнути користувальницький рінгтон - + Select custom ringtone Вибрати користувальницький рінгтон - + Add a custom ringtone Додати користувальницький рінгтон - + Select a new ringtone Вибрати новий рінгтон - + Voicemail Голосова пошта - + Voicemail dial code Код виклику голосової пошти - + Security Безпека - + Encrypt media streams (SRTP) Кодування потоку (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) Шифрування переговорів (TLS) - + CA certificate CA сертифікат - + User certificate Сертифікат користувача - + Private key Приватний ключ - + Private key password Пароль від приватного ключа - + Verify certificates for incoming TLS connections - + Verify server TLS certificates Перевірка сервісних TLS сертифікат - + Require certificate for incoming TLS connections - + TLS protocol method Метод TLS - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) Таймаут з’єднання (в секундах) - + Select a private key Вибрати приватний ключ - + Select a user certificate Вибрати сертифікат користувача - + Registration expiration time (seconds) - + Use custom address and port Використовувати нестандартні адресу та порт - + Enable local peer discovery - + Audio and Video Settings Аудіо та відео налаштування - + Frames per second Кадрів у секунду - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Закінчити дзвінок - + Pause call Призупинити дзвінок - + Resume call Продовжити дзвінок - + Pause video Призупинити відео - + Resume video Продовжити відео - + Creating account… Створення облікового запису… - + Encrypt account with password Зашифрувати мій профіль за допомогою пароля - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error Збій мережі - + SSL error Помилка SSL - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations Групові чати - + Enable Увімкнути - + Display or hide preferences - + Add new plugin - + Select a file Обрати файл - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Створити обліковий запис Джамі - + About Jami Про Джамі - + Decline contact request - + Accept contact request - + Automatically check for updates Автоматично перевіряти оновлення - + Ok Гаразд - - + + Cancel Скасувати - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity З'єднання - + Auto Registration After Expired - + Network interface Мережевий інтерфейс - + Use UPnP - + Use TURN Використовувати TURN - + TURN address Адреса TURN - + TURN username Обрати ім'я - + TURN password Обрати пароль - + TURN Realm - + Use STUN Використовувати STUN - + STUN address Адреса STUN - + Allow IP Auto Rewrite - + Public address - + Address Адреса - + Port Порт - + Media Медіа - + Enable video Увімкнути відео - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) Погодження сесій SDP (резервування ICE) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy Використовувати проксі - + Proxy address - + Bootstrap Початкове завантаження - + Back Назад - + Account Settings - + Account Аккаунт - - + + General Головні - + Plugin - + Audio/Video Аудіо/Відео - + Audio Звук - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video Відео - + Select video device - + Device Пристрій - + Resolution Роздільна здатність - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video немає відео - + Backup account here - + Backup your account! - + Backup account - + Skip Пропустити - + Success Успішно - + Error Помилка - + Never show me this again - + Recommended Рекомендовано - + Jami archive files Файли архіву Jami - + All files Усі файли - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you викликає вас - - + + Mute - - + + Unmute - + Add participant Додати учасників - + Add participants - + Chat Чат - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut Вирізати - + Paste Вставити - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact Видалити контакт - + Block contact Заблокувати контакт - + Contact details Деталі контакту - + Hold Режим очікування - + Sip input panel - + Transfer call Перенесення виклику - + Stop recording - + Start recording - + Exit full screen Вийти з на весь екран - + Share screen Спільний перегляд екрана - + Share window Показати вікно - + Share screen area Поділіться екраном площа - + Share file Відправити файл - + Select sharing method - + View plugin - + No video device - + N/A Недоступно - + Lower hand - + Raise hand Підняти руку - + Hide chat view Сховати вікно чату - + Place audio call Почати аудіо дзвінок - + Place video call Почати відео дзвінок - + Show available plugins - + Add to conversations Додати до розмови - + Jump to latest Прокрутити до кінця розмови - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required Обов'язково - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account Створити обліковий запис - + Confirm password Підтвердити пароль - + Optional За бажанням - + Choose a username for your account - + Choose a name - + Choose your username Оберіть ваше ім'я користувача - + Invalid name - + Invalid username Недопустиме ім'я користувача - + Name already taken - + Username already taken Ім'я користувача вже зайнято - + Proxy Проксі - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password Змінити пароль - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device Прив'язати інший пристрій - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close Згортати вікно при закриванні - + Run application on system startup - + Downloads directory Папка завантажень - + Choose download directory - + Record call Запис дзвінка - + Chatview Чат - + Display hyperlink previews in the chatview Показувати попередній перегляд посилань - + User interface language Мова інтерфейсу користувача - + File transfer Передача файлів - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Зареєструватися - + Incorrect password - + Save file Зберегти файл - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update Оновити - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled Завантаження інсталятора скасовано - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop Стоп - + Generating account… - + Import from backup - + PIN PIN-код - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts Ваш профіль бачитимуть лише ваші контакти - + Enter your name Введіть своє ім'я - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to Вітаємо у - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Відправити файл - + Leave audio message - + Leave video message - + Send Відправити - + Remove Видалити - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy Копіювати - + Participant is still muted on their device - + You are still muted on your device - + View full screen Показати на весь екран - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts Сховати заблоковані контакти - + Layout Макет - + Vertical view Вертикальне подання - + Horizontal view Горизонтальне подання - + Keyboard Shortcut Table - + Conversation - + Call Дзвінок - + Settings Налаштування - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file Відкрити файл - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close Закрити - + Enter your account password - + Add Device Додати пристрій - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export Експортувати - + Choose a picture as avatar - + Import avatar from image file - + Take photo Зняти фото - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Виберіть екран, щоб поділитися - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! Це ваше ім'я користувача Джамі. Скопіюйте й поділіться з вашими друзями! - + Link this device to an existing account Зв'язати цей пристрій з наявним обліковим записом - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results Результати пошуку - + Delete Видалити - + Set moderator - + Unset moderator - + Maximize Збільшити - + Minimize Зменьшити - + Hangup Відновлення виклику - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator Додати модератора за замовчуванням - + Remove default moderator @@ -2343,112 +2343,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen На весь екран - + Start an audio call Розпочати аудіо дзвінок - + Start a video call Розпочати відео дзвінок - + Clear history Видалити історію - + Block contact Заблокувати контакт - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Закінчити дзвінок - + Decline the call request @@ -2456,17 +2456,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2474,12 +2474,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files Усі файли @@ -2487,7 +2487,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2495,12 +2495,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2508,7 +2508,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2516,27 +2516,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Гаразд - + Cancel Скасувати - + Uninstall @@ -2544,17 +2544,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files Усі файли - + Installed plugins @@ -2562,7 +2562,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2570,107 +2570,107 @@ Copy and share it with your friends! QObject - + Created by: Стоворено: - + Artwork by: Намальовано: - + Based on the SFLPhone project Базується на проекті SFLPhone - + Sending Відправлення - + Failure Невдача - + Sent - + Connecting З'єднання - + Accept Прийняти - + Canceled Скасовано - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago один день тому - + %1 hours ago - + one hour ago одну годину тому - + %1 minutes ago - + just now щойно @@ -2678,22 +2678,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality Якість - + Save in Зберігти в @@ -2701,7 +2701,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove Видалити @@ -2709,7 +2709,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2717,7 +2717,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2725,22 +2725,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls Дзвінки - - - - - - + + + + + + Contacts Контакти @@ -2748,17 +2748,17 @@ Copy and share it with your friends! SystemSettings - + System Система - + Enable dark theme - + Enable desktop notifications Відображення сповіщень @@ -2766,27 +2766,27 @@ Copy and share it with your friends! SystemTray - + Answer Відповідь - + Decline Відхилити - + Open conversation - + Accept Прийняти - + Refuse Скидання @@ -2794,7 +2794,7 @@ Copy and share it with your friends! UserIdentity - + Identity Особа @@ -2802,17 +2802,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Мбіт/с - + Default За замовчуванням - + System Система diff --git a/translations/ring_client_windows_uk_UA.ts b/translations/ring_client_windows_uk_UA.ts index e204cfd7..3fa133a1 100644 --- a/translations/ring_client_windows_uk_UA.ts +++ b/translations/ring_client_windows_uk_UA.ts @@ -4,7 +4,7 @@ AccountComboBoxPopup - + Add Account @@ -12,7 +12,7 @@ AccountProfile - + Profile @@ -20,12 +20,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -33,20 +33,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -54,20 +54,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -75,7 +75,7 @@ AdvancedSettings - + Advanced Account Settings @@ -83,7 +83,7 @@ BannedContacts - + Banned Contacts @@ -91,32 +91,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -124,17 +124,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -142,12 +142,12 @@ ConversationsAdapter - + New message - + Trust request @@ -155,29 +155,29 @@ CurrentAccountSettings - + Ok - - + + Success - - + + Error Помилка - + Jami archive files - + All files @@ -185,7 +185,7 @@ CurrentAccountSettingsScrollPage - + @@ -193,18 +193,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok @@ -212,7 +212,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -220,2123 +220,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version Версія - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password Пароль - + Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key Приватний ключ - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method Метод TLS протоколу - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account Створити акаунт Jami - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok - - + + Cancel - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing - + Select screen sharing frame rate (frames per second) - + no video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error Помилка - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call - + Start audio call - + Clear conversation - + Remove conversation - + Remove contact - + Block contact Заблокувати контакт - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen - + Share screen - + Share window - + Share screen area - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory - + Choose download directory - + Record call - + Chatview - + Display hyperlink previews in the chatview - + User interface language - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout - + Vertical view - + Horizontal view - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2344,112 +2344,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen - + Start an audio call - + Start a video call - + Clear history Видалити історію - + Block contact Заблокувати контакт - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call - + Decline the call request @@ -2457,17 +2457,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2475,12 +2475,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2488,7 +2488,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2496,12 +2496,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2509,7 +2509,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2517,27 +2517,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok - + Cancel - + Uninstall @@ -2545,17 +2545,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2563,7 +2563,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2571,107 +2571,107 @@ Copy and share it with your friends! QObject - + Created by: - + Artwork by: - + Based on the SFLPhone project - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2679,22 +2679,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2702,7 +2702,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2710,7 +2710,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2718,7 +2718,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2726,22 +2726,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2749,17 +2749,17 @@ Copy and share it with your friends! SystemSettings - + System - + Enable dark theme - + Enable desktop notifications @@ -2767,27 +2767,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2795,7 +2795,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2803,17 +2803,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps - + Default - + System diff --git a/translations/ring_client_windows_vi.ts b/translations/ring_client_windows_vi.ts index da20be83..eccada01 100644 --- a/translations/ring_client_windows_vi.ts +++ b/translations/ring_client_windows_vi.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account Thêm tài khoản @@ -10,7 +10,7 @@ AccountProfile - + Profile @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files - + All files @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File - - - + + + All files - + Key File @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts @@ -89,32 +89,32 @@ CallAdapter - + Missed call - + Missed call with %1 - + me - + Incoming call - + %1 is calling you - + is calling you @@ -122,17 +122,17 @@ ContactPicker - + Add to conference - + Transfer this call - + Add default moderator @@ -140,12 +140,12 @@ ConversationsAdapter - + New message - + Trust request @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok Ok - - + + Success - - + + Error - + Jami archive files - + All files @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,18 +191,18 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Trying to reconnect to the Jami daemon (jamid)… - + Ok Ok @@ -210,7 +210,7 @@ Jami will now quit. DeviceItemDelegate - + Device Id @@ -218,2123 +218,2123 @@ Jami will now quit. JamiStrings - + Find a user or search for a conversation - + Search your invitations - + Invitations - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. - + Version - + Jami is a free software for universal communication which respects the freedom and privacy of its users. - + Credits - + Display QR code - + Open settings Mở cài đặt - + Close settings - + Authentication required - + Your session has expired or been revoked on this device. Please enter your password. - + JAMS server - + Authenticate - + Delete account - + Authentication failed - + Password - + Username Username - + Alias - + Call Settings - + Allow incoming calls from unknown contacts - + In progress… - + Accept - + Refuse - + Incoming audio call from {} - + Incoming video call from {} - + Convert your account into a rendezvous point - + Automatically answer calls - + Enable custom ringtone - + Select custom ringtone - + Add a custom ringtone - + Select a new ringtone - + Voicemail - + Voicemail dial code - + Security - + Encrypt media streams (SRTP) - + Enable SDES key exchange - + Allow fallback on RTP - + Encrypt negotiation (TLS) - + CA certificate - + User certificate - + Private key - + Private key password - + Verify certificates for incoming TLS connections - + Verify server TLS certificates - + Require certificate for incoming TLS connections - + TLS protocol method - + Audio input device selector - + TLS server name - + Negotiation timeout (seconds) - + Select a private key - + Select a user certificate - + Registration expiration time (seconds) - + Use custom address and port - + Enable local peer discovery - + Audio and Video Settings - + Frames per second - + Select video frame rate (frames per second) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. - - + + End call Kết thúc cuộc gọi - + Pause call - + Resume call - + Pause video - + Resume video - + Creating account… - + Encrypt account with password - + Create a rendezvous point - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. - + Choose a name for your rendezvous point - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. - + Launch at startup - + Enable typing indicators - - + + Network error - + SSL error - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. - + Link device - + Conversations - + Enable - + Display or hide preferences - + Add new plugin - + Select a file - + Select - + Choose image file - + Enter the rendezvous point's name - + Creating rendezvous point… - + Create account from Jami Account Management Server (JAMS) - + Create new rendezvous point - + Create a Jami account - + About Jami - + Decline contact request - + Accept contact request - + Automatically check for updates - + Ok Ok - - + + Cancel Hủy bỏ - + Accept in audio - + Accept in video - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. - + Start new conversation - + Chat Settings - + Enable read receipts - + Send and receive receipts indicating that a message have been displayed - + Select a CA certificate - + Connectivity - + Auto Registration After Expired - + Network interface - + Use UPnP - + Use TURN - + TURN address - + TURN username - + TURN password - + TURN Realm - + Use STUN - + STUN address - + Allow IP Auto Rewrite - + Public address - + Address - + Port - + Media - + Enable video - + Video Codecs - + Audio Codecs - + Name Server - + SDP Session Negotiation (ICE Fallback) - + Only used during negotiation in case ICE is not supported - + Audio RTP minimum Port - + Audio RTP maximum Port - + Video RTP minimum Port - + Video RTP maximum port - + Connect to other DHT nodes advertising on your local network. - + OpenDHT Configuration - + Enable proxy - + Proxy address - + Bootstrap - + Back - + Account Settings - + Account - - + + General - + Plugin - + Audio/Video - + Audio - + Microphone Micrô - + Select audio input device - + Output device - + Select audio output device - + Ringtone device - + Select ringtone output device - + Audio manager - + Video - + Select video device - + Device - + Resolution - + Select video resolution - + Enable hardware acceleration - + Preview unavailable - + Screen Sharing Chia sẻ màn hình - + Select screen sharing frame rate (frames per second) Chọn tốc độ khung hình chia sẻ màn hình (khung hình trên giây) - + no video không có video - + Backup account here - + Backup your account! - + Backup account - + Skip - + Success - + Error - + Never show me this again - + Recommended - + Jami archive files - + All files - + Reinstate as contact - + name - + Identifier - + is recording - + are recording - + Peer stopped recording - + is calling you - - + + Mute - - + + Unmute - + Add participant - + Add participants - + Chat - + More options - + Mosaic - + You are still muted by moderator - + You are muted by a moderator - + Moderator - + Host - + Local and Moderator muted - + Moderator muted - + Not muted - + Cut - + Paste - + Start video call Bắt đầu cuộc gọi hình ảnh - + Start audio call Bắt đầu cuộc gọi âm thanh - + Clear conversation - + Remove conversation - + Remove contact - + Block contact - + Contact details - + Hold - + Sip input panel - + Transfer call - + Stop recording - + Start recording - + Exit full screen Thoát dạng xem toàn màn hình - + Share screen Chia sẻ màn hình - + Share window Chia sẻ cửa sổ - + Share screen area Chia sẻ khu vực màn hình - + Share file - + Select sharing method - + View plugin - + No video device - + N/A - + Lower hand - + Raise hand Giơ tay - + Hide chat view - + Place audio call - + Place video call - + Show available plugins - + Add to conversations - + Jump to latest Cuộn đến cuối cuộc hội thoại - + {} is typing… - + {} are typing… - + Several people are typing… - + and - + Enter Jami Account Management Server (JAMS) URL - + Required - + Jami Account Management Server URL - + Enter your JAMS credentials - + Connect - + Back to welcome page - + Choose name - + Choose username - + Create account - + Confirm password - + Optional - + Choose a username for your account - + Choose a name - + Choose your username - + Invalid name - + Invalid username - + Name already taken - + Username already taken - + Proxy - + Server - + Create SIP account - + Configure an existing SIP account - + Backup successful - + Backup failed - + Password changed successfully - + Password change failed - + Password set successfully - + Password set failed - + Change password - - + + Set password - + Change current password - + Backup account to a .gz file - + Enable account - + Set username - + Registering name - + Register a username - + Register username - + Link a new device to this account - + Link another device - + Exporting account… - + Remove Device - + Are you sure you wish to remove this device? - + Linked Devices - + Your PIN is: - + Error connecting to the network. Please try again later. - + Do you really want to delete this account? - + Save new device name - + Edit device name - + Unlink device from account - + Select a folder - + Enable notifications - + Enable dark theme - + Keep minimized on close - + Run application on system startup - + Downloads directory Thư mục tải xuống - + Choose download directory - + Record call - + Chatview Trò chuyện - + Display hyperlink previews in the chatview Hiển thị bản xem trước liên kết - + User interface language Ngôn ngữ giao diện người dùng - + File transfer - + Allow incoming files from unknown contacts - + Automatically accept incoming files - + Accept transfer limit - + in MB, 0 = unlimited - + Register Register - + Incorrect password - + Save file - + Open location - + Install beta version - + Check for updates now - + Enable/Disable automatic updates - + toggle automatic updates - + Updates - + Update - + A new version of Jami was found Would you like to update now? - + No new version of Jami was found - + An error occured when checking for a new version - + Installer download canceled - + This will uninstall your current Release version and you can always download the latest Release version on our website - + Network disconnected - - + + Something went wrong - + Troubleshoot - + Open logs - + Get logs - + Select a record directory - + Debug - + Show Stats - + Start - + Stop - + Generating account… - + Import from backup - + PIN GHIM - + Stop taking photo - + Clear avatar image - + Go back to plugins list - + Profile is only shared with contacts - + Enter your name - + Import account from other device - + Import account from backup file - + Hide advanced features - + Create new Jami account - + Create new SIP account - + Welcome to - + Upgrade - + Later - + Local muted - + Trying to reconnect to the Jami daemon (jamid)… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. - + Is swarm: - + True - + False - + Add emoji - + Send file Gửi tập tin - + Leave audio message - + Leave video message - + Send - + Remove - + Write to %1 - + %1 has sent you a request for a conversation. - + Hello, Would you like to join the conversation? - + You have accepted the conversation request - + Waiting until %1 connects to synchronize the conversation. - - + + Copy - + Participant is still muted on their device - + You are still muted on your device - + View full screen Xem toàn màn hình - + Stop sharing screen or file - + Display advanced settings - + Hide advanced settings - + Display banned contacts - + Hide banned contacts - + Layout Bố cục - + Vertical view Dạng xem dọc - + Horizontal view Dạng xem ngang - + Keyboard Shortcut Table - + Conversation - + Call - + Settings - + Report Bug - + Clear - + Copied to clipboard! - + Receive Logs - + Archive - + Open file - + Create your account from a backup - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. - + Restore an account from backup - + Enter Jami account password - + The PIN and the account password should be entered in your device within 10 minutes. - + Close - + Enter your account password - + Add Device - + Enter the password - + Enter current password - + Enter this account's password to confirm the removal of this device - + Enter new password - + Confirm new password - + Change - + Confirm - + Export - + Choose a picture as avatar - + Import avatar from image file - + Take photo - + Reset - + Select a plugin to install - + Install plugin - + Save profile - + Information - + Enter the account password to confirm the removal of this device - + Select a screen to share Chọn màn hình để chia sẻ - + Select a window to share - + All Screens - + Screens - + Windows - + QR code - + Account QR - + This is your Jami username. Copy and share it with your friends! - + Link this device to an existing account - + Advanced features - + Show advanced features - + Connect to a JAMS server - + Add a SIP account - + Error while creating your account. Check your credentials. - + Clear Text - + Search Results - + Delete - + Set moderator - + Unset moderator - + Maximize - + Minimize - + Hangup - + Conference moderation - + Default moderators - + Enable local moderators - + Make all participants moderators - + Add default moderator - + Remove default moderator @@ -2342,112 +2342,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list - + Focus conversations list - + Requests list - + Previous conversation - + Next conversation - + Search bar - + Full screen Toàn màn hình - + Start an audio call - + Start a video call - + Clear history - + Block contact - + Remove conversation - + Accept contact request - + Media settings - + General settings - + Account settings - + Plugin settings - + Open account creation wizard - + Open keyboard shortcut table - + Answer an incoming call - + End call Kết thúc cuộc gọi - + Decline the call request @@ -2455,17 +2455,17 @@ Copy and share it with your friends! MainApplication - + E&xit - + &Quit - + &Show Jami @@ -2473,12 +2473,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files - + All files @@ -2486,7 +2486,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off @@ -2494,12 +2494,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin - + Preferences @@ -2507,7 +2507,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload @@ -2515,27 +2515,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin - + Reset preferences - + Ok Ok - + Cancel Hủy bỏ - + Uninstall @@ -2543,17 +2543,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files - + All files - + Installed plugins @@ -2561,7 +2561,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference @@ -2569,107 +2569,107 @@ Copy and share it with your friends! QObject - + Created by: Được tạo bởi: - + Artwork by: Đồ hoạ bởi: - + Based on the SFLPhone project Được dựa trên dự án SFLPhone - + Sending - + Failure - + Sent - + Connecting - + Accept - + Canceled Đã hủy bỏ - + Unable to make contact - + Ongoing - + Waiting for contact - + Incoming transfer - + Timed out waiting for contact - + Finished - + %1 days ago - + one day ago - + %1 hours ago - + one hour ago - + %1 minutes ago - + just now @@ -2677,22 +2677,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording - + Always record calls - + Quality - + Save in @@ -2700,7 +2700,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove @@ -2708,7 +2708,7 @@ Copy and share it with your friends! SelectScreen - + Screen @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2724,22 +2724,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls - - - - - - + + + + + + Contacts @@ -2747,17 +2747,17 @@ Copy and share it with your friends! SystemSettings - + System Hệ thống - + Enable dark theme - + Enable desktop notifications Hiển thị thông báo @@ -2765,27 +2765,27 @@ Copy and share it with your friends! SystemTray - + Answer - + Decline - + Open conversation - + Accept - + Refuse @@ -2793,7 +2793,7 @@ Copy and share it with your friends! UserIdentity - + Identity @@ -2801,17 +2801,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1 Mb/giây - + Default Mặc định - + System Hệ thống diff --git a/translations/ring_client_windows_zh.ts b/translations/ring_client_windows_zh.ts index f601d9d2..bd22312d 100644 --- a/translations/ring_client_windows_zh.ts +++ b/translations/ring_client_windows_zh.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account 添加账户 @@ -10,7 +10,7 @@ AccountProfile - + Profile 個人檔案 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files 音频文件 - + All files 所有檔案 @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings 高级账户设置 @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 黑名單聯絡人 @@ -89,32 +89,32 @@ CallAdapter - + Missed call 未接來電 - + Missed call with %1 來自 %1 的未接來電 - + me - + Incoming call 來電 - + %1 is calling you %1 正在呼叫您 - + is calling you 正在呼叫您 @@ -122,17 +122,17 @@ ContactPicker - + Add to conference 加入會議 - + Transfer this call 转接呼叫 - + Add default moderator 添加默认会议主持人 @@ -140,12 +140,12 @@ ConversationsAdapter - + New message 新消息 - + Trust request 信任請求 @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 確定 - - + + Success 成功 - - + + Error 错误 - + Jami archive files Jami 封存檔 - + All files 所有檔案 @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Ok 確定 @@ -211,7 +211,7 @@ Jami 将立即退出。 DeviceItemDelegate - + Device Id 设备 id @@ -219,2130 +219,2130 @@ Jami 将立即退出。 JamiStrings - + Find a user or search for a conversation 查找用户或搜索会话 - + Search your invitations 搜尋您的邀請 - + Invitations 邀請 - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Version 版本 - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Credits 致谢 - + Display QR code 显示二维码 - + Open settings 打开设置 - + Close settings 关闭设置 - + Authentication required 需要认证 - + Your session has expired or been revoked on this device. Please enter your password. 您的会话已过期或已在此设备上撤消。请输入您的密码。 - + JAMS server JAMS 服务器 - + Authenticate 认证 - + Delete account 删除账户 - + Authentication failed 认证失败 - + Password 密码 - + Username 使用者名 - + Alias 別名 - + Call Settings 通話設定 - + Allow incoming calls from unknown contacts 允许未知联系人的来电 - + In progress… 正在进行.. - + Accept 接收 - + Refuse 拒絕 - + Incoming audio call from {} {} 语音来电 - + Incoming video call from {} {} 视频来电 - + Convert your account into a rendezvous point 将您的账户变成集合点 - + Automatically answer calls 自动接听来电 - + Enable custom ringtone 启用自定义铃声 - + Select custom ringtone 选择自定义铃声 - + Add a custom ringtone 添加自定义铃声 - + Select a new ringtone 選取新鈴聲 - + Voicemail 語音信箱 - + Voicemail dial code 语音邮件拨号码 - + Security 安全 - + Encrypt media streams (SRTP) 對影音串流加密 (SRTP) - + Enable SDES key exchange 启用 SDES 密钥交换 - + Allow fallback on RTP 允许回退到 RTP - + Encrypt negotiation (TLS) 加密协商 (TLS) - + CA certificate CA 認證 - + User certificate 使用者認證 - + Private key 私鑰 - + Private key password 私鑰保護密碼 - + Verify certificates for incoming TLS connections 验证传入 TLS 连接的证书 - + Verify server TLS certificates 验证服务器 TLS 证书 - + Require certificate for incoming TLS connections 要求传入 TLS 连接的证书 - + TLS protocol method TLS 協定方法 - + Audio input device selector 音訊輸入裝置選擇器 - + TLS server name TLS 服务器名称 - + Negotiation timeout (seconds) 連接發起超時 (秒) - + Select a private key 选择私钥 - + Select a user certificate 選取使用者憑證 - + Registration expiration time (seconds) 注册过期时间(秒) - + Use custom address and port 使用自訂地址與通訊埠 - + Enable local peer discovery 启用本地对等方发现 - + Audio and Video Settings 音频和视频设置 - + Frames per second 帧率 - + Select video frame rate (frames per second) 选择视频帧率 (fps) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. 本账户仅存在于此设备上。如果您丢失了该设备或卸载了本应用,那么您的账户也会被删除并且无法恢复。您可现在或稍后备份您的账户。 - - + + End call 結束通話 - + Pause call 暂停通话 - + Resume call 恢复通话 - + Pause video 暂停视频 - + Resume video 继续视频 - + Creating account… 正在创建账户... - + Encrypt account with password 用密码加密账户 - + Create a rendezvous point 创建集合点 - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. 创建密码来加密此设备上的账户。请注意密码无法恢复。 - + Choose a name for your rendezvous point 为您的集合点选择一个名称 - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. 如果您的账户尚未备份或添加到其他设备,您的账户和已注册名称将不可挽回地丢失。 - + Launch at startup 启动时运行 - + Enable typing indicators 启用输入状态显示 - - + + Network error 网络错误 - + SSL error SSL 錯誤 - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. 从其他已配置的 Jami 账户输入 PIN 码。使用“关联其他设备”功能获取 PIN 码。 - + Link device 关联设备 - + Conversations 對話 - + Enable 啟用 - + Display or hide preferences 显示或隐藏偏好 - + Add new plugin 添加新插件 - + Select a file 选择文件 - + Select 选择 - + Choose image file 选择图像文件 - + Enter the rendezvous point's name 输入集合点名称 - + Creating rendezvous point… 正在创建集合点… - + Create account from Jami Account Management Server (JAMS) 从 Jami 账户管理服务器 (JAMS) 创建账户 - + Create new rendezvous point 创建新的集合点 - + Create a Jami account 建立 Jami 帳號 - + About Jami 关于 Jami - + Decline contact request 拒绝联系人请求 - + Accept contact request 接受聯絡人請求 - + Automatically check for updates 自動檢查更新 - + Ok 確定 - - + + Cancel 取消 - + Accept in audio 以语音接受 - + Accept in video 以视频接受 - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. 您正在查看一个所有除了您以外所有参与者已经离开的对话。将不会有新的互动。 - + Start new conversation 开始新会话 - + Chat Settings 聊天设置 - + Enable read receipts 啟用讀取回條 - + Send and receive receipts indicating that a message have been displayed 发送并接受消息已显示的回执 - + Select a CA certificate 选择 CA 证书 - + Connectivity 连接性 - + Auto Registration After Expired 过期后自动注册 - + Network interface 网络接口 - + Use UPnP 使用 UPnP - + Use TURN 使用TURN - + TURN address TURN 地址 - + TURN username TURN 使用者名稱 - + TURN password TURN 密碼 - + TURN Realm TURN 域 - + Use STUN 使用STUN - + STUN address STUN 地址 - + Allow IP Auto Rewrite 允许 IP 自动重写 - + Public address 公开地址 - + Address 地址 - + Port - + Media 媒體 - + Enable video 啟用視訊 - + Video Codecs 视频编码 - + Audio Codecs 音訊編解碼器 - + Name Server 名稱伺服器 - + SDP Session Negotiation (ICE Fallback) SDP 协议握手(当 ICE 协议不受支持) - + Only used during negotiation in case ICE is not supported 仅在不支持 ICE 的情况在协商期间下使用 - + Audio RTP minimum Port 音频 RTP 最小端口 - + Audio RTP maximum Port 音频 RTP 最大端口 - + Video RTP minimum Port 视频 RTP 最小端口 - + Video RTP maximum port 视频 RTP 最大端口 - + Connect to other DHT nodes advertising on your local network. 连接至在本地网络宣告的 DHT 节点 - + OpenDHT Configuration OpenDHT 設定 - + Enable proxy 使用代理 - + Proxy address 代理地址 - + Bootstrap 引導 - + Back 前一個 - + Account Settings 帳號設定 - + Account 帳號 - - + + General 通用 - + Plugin 插件 - + Audio/Video 音訊/視訊 - + Audio 語音 - + Microphone 麥克風 - + Select audio input device 选择音频输入设备 - + Output device 輸出裝置 - + Select audio output device 选择音频输出设备 - + Ringtone device 响铃设备 - + Select ringtone output device 选择铃声输出设备 - + Audio manager 音訊管理程式 - + Video 影像 - + Select video device 选择视频设备 - + Device 裝置 - + Resolution 解析度 - + Select video resolution 选择视频分辨率 - + Enable hardware acceleration 啟用硬體加速 - + Preview unavailable 预览不可用 - + Screen Sharing 屏幕共享 - + Select screen sharing frame rate (frames per second) 选择屏幕共享帧率 (每秒的帧数) - + no video 无视频 - + Backup account here 在此备份账户 - + Backup your account! 備份您的帳號! - + Backup account 备份账户 - + Skip 跳过 - + Success 成功 - + Error 错误 - + Never show me this again 不再向我显示这个 - + Recommended 推荐 - + Jami archive files Jami 封存檔 - + All files 所有檔案 - + Reinstate as contact 恢复为联系人 - + name 姓名 - + Identifier 标识符 - + is recording 正在录制 - + are recording 正在录制 - + Peer stopped recording 对等端已停止录制 - + is calling you 正在呼叫您 - - + + Mute 静音 - - + + Unmute 取消静音 - + Add participant 添加参与者 - + Add participants 添加参与者 - + Chat 聊天 - + More options 更多选项 - + Mosaic 马赛克 - + You are still muted by moderator 您仍然被管理员静音。 - + You are muted by a moderator 您已被管理员静音 - + Moderator 主持人 - + Host 主持人 - + Local and Moderator muted 本机和管理员已静音 - + Moderator muted 管理员已静音 - + Not muted 未静音 - + Cut 剪下 - + Paste 貼上 - + Start video call 開始視訊通話 - + Start audio call 发起语音通话 - + Clear conversation 清除對話 - + Remove conversation 移除会话 - + Remove contact 删除联系人 - + Block contact 阻擋連絡人 - + Contact details 联系人详情 - + Hold 保持通話 - + Sip input panel Sip 输入面板 - + Transfer call 轉送通話 - + Stop recording 停止錄製 - + Start recording 开始录音 - + Exit full screen 退出全屏 - + Share screen 共享屏幕 - + Share window 共享窗口 - + Share screen area 分享部分螢幕 - + Share file 分享檔案 - + Select sharing method 选择分享方式 - + View plugin 查看插件 - + No video device 無視訊裝置 - + N/A 未知 - + Lower hand 放下手 - + Raise hand 举手 - + Hide chat view 隐藏聊天界面 - + Place audio call 開始語音通話 - + Place video call 发起视频通话 - + Show available plugins 顯示可用的外掛程式 - + Add to conversations 新增到對話中 - + Jump to latest 跳到最新 - + {} is typing… {} 正在输入… - + {} are typing… {} 正在输入... - + Several people are typing… 多个人正在输入... - + and - + Enter Jami Account Management Server (JAMS) URL 输入 Jami 账户管理器 (JAMS) 的 URI - + Required 必填 - + Jami Account Management Server URL Jami 账户管理服务器 URL - + Enter your JAMS credentials 输入您的 JAMS 凭据 - + Connect 连接 - + Back to welcome page 返回欢迎页面 - + Choose name 选择名称 - + Choose username 选择用户名 - + Create account 创建账户 - + Confirm password 确认密码 - + Optional 可选 - + Choose a username for your account 为您的账户创建一个用户名 - + Choose a name 選擇名稱 - + Choose your username 選擇你的使用者名稱 - + Invalid name 無效的名稱 - + Invalid username 無效的使用者名稱 - + Name already taken 名称已占用 - + Username already taken 已取得的使用者名稱 - + Proxy 代理 - + Server 服务器 - + Create SIP account 创建 SIP 账户 - + Configure an existing SIP account 配置已有的 SIP 账户 - + Backup successful 备份成功 - + Backup failed 备份失败 - + Password changed successfully 密码已成功修改 - + Password change failed 密码修改失败 - + Password set successfully 密码已成功设置 - + Password set failed 密码设置失败 - + Change password 變更密碼 - - + + Set password 設定密碼 - + Change current password 更改当前密码 - + Backup account to a .gz file 备份账户到 .gz 文件 - + Enable account 啟用帳號 - + Set username 设置用户名 - + Registering name 正在注册用户名 - + Register a username 註冊使用者名稱 - + Register username 注册用户名 - + Link a new device to this account 关联一个新设备到该账户 - + Link another device 关联另一台设备 - + Exporting account… 正在导出账户… - + Remove Device 移除裝置 - + Are you sure you wish to remove this device? 您确定要删除此设备吗? - + Linked Devices 关联设备 - + Your PIN is: 您的 PIN 碼為: - + Error connecting to the network. Please try again later. 连接网络失败。 请稍后重试。 - + Do you really want to delete this account? 您确定要删除此账户吗? - + Save new device name 保存新设备名称 - + Edit device name 编辑设备名 - + Unlink device from account 取消设备与账户的关联 - + Select a folder 选择文件夹 - + Enable notifications 启用通知 - + Enable dark theme 启用黑暗主题 - + Keep minimized on close 退出时保持窗口最小化 - + Run application on system startup 系统启动时运行应用 - + Downloads directory 下载文件夹 - + Choose download directory 选择下载文件夹 - + Record call 記錄通話 - + Chatview 聊天視窗 - + Display hyperlink previews in the chatview 显示链接预览 - + User interface language 用户界面语言 - + File transfer 文件传输 - + Allow incoming files from unknown contacts 允许接收来自未知联系人的文件 - + Automatically accept incoming files 自动接收文件 - + Accept transfer limit 接受传输限制 - + in MB, 0 = unlimited 单位为 MB,0 为不限制 - + Register 註冊 - + Incorrect password 密码错误 - + Save file 儲存檔案 - + Open location 开启位置 - + Install beta version 安装 beta 版本 - + Check for updates now 現在檢查更新 - + Enable/Disable automatic updates 启用/禁用自动更新 - + toggle automatic updates 自動更新 - + Updates 更新 - + Update 更新 - + A new version of Jami was found Would you like to update now? 发现新版本 Jami 您是否想要现在更新? - + No new version of Jami was found 未发现 Jami 的新版本 - + An error occured when checking for a new version 检查新版本时出错 - + Installer download canceled 安装包下载已取消 - + This will uninstall your current Release version and you can always download the latest Release version on our website 这将卸载您当前的发布版本,您可以随时从我们的网站下载最新发布版本。 - + Network disconnected 网络已断开 - - + + Something went wrong 出了點問題 - + Troubleshoot 排除故障 - + Open logs 打开日志 - + Get logs 获取日志 - + Select a record directory 选择录音文件夹 - + Debug 排障 - + Show Stats 显示状态 - + Start 开始 - + Stop 停止 - + Generating account… 正在生成帳號…… - + Import from backup 从备份文件导入 - + PIN PIN 碼 - + Stop taking photo 停止拍照 - + Clear avatar image 清除头像图片 - + Go back to plugins list 回到外掛程式清單 - + Profile is only shared with contacts 资料仅会与联系人分享 - + Enter your name 输入您的名字 - + Import account from other device 從其他裝置匯入 - + Import account from backup file 从备份文件导入账户 - + Hide advanced features 隐藏高级功能 - + Create new Jami account 建立新 Jami 帳號 - + Create new SIP account 创建新的 SIP 账户 - + Welcome to 欢迎来到 - + Upgrade 升级 - + Later 稍后 - + Local muted 本机已静音 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Is swarm: 是 swarm: - + True - + False - + Add emoji 新增表情符號 - + Send file 发送文件 - + Leave audio message 留下語音訊息 - + Leave video message 留下視訊訊息 - + Send 發送 - + Remove 删除 - + Write to %1 写入至 %1 - + %1 has sent you a request for a conversation. %1 已向您发送对话请求。 - + Hello, Would you like to join the conversation? 您好, 您想要加入会话吗? - + You have accepted the conversation request 您已接受 对话请求 - + Waiting until %1 connects to synchronize the conversation. 等待直到 %1 连接以同步对话。 - - + + Copy 複製 - + Participant is still muted on their device 参与者在他们的设备上仍然被静音 - + You are still muted on your device 您在您的设备上仍然被静音 - + View full screen 全屏查看 - + Stop sharing screen or file 停止共享屏幕或文件 - + Display advanced settings 显示高级设置 - + Hide advanced settings 隐藏高级设置 - + Display banned contacts 显示被禁联系人 - + Hide banned contacts 隐藏被屏蔽的联系人 - + Layout 布局 - + Vertical view 垂直视图 - + Horizontal view 水平视图 - + Keyboard Shortcut Table 键盘快捷键列表 - + Conversation 对话 - + Call 撥打 - + Settings 設定 - + Report Bug 报告故障 - + Clear 清除 - + Copied to clipboard! 复制到剪贴板! - + Receive Logs 接收日志 - + Archive 归档 - + Open file 打开文件 - + Create your account from a backup 从备份创建您的账户 - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. 您可在账户设置中点击“导出账户”获得归档。这会在您的设备上创建一个以 .gz 结尾的文件。 - + Restore an account from backup 从备份恢复账户 - + Enter Jami account password 输入 Jami 账户密码 - + The PIN and the account password should be entered in your device within 10 minutes. 您需要在 10 分钟内在您的设备上输入此 PIN 码和账户密码。 - + Close 關閉 - + Enter your account password 输入您的账户密码 - + Add Device 添加设备 - + Enter the password 输入密码 - + Enter current password 输入当前密码 - + Enter this account's password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Enter new password 输入新密码 - + Confirm new password 确认新密码 - + Change 更改 - + Confirm 確認 - + Export 輸出 - + Choose a picture as avatar 选择图片作为头像 - + Import avatar from image file 从图像文件导入头像 - + Take photo 照相 - + Reset 重置 - + Select a plugin to install 选择插件进行安装 - + Install plugin 安装插件 - + Save profile 保存资料 - + Information 資訊 - + Enter the account password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Select a screen to share 选择要分享的屏幕 - + Select a window to share 選取要分享的視窗 - + All Screens 所有屏幕 - + Screens 屏幕 - + Windows 窗口 - + QR code 二维码 - + Account QR 账户二维码 - + This is your Jami username. Copy and share it with your friends! 這是你的 Jami 使用者名稱。 複製並與你的朋友分享! - + Link this device to an existing account 将此设备关联到已有账户 - + Advanced features 高级功能 - + Show advanced features 显示高级功能 - + Connect to a JAMS server 连接到 JAMS 服务器 - + Add a SIP account 新增 SIP 帳號 - + Error while creating your account. Check your credentials. 创建账户时出错。请检查您的凭据。 - + Clear Text 明文 - + Search Results 搜索结果 - + Delete 刪除 - + Set moderator 设置管理员 - + Unset moderator 取消设置管理员 - + Maximize 最大化 - + Minimize 最小化 - + Hangup 掛斷 - + Conference moderation 会议主持人 - + Default moderators 默认会议主持人 - + Enable local moderators 启用本地会议主持人 - + Make all participants moderators 将所有参加者设置为管理员 - + Add default moderator 添加默认会议主持人 - + Remove default moderator 删除默认会议主持人 @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list 開啟帳號清單 - + Focus conversations list 聚焦会话列表 - + Requests list 请求列表 - + Previous conversation 上一个会话 - + Next conversation 下一个会话 - + Search bar 搜尋列 - + Full screen 全屏 - + Start an audio call 发起语音通话 - + Start a video call 開始視訊通話 - + Clear history 清除記錄 - + Block contact 阻擋連絡人 - + Remove conversation 移除会话 - + Accept contact request 接受聯絡人請求 - + Media settings 媒體設定 - + General settings 一般設定 - + Account settings 帳號設定 - + Plugin settings 插件设置 - + Open account creation wizard 開啟帳號建立精靈 - + Open keyboard shortcut table 打开键盘快捷键列表 - + Answer an incoming call 接听来电 - + End call 結束通話 - + Decline the call request 拒絕通話請求 @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit 退出(&X) - + &Quit 退出(&Q) - + &Show Jami 打开 Jami (&S) @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files 图片文件 - + All files 所有文件 @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off 開啟/關閉 @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin 选择插件 - + Preferences 偏好設定 @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload 加载/取消加载 @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin 卸载插件 - + Reset preferences 重置偏好设置 - + Ok 確定 - + Cancel 取消 - + Uninstall 卸载 @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files 插件文件 - + All files 所有文件 - + Installed plugins 已安装的插件 @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference 编辑偏好 @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: 开发者: - + Artwork by: 艺术设计: - + Based on the SFLPhone project 基于 SFLPhone 项目 - + Sending 正在傳送 - + Failure 失败 - + Sent 已发送 - + Connecting 連接中 - + Accept 接收 - + Canceled 已取消 - + Unable to make contact 無法加為聯絡人 - + Ongoing 正在进行 - + Waiting for contact 等待聯絡人 - + Incoming transfer 入站传送 - + Timed out waiting for contact 等待联系人超时 - + Finished 已結束 - + %1 days ago %1 天前 - + one day ago 一天前 - + %1 hours ago %1 小时前 - + one hour ago 一小时前 - + %1 minutes ago %1 分钟前 - + just now 刚才 @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording 通话录音 - + Always record calls 永遠記錄通話 - + Quality 品質 - + Save in 保存至 @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove 删除 @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen 屏幕 @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls 呼叫 - - - - - - + + + + + + Contacts 聯絡人 @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System 系统 - + Enable dark theme 启用黑暗主题 - + Enable desktop notifications 显示通知 @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer 接通 - + Decline 拒接 - + Open conversation 開啟對話 - + Accept 接收 - + Refuse 拒絕 @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity 身份 @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1兆比特/秒 - + Default 默认 - + System 系统 diff --git a/translations/ring_client_windows_zh_CN.ts b/translations/ring_client_windows_zh_CN.ts index 64d491e8..038656c3 100644 --- a/translations/ring_client_windows_zh_CN.ts +++ b/translations/ring_client_windows_zh_CN.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account 添加账户 @@ -10,7 +10,7 @@ AccountProfile - + Profile 账户资料 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files 音频文件 - + All files 所有文件 @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File 证书文件 - - - + + + All files 所有文件 - + Key File 密钥文件 @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File 证书文件 - - - + + + All files 所有文件 - + Key File 密钥文件 @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings 高级账户设置 @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 已屏蔽的联系人 @@ -89,32 +89,32 @@ CallAdapter - + Missed call 未接来电 - + Missed call with %1 來自 %1 的未接來電 - + me - + Incoming call 来电 - + %1 is calling you %1 正在呼叫您 - + is calling you 正在呼叫您 @@ -122,17 +122,17 @@ ContactPicker - + Add to conference 添加至会议 - + Transfer this call 转接呼叫 - + Add default moderator 添加默认会议主持人 @@ -140,12 +140,12 @@ ConversationsAdapter - + New message 新消息 - + Trust request 信任请求 @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 确定 - - + + Success 成功 - - + + Error 错误 - + Jami archive files Jami 归档文件 - + All files 所有文件 @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Ok 确定 @@ -211,7 +211,7 @@ Jami 将立即退出。 DeviceItemDelegate - + Device Id 设备 id @@ -219,2130 +219,2130 @@ Jami 将立即退出。 JamiStrings - + Find a user or search for a conversation 查找用户或搜索会话 - + Search your invitations 搜索您的邀请 - + Invitations 邀请 - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Version 版本 - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Credits 致谢 - + Display QR code 显示二维码 - + Open settings 打开设置 - + Close settings 关闭设置 - + Authentication required 需要认证 - + Your session has expired or been revoked on this device. Please enter your password. 您的会话已过期或已在此设备上撤消。请输入您的密码。 - + JAMS server JAMS 服务器 - + Authenticate 认证 - + Delete account 删除账户 - + Authentication failed 认证失败 - + Password 密码 - + Username 用户名 - + Alias 别名 - + Call Settings 呼叫设置 - + Allow incoming calls from unknown contacts 允许未知联系人的来电 - + In progress… 正在进行.. - + Accept 接收 - + Refuse 拒接 - + Incoming audio call from {} {} 语音来电 - + Incoming video call from {} {} 视频来电 - + Convert your account into a rendezvous point 将您的账户变成集合点 - + Automatically answer calls 自动接听来电 - + Enable custom ringtone 启用自定义铃声 - + Select custom ringtone 选择自定义铃声 - + Add a custom ringtone 添加自定义铃声 - + Select a new ringtone 选择新铃声 - + Voicemail 语音邮件 - + Voicemail dial code 语音邮件拨号码 - + Security 安全 - + Encrypt media streams (SRTP) 加密流媒体 (SRTP) - + Enable SDES key exchange 启用 SDES 密钥交换 - + Allow fallback on RTP 允许回退到 RTP - + Encrypt negotiation (TLS) 加密协商 (TLS) - + CA certificate CA 证书 - + User certificate 用户证书 - + Private key 私钥 - + Private key password 私钥密码 - + Verify certificates for incoming TLS connections 验证传入 TLS 连接的证书 - + Verify server TLS certificates 验证服务器 TLS 证书 - + Require certificate for incoming TLS connections 要求传入 TLS 连接的证书 - + TLS protocol method TLS 协议方法 - + Audio input device selector 选择音频输入设备 - + TLS server name TLS 服务器名称 - + Negotiation timeout (seconds) 协商超时 (秒) - + Select a private key 选择私钥 - + Select a user certificate 选择用户证书 - + Registration expiration time (seconds) 注册过期时间(秒) - + Use custom address and port 使用自定义地址地址与端口 - + Enable local peer discovery 启用本地对等方发现 - + Audio and Video Settings 音频和视频设置 - + Frames per second 帧率 - + Select video frame rate (frames per second) 选择视频帧率 (fps) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. 本账户仅存在于此设备上。如果您丢失了该设备或卸载了本应用,那么您的账户也会被删除并且无法恢复。您可现在或稍后备份您的账户。 - - + + End call 结束通话 - + Pause call 暂停通话 - + Resume call 恢复通话 - + Pause video 暂停视频 - + Resume video 继续视频 - + Creating account… 正在创建账户... - + Encrypt account with password 用密码加密账户 - + Create a rendezvous point 创建集合点 - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. 创建密码来加密此设备上的账户。请注意密码无法恢复。 - + Choose a name for your rendezvous point 为您的集合点选择一个名称 - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. 如果您的账户尚未备份或添加到其他设备,您的账户和已注册名称将不可挽回地丢失。 - + Launch at startup 启动时运行 - + Enable typing indicators 启用输入状态显示 - - + + Network error 网络错误 - + SSL error SSL 错误 - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. 从其他已配置的 Jami 账户输入 PIN 码。使用“关联其他设备”功能获取 PIN 码。 - + Link device 关联设备 - + Conversations 会话 - + Enable 启用 - + Display or hide preferences 显示或隐藏偏好 - + Add new plugin 添加新插件 - + Select a file 选择文件 - + Select 选择 - + Choose image file 选择图像文件 - + Enter the rendezvous point's name 输入集合点名称 - + Creating rendezvous point… 正在创建集合点… - + Create account from Jami Account Management Server (JAMS) 从 Jami 账户管理服务器 (JAMS) 创建账户 - + Create new rendezvous point 创建新的集合点 - + Create a Jami account 创建 Jami 账户 - + About Jami 关于 Jami - + Decline contact request 拒绝联系人请求 - + Accept contact request 接受联系人请求 - + Automatically check for updates 自动检查更新 - + Ok 确定 - - + + Cancel 取消 - + Accept in audio 以语音接受 - + Accept in video 以视频接受 - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. 您正在查看一个所有除了您以外所有参与者已经离开的对话。将不会有新的互动。 - + Start new conversation 开始新会话 - + Chat Settings 聊天设置 - + Enable read receipts 启用已读回执 - + Send and receive receipts indicating that a message have been displayed 发送并接受消息已显示的回执 - + Select a CA certificate 选择 CA 证书 - + Connectivity 连接性 - + Auto Registration After Expired 过期后自动注册 - + Network interface 网络接口 - + Use UPnP 使用 UPnP - + Use TURN 使用 TURN - + TURN address TURN 地址 - + TURN username TURN 用户名 - + TURN password TURN 密码 - + TURN Realm TURN 域 - + Use STUN 使用 STUN - + STUN address STUN 地址 - + Allow IP Auto Rewrite 允许 IP 自动重写 - + Public address 公开地址 - + Address 地址 - + Port 端口 - + Media 媒体 - + Enable video 启用视频 - + Video Codecs 视频编码 - + Audio Codecs 音频编码 - + Name Server 名称服务器 - + SDP Session Negotiation (ICE Fallback) SDP 协议握手(当 ICE 协议不受支持) - + Only used during negotiation in case ICE is not supported 仅在不支持 ICE 的情况在协商期间下使用 - + Audio RTP minimum Port 音频 RTP 最小端口 - + Audio RTP maximum Port 音频 RTP 最大端口 - + Video RTP minimum Port 视频 RTP 最小端口 - + Video RTP maximum port 视频 RTP 最大端口 - + Connect to other DHT nodes advertising on your local network. 连接至在本地网络宣告的 DHT 节点 - + OpenDHT Configuration OpenDHT 配置 - + Enable proxy 使用代理 - + Proxy address 代理地址 - + Bootstrap 初始服务器 - + Back 上一步 - + Account Settings 账户设置 - + Account 账户 - - + + General 通用 - + Plugin 插件 - + Audio/Video 音频/视频 - + Audio 音频 - + Microphone 麦克风 - + Select audio input device 选择音频输入设备 - + Output device 输出设备 - + Select audio output device 选择音频输出设备 - + Ringtone device 响铃设备 - + Select ringtone output device 选择铃声输出设备 - + Audio manager 音频管理器 - + Video 视频 - + Select video device 选择视频设备 - + Device 设备 - + Resolution 分辨率 - + Select video resolution 选择视频分辨率 - + Enable hardware acceleration 启用硬件加速 - + Preview unavailable 预览不可用 - + Screen Sharing 屏幕共享 - + Select screen sharing frame rate (frames per second) 选择屏幕共享帧率 (每秒的帧数) - + no video 无视频 - + Backup account here 在此备份账户 - + Backup your account! 备份您的账户! - + Backup account 备份账户 - + Skip 跳过 - + Success 成功 - + Error 错误 - + Never show me this again 不再向我显示这个 - + Recommended 推荐 - + Jami archive files Jami 归档文件 - + All files 所有文件 - + Reinstate as contact 恢复为联系人 - + name 姓名 - + Identifier 标识符 - + is recording 正在录制 - + are recording 正在录制 - + Peer stopped recording 对等端已停止录制 - + is calling you 正在呼叫您 - - + + Mute 静音 - - + + Unmute 取消静音 - + Add participant 添加参与者 - + Add participants 添加参与者 - + Chat 聊天 - + More options 更多选项 - + Mosaic 马赛克 - + You are still muted by moderator 您仍然被管理员静音。 - + You are muted by a moderator 您已被管理员静音 - + Moderator 管理员 - + Host 主持人 - + Local and Moderator muted 本机和管理员已静音 - + Moderator muted 管理员已静音 - + Not muted 未静音 - + Cut 剪切 - + Paste 粘贴 - + Start video call 发起视频通话 - + Start audio call 发起语音通话 - + Clear conversation 清除会话 - + Remove conversation 移除会话 - + Remove contact 删除联系人 - + Block contact 屏蔽联系人 - + Contact details 联系人详情 - + Hold 等待 - + Sip input panel Sip 输入面板 - + Transfer call 转接通话 - + Stop recording 停止录制 - + Start recording 开始录音 - + Exit full screen 退出全屏 - + Share screen 共享屏幕 - + Share window 共享窗口 - + Share screen area 共享屏幕区域 - + Share file 共享文件 - + Select sharing method 选择分享方式 - + View plugin 查看插件 - + No video device 无视频设备 - + N/A 未知 - + Lower hand 放下手 - + Raise hand 举手 - + Hide chat view 隐藏聊天界面 - + Place audio call 发起语音通话 - + Place video call 发起视频通话 - + Show available plugins 显示可用插件 - + Add to conversations 添加到会话 - + Jump to latest 跳转至最新 - + {} is typing… {} 正在输入… - + {} are typing… {} 正在输入... - + Several people are typing… 多个人正在输入... - + and - + Enter Jami Account Management Server (JAMS) URL 输入 Jami 账户管理器 (JAMS) 的 URI - + Required 必填 - + Jami Account Management Server URL Jami 账户管理服务器 URL - + Enter your JAMS credentials 输入您的 JAMS 凭据 - + Connect 连接 - + Back to welcome page 返回欢迎页面 - + Choose name 选择名称 - + Choose username 选择用户名 - + Create account 创建账户 - + Confirm password 确认密码 - + Optional 可选 - + Choose a username for your account 为您的账户创建一个用户名 - + Choose a name 选择名称 - + Choose your username 设置您的用户名 - + Invalid name 无效名称 - + Invalid username 非法用户名 - + Name already taken 名称已占用 - + Username already taken 用户名已被占用 - + Proxy 代理 - + Server 服务器 - + Create SIP account 创建 SIP 账户 - + Configure an existing SIP account 配置已有的 SIP 账户 - + Backup successful 备份成功 - + Backup failed 备份失败 - + Password changed successfully 密码已成功修改 - + Password change failed 密码修改失败 - + Password set successfully 密码已成功设置 - + Password set failed 密码设置失败 - + Change password 更改密码 - - + + Set password 设置密码 - + Change current password 更改当前密码 - + Backup account to a .gz file 备份账户到 .gz 文件 - + Enable account 启用账户 - + Set username 设置用户名 - + Registering name 正在注册用户名 - + Register a username 注册一个用户名 - + Register username 注册用户名 - + Link a new device to this account 关联一个新设备到该账户 - + Link another device 关联另一台设备 - + Exporting account… 正在导出账户… - + Remove Device 删除设备 - + Are you sure you wish to remove this device? 您确定要删除此设备吗? - + Linked Devices 关联设备 - + Your PIN is: 您的 PIN 是: - + Error connecting to the network. Please try again later. 连接网络失败。 请稍后重试。 - + Do you really want to delete this account? 您确定要删除此账户吗? - + Save new device name 保存新设备名称 - + Edit device name 编辑设备名 - + Unlink device from account 取消设备与账户的关联 - + Select a folder 选择文件夹 - + Enable notifications 启用通知 - + Enable dark theme 启用黑暗主题 - + Keep minimized on close 退出时保持窗口最小化 - + Run application on system startup 系统启动时运行应用 - + Downloads directory 下载文件夹 - + Choose download directory 选择下载文件夹 - + Record call 录制通话 - + Chatview 聊天界面 - + Display hyperlink previews in the chatview 显示链接预览 - + User interface language 用户界面语言 - + File transfer 文件传输 - + Allow incoming files from unknown contacts 允许接收来自未知联系人的文件 - + Automatically accept incoming files 自动接收文件 - + Accept transfer limit 接受传输限制 - + in MB, 0 = unlimited 单位为 MB,0 为不限制 - + Register 注册 - + Incorrect password 密码错误 - + Save file 保存文件 - + Open location 开启位置 - + Install beta version 安装 beta 版本 - + Check for updates now 立即检查更新 - + Enable/Disable automatic updates 启用/禁用自动更新 - + toggle automatic updates 切换自动更新 - + Updates 更新 - + Update 更新 - + A new version of Jami was found Would you like to update now? 发现新版本 Jami 您是否想要现在更新? - + No new version of Jami was found 未发现 Jami 的新版本 - + An error occured when checking for a new version 检查新版本时出错 - + Installer download canceled 安装包下载已取消 - + This will uninstall your current Release version and you can always download the latest Release version on our website 这将卸载您当前的发布版本,您可以随时从我们的网站下载最新发布版本。 - + Network disconnected 网络已断开 - - + + Something went wrong 出错了 - + Troubleshoot 排除故障 - + Open logs 打开日志 - + Get logs 获取日志 - + Select a record directory 选择录音文件夹 - + Debug 排障 - + Show Stats 显示状态 - + Start 开始 - + Stop 停止 - + Generating account… 正在生成账户… - + Import from backup 从备份文件导入 - + PIN PIN - + Stop taking photo 停止拍照 - + Clear avatar image 清除头像图片 - + Go back to plugins list 返回插件列表 - + Profile is only shared with contacts 资料仅会与联系人分享 - + Enter your name 输入您的名字 - + Import account from other device 从其他设备导入账户 - + Import account from backup file 从备份文件导入账户 - + Hide advanced features 隐藏高级功能 - + Create new Jami account 创建新的 Jami 账户 - + Create new SIP account 创建新的 SIP 账户 - + Welcome to 欢迎来到 - + Upgrade 升级 - + Later 稍后 - + Local muted 本机已静音 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Is swarm: 是 swarm: - + True - + False - + Add emoji 添加表情 - + Send file 发送文件 - + Leave audio message 音频留言 - + Leave video message 视频留言 - + Send 发送 - + Remove 删除 - + Write to %1 写入至 %1 - + %1 has sent you a request for a conversation. %1 已向您发送对话请求。 - + Hello, Would you like to join the conversation? 您好, 您想要加入会话吗? - + You have accepted the conversation request 您已接受 对话请求 - + Waiting until %1 connects to synchronize the conversation. 等待直到 %1 连接以同步对话。 - - + + Copy 复制 - + Participant is still muted on their device 参与者在他们的设备上仍然被静音 - + You are still muted on your device 您在您的设备上仍然被静音 - + View full screen 全屏查看 - + Stop sharing screen or file 停止共享屏幕或文件 - + Display advanced settings 显示高级设置 - + Hide advanced settings 隐藏高级设置 - + Display banned contacts 显示被禁联系人 - + Hide banned contacts 隐藏被屏蔽的联系人 - + Layout 布局 - + Vertical view 垂直视图 - + Horizontal view 水平视图 - + Keyboard Shortcut Table 键盘快捷键列表 - + Conversation 对话 - + Call 通话 - + Settings 设置 - + Report Bug 报告故障 - + Clear 清除 - + Copied to clipboard! 复制到剪贴板! - + Receive Logs 接收日志 - + Archive 归档 - + Open file 打开文件 - + Create your account from a backup 从备份创建您的账户 - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. 您可在账户设置中点击“导出账户”获得归档。这会在您的设备上创建一个以 .gz 结尾的文件。 - + Restore an account from backup 从备份恢复账户 - + Enter Jami account password 输入 Jami 账户密码 - + The PIN and the account password should be entered in your device within 10 minutes. 您需要在 10 分钟内在您的设备上输入此 PIN 码和账户密码。 - + Close 关闭 - + Enter your account password 输入您的账户密码 - + Add Device 添加设备 - + Enter the password 输入密码 - + Enter current password 输入当前密码 - + Enter this account's password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Enter new password 输入新密码 - + Confirm new password 确认新密码 - + Change 更改 - + Confirm 确认 - + Export 导出 - + Choose a picture as avatar 选择图片作为头像 - + Import avatar from image file 从图像文件导入头像 - + Take photo 拍照 - + Reset 重置 - + Select a plugin to install 选择插件进行安装 - + Install plugin 安装插件 - + Save profile 保存资料 - + Information 信息 - + Enter the account password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Select a screen to share 选择要分享的屏幕 - + Select a window to share 選取要分享的視窗 - + All Screens 所有屏幕 - + Screens 屏幕 - + Windows 窗口 - + QR code 二维码 - + Account QR 账户二维码 - + This is your Jami username. Copy and share it with your friends! 这是您的 Jami 用户名。 复制并发送给您的朋友! - + Link this device to an existing account 将此设备关联到已有账户 - + Advanced features 高级功能 - + Show advanced features 显示高级功能 - + Connect to a JAMS server 连接到 JAMS 服务器 - + Add a SIP account 添加 SIP 账户 - + Error while creating your account. Check your credentials. 创建账户时出错。请检查您的凭据。 - + Clear Text 明文 - + Search Results 搜索结果 - + Delete 删除 - + Set moderator 设置管理员 - + Unset moderator 取消设置管理员 - + Maximize 最大化 - + Minimize 最小化 - + Hangup 挂断 - + Conference moderation 会议主持人 - + Default moderators 默认会议主持人 - + Enable local moderators 启用本地会议主持人 - + Make all participants moderators 将所有参加者设置为管理员 - + Add default moderator 添加默认会议主持人 - + Remove default moderator 删除默认会议主持人 @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list 打开账户列表 - + Focus conversations list 聚焦会话列表 - + Requests list 请求列表 - + Previous conversation 上一个会话 - + Next conversation 下一个会话 - + Search bar 搜索栏 - + Full screen 全屏 - + Start an audio call 发起语音通话 - + Start a video call 发起视频通话 - + Clear history 清除历史记录 - + Block contact 屏蔽联系人 - + Remove conversation 移除会话 - + Accept contact request 接受联系人请求 - + Media settings 媒体设置 - + General settings 常规设置 - + Account settings 账户设置 - + Plugin settings 插件设置 - + Open account creation wizard 打开账户创建向导 - + Open keyboard shortcut table 打开键盘快捷键列表 - + Answer an incoming call 接听来电 - + End call 结束通话 - + Decline the call request 拒绝呼叫请求 @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit 退出(&X) - + &Quit 退出(&Q) - + &Show Jami 打开 Jami (&S) @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files 图片文件 - + All files 所有文件 @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off 开/关 @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin 选择插件 - + Preferences 偏好 @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload 加载/取消加载 @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin 卸载插件 - + Reset preferences 重置偏好设置 - + Ok 确定 - + Cancel 取消 - + Uninstall 卸载 @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files 插件文件 - + All files 所有文件 - + Installed plugins 已安装的插件 @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference 编辑偏好 @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: 开发者: - + Artwork by: 艺术设计: - + Based on the SFLPhone project 基于 SFLPhone 项目 - + Sending 发送中 - + Failure 失败 - + Sent 已发送 - + Connecting 正在连接 - + Accept 接收 - + Canceled 已取消 - + Unable to make contact 无法联系 - + Ongoing 正在进行 - + Waiting for contact 正在等待联系人 - + Incoming transfer 入站传送 - + Timed out waiting for contact 等待联系人超时 - + Finished 完成 - + %1 days ago %1 天前 - + one day ago 一天前 - + %1 hours ago %1 小时前 - + one hour ago 一小时前 - + %1 minutes ago %1 分钟前 - + just now 刚才 @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording 通话录音 - + Always record calls 总是录音通话 - + Quality 质量 - + Save in 保存至 @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove 删除 @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen 屏幕 @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls 呼叫 - - - - - - + + + + + + Contacts 通讯录 @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System 系统 - + Enable dark theme 启用黑暗主题 - + Enable desktop notifications 显示通知 @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer 接听 - + Decline 拒接 - + Open conversation 打开会话 - + Accept 接收 - + Refuse 拒接 @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity 身份 @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1兆比特/秒 - + Default 默认 - + System 系统 diff --git a/translations/ring_client_windows_zh_HK.ts b/translations/ring_client_windows_zh_HK.ts index a677b197..3398909a 100644 --- a/translations/ring_client_windows_zh_HK.ts +++ b/translations/ring_client_windows_zh_HK.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account 添加账户 @@ -10,7 +10,7 @@ AccountProfile - + Profile 個人檔案 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files 音频文件 - + All files 所有檔案 @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings 高级账户设置 @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 黑名單聯絡人 @@ -89,32 +89,32 @@ CallAdapter - + Missed call 未接來電 - + Missed call with %1 來自 %1 的未接來電 - + me - + Incoming call 来电 - + %1 is calling you %1 正在呼叫您 - + is calling you 正在呼叫您 @@ -122,17 +122,17 @@ ContactPicker - + Add to conference 加入會議 - + Transfer this call 转接呼叫 - + Add default moderator 添加默认会议主持人 @@ -140,12 +140,12 @@ ConversationsAdapter - + New message 新消息 - + Trust request 信任請求 @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 确定 - - + + Success 成功 - - + + Error 错误 - + Jami archive files Jami 封存檔 - + All files 所有檔案 @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Ok 确定 @@ -211,7 +211,7 @@ Jami 将立即退出。 DeviceItemDelegate - + Device Id 设备 id @@ -219,2130 +219,2130 @@ Jami 将立即退出。 JamiStrings - + Find a user or search for a conversation 查找用户或搜索会话 - + Search your invitations 搜尋您的邀請 - + Invitations 邀請 - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Version 版本 - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami 是用于普遍通信的自由软件,尊重用户的自由和隐私。 - + Credits 致谢 - + Display QR code 显示二维码 - + Open settings 打开设置 - + Close settings 关闭设置 - + Authentication required 需要认证 - + Your session has expired or been revoked on this device. Please enter your password. 您的会话已过期或已在此设备上撤消。请输入您的密码。 - + JAMS server JAMS 服务器 - + Authenticate 认证 - + Delete account 删除账户 - + Authentication failed 认证失败 - + Password 密碼 - + Username 使用者名 - + Alias 别名 - + Call Settings 通話設定 - + Allow incoming calls from unknown contacts 允许未知联系人的来电 - + In progress… 正在进行.. - + Accept 接收 - + Refuse 拒接 - + Incoming audio call from {} {} 语音来电 - + Incoming video call from {} {} 视频来电 - + Convert your account into a rendezvous point 将您的账户变成集合点 - + Automatically answer calls 自动接听来电 - + Enable custom ringtone 启用自定义铃声 - + Select custom ringtone 选择自定义铃声 - + Add a custom ringtone 添加自定义铃声 - + Select a new ringtone 選取新鈴聲 - + Voicemail 語音信箱 - + Voicemail dial code 语音邮件拨号码 - + Security 安全性 - + Encrypt media streams (SRTP) 對影音串流加密 (SRTP) - + Enable SDES key exchange 启用 SDES 密钥交换 - + Allow fallback on RTP 允许回退到 RTP - + Encrypt negotiation (TLS) 加密协商 (TLS) - + CA certificate CA 證書 - + User certificate 使用者證書 - + Private key 私密金鑰 - + Private key password 私鑰保護密碼 - + Verify certificates for incoming TLS connections 验证传入 TLS 连接的证书 - + Verify server TLS certificates 验证服务器 TLS 证书 - + Require certificate for incoming TLS connections 要求传入 TLS 连接的证书 - + TLS protocol method TLS 協定方法 - + Audio input device selector 音訊輸入裝置選擇器 - + TLS server name TLS 服务器名称 - + Negotiation timeout (seconds) 連接發起超時 (秒) - + Select a private key 选择私钥 - + Select a user certificate 選取使用者憑證 - + Registration expiration time (seconds) 注册过期时间(秒) - + Use custom address and port 使用自訂地址與通訊埠 - + Enable local peer discovery 启用本地对等方发现 - + Audio and Video Settings 音频和视频设置 - + Frames per second 帧率 - + Select video frame rate (frames per second) 选择视频帧率 (fps) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. 本账户仅存在于此设备上。如果您丢失了该设备或卸载了本应用,那么您的账户也会被删除并且无法恢复。您可现在或稍后备份您的账户。 - - + + End call 結束電話 - + Pause call 暂停通话 - + Resume call 恢复通话 - + Pause video 暂停视频 - + Resume video 继续视频 - + Creating account… 正在创建账户... - + Encrypt account with password 用密码加密账户 - + Create a rendezvous point 创建集合点 - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. 创建密码来加密此设备上的账户。请注意密码无法恢复。 - + Choose a name for your rendezvous point 为您的集合点选择一个名称 - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. 如果您的账户尚未备份或添加到其他设备,您的账户和已注册名称将不可挽回地丢失。 - + Launch at startup 启动时运行 - + Enable typing indicators 启用输入状态显示 - - + + Network error 网络错误 - + SSL error SSL 錯誤 - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. 从其他已配置的 Jami 账户输入 PIN 码。使用“关联其他设备”功能获取 PIN 码。 - + Link device 关联设备 - + Conversations 對話 - + Enable 啟用 - + Display or hide preferences 显示或隐藏偏好 - + Add new plugin 添加新插件 - + Select a file 选择文件 - + Select 选择 - + Choose image file 选择图像文件 - + Enter the rendezvous point's name 输入集合点名称 - + Creating rendezvous point… 正在创建集合点… - + Create account from Jami Account Management Server (JAMS) 从 Jami 账户管理服务器 (JAMS) 创建账户 - + Create new rendezvous point 创建新的集合点 - + Create a Jami account 建立 Jami 帳號 - + About Jami 关于 Jami - + Decline contact request 拒绝联系人请求 - + Accept contact request 接受聯絡人請求 - + Automatically check for updates 自动检查更新 - + Ok 确定 - - + + Cancel 取消 - + Accept in audio 以语音接受 - + Accept in video 以视频接受 - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. 您正在查看一个所有除了您以外所有参与者已经离开的对话。将不会有新的互动。 - + Start new conversation 开始新会话 - + Chat Settings 聊天设置 - + Enable read receipts 啟用讀取回條 - + Send and receive receipts indicating that a message have been displayed 发送并接受消息已显示的回执 - + Select a CA certificate 选择 CA 证书 - + Connectivity 连接性 - + Auto Registration After Expired 过期后自动注册 - + Network interface 网络接口 - + Use UPnP 使用 UPnP - + Use TURN 使用 TURN - + TURN address TURN 地址 - + TURN username TURN 使用者名稱 - + TURN password TURN 密碼 - + TURN Realm TURN 域 - + Use STUN 使用 STUN - + STUN address STUN 地址 - + Allow IP Auto Rewrite 允许 IP 自动重写 - + Public address 公开地址 - + Address 地址 - + Port - + Media 媒体 - + Enable video 啟用視訊 - + Video Codecs 视频编码 - + Audio Codecs 音訊編解碼器 - + Name Server 名稱伺服器 - + SDP Session Negotiation (ICE Fallback) SDP 协议握手(当 ICE 协议不受支持) - + Only used during negotiation in case ICE is not supported 仅在不支持 ICE 的情况在协商期间下使用 - + Audio RTP minimum Port 音频 RTP 最小端口 - + Audio RTP maximum Port 音频 RTP 最大端口 - + Video RTP minimum Port 视频 RTP 最小端口 - + Video RTP maximum port 视频 RTP 最大端口 - + Connect to other DHT nodes advertising on your local network. 连接至在本地网络宣告的 DHT 节点 - + OpenDHT Configuration OpenDHT 設定 - + Enable proxy 使用代理 - + Proxy address 代理地址 - + Bootstrap Bootstrap - + Back 前一個 - + Account Settings 帳號設定 - + Account 帳號 - - + + General 一般 - + Plugin 插件 - + Audio/Video 音訊/視訊 - + Audio 音频 - + Microphone 麥克風 - + Select audio input device 选择音频输入设备 - + Output device 輸出裝置 - + Select audio output device 选择音频输出设备 - + Ringtone device 响铃设备 - + Select ringtone output device 选择铃声输出设备 - + Audio manager 音訊管理程式 - + Video 影像 - + Select video device 选择视频设备 - + Device 裝置 - + Resolution 分辨率 - + Select video resolution 选择视频分辨率 - + Enable hardware acceleration 啟用硬體加速 - + Preview unavailable 预览不可用 - + Screen Sharing 屏幕共享 - + Select screen sharing frame rate (frames per second) 选择屏幕共享帧率 (每秒的帧数) - + no video 沒有視訊 - + Backup account here 在此备份账户 - + Backup your account! 備份您的帳號! - + Backup account 备份账户 - + Skip 跳过 - + Success 成功 - + Error 错误 - + Never show me this again 不再向我显示这个 - + Recommended 推荐 - + Jami archive files Jami 封存檔 - + All files 所有檔案 - + Reinstate as contact 恢复为联系人 - + name 姓名 - + Identifier 标识符 - + is recording 正在录制 - + are recording 正在录制 - + Peer stopped recording 对等端已停止录制 - + is calling you 正在呼叫您 - - + + Mute 静音 - - + + Unmute 取消静音 - + Add participant 添加参与者 - + Add participants 添加参与者 - + Chat 聊天 - + More options 更多选项 - + Mosaic 马赛克 - + You are still muted by moderator 您仍然被管理员静音。 - + You are muted by a moderator 您已被管理员静音 - + Moderator 主持人 - + Host 主持人 - + Local and Moderator muted 本机和管理员已静音 - + Moderator muted 管理员已静音 - + Not muted 未静音 - + Cut 剪切 - + Paste 貼上 - + Start video call 開始視訊通話 - + Start audio call 发起语音通话 - + Clear conversation 清除對話 - + Remove conversation 移除会话 - + Remove contact 删除联系人 - + Block contact 阻擋連絡人 - + Contact details 联系人详情 - + Hold 等待 - + Sip input panel Sip 输入面板 - + Transfer call 轉送通話 - + Stop recording 停止錄製 - + Start recording 开始录音 - + Exit full screen 結束全螢幕 - + Share screen 分享畫面 - + Share window 分享視窗 - + Share screen area 分享螢幕區域 - + Share file 分享檔案 - + Select sharing method 选择分享方式 - + View plugin 查看插件 - + No video device 無視訊裝置 - + N/A 未知 - + Lower hand 放下手 - + Raise hand 舉手 - + Hide chat view 隐藏聊天界面 - + Place audio call 開始語音通話 - + Place video call 发起视频通话 - + Show available plugins 顯示可用的外掛程式 - + Add to conversations 新增到對話中 - + Jump to latest 跳到最新 - + {} is typing… {} 正在输入… - + {} are typing… {} 正在输入... - + Several people are typing… 多个人正在输入... - + and - + Enter Jami Account Management Server (JAMS) URL 输入 Jami 账户管理器 (JAMS) 的 URI - + Required 必填 - + Jami Account Management Server URL Jami 账户管理服务器 URL - + Enter your JAMS credentials 输入您的 JAMS 凭据 - + Connect 连接 - + Back to welcome page 返回欢迎页面 - + Choose name 选择名称 - + Choose username 选择用户名 - + Create account 创建账户 - + Confirm password 确认密码 - + Optional 可选 - + Choose a username for your account 为您的账户创建一个用户名 - + Choose a name 選擇名稱 - + Choose your username 设置您的用户名 - + Invalid name 無效的名稱 - + Invalid username 無效的使用者名稱 - + Name already taken 名称已占用 - + Username already taken 已取得的使用者名稱 - + Proxy 代理服務器 - + Server 服务器 - + Create SIP account 创建 SIP 账户 - + Configure an existing SIP account 配置已有的 SIP 账户 - + Backup successful 备份成功 - + Backup failed 备份失败 - + Password changed successfully 密码已成功修改 - + Password change failed 密码修改失败 - + Password set successfully 密码已成功设置 - + Password set failed 密码设置失败 - + Change password 變更密碼 - - + + Set password 設定密碼 - + Change current password 更改当前密码 - + Backup account to a .gz file 备份账户到 .gz 文件 - + Enable account 啟用帳號 - + Set username 设置用户名 - + Registering name 正在注册用户名 - + Register a username 註冊使用者名稱 - + Register username 注册用户名 - + Link a new device to this account 关联一个新设备到该账户 - + Link another device 关联另一台设备 - + Exporting account… 正在导出账户… - + Remove Device 移除裝置 - + Are you sure you wish to remove this device? 您确定要删除此设备吗? - + Linked Devices 关联设备 - + Your PIN is: 您的 PIN 碼為: - + Error connecting to the network. Please try again later. 连接网络失败。 请稍后重试。 - + Do you really want to delete this account? 您确定要删除此账户吗? - + Save new device name 保存新设备名称 - + Edit device name 编辑设备名 - + Unlink device from account 取消设备与账户的关联 - + Select a folder 选择文件夹 - + Enable notifications 启用通知 - + Enable dark theme 启用黑暗主题 - + Keep minimized on close 退出时保持窗口最小化 - + Run application on system startup 系统启动时运行应用 - + Downloads directory [下載] 資料夾 - + Choose download directory 选择下载文件夹 - + Record call 記錄通話 - + Chatview 聊天視窗 - + Display hyperlink previews in the chatview 顯示連結預覽 - + User interface language 使用者介面語言 - + File transfer 文件传输 - + Allow incoming files from unknown contacts 允许接收来自未知联系人的文件 - + Automatically accept incoming files 自动接收文件 - + Accept transfer limit 接受传输限制 - + in MB, 0 = unlimited 单位为 MB,0 为不限制 - + Register 註冊 - + Incorrect password 密码错误 - + Save file 儲存檔案 - + Open location 开启位置 - + Install beta version 安装 beta 版本 - + Check for updates now 現在檢查更新 - + Enable/Disable automatic updates 启用/禁用自动更新 - + toggle automatic updates 自動更新 - + Updates 更新 - + Update 更新 - + A new version of Jami was found Would you like to update now? 发现新版本 Jami 您是否想要现在更新? - + No new version of Jami was found 未发现 Jami 的新版本 - + An error occured when checking for a new version 检查新版本时出错 - + Installer download canceled 安装包下载已取消 - + This will uninstall your current Release version and you can always download the latest Release version on our website 这将卸载您当前的发布版本,您可以随时从我们的网站下载最新发布版本。 - + Network disconnected 网络已断开 - - + + Something went wrong 出了點問題 - + Troubleshoot 排除故障 - + Open logs 打开日志 - + Get logs 获取日志 - + Select a record directory 选择录音文件夹 - + Debug 排障 - + Show Stats 显示状态 - + Start 开始 - + Stop 停止 - + Generating account… 正在生成帳號…… - + Import from backup 从备份文件导入 - + PIN PIN 碼 - + Stop taking photo 停止拍照 - + Clear avatar image 清除头像图片 - + Go back to plugins list 回到外掛程式清單 - + Profile is only shared with contacts 资料仅会与联系人分享 - + Enter your name 输入您的名字 - + Import account from other device 從其他裝置匯入 - + Import account from backup file 从备份文件导入账户 - + Hide advanced features 隐藏高级功能 - + Create new Jami account 建立新 Jami 帳號 - + Create new SIP account 创建新的 SIP 账户 - + Welcome to 欢迎来到 - + Upgrade 升级 - + Later 稍后 - + Local muted 本机已静音 - + Trying to reconnect to the Jami daemon (jamid)… 正在尝试连接至 Jami 守护进程(jamid)... - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 无法连接至 Jami 守护进程(jamid)。 Jami 将立即退出。 - + Is swarm: 是 swarm: - + True - + False - + Add emoji 新增表情符號 - + Send file 傳送檔案 - + Leave audio message 留下語音訊息 - + Leave video message 留下視訊訊息 - + Send 发送 - + Remove 删除 - + Write to %1 写入至 %1 - + %1 has sent you a request for a conversation. %1 已向您发送对话请求。 - + Hello, Would you like to join the conversation? 您好, 您想要加入会话吗? - + You have accepted the conversation request 您已接受 对话请求 - + Waiting until %1 connects to synchronize the conversation. 等待直到 %1 连接以同步对话。 - - + + Copy 複製 - + Participant is still muted on their device 参与者在他们的设备上仍然被静音 - + You are still muted on your device 您在您的设备上仍然被静音 - + View full screen 全螢幕檢視 - + Stop sharing screen or file 停止共享屏幕或文件 - + Display advanced settings 显示高级设置 - + Hide advanced settings 隐藏高级设置 - + Display banned contacts 显示被禁联系人 - + Hide banned contacts 隐藏被屏蔽的联系人 - + Layout 佈局 - + Vertical view 垂直檢視 - + Horizontal view 水平檢視 - + Keyboard Shortcut Table 键盘快捷键列表 - + Conversation 对话 - + Call 撥打 - + Settings 設定 - + Report Bug 报告故障 - + Clear 清除 - + Copied to clipboard! 复制到剪贴板! - + Receive Logs 接收日志 - + Archive 归档 - + Open file 打开文件 - + Create your account from a backup 从备份创建您的账户 - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. 您可在账户设置中点击“导出账户”获得归档。这会在您的设备上创建一个以 .gz 结尾的文件。 - + Restore an account from backup 从备份恢复账户 - + Enter Jami account password 输入 Jami 账户密码 - + The PIN and the account password should be entered in your device within 10 minutes. 您需要在 10 分钟内在您的设备上输入此 PIN 码和账户密码。 - + Close 關閉 - + Enter your account password 输入您的账户密码 - + Add Device 添加设备 - + Enter the password 输入密码 - + Enter current password 输入当前密码 - + Enter this account's password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Enter new password 输入新密码 - + Confirm new password 确认新密码 - + Change 更改 - + Confirm 確認 - + Export 导出 - + Choose a picture as avatar 选择图片作为头像 - + Import avatar from image file 从图像文件导入头像 - + Take photo 照相 - + Reset 重置 - + Select a plugin to install 选择插件进行安装 - + Install plugin 安装插件 - + Save profile 保存资料 - + Information 資訊 - + Enter the account password to confirm the removal of this device 输入此账户的密码,以确认删除本设备 - + Select a screen to share 選取要分享的畫面 - + Select a window to share 選取要分享的視窗 - + All Screens 所有屏幕 - + Screens 屏幕 - + Windows 窗口 - + QR code 二维码 - + Account QR 账户二维码 - + This is your Jami username. Copy and share it with your friends! 這是你的 Jami 使用者名稱。 複製並與你的朋友分享! - + Link this device to an existing account 将此设备关联到已有账户 - + Advanced features 高级功能 - + Show advanced features 显示高级功能 - + Connect to a JAMS server 连接到 JAMS 服务器 - + Add a SIP account 新增 SIP 帳號 - + Error while creating your account. Check your credentials. 创建账户时出错。请检查您的凭据。 - + Clear Text 明文 - + Search Results 搜索结果 - + Delete 刪除 - + Set moderator 设置管理员 - + Unset moderator 取消设置管理员 - + Maximize 最大化 - + Minimize 最小化 - + Hangup 掛斷 - + Conference moderation 会议主持人 - + Default moderators 默认会议主持人 - + Enable local moderators 启用本地会议主持人 - + Make all participants moderators 将所有参加者设置为管理员 - + Add default moderator 添加默认会议主持人 - + Remove default moderator 删除默认会议主持人 @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list 開啟帳號清單 - + Focus conversations list 聚焦会话列表 - + Requests list 请求列表 - + Previous conversation 上一个会话 - + Next conversation 下一个会话 - + Search bar 搜尋列 - + Full screen 全螢幕 - + Start an audio call 发起语音通话 - + Start a video call 開始視訊通話 - + Clear history 清除記錄 - + Block contact 阻擋連絡人 - + Remove conversation 移除会话 - + Accept contact request 接受聯絡人請求 - + Media settings 媒體設定 - + General settings 一般設定 - + Account settings 帳號設定 - + Plugin settings 插件设置 - + Open account creation wizard 開啟帳號建立精靈 - + Open keyboard shortcut table 打开键盘快捷键列表 - + Answer an incoming call 接听来电 - + End call 結束電話 - + Decline the call request 拒絕通話請求 @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit 退出(&X) - + &Quit 退出(&Q) - + &Show Jami 打开 Jami (&S) @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files 图片文件 - + All files 所有文件 @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off 開啟/關閉 @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin 选择插件 - + Preferences 偏好設定 @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload 加载/取消加载 @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin 卸载插件 - + Reset preferences 重置偏好设置 - + Ok 确定 - + Cancel 取消 - + Uninstall 卸载 @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files 插件文件 - + All files 所有文件 - + Installed plugins 已安装的插件 @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference 编辑偏好 @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: 开发者: - + Artwork by: 艺术设计: - + Based on the SFLPhone project 基于 SFLPhone 项目 - + Sending 正在傳送 - + Failure 失败 - + Sent 已发送 - + Connecting 連接中 - + Accept 接收 - + Canceled 已取消 - + Unable to make contact 無法加為聯絡人 - + Ongoing 正在进行 - + Waiting for contact 等待聯絡人 - + Incoming transfer 入站传送 - + Timed out waiting for contact 等待联系人超时 - + Finished 已結束 - + %1 days ago %1 天前 - + one day ago 一天前 - + %1 hours ago %1 小时前 - + one hour ago 一小时前 - + %1 minutes ago %1 分钟前 - + just now 刚才 @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording 通话录音 - + Always record calls 永遠記錄通話 - + Quality 质量 - + Save in 保存至 @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove 删除 @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen 屏幕 @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls 呼叫 - - - - - - + + + + + + Contacts 聯絡人 @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System 系統 - + Enable dark theme 启用黑暗主题 - + Enable desktop notifications 顯示通知 @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer 接通 - + Decline 拒接 - + Open conversation 開啟對話 - + Accept 接收 - + Refuse 拒接 @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity 身份 @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1兆比特/秒 - + Default 預設 - + System 系統 diff --git a/translations/ring_client_windows_zh_TW.ts b/translations/ring_client_windows_zh_TW.ts index f345f0c6..0df0118a 100644 --- a/translations/ring_client_windows_zh_TW.ts +++ b/translations/ring_client_windows_zh_TW.ts @@ -2,7 +2,7 @@ AccountComboBoxPopup - + Add Account 新增帳號 @@ -10,7 +10,7 @@ AccountProfile - + Profile 介紹 @@ -18,12 +18,12 @@ AdvancedCallSettings - + Audio Files 音訊檔案 - + All files 所有檔案 @@ -31,20 +31,20 @@ AdvancedJamiSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -52,20 +52,20 @@ AdvancedSIPSecuritySettings - - + + Certificate File 證書檔案 - - - + + + All files 所有檔案 - + Key File 金鑰檔案 @@ -73,7 +73,7 @@ AdvancedSettings - + Advanced Account Settings 進階帳號設定 @@ -81,7 +81,7 @@ BannedContacts - + Banned Contacts 黑名單聯絡人 @@ -89,32 +89,32 @@ CallAdapter - + Missed call 未接來電 - + Missed call with %1 來自 %1 的未接來電 - + me - + Incoming call 來電 - + %1 is calling you %1 正在與您通話 - + is calling you 正在與您通話 @@ -122,17 +122,17 @@ ContactPicker - + Add to conference 加入會議 - + Transfer this call 轉送此通話 - + Add default moderator 新增預設主持人 @@ -140,12 +140,12 @@ ConversationsAdapter - + New message 新訊息 - + Trust request 信任請求 @@ -153,29 +153,29 @@ CurrentAccountSettings - + Ok 確定 - - + + Success 成功 - - + + Error 錯誤 - + Jami archive files Jami 封存檔 - + All files 所有檔案 @@ -183,7 +183,7 @@ CurrentAccountSettingsScrollPage - + @@ -191,19 +191,19 @@ DaemonReconnectWindow - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 無法重新連線至 Jami 幕後程式 (jamid)。 Jami 將會結束。 - + Trying to reconnect to the Jami daemon (jamid)… 正在嘗試重新連線至 Jami 幕後程式 (jamid)…… - + Ok 確定 @@ -211,7 +211,7 @@ Jami 將會結束。 DeviceItemDelegate - + Device Id 裝置 Id @@ -219,2130 +219,2130 @@ Jami 將會結束。 JamiStrings - + Find a user or search for a conversation 尋找使用者或搜尋對話 - + Search your invitations 搜尋您的邀請 - + Invitations 邀請 - + Jami is free software for universal communication which respects the freedoms and the privacy of its users. Jami 是一套通用通訊的自由軟體,其尊重使用者的自由與隱私。 - + Version 版本 - + Jami is a free software for universal communication which respects the freedom and privacy of its users. Jami 是一套通用通訊的自由軟體,其尊重使用者的自由與隱私。 - + Credits 榮譽 - + Display QR code 顯示 QR code - + Open settings 開啟設定 - + Close settings 關閉設定 - + Authentication required 需要驗證 - + Your session has expired or been revoked on this device. Please enter your password. 您的工作階段已過期或在此裝置上撤銷。請輸入您的密碼。 - + JAMS server JAMS 伺服器 - + Authenticate 驗證 - + Delete account 刪除帳號 - + Authentication failed 驗證失敗 - + Password 密碼 - + Username 使用者名稱 - + Alias 別名 - + Call Settings 通話設定 - + Allow incoming calls from unknown contacts 允許未知聯絡人的來電 - + In progress… 進行中…… - + Accept 接聽 - + Refuse 拒絕 - + Incoming audio call from {} 來自 {} 的音訊來電 - + Incoming video call from {} 來自 {} 的視訊來電 - + Convert your account into a rendezvous point 將您的帳號轉換為 rendezvous 點 - + Automatically answer calls 自動回覆通話 - + Enable custom ringtone 啟用自訂鈴聲 - + Select custom ringtone 選取自訂鈴聲 - + Add a custom ringtone 新增自訂鈴聲 - + Select a new ringtone 選取新鈴聲 - + Voicemail 語音信箱 - + Voicemail dial code 語音信箱撥號代碼 - + Security 安全性 - + Encrypt media streams (SRTP) 加密媒體串流 (SRTP) - + Enable SDES key exchange 啟用 SDES 金鑰交換 - + Allow fallback on RTP 允許汰退至 RTP - + Encrypt negotiation (TLS) 加密協商 (TLS) - + CA certificate CA 證書 - + User certificate 使用者證書 - + Private key 私密金鑰 - + Private key password 私密金鑰密碼 - + Verify certificates for incoming TLS connections 驗證連入的 TLS 連線證書 - + Verify server TLS certificates 驗證伺服器 TLS 證書 - + Require certificate for incoming TLS connections 需要連入的 TLS 連線證書 - + TLS protocol method TLS 協定方法 - + Audio input device selector 音訊輸入裝置選擇器 - + TLS server name TLS 伺服器名稱 - + Negotiation timeout (seconds) 協商逾時(秒) - + Select a private key 選取私鑰 - + Select a user certificate 選取使用者憑證 - + Registration expiration time (seconds) 註冊過期時間(秒) - + Use custom address and port 使用自訂地址與通訊埠 - + Enable local peer discovery 啟用區域夥伴探索 - + Audio and Video Settings 音訊與視訊設定 - + Frames per second 每秒畫面數 - + Select video frame rate (frames per second) 選取視訊畫面率(每秒畫面數) - + Your account only exists on this device. If you lose your device or uninstall the application, your account will be deleted and can not be recovered. You can backup your account now or later. 您的帳號僅存於此裝置上。如果您遺失了您的裝置或解除安裝應用程式,您的帳號將會被刪除且無法復原。您可以立刻備份您的帳號或稍後再做。 - - + + End call 結束通話 - + Pause call 暫停通話 - + Resume call 恢復通話 - + Pause video 暫停影片 - + Resume video 繼續播放影片 - + Creating account… 正在建立帳號…… - + Encrypt account with password 以密碼加密帳號 - + Create a rendezvous point 建立 rendezvous 點 - + Choose a password to encrypt your account on this device. Note that the password cannot be recovered. 選擇密碼以在此裝置上加密您的帳號。請注意,此密碼無法被復原。 - + Choose a name for your rendezvous point 選擇您 rendezvous 點的名稱 - + If your account has not been backed up or added to another device, your account and registered name will be irrevocably lost. 如果您的帳號未備份,或是新增至其他裝置,您的帳號與已註冊的名稱將會不可逆地遺失。 - + Launch at startup 開機時啟動 - + Enable typing indicators 啟用輸入指示器 - - + + Network error 網路錯誤 - + SSL error SSL 錯誤 - + Enter the PIN from another configured Jami account. Use the "Link Another Device" feature to obtain a PIN. 輸入從其他設定好的 Jami 帳號而來的 PIN 碼。使用「連結其他裝置」功能以取得 PIN 碼。 - + Link device 連結裝置 - + Conversations 對話 - + Enable 啟用 - + Display or hide preferences 顯示或隱藏偏好設定 - + Add new plugin 新增新外掛程式 - + Select a file 選取檔案 - + Select 選擇 - + Choose image file 選擇圖片檔 - + Enter the rendezvous point's name 輸入 rendezvous 點名稱 - + Creating rendezvous point… 正在建立 rendezvous 點…… - + Create account from Jami Account Management Server (JAMS) 從 Jami 帳號管理伺服器 (JAMS) 建立帳號 - + Create new rendezvous point 建立新 rendezvous 點 - + Create a Jami account 建立 Jami 帳號 - + About Jami 關於 Jami - + Decline contact request 拒絕聯絡人請求 - + Accept contact request 接受聯絡人請求 - + Automatically check for updates 自動檢查更新 - + Ok 確定 - - + + Cancel 取消 - + Accept in audio 接受音訊 - + Accept in video 接受視訊 - + You are viewing a conversation where all participants other than you have left. New interactions will not be possible. 您正在檢視除了您以外的所有參與者都已離開的對話。因此不會有新的互動。 - + Start new conversation 開始新對話 - + Chat Settings 聊天設定 - + Enable read receipts 啟用讀取回條 - + Send and receive receipts indicating that a message have been displayed 傳送與接收指示訊息已顯示的回條 - + Select a CA certificate 選取 CA 憑證 - + Connectivity 連線 - + Auto Registration After Expired 過期後自動註冊 - + Network interface 網路介面 - + Use UPnP 使用 UPnP - + Use TURN 使用 TURN - + TURN address TURN 地址 - + TURN username TURN 使用者名稱 - + TURN password TURN 密碼 - + TURN Realm TURN 範圍 - + Use STUN 使用 STUN - + STUN address STUN 地址 - + Allow IP Auto Rewrite 允許 IP 自動重寫 - + Public address 公開地址 - + Address 地址 - + Port 連接埠 - + Media 媒體 - + Enable video 啟用視訊 - + Video Codecs 視訊編解碼器 - + Audio Codecs 音訊編解碼器 - + Name Server 名稱伺服器 - + SDP Session Negotiation (ICE Fallback) SDP 工作階段協商(ICE 退回) - + Only used during negotiation in case ICE is not supported 僅在不支援 ICE 的協商期間使用 - + Audio RTP minimum Port 音訊 RTP 最小通訊埠 - + Audio RTP maximum Port 音訊 RTP 最大通訊埠 - + Video RTP minimum Port 視訊 RTP 最小通訊埠 - + Video RTP maximum port 視訊 RTP 最大通訊埠 - + Connect to other DHT nodes advertising on your local network. 連線到我們的區域網路上發佈的其他 DHT 節點。 - + OpenDHT Configuration OpenDHT 設定 - + Enable proxy 啟用代理伺服器 - + Proxy address 代理伺服器地址 - + Bootstrap Bootstrap - + Back 前一個 - + Account Settings 帳號設定 - + Account 帳號 - - + + General 一般 - + Plugin 外掛程式 - + Audio/Video 音訊/視訊 - + Audio 音訊 - + Microphone 麥克風 - + Select audio input device 選取音訊輸入裝置 - + Output device 輸出裝置 - + Select audio output device 選取音訊輸出裝置 - + Ringtone device 鈴聲裝置 - + Select ringtone output device 選取鈴聲輸出裝置 - + Audio manager 音訊管理程式 - + Video 視訊 - + Select video device 選取視訊裝置 - + Device 裝置 - + Resolution 解析度 - + Select video resolution 選取視訊解析度 - + Enable hardware acceleration 啟用硬體加速 - + Preview unavailable 預覽不可用 - + Screen Sharing 螢幕分享 - + Select screen sharing frame rate (frames per second) 選取螢幕分享影格率(每秒影格數) - + no video 沒有視訊 - + Backup account here 在此備份帳號 - + Backup your account! 備份您的帳號! - + Backup account 備份帳號 - + Skip 略過 - + Success 成功 - + Error 錯誤 - + Never show me this again 不要再顯示這個給我看 - + Recommended 建議 - + Jami archive files Jami 封存檔 - + All files 所有檔案 - + Reinstate as contact 恢復為聯絡人 - + name 名稱 - + Identifier 識別碼 - + is recording 正在錄製 - + are recording 正在錄製 - + Peer stopped recording 對方停止錄製 - + is calling you 正在與您通話 - - + + Mute 靜音 - - + + Unmute 取消靜音 - + Add participant 新增參與者 - + Add participants 新增參與者 - + Chat 聊天 - + More options 更多選項 - + Mosaic 馬賽克 - + You are still muted by moderator 您仍被主持人靜音 - + You are muted by a moderator 您被主持人靜音 - + Moderator 主持人 - + Host 主持人 - + Local and Moderator muted 本機與主持人已靜音 - + Moderator muted 主持人已靜音 - + Not muted 未靜音 - + Cut 剪下 - + Paste 貼上 - + Start video call 開始視訊通話 - + Start audio call 開始音訊通話 - + Clear conversation 清除對話 - + Remove conversation 移除對話 - + Remove contact 移除聯絡人 - + Block contact 阻擋連絡人 - + Contact details 聯絡人詳細資訊 - + Hold 通話保留 - + Sip input panel Sip 輸入面板 - + Transfer call 轉送通話 - + Stop recording 停止錄製 - + Start recording 開始錄製 - + Exit full screen 離開全螢幕 - + Share screen 分享畫面 - + Share window 分享視窗 - + Share screen area 分享螢幕區域 - + Share file 分享檔案 - + Select sharing method 選取分享方式 - + View plugin 檢視外掛程式 - + No video device 無視訊裝置 - + N/A N/A - + Lower hand 放下手 - + Raise hand 舉手 - + Hide chat view 隱藏聊天視窗 - + Place audio call 開始語音通話 - + Place video call 撥出視訊通話 - + Show available plugins 顯示可用的外掛程式 - + Add to conversations 新增到對話中 - + Jump to latest 跳到最新 - + {} is typing… {} 正在打字…… - + {} are typing… {} 正在打字…… - + Several people are typing… 數個人正在打字…… - + and - + Enter Jami Account Management Server (JAMS) URL 輸入 Jami 帳號管理伺服器 (JAMS) URL。 - + Required 必填 - + Jami Account Management Server URL Jami 帳號管理伺服器 URL - + Enter your JAMS credentials 輸入您的 JAMS 憑證 - + Connect 連線 - + Back to welcome page 回到歡迎頁面 - + Choose name 選擇名稱 - + Choose username 選擇使用者名稱 - + Create account 建立帳號 - + Confirm password 確認密碼 - + Optional 選擇性 - + Choose a username for your account 為您的帳號選擇一個使用者名稱 - + Choose a name 選擇名稱 - + Choose your username 選擇您的使用者名稱 - + Invalid name 無效的名稱 - + Invalid username 無效的使用者名稱 - + Name already taken 名稱已被使用 - + Username already taken 已取得的使用者名稱 - + Proxy 代理服務器 - + Server 伺服器 - + Create SIP account 建立 SIP 帳號 - + Configure an existing SIP account 設定既有的 SIP 帳號 - + Backup successful 備份成功 - + Backup failed 備份失敗 - + Password changed successfully 密碼變更成功 - + Password change failed 密碼變更失敗 - + Password set successfully 密碼設定成功 - + Password set failed 密碼設定失敗 - + Change password 變更密碼 - - + + Set password 設定密碼 - + Change current password 變更目前密碼 - + Backup account to a .gz file 備份帳號為 .gz 檔案 - + Enable account 啟用帳號 - + Set username 設定使用者名稱 - + Registering name 正在註冊使用者名稱 - + Register a username 註冊使用者名稱 - + Register username 註冊使用者名稱 - + Link a new device to this account 連結新裝置到此帳號 - + Link another device 連結其他裝置 - + Exporting account… 正在匯出帳號…… - + Remove Device 移除裝置 - + Are you sure you wish to remove this device? 您確定您想要移除此裝置嗎? - + Linked Devices 已連結的裝置 - + Your PIN is: 您的 PIN 碼為: - + Error connecting to the network. Please try again later. 連線到網路時發生錯誤。 請稍後再試。 - + Do you really want to delete this account? 您真的想要刪除此帳號嗎? - + Save new device name 儲存新裝置名稱 - + Edit device name 編輯裝置名稱 - + Unlink device from account 從帳號取消連結裝置 - + Select a folder 選取資料夾 - + Enable notifications 啟用通知 - + Enable dark theme 啟用深色佈景主題 - + Keep minimized on close 在關閉時保持最小化 - + Run application on system startup 在系統啟動時執行應用程式 - + Downloads directory [下載] 資料夾 - + Choose download directory 選擇下載目錄 - + Record call 記錄通話 - + Chatview 聊天視窗 - + Display hyperlink previews in the chatview 顯示連結預覽 - + User interface language 使用者介面語言 - + File transfer 檔案傳輸 - + Allow incoming files from unknown contacts 允許未知聯絡人傳來的檔案 - + Automatically accept incoming files 自動接受傳來的檔案 - + Accept transfer limit 接受傳輸限制 - + in MB, 0 = unlimited 以 MB 為單位,0 = 無限制 - + Register 註冊 - + Incorrect password 不正確的密碼 - + Save file 儲存檔案 - + Open location 開啟位置 - + Install beta version 安裝測試版 - + Check for updates now 現在檢查更新 - + Enable/Disable automatic updates 啟用/停用自動更新 - + toggle automatic updates 自動更新 - + Updates 更新 - + Update 更新 - + A new version of Jami was found Would you like to update now? 找到新版的 Jami 您想要現在更新嗎? - + No new version of Jami was found 找不到新版的 Jami - + An error occured when checking for a new version 檢查新版本時遇到錯誤 - + Installer download canceled 安裝程式下載已取消 - + This will uninstall your current Release version and you can always download the latest Release version on our website 這將會解除安裝您目前的版本,而您總是可以在我們的網站上下載最新版本 - + Network disconnected 網路已斷線 - - + + Something went wrong 出了點問題 - + Troubleshoot 疑難排解 - + Open logs 開啟紀錄檔 - + Get logs 取得紀錄檔 - + Select a record directory 選取紀錄目錄 - + Debug 除錯 - + Show Stats 顯示統計資料 - + Start 開始 - + Stop 停止 - + Generating account… 正在生成帳號…… - + Import from backup 從備份匯入 - + PIN PIN 碼 - + Stop taking photo 停止拍照 - + Clear avatar image 清除大頭貼圖片 - + Go back to plugins list 回到外掛程式清單 - + Profile is only shared with contacts 個人檔案僅與聯絡人分享 - + Enter your name 輸入您的名字 - + Import account from other device 從其他裝置匯入 - + Import account from backup file 從備份檔案匯入 - + Hide advanced features 隱藏進階功能 - + Create new Jami account 建立新 Jami 帳號 - + Create new SIP account 建立新 SIP 帳號 - + Welcome to 歡迎來到 - + Upgrade 升級 - + Later 稍後 - + Local muted 本機已靜音 - + Trying to reconnect to the Jami daemon (jamid)… 正在嘗試重新連線至 Jami 幕後程式 (jamid)…… - + Could not re-connect to the Jami daemon (jamid). Jami will now quit. 無法重新連線至 Jami 幕後程式 (jamid)。 Jami 將會結束。 - + Is swarm: 是 swarm: - + True True - + False False - + Add emoji 新增表情符號 - + Send file 傳送檔案 - + Leave audio message 留下語音訊息 - + Leave video message 留下視訊訊息 - + Send 傳送 - + Remove 移除 - + Write to %1 寫入至 %1 - + %1 has sent you a request for a conversation. %1 已向您傳送對話要求。 - + Hello, Would you like to join the conversation? 您好, 您想要加入對話嗎? - + You have accepted the conversation request 您已接受 對話請求。 - + Waiting until %1 connects to synchronize the conversation. 等待 %1 連線以同步對話。 - - + + Copy 複製 - + Participant is still muted on their device 參與者在他們的裝置上仍為靜音 - + You are still muted on your device 您在您的裝置上仍處於靜音狀態 - + View full screen 檢視全螢幕 - + Stop sharing screen or file 停止分享畫面或檔案 - + Display advanced settings 顯示進階設定 - + Hide advanced settings 隱藏進階設定 - + Display banned contacts 顯示被封鎖的聯絡人 - + Hide banned contacts 隱藏黑名單聯絡人 - + Layout 佈局 - + Vertical view 垂直檢視 - + Horizontal view 水平檢視 - + Keyboard Shortcut Table 鍵盤快捷鍵表格 - + Conversation 對話 - + Call 通話 - + Settings 設定 - + Report Bug 回報臭蟲 - + Clear 清除 - + Copied to clipboard! 已複製到剪貼簿! - + Receive Logs 接收紀錄檔 - + Archive 封存 - + Open file 開啟檔案 - + Create your account from a backup 從備份建立您的帳號 - + You can obtain an archive by clicking on "Backup account" in the account settings. This will create a .gz file on your device. 您可以透過點選帳號設定中的「備份帳號」來取得封存。這會在您的裝置上建立一個 .gz 檔案。 - + Restore an account from backup 從備份恢復帳號 - + Enter Jami account password 輸入 Jami 帳號密碼 - + The PIN and the account password should be entered in your device within 10 minutes. PIN 碼與帳號密碼應該在您的裝置上於10分鐘內輸入。 - + Close 關閉 - + Enter your account password 輸入您的帳號密碼 - + Add Device 新增裝置 - + Enter the password 輸入密碼 - + Enter current password 輸入目前密碼 - + Enter this account's password to confirm the removal of this device 輸入這個帳號的密碼以確認移除此裝置 - + Enter new password 輸入新密碼 - + Confirm new password 確認新密碼 - + Change 變更 - + Confirm 確認 - + Export 匯出 - + Choose a picture as avatar 選擇要成為大頭貼的圖片 - + Import avatar from image file 從圖片檔匯入大頭貼 - + Take photo 照相 - + Reset 重設 - + Select a plugin to install 選取要安裝的外掛程式 - + Install plugin 安裝外掛程式 - + Save profile 儲存個人檔案 - + Information 資訊 - + Enter the account password to confirm the removal of this device 輸入帳號密碼以確認移除此裝置 - + Select a screen to share 選取要分享的畫面 - + Select a window to share 選取要分享的視窗 - + All Screens 所有畫面 - + Screens 畫面 - + Windows 視窗 - + QR code QR code - + Account QR 帳號 QR code - + This is your Jami username. Copy and share it with your friends! 這是你的 Jami 使用者名稱。 複製並與你的朋友分享! - + Link this device to an existing account 連結此裝置到既有的帳號 - + Advanced features 進階功能 - + Show advanced features 顯示進階功能 - + Connect to a JAMS server 連線至 JAMS 伺服器 - + Add a SIP account 新增 SIP 帳號 - + Error while creating your account. Check your credentials. 建立您的帳號時發生錯誤。請檢查您的憑證。 - + Clear Text 清除文字 - + Search Results 搜尋結果 - + Delete 刪除 - + Set moderator 設定主持人 - + Unset moderator 取消設定主持人 - + Maximize 最大化 - + Minimize 最小化 - + Hangup 掛斷 - + Conference moderation 會議主持 - + Default moderators 預設主持人 - + Enable local moderators 啟用本機主持人 - + Make all participants moderators 讓所有參與者都變成主持人 - + Add default moderator 新增預設主持人 - + Remove default moderator 移除預設主持人 @@ -2350,112 +2350,112 @@ Copy and share it with your friends! KeyboardShortcutTable - + Open account list 開啟帳號清單 - + Focus conversations list 聚焦於對話清單 - + Requests list 請求清單 - + Previous conversation 前一個對話 - + Next conversation 下一個對話 - + Search bar 搜尋列 - + Full screen 全螢幕 - + Start an audio call 開始音訊通話 - + Start a video call 開始視訊通話 - + Clear history 清除記錄 - + Block contact 阻擋連絡人 - + Remove conversation 移除對話 - + Accept contact request 接受聯絡人請求 - + Media settings 媒體設定 - + General settings 一般設定 - + Account settings 帳號設定 - + Plugin settings 外掛程式設定 - + Open account creation wizard 開啟帳號建立精靈 - + Open keyboard shortcut table 開啟鍵盤快捷鍵表格 - + Answer an incoming call 接聽來電 - + End call 結束通話 - + Decline the call request 拒絕通話請求 @@ -2463,17 +2463,17 @@ Copy and share it with your friends! MainApplication - + E&xit 離開(&X) - + &Quit 結束(&Q) - + &Show Jami 顯示 Jami(&S) @@ -2481,12 +2481,12 @@ Copy and share it with your friends! PhotoboothView - + Image Files 圖片檔 - + All files 所有檔案 @@ -2494,7 +2494,7 @@ Copy and share it with your friends! PluginHandlerItemDelegate - + On/Off 開啟/關閉 @@ -2502,12 +2502,12 @@ Copy and share it with your friends! PluginHandlerPicker - + Choose plugin 選擇外掛程式 - + Preferences 偏好設定 @@ -2515,7 +2515,7 @@ Copy and share it with your friends! PluginItemDelegate - + Load/Unload 載入/取消載入 @@ -2523,27 +2523,27 @@ Copy and share it with your friends! PluginListPreferencesView - + Uninstall plugin 解除安裝外掛程式 - + Reset preferences 重設偏好設定 - + Ok 確定 - + Cancel 取消 - + Uninstall 解除安裝 @@ -2551,17 +2551,17 @@ Copy and share it with your friends! PluginListSettingsView - + Plugin Files 外掛程式檔案 - + All files 所有檔案 - + Installed plugins 已安裝的外掛程式 @@ -2569,7 +2569,7 @@ Copy and share it with your friends! PreferenceItemDelegate - + Edit preference 編輯偏好設定 @@ -2577,107 +2577,107 @@ Copy and share it with your friends! QObject - + Created by: 建立由: - + Artwork by: 美術由: - + Based on the SFLPhone project 基於 SFLPhone 專案 - + Sending 正在傳送 - + Failure 失敗 - + Sent 已傳送 - + Connecting 連接中 - + Accept 接聽 - + Canceled 已取消 - + Unable to make contact 無法加為聯絡人 - + Ongoing 進行中 - + Waiting for contact 等待聯絡人 - + Incoming transfer 來電轉發 - + Timed out waiting for contact 等待聯絡人逾時 - + Finished 已結束 - + %1 days ago %1 天前 - + one day ago 1 天前 - + %1 hours ago %1 小時前 - + one hour ago 1 小時前 - + %1 minutes ago %1 分鐘前 - + just now 現在 @@ -2685,22 +2685,22 @@ Copy and share it with your friends! RecordingSettings - + Call Recording 通話錄音 - + Always record calls 永遠記錄通話 - + Quality 品質 - + Save in 儲存在 @@ -2708,7 +2708,7 @@ Copy and share it with your friends! RevokeDevicePasswordDialog - + Remove 移除 @@ -2716,7 +2716,7 @@ Copy and share it with your friends! SelectScreen - + Screen 畫面 @@ -2724,7 +2724,7 @@ Copy and share it with your friends! SettingParaCombobox - + @@ -2732,22 +2732,22 @@ Copy and share it with your friends! SmartListModel - - - - - - + + + + + + Calls 通話 - - - - - - + + + + + + Contacts 聯絡人 @@ -2755,17 +2755,17 @@ Copy and share it with your friends! SystemSettings - + System 系統 - + Enable dark theme 啟用深色佈景主題 - + Enable desktop notifications 顯示通知 @@ -2773,27 +2773,27 @@ Copy and share it with your friends! SystemTray - + Answer 回覆 - + Decline 拒絕 - + Open conversation 開啟對話 - + Accept 接聽 - + Refuse 拒絕 @@ -2801,7 +2801,7 @@ Copy and share it with your friends! UserIdentity - + Identity 身份 @@ -2809,17 +2809,17 @@ Copy and share it with your friends! UtilsAdapter - + %1 Mbps %1兆比特/秒 - + Default 預設 - + System 系統