├── .gitlab-ci.yml ├── .gitmodules ├── .tx └── config ├── CMakeLists.txt ├── README.md ├── build-ffmpeg.sh ├── nsis └── veyon-addons.nsi.in ├── prepare-build.sh └── translations ├── CMakeLists.txt ├── addons.ts ├── addons_ar.ts ├── addons_bg.ts ├── addons_ca_ES.ts ├── addons_cs.ts ├── addons_de.ts ├── addons_el.ts ├── addons_es_ES.ts ├── addons_et.ts ├── addons_eu.ts ├── addons_fr.ts ├── addons_hr.ts ├── addons_hu.ts ├── addons_id.ts ├── addons_it.ts ├── addons_ja.ts ├── addons_ko.ts ├── addons_lt.ts ├── addons_lv.ts ├── addons_nl.ts ├── addons_pl.ts ├── addons_pt_BR.ts ├── addons_ru.ts ├── addons_sk.ts ├── addons_sl.ts ├── addons_sr.ts ├── addons_sv.ts ├── addons_th.ts ├── addons_tr.ts ├── addons_uk.ts ├── addons_zh_CN.ts └── addons_zh_TW.ts /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | stages: 2 | - build 3 | - collect 4 | 5 | build-windows: 6 | stage: build 7 | image: $CI_REGISTRY/veyon/ci-mingw-w64:4.9 8 | script: 9 | - ./prepare-build.sh 10 | - cd veyon && .ci/windows/build.sh $ARCH addons-binaries && cd .. 11 | - mv veyon/veyon-addons-* . 12 | parallel: 13 | matrix: 14 | - ARCH: [i686, x86_64] 15 | artifacts: 16 | paths: [ "veyon-addons*" ] 17 | 18 | build-linux: 19 | stage: build 20 | image: veyon/ci.linux.$DISTRO:latest 21 | script: 22 | - ./prepare-build.sh 23 | - cd veyon && .ci/linux.$DISTRO/script.sh $CI_PROJECT_DIR/veyon $CI_PROJECT_DIR/build addons && cd .. 24 | - mv veyon/veyon-addons* . 25 | parallel: 26 | matrix: 27 | - DISTRO: 28 | - debian.11 29 | - debian.12 30 | - fedora.41 31 | - fedora.42 32 | - opensuse.15.6 33 | - opensuse.tumbleweed 34 | - rhel.8 35 | - rhel.9 36 | - ubuntu.20.04 37 | - ubuntu.22.04 38 | - ubuntu.24.04 39 | artifacts: 40 | paths: [ "veyon-addons*" ] 41 | 42 | collect-artifacts: 43 | stage: collect 44 | dependencies: [ build-linux ] 45 | script: 46 | - ls -la *.deb *.rpm 47 | artifacts: 48 | paths: [ "veyon-addons*" ] 49 | image: veyon/ci.linux.debian.buster:latest 50 | 51 | variables: 52 | CMAKE_FLAGS: "-DWITH_CORE_ONLY=ON -DWITH_ADDONS=ON -DCPACK_PACKAGE_NAME=veyon-addons" 53 | GIT_SUBMODULE_STRATEGY: recursive 54 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "licensing"] 2 | path = licensing 3 | url = ../licensing 4 | branch = master 5 | [submodule "ldap-pro"] 6 | path = ldap-pro 7 | url = ../ldap-pro 8 | branch = master 9 | [submodule "network-discovery"] 10 | path = network-discovery 11 | url = ../network-discovery 12 | branch = master 13 | [submodule "internet-access-control"] 14 | path = internet-access-control 15 | url = ../internet-access-control 16 | branch = master 17 | [submodule "veyon"] 18 | path = veyon 19 | url = ../veyon 20 | branch = master 21 | [submodule "chat"] 22 | path = chat 23 | url = ../chat.git 24 | [submodule "screenrecorder"] 25 | path = screenrecorder 26 | url = ../screenrecorder.git 27 | [submodule "entra-id-connector"] 28 | path = entra-id-connector 29 | url = ../entra-id-connector 30 | branch = main 31 | [submodule "auvidus"] 32 | path = auvidus 33 | url = ../auvidus.git 34 | branch = main 35 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [o:veyon-solutions:p:veyon:r:addons_49] 5 | file_filter = translations/addons_.ts 6 | source_file = translations/addons.ts 7 | source_lang = en 8 | minimum_perc = 5 9 | type = QT 10 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_custom_target(addons) 2 | 3 | set(CPACK_DEB_COMPONENT_INSTALL ON PARENT_SCOPE) 4 | set(CPACK_RPM_COMPONENT_INSTALL ON PARENT_SCOPE) 5 | 6 | macro(configure_cpack_component PACKAGE_NAME COMPONENT_NAME DISPLAY_NAME) 7 | set(CPACK_COMPONENT_${COMPONENT_NAME}_DISPLAY_NAME "${DISPLAY_NAME}" PARENT_SCOPE) 8 | set(CPACK_COMPONENT_${COMPONENT_NAME}_DESCRIPTION "${DISPLAY_NAME}" PARENT_SCOPE) 9 | if(${CPACK_GENERATOR} STREQUAL "DEB") 10 | unset(CPACK_PACKAGE_DESCRIPTION_SUMMARY PARENT_SCOPE) 11 | if(NOT ${PACKAGE_NAME} STREQUAL "veyon-addons") 12 | set(CPACK_DEBIAN_ENABLE_COMPONENT_DEPENDS ON PARENT_SCOPE) 13 | set(CPACK_COMPONENT_${COMPONENT_NAME}_DEPENDS "Unspecified" PARENT_SCOPE) 14 | endif() 15 | set(CPACK_DEBIAN_${COMPONENT_NAME}_PACKAGE_NAME "${PACKAGE_NAME}" PARENT_SCOPE) 16 | endif() 17 | if(${CPACK_GENERATOR} STREQUAL "RPM") 18 | set(CPACK_RPM_${COMPONENT_NAME}_PACKAGE_NAME "${PACKAGE_NAME}" PARENT_SCOPE) 19 | set(CPACK_RPM_${COMPONENT_NAME}_PACKAGE_SUMMARY "${DISPLAY_NAME}" PARENT_SCOPE) 20 | if(NOT ${PACKAGE_NAME} STREQUAL "veyon-addons") 21 | set(CPACK_RPM_${COMPONENT_NAME}_PACKAGE_REQUIRES "veyon-addons" PARENT_SCOPE) 22 | endif() 23 | endif() 24 | endmacro() 25 | 26 | configure_cpack_component("veyon-addons" "UNSPECIFIED" "Veyon Add-ons") 27 | configure_cpack_component("veyon-addons-screenrecorder" "SCREENRECORDER" "Veyon ScreenRecorder Add-on") 28 | 29 | add_subdirectory(translations) 30 | add_subdirectory(auvidus) 31 | add_subdirectory(chat) 32 | add_subdirectory(entra-id-connector) 33 | add_subdirectory(internet-access-control) 34 | add_subdirectory(licensing) 35 | add_subdirectory(ldap-pro) 36 | add_subdirectory(network-discovery) 37 | add_subdirectory(screenrecorder) 38 | 39 | set(NSI "veyon-addons.nsi") 40 | 41 | configure_file(nsis/${NSI}.in nsis/${NSI} @ONLY) 42 | 43 | set(ADDONS_BINARIES "${CMAKE_BINARY_DIR}/veyon-addons-${VEYON_WINDOWS_ARCH}-${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}.${VERSION_BUILD}") 44 | 45 | set(DLLDIR "${MINGW_PREFIX}/bin") 46 | set(LIBDIR "${MINGW_PREFIX}/lib") 47 | 48 | add_custom_target(addons-binaries 49 | COMMAND rm -rf ${ADDONS_BINARIES} 50 | COMMAND mkdir -p ${ADDONS_BINARIES}/plugins 51 | COMMAND find -name '*.dll' -exec cp '{}' ${ADDONS_BINARIES}/plugins/ '\;' 52 | COMMAND rm ${ADDONS_BINARIES}/plugins/lib*.dll 53 | COMMAND mkdir -p ${ADDONS_BINARIES}/translations 54 | COMMAND cp translations/*qm ${ADDONS_BINARIES}/translations/ 55 | COMMAND cp -r ${CMAKE_SOURCE_DIR}/COPYING ${ADDONS_BINARIES} 56 | COMMAND cp -r ${CMAKE_SOURCE_DIR}/nsis ${ADDONS_BINARIES} 57 | COMMAND cp nsis/${NSI} ${ADDONS_BINARIES} 58 | COMMAND mkdir -p ${ADDONS_BINARIES}/tls 59 | COMMAND cp ${DLLDIR}/avcodec*.dll ${DLLDIR}/avformat*.dll ${DLLDIR}/avutil*.dll ${DLLDIR}/swscale*.dll ${DLLDIR}/libx264*.dll ${ADDONS_BINARIES} 60 | COMMAND find ${ADDONS_BINARIES} -name "*.dll" -exec ${MINGW_TOOL_PREFIX}strip '{}' '\;' 61 | DEPENDS 62 | addons 63 | ) 64 | 65 | add_custom_target(addons-nsi 66 | COMMAND makensis ${ADDONS_BINARIES}/${NSI} 67 | COMMAND mv ${ADDONS_BINARIES}/veyon-*setup.exe ${CMAKE_BINARY_DIR} 68 | DEPENDS addons-binaries 69 | ) 70 | 71 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Veyon Add-ons 2 | 3 | This repository provides Veyon Add-on downloads. More information are available at https://veyon.io/addons 4 | -------------------------------------------------------------------------------- /build-ffmpeg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sudo apt install g++-mingw-w64 nasm 4 | 5 | for target in i686 x86_64; do 6 | mkdir build-$target 7 | cd build-$target 8 | ../ffmpeg/configure --prefix=/usr/$target-w64-mingw32 --cross-prefix=$target-w64-mingw32- --target-os=mingw32 --arch=$target --enable-shared --disable-static --disable-everything --disable-gpl --enable-decoder=h264,rawvideo --enable-encoder=h264_mf --enable-indev=lavfi --enable-filter=nullsrc --enable-parser=h264,mpeg4video --enable-protocol=file --enable-demuxer=h264,mpegvideo,mov --enable-muxer=h264,mp4,mov 9 | make 10 | cd .. 11 | done 12 | -------------------------------------------------------------------------------- /nsis/veyon-addons.nsi.in: -------------------------------------------------------------------------------- 1 | !define APP_NAME "Veyon Add-ons" 2 | !define COMP_NAME "Veyon Solutions" 3 | !define WEB_SITE "https://veyon.io" 4 | !define VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@.@VERSION_BUILD@" 5 | !define COPYRIGHT "2020-2025 Veyon Solutions" 6 | !define DESCRIPTION "Veyon Add-ons Installer" 7 | !define LICENSE_TXT "COPYING" 8 | !define INSTALLER_NAME "veyon-addons-${VERSION}-@VEYON_WINDOWS_ARCH@-setup.exe" 9 | !define INSTALL_TYPE "SetShellVarContext all" 10 | !define REG_ROOT "HKLM" 11 | 12 | ###################################################################### 13 | 14 | VIProductVersion "${VERSION}" 15 | VIAddVersionKey "ProductName" "${APP_NAME}" 16 | VIAddVersionKey "CompanyName" "${COMP_NAME}" 17 | VIAddVersionKey "LegalCopyright" "${COPYRIGHT}" 18 | VIAddVersionKey "FileDescription" "${DESCRIPTION}" 19 | VIAddVersionKey "ProductVersion" "${VERSION}" 20 | VIAddVersionKey "FileVersion" "${VERSION}" 21 | 22 | ###################################################################### 23 | 24 | SetCompressor /SOLID Lzma 25 | Name "${APP_NAME}" 26 | Caption "${APP_NAME} ${VERSION}" 27 | OutFile "${INSTALLER_NAME}" 28 | BrandingText "${APP_NAME} ${VERSION}" 29 | XPStyle on 30 | #InstallDirRegKey "${REG_ROOT}" "${REG_APP_PATH}" "" 31 | InstallDir "$PROGRAMFILES64\Veyon" 32 | ShowInstDetails show 33 | RequestExecutionLevel admin 34 | 35 | ###################################################################### 36 | 37 | !include "LogicLib.nsh" 38 | !include "MUI2.nsh" 39 | !include "FileFunc.nsh" 40 | 41 | !define MUI_ABORTWARNING 42 | 43 | !define MUI_WELCOMEFINISHPAGE_BITMAP "nsis/welcome-page.bmp" 44 | 45 | !define MUI_ICON "nsis/installer.ico" 46 | !define MUI_HEADERIMAGE 47 | !define MUI_HEADERIMAGE_BITMAP "nsis/header.bmp" 48 | !define MUI_HEADERIMAGE_RIGHT 49 | 50 | !insertmacro MUI_PAGE_WELCOME 51 | 52 | #!insertmacro MUI_PAGE_LICENSE "${LICENSE_TXT}" 53 | 54 | !insertmacro MUI_PAGE_DIRECTORY 55 | 56 | !insertmacro MUI_PAGE_INSTFILES 57 | 58 | !insertmacro MUI_PAGE_FINISH 59 | 60 | !insertmacro MUI_LANGUAGE "English" ;first language is the default language 61 | !insertmacro MUI_LANGUAGE "Afrikaans" 62 | !insertmacro MUI_LANGUAGE "Albanian" 63 | !insertmacro MUI_LANGUAGE "Arabic" 64 | !insertmacro MUI_LANGUAGE "Basque" 65 | !insertmacro MUI_LANGUAGE "Belarusian" 66 | !insertmacro MUI_LANGUAGE "Bosnian" 67 | !insertmacro MUI_LANGUAGE "Breton" 68 | !insertmacro MUI_LANGUAGE "Bulgarian" 69 | !insertmacro MUI_LANGUAGE "Catalan" 70 | !insertmacro MUI_LANGUAGE "Croatian" 71 | !insertmacro MUI_LANGUAGE "Czech" 72 | !insertmacro MUI_LANGUAGE "Danish" 73 | !insertmacro MUI_LANGUAGE "Dutch" 74 | !insertmacro MUI_LANGUAGE "Esperanto" 75 | !insertmacro MUI_LANGUAGE "Estonian" 76 | !insertmacro MUI_LANGUAGE "Farsi" 77 | !insertmacro MUI_LANGUAGE "Finnish" 78 | !insertmacro MUI_LANGUAGE "French" 79 | !insertmacro MUI_LANGUAGE "Galician" 80 | !insertmacro MUI_LANGUAGE "German" 81 | !insertmacro MUI_LANGUAGE "Greek" 82 | !insertmacro MUI_LANGUAGE "Hebrew" 83 | !insertmacro MUI_LANGUAGE "Hungarian" 84 | !insertmacro MUI_LANGUAGE "Icelandic" 85 | !insertmacro MUI_LANGUAGE "Indonesian" 86 | !insertmacro MUI_LANGUAGE "Irish" 87 | !insertmacro MUI_LANGUAGE "Italian" 88 | !insertmacro MUI_LANGUAGE "Japanese" 89 | !insertmacro MUI_LANGUAGE "Korean" 90 | !insertmacro MUI_LANGUAGE "Kurdish" 91 | !insertmacro MUI_LANGUAGE "Latvian" 92 | !insertmacro MUI_LANGUAGE "Lithuanian" 93 | !insertmacro MUI_LANGUAGE "Luxembourgish" 94 | !insertmacro MUI_LANGUAGE "Macedonian" 95 | !insertmacro MUI_LANGUAGE "Malay" 96 | !insertmacro MUI_LANGUAGE "Mongolian" 97 | !insertmacro MUI_LANGUAGE "Norwegian" 98 | !insertmacro MUI_LANGUAGE "NorwegianNynorsk" 99 | !insertmacro MUI_LANGUAGE "Polish" 100 | !insertmacro MUI_LANGUAGE "Portuguese" 101 | !insertmacro MUI_LANGUAGE "PortugueseBR" 102 | !insertmacro MUI_LANGUAGE "Romanian" 103 | !insertmacro MUI_LANGUAGE "Russian" 104 | !insertmacro MUI_LANGUAGE "Serbian" 105 | !insertmacro MUI_LANGUAGE "SerbianLatin" 106 | !insertmacro MUI_LANGUAGE "SimpChinese" 107 | !insertmacro MUI_LANGUAGE "Slovak" 108 | !insertmacro MUI_LANGUAGE "Slovenian" 109 | !insertmacro MUI_LANGUAGE "Spanish" 110 | !insertmacro MUI_LANGUAGE "SpanishInternational" 111 | !insertmacro MUI_LANGUAGE "Swedish" 112 | !insertmacro MUI_LANGUAGE "Thai" 113 | !insertmacro MUI_LANGUAGE "TradChinese" 114 | !insertmacro MUI_LANGUAGE "Turkish" 115 | !insertmacro MUI_LANGUAGE "Ukrainian" 116 | !insertmacro MUI_LANGUAGE "Uzbek" 117 | !insertmacro MUI_LANGUAGE "Welsh" 118 | 119 | !insertmacro MUI_RESERVEFILE_LANGDLL 120 | 121 | ###################################################################### 122 | 123 | Section 124 | ClearErrors 125 | ExecWait '"$INSTDIR\veyon-wcli.exe" service stop' 126 | SetOverwrite on 127 | SetOutPath "$INSTDIR" 128 | File "*.dll" 129 | SetOutPath "$INSTDIR\plugins" 130 | File "plugins/*.dll" 131 | SetOutPath "$INSTDIR\translations" 132 | File "translations/*.qm" 133 | ExecWait '"$INSTDIR\veyon-wcli.exe" service start' 134 | SectionEnd 135 | 136 | 137 | ###################################################################### 138 | 139 | Function .onInit 140 | UserInfo::GetAccountType 141 | pop $0 142 | ${If} $0 != "admin" 143 | MessageBox mb_iconstop "Please run the installer with administrative rights!" 144 | SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED 145 | Quit 146 | ${EndIf} 147 | FunctionEnd 148 | 149 | ###################################################################### 150 | 151 | -------------------------------------------------------------------------------- /prepare-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ln -s $(pwd) veyon/addons 4 | -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(CreateTranslations) 2 | 3 | file(GLOB addon_translations ${CMAKE_CURRENT_SOURCE_DIR}/*.ts) 4 | file(GLOB_RECURSE addon_sources 5 | ${CMAKE_CURRENT_SOURCE_DIR}/../*.cpp 6 | ${CMAKE_CURRENT_SOURCE_DIR}/../*.h 7 | ${CMAKE_CURRENT_SOURCE_DIR}/../*.ui 8 | ${CMAKE_CURRENT_SOURCE_DIR}/../*.qml 9 | ) 10 | 11 | string(REGEX REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/../veyon[^;]+;?" "" addon_sources "${addon_sources}") 12 | string(REGEX REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/../internet-access-control/3rdparty[^;]+;?" "" addon_sources "${addon_sources}") 13 | 14 | create_translations(addons "${addon_translations}" "${addon_sources}") 15 | 16 | add_dependencies(addons addons-translations) 17 | -------------------------------------------------------------------------------- /translations/addons_bg.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | AuvidusConfigurationPage 4 | 5 | Auvidus 6 | 7 | 8 | 9 | USB device control 10 | 11 | 12 | 13 | Block USB storage devices 14 | 15 | 16 | 17 | 18 | AuvidusPlugin 19 | 20 | Audio control 21 | 22 | 23 | 24 | Mute or unmute speakers, headsets and microphones. 25 | 26 | 27 | 28 | Mute audio outputs 29 | 30 | 31 | 32 | Click to mute speakers, headsets etc. 33 | 34 | 35 | 36 | Unmute audio outputs 37 | 38 | 39 | 40 | Mute microphones 41 | 42 | 43 | 44 | Click to mute microphones. 45 | 46 | 47 | 48 | Unmute microphones 49 | 50 | 51 | 52 | Device control 53 | 54 | 55 | 56 | Disable webcams 57 | 58 | 59 | 60 | Click to disable webcams. 61 | 62 | 63 | 64 | All speakers are now muted. 65 | 66 | 67 | 68 | All microphones are now muted. 69 | 70 | 71 | 72 | All webcams are now disabled. 73 | 74 | 75 | 76 | Since you're using a demo version of this add-on, the previous state will be restored in 3 minutes automatically. 77 | 78 | 79 | 80 | Manage access to audio, video and USB devices 81 | 82 | 83 | 84 | Control webcams and USB devices 85 | 86 | 87 | 88 | Unlock webcams 89 | 90 | 91 | 92 | Click to enable webcams again. 93 | 94 | 95 | 96 | Disable USB drives 97 | 98 | 99 | 100 | Unlock USB drives 101 | 102 | 103 | 104 | All USB drives are now disabled. 105 | 106 | 107 | 108 | Click to unmute microphones again. 109 | 110 | 111 | 112 | Click to disable USB storage devices. 113 | 114 | 115 | 116 | Click to enable USB storage devices again. 117 | 118 | 119 | 120 | Click to unmute speakers, headsets etc. again. 121 | 122 | 123 | 124 | 125 | ChatConfigurationPage 126 | 127 | Chat 128 | 129 | 130 | 131 | General settings 132 | 133 | 134 | 135 | Allow plain text messages only 136 | 137 | 138 | 139 | Nicknames 140 | 141 | 142 | 143 | Login names of users 144 | 145 | 146 | 147 | Full names of users 148 | 149 | 150 | 151 | Allow users to change their nicknames 152 | 153 | 154 | 155 | 156 | ChatPlugin 157 | 158 | Chat 159 | 160 | 161 | 162 | Click this button to start a chat with all users. Then all users can write text messages in a common chat. 163 | 164 | 165 | 166 | %2 Chat 167 | 168 | 169 | 170 | Interactive chat with logged on users 171 | 172 | 173 | 174 | 175 | ChatWindow 176 | 177 | Veyon Chat 178 | 179 | 180 | 181 | Chat title 182 | 183 | 184 | 185 | Nickname 186 | 187 | 188 | 189 | Type a new message 190 | 191 | 192 | 193 | Close chat 194 | 195 | 196 | 197 | Change chat title 198 | 199 | 200 | 201 | Please enter a new title for the chat: 202 | 203 | 204 | 205 | Change nickname 206 | 207 | 208 | 209 | Please enter a new nickname: 210 | 211 | 212 | 213 | 214 | EntraIdConnectorConfigurationPage 215 | 216 | Entra ID Connector 217 | 218 | 219 | 220 | Basic settings 221 | Basic settings 222 | 223 | 224 | Tenant ID 225 | 226 | 227 | 228 | Application (client) ID 229 | 230 | 231 | 232 | Client secret 233 | 234 | 235 | 236 | Authentication mechanism 237 | 238 | 239 | 240 | Microsoft Authentication Library (MSAL) 241 | 242 | 243 | 244 | OAuth 2.0 245 | 246 | 247 | 248 | Request timeout 249 | 250 | 251 | 252 | Domain name 253 | 254 | 255 | 256 | Filters 257 | 258 | 259 | 260 | Users filter 261 | 262 | 263 | 264 | Devices filter 265 | 266 | 267 | 268 | User groups filter 269 | 270 | 271 | 272 | Device groups filter 273 | 274 | 275 | 276 | Use location attribute of device 277 | 278 | 279 | 280 | Extract from hostname via regular expression 281 | 282 | 283 | 284 | Regular expression 285 | 286 | 287 | 288 | Query limit 289 | 290 | 291 | 292 | Entra ID configuration check 293 | 294 | 295 | 296 | An access token for Entra ID has been obtained successfully. 297 | 298 | 299 | 300 | Entra ID test failed 301 | 302 | 303 | 304 | Entra ID test successful 305 | 306 | 307 | 308 | %1 %2 have been queried successfully: 309 | 310 | %3 311 | %1 %2 have been queried successfully: 312 | 313 | %3 314 | 315 | 316 | users 317 | users 318 | 319 | 320 | Test access 321 | 322 | 323 | 324 | Entra ID access 325 | 326 | 327 | 328 | user groups 329 | user groups 330 | 331 | 332 | device groups 333 | 334 | 335 | 336 | device locations 337 | 338 | 339 | 340 | Location mapping mode 341 | 342 | 343 | 344 | Could not query any %1. Please check the API permissions (%2) for the registered app in your Microsoft Entra admin center and the "%3" parameter on this page. 345 | 346 | 347 | 348 | Could not query any device locations. Please check the API permissions (%1) for the registered app in your Microsoft Entra admin center and the "%2", "%3" and "%4" parameters on this page. 349 | 350 | 351 | 352 | devices 353 | 354 | 355 | 356 | e.g. startsWith(displayName, 'PC') 357 | 358 | 359 | 360 | e.g. startsWith(displayName, 'Room') 361 | 362 | 363 | 364 | Locations 365 | Locations 366 | 367 | 368 | Use device groups 369 | 370 | 371 | 372 | e.g. description 373 | 374 | 375 | 376 | Device group attribute to use as location name 377 | 378 | 379 | 380 | Client certificate path 381 | 382 | 383 | 384 | Client certificate file 385 | 386 | 387 | 388 | PEM files (*.pem) 389 | 390 | 391 | 392 | Could not obtain an access token for Entra ID. Please check the tenant ID, application (client) ID and the client secret or certificate path. 393 | 394 | 395 | 396 | Client certificate with private key file 397 | 398 | 399 | 400 | Specify path to client certificate file containing the private key. 401 | 402 | 403 | 404 | Client credential type 405 | 406 | 407 | 408 | Devices 409 | 410 | 411 | 412 | Hostname attribute 413 | 414 | 415 | 416 | MAC address attribute 417 | 418 | 419 | 420 | Hostname source 421 | 422 | 423 | 424 | Device name (default) 425 | 426 | 427 | 428 | Multicast DNS (device name + .local suffix) 429 | 430 | 431 | 432 | Open query console 433 | 434 | 435 | 436 | MAC address source 437 | 438 | 439 | 440 | MAC address attribute (default) 441 | 442 | 443 | 444 | Intune Ethernet MAC address 445 | 446 | 447 | 448 | Intune Wi-Fi MAC address 449 | 450 | 451 | 452 | Intune Ethernet or Wi-Fi MAC address 453 | 454 | 455 | 456 | Intune Wi-Fi or Ethernet MAC address 457 | 458 | 459 | 460 | Device location attribute 461 | 462 | 463 | 464 | 465 | EntraIdConnectorPlugin 466 | 467 | Network object directory providing users, groups and devices from Microsoft Entra ID 468 | 469 | 470 | 471 | Entra ID (read devices from Entra ID directory) 472 | 473 | 474 | 475 | Entra ID (read users and groups from Entra ID directory) 476 | 477 | 478 | 479 | 480 | EntraIdDirectory 481 | 482 | Unknown location 483 | 484 | 485 | 486 | Query timed out 487 | 488 | 489 | 490 | 491 | EntraIdQueryConsole 492 | 493 | Entra ID Query Console 494 | 495 | 496 | 497 | Query 498 | 499 | 500 | 501 | Resource or query URL: 502 | 503 | 504 | 505 | Run query 506 | 507 | 508 | 509 | Response 510 | 511 | 512 | 513 | 514 | FirewallConfigurationWidget 515 | 516 | e.g. 8080 517 | 518 | 519 | 520 | Custom 521 | 522 | 523 | 524 | 21 (FTP) 525 | 526 | 527 | 528 | 80/443 (HTTP/HTTPS) 529 | 530 | 531 | 532 | Block all outbound traffic to non-local subnets 533 | 534 | 535 | 536 | Exceptions 537 | 538 | 539 | 540 | e.g. 80 443 541 | 542 | 543 | 544 | e.g. 192.168.1.0/24 545 | 546 | 547 | 548 | Ports 549 | 550 | 551 | 552 | Networks 553 | 554 | 555 | 556 | Hosts 557 | 558 | 559 | 560 | e.g. docs.veyon.io 561 | 562 | 563 | 564 | Block traffic to (e.g. proxy or DNS) servers 565 | 566 | 567 | 568 | Server addresses 569 | 570 | 571 | 572 | e.g. 192.168.1.253 573 | 574 | 575 | 576 | Enable preconfigured firewall rule 577 | 578 | 579 | 580 | Name 581 | Name 582 | 583 | 584 | Block all outbound traffic for TCP and UDP ports 585 | 586 | 587 | 588 | 589 | FirewallPlugin 590 | 591 | Block internet access via system firewall 592 | 593 | 594 | 595 | 596 | InternetAccessControlConfigurationPage 597 | 598 | Internet access control 599 | 600 | 601 | 602 | General settings 603 | 604 | 605 | 606 | Backend: 607 | Backend: 608 | 609 | 610 | Unblock Internet access on service start (e.g. after logoff or reboot) 611 | 612 | 613 | 614 | Backend settings 615 | 616 | 617 | 618 | 619 | InternetAccessControlPlugin 620 | 621 | Block Internet access 622 | 623 | 624 | 625 | Unblock Internet access 626 | 627 | 628 | 629 | Show help about command 630 | Show help about command 631 | 632 | 633 | Internet access 634 | 635 | 636 | 637 | Block or unblock Internet access. 638 | 639 | 640 | 641 | Click this button to block Internet access. 642 | 643 | 644 | 645 | Click this button to unblock Internet access. 646 | 647 | 648 | 649 | Control access to the internet 650 | 651 | 652 | 653 | Commands for controlling access to the internet 654 | 655 | 656 | 657 | The Internet access is now blocked. Since you're using a demo version of this add-on, it will be unblocked in 5 minutes automatically. 658 | 659 | 660 | 661 | 662 | LdapProConfigurationPage 663 | 664 | LDAP Pro 665 | 666 | 667 | 668 | Instances 669 | 670 | 671 | 672 | Enter name 673 | 674 | 675 | 676 | Please enter a name for the instance (can't be changed later!): 677 | 678 | 679 | 680 | Remove instance 681 | 682 | 683 | 684 | Do you really want to remove instance "%1"? 685 | 686 | 687 | 688 | Configuration for instance "%1" 689 | 690 | 691 | 692 | 693 | LdapProPlugin 694 | 695 | Professional LDAP/AD integration for Veyon 696 | 697 | 698 | 699 | %1 (load computers and locations from LDAP/AD) 700 | %1 (load computers and locations from LDAP/AD) 701 | 702 | 703 | %1 (load users and groups from LDAP/AD) 704 | %1 (load users and groups from LDAP/AD) 705 | 706 | 707 | 708 | LicensingConfigurationPage 709 | 710 | Licensing 711 | 712 | 713 | 714 | Information 715 | 716 | 717 | 718 | Installation ID 719 | 720 | 721 | 722 | Addons available for licensing 723 | 724 | 725 | 726 | Installed licenses 727 | 728 | 729 | 730 | Add license from file 731 | 732 | 733 | 734 | Remove selected license 735 | 736 | 737 | 738 | ID 739 | 740 | 741 | 742 | Add-on 743 | 744 | 745 | 746 | Valid until 747 | 748 | 749 | 750 | Sites 751 | 752 | 753 | 754 | Computers 755 | Computers 756 | 757 | 758 | Licensee 759 | 760 | 761 | 762 | Browse license file 763 | 764 | 765 | 766 | Veyon license files (*.vlf) 767 | 768 | 769 | 770 | Remove license 771 | 772 | 773 | 774 | Do you really want to remove the selected license? 775 | 776 | 777 | 778 | Any 779 | 780 | 781 | 782 | <N/A> 783 | <N/A> 784 | 785 | 786 | invalid license 787 | 788 | 789 | 790 | unlimited 791 | 792 | 793 | 794 | Invalid license file 795 | 796 | 797 | 798 | Could not open the license file for reading! 799 | 800 | 801 | 802 | The selected license file does not contain valid data. 803 | 804 | 805 | 806 | The selected license file could not be verified. 807 | 808 | 809 | 810 | The selected license file is not valid for this installation. 811 | 812 | 813 | 814 | The selected license file is expired. 815 | 816 | 817 | 818 | The license is already installed. 819 | 820 | 821 | 822 | Feature 823 | 824 | 825 | 826 | 827 | LicensingHelper 828 | 829 | The %1 add-on is licensed for use with up to %2 computers only. Please reduce the number of computers displayed or upgrade your license. 830 | 831 | 832 | 833 | Please visit %1 for more information on how to upgrade your license for this add-on. 834 | 835 | 836 | 837 | Thank you for testing the %1 add-on. 838 | 839 | 840 | 841 | Please visit %1 for more information on how to obtain a license for this add-on. 842 | 843 | 844 | 845 | %1 demo 846 | 847 | 848 | 849 | 850 | LicensingPlugin 851 | 852 | Show help for specific command 853 | Show help for specific command 854 | 855 | 856 | Show all installed licenses 857 | 858 | 859 | 860 | Add license file 861 | 862 | 863 | 864 | Remove installed license 865 | 866 | 867 | 868 | 869 | USAGE 870 | 871 | %1 add <LICENSE FILE> 872 | 873 | 874 | 875 | 876 | 877 | 878 | USAGE 879 | 880 | %1 remove <LICENSE ID> 881 | 882 | 883 | 884 | 885 | 886 | No certificate found with given ID 887 | 888 | 889 | 890 | Licensing management 891 | 892 | 893 | 894 | Commands for managing license keys 895 | 896 | 897 | 898 | 899 | NetworkDiscoveryConfigurationPage 900 | 901 | Network discovery 902 | 903 | 904 | 905 | Mode 906 | 907 | 908 | 909 | Scan all subnets of computer 910 | 911 | 912 | 913 | Test 914 | Тест 915 | 916 | 917 | Scan custom subnet 918 | 919 | 920 | 921 | Scan network ranges 922 | 923 | 924 | 925 | e.g. 192.168.1.0/24 926 | 927 | 928 | 929 | Network ranges 930 | 931 | 932 | 933 | Add new group 934 | 935 | 936 | 937 | Remove selected group 938 | 939 | 940 | 941 | Groups 942 | 943 | 944 | 945 | First address 946 | 947 | 948 | 949 | Last address 950 | 951 | 952 | 953 | Add new network range 954 | 955 | 956 | 957 | Remove selected network range 958 | 959 | 960 | 961 | Sessions 962 | 963 | 964 | 965 | Scan (e.g. remote desktop) sessions on all computers 966 | 967 | 968 | 969 | Exclude first (e.g. console) session 970 | 971 | 972 | 973 | Options 974 | Options 975 | 976 | 977 | ms 978 | ms 979 | 980 | 981 | New location 982 | New location 983 | 984 | 985 | Session scan limit: 986 | 987 | 988 | 989 | IP address 990 | 991 | 992 | 993 | DNS name (reverse lookup) 994 | 995 | 996 | 997 | User login name 998 | 999 | 1000 | 1001 | Session client address 1002 | 1003 | 1004 | 1005 | Session client name 1006 | 1007 | 1008 | 1009 | Parallel scans: 1010 | 1011 | 1012 | 1013 | Scan timeout: 1014 | 1015 | 1016 | 1017 | Retain time: 1018 | 1019 | 1020 | 1021 | Hostname of session host 1022 | 1023 | 1024 | 1025 | Full name of user 1026 | 1027 | 1028 | 1029 | User groups filter expression: 1030 | 1031 | 1032 | 1033 | e.g. Class.* 1034 | 1035 | 1036 | 1037 | Computer names 1038 | 1039 | 1040 | 1041 | Optionally enter a regular expression with a capture to extract a part of the computer name and use it as the display name for the computer. 1042 | 1043 | Example: [^-]*-(PC[0-9]*) 1044 | 1045 | 1046 | 1047 | Locations 1048 | Locations 1049 | 1050 | 1051 | Default / network range groups 1052 | 1053 | 1054 | 1055 | Extract from computer names 1056 | 1057 | 1058 | 1059 | Groups of logged-in users 1060 | 1061 | 1062 | 1063 | Data source: 1064 | 1065 | 1066 | 1067 | Data retrieval timeout: 1068 | 1069 | 1070 | 1071 | Expression for substring extraction: 1072 | 1073 | 1074 | 1075 | Environment variable 1076 | 1077 | 1078 | 1079 | Environment variable name: 1080 | 1081 | 1082 | 1083 | Registry key 1084 | 1085 | 1086 | 1087 | Registry key name: 1088 | 1089 | 1090 | 1091 | Property for generating persistent network object IDs: 1092 | 1093 | 1094 | 1095 | Default 1096 | 1097 | 1098 | 1099 | Host address 1100 | Host address 1101 | 1102 | 1103 | Computer name 1104 | 1105 | 1106 | 1107 | Exclude computers whose names could not be resolved 1108 | 1109 | 1110 | 1111 | Enter a regular expression with a capture to parse the name of each computer and use a part of it as the location of the computer. 1112 | 1113 | Example: (R[0-9]*)-* 1114 | 1115 | 1116 | 1117 | 1118 | NetworkDiscoveryDirectory 1119 | 1120 | Discovered computers 1121 | 1122 | 1123 | 1124 | Scanning... 1125 | 1126 | 1127 | 1128 | 1129 | NetworkDiscoveryPlugin 1130 | 1131 | Show help for specific command 1132 | Show help for specific command 1133 | 1134 | 1135 | Scan a subnet 1136 | 1137 | 1138 | 1139 | 1140 | USAGE 1141 | 1142 | %1 scan [<SUBNET>] 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | Network object directory which automatically discovers computers in the network 1149 | 1150 | 1151 | 1152 | Network discovery (scan network for Veyon clients) 1153 | 1154 | 1155 | 1156 | Commands for managing the network discovery directory 1157 | 1158 | 1159 | 1160 | Failed to initialize credentials 1161 | 1162 | 1163 | 1164 | Name 1165 | Name 1166 | 1167 | 1168 | Address 1169 | 1170 | 1171 | 1172 | Port 1173 | 1174 | 1175 | 1176 | Locations 1177 | Locations 1178 | 1179 | 1180 | Query system settings key from the server 1181 | 1182 | 1183 | 1184 | Query user groups of logged in user from the server 1185 | 1186 | 1187 | 1188 | Query environment variable from the server 1189 | 1190 | 1191 | 1192 | 1193 | RoutingConfigurationWidget 1194 | 1195 | Remove default routes to block internet access 1196 | 1197 | 1198 | 1199 | Add custom route to block internet 1200 | 1201 | 1202 | 1203 | Destination 1204 | 1205 | 1206 | 1207 | Gateway 1208 | 1209 | 1210 | 1211 | 1212 | RoutingPlugin 1213 | 1214 | Block internet access by modifying routing table 1215 | 1216 | 1217 | 1218 | 1219 | ScreenRecorderConfigurationPage 1220 | 1221 | Screen recorder 1222 | 1223 | 1224 | 1225 | Output settings 1226 | 1227 | 1228 | 1229 | Use fixed resolution 1230 | 1231 | 1232 | 1233 | Keep aspect ratio 1234 | 1235 | 1236 | 1237 | frames per second 1238 | 1239 | 1240 | 1241 | Output directory 1242 | 1243 | 1244 | 1245 | x 1246 | x 1247 | 1248 | 1249 | Use fixed framerate 1250 | 1251 | 1252 | 1253 | Save to computer-specific subdirectories 1254 | 1255 | 1256 | 1257 | Encoding settings 1258 | 1259 | 1260 | 1261 | Encoder 1262 | 1263 | 1264 | 1265 | x264 preset 1266 | 1267 | 1268 | 1269 | kbps 1270 | 1271 | 1272 | 1273 | H.264 profile 1274 | 1275 | 1276 | 1277 | Bitrate 1278 | 1279 | 1280 | 1281 | Keyframe interval 1282 | 1283 | 1284 | 1285 | seconds 1286 | seconds 1287 | 1288 | 1289 | Other settings 1290 | 1291 | 1292 | 1293 | Notify users when their screen is recorded 1294 | 1295 | 1296 | 1297 | 1298 | ScreenRecorderControlWidget 1299 | 1300 | Screen recorder 1301 | 1302 | 1303 | 1304 | Start recording 1305 | 1306 | 1307 | 1308 | Processing… 1309 | 1310 | 1311 | 1312 | Open folder with recordings 1313 | 1314 | 1315 | 1316 | Close 1317 | 1318 | 1319 | 1320 | Screen recording 1321 | 1322 | 1323 | 1324 | Starting recordings… 1325 | 1326 | 1327 | 1328 | Stop recording 1329 | 1330 | 1331 | 1332 | Finishing recordings… 1333 | 1334 | 1335 | 1336 | Recording finished (duration: %1) 1337 | 1338 | 1339 | 1340 | Recording duration: %1 1341 | 1342 | 1343 | 1344 | 1345 | ScreenRecorderEncodingWorker 1346 | 1347 | auto 1348 | 1349 | 1350 | 1351 | 1352 | ScreenRecorderPlugin 1353 | 1354 | Record 1355 | 1356 | 1357 | 1358 | Stop recording 1359 | 1360 | 1361 | 1362 | Click this button to record the screens of all users into video files. 1363 | 1364 | 1365 | 1366 | Screen recording 1367 | 1368 | 1369 | 1370 | The screen is now recorded in a video file on the teacher's computer. 1371 | 1372 | 1373 | 1374 | The screen recording on the teacher's computer has been stopped. 1375 | 1376 | 1377 | 1378 | Record screens to video files 1379 | 1380 | 1381 | 1382 | Screen recording has been stopped due to manual reload. Please restart the recording if required. 1383 | 1384 | 1385 | 1386 | Screen recording stopped 1387 | 1388 | 1389 | 1390 | 1391 | VeyonCore 1392 | 1393 | licensed for 1394 | 1395 | 1396 | 1397 | -------------------------------------------------------------------------------- /translations/addons_ca_ES.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | AuvidusConfigurationPage 4 | 5 | Auvidus 6 | 7 | 8 | 9 | USB device control 10 | 11 | 12 | 13 | Block USB storage devices 14 | 15 | 16 | 17 | 18 | AuvidusPlugin 19 | 20 | Audio control 21 | 22 | 23 | 24 | Mute or unmute speakers, headsets and microphones. 25 | 26 | 27 | 28 | Mute audio outputs 29 | 30 | 31 | 32 | Click to mute speakers, headsets etc. 33 | 34 | 35 | 36 | Unmute audio outputs 37 | 38 | 39 | 40 | Mute microphones 41 | 42 | 43 | 44 | Click to mute microphones. 45 | 46 | 47 | 48 | Unmute microphones 49 | 50 | 51 | 52 | Device control 53 | 54 | 55 | 56 | Disable webcams 57 | 58 | 59 | 60 | Click to disable webcams. 61 | 62 | 63 | 64 | All speakers are now muted. 65 | 66 | 67 | 68 | All microphones are now muted. 69 | 70 | 71 | 72 | All webcams are now disabled. 73 | 74 | 75 | 76 | Since you're using a demo version of this add-on, the previous state will be restored in 3 minutes automatically. 77 | 78 | 79 | 80 | Manage access to audio, video and USB devices 81 | 82 | 83 | 84 | Control webcams and USB devices 85 | 86 | 87 | 88 | Unlock webcams 89 | 90 | 91 | 92 | Click to enable webcams again. 93 | 94 | 95 | 96 | Disable USB drives 97 | 98 | 99 | 100 | Unlock USB drives 101 | 102 | 103 | 104 | All USB drives are now disabled. 105 | 106 | 107 | 108 | Click to unmute microphones again. 109 | 110 | 111 | 112 | Click to disable USB storage devices. 113 | 114 | 115 | 116 | Click to enable USB storage devices again. 117 | 118 | 119 | 120 | Click to unmute speakers, headsets etc. again. 121 | 122 | 123 | 124 | 125 | ChatConfigurationPage 126 | 127 | Chat 128 | 129 | 130 | 131 | General settings 132 | 133 | 134 | 135 | Allow plain text messages only 136 | 137 | 138 | 139 | Nicknames 140 | 141 | 142 | 143 | Login names of users 144 | 145 | 146 | 147 | Full names of users 148 | 149 | 150 | 151 | Allow users to change their nicknames 152 | 153 | 154 | 155 | 156 | ChatPlugin 157 | 158 | Chat 159 | 160 | 161 | 162 | Click this button to start a chat with all users. Then all users can write text messages in a common chat. 163 | 164 | 165 | 166 | %2 Chat 167 | 168 | 169 | 170 | Interactive chat with logged on users 171 | 172 | 173 | 174 | 175 | ChatWindow 176 | 177 | Veyon Chat 178 | 179 | 180 | 181 | Chat title 182 | 183 | 184 | 185 | Nickname 186 | 187 | 188 | 189 | Type a new message 190 | 191 | 192 | 193 | Close chat 194 | 195 | 196 | 197 | Change chat title 198 | 199 | 200 | 201 | Please enter a new title for the chat: 202 | 203 | 204 | 205 | Change nickname 206 | 207 | 208 | 209 | Please enter a new nickname: 210 | 211 | 212 | 213 | 214 | EntraIdConnectorConfigurationPage 215 | 216 | Entra ID Connector 217 | 218 | 219 | 220 | Basic settings 221 | Paràmetres bàsics 222 | 223 | 224 | Tenant ID 225 | 226 | 227 | 228 | Application (client) ID 229 | 230 | 231 | 232 | Client secret 233 | 234 | 235 | 236 | Authentication mechanism 237 | 238 | 239 | 240 | Microsoft Authentication Library (MSAL) 241 | 242 | 243 | 244 | OAuth 2.0 245 | 246 | 247 | 248 | Request timeout 249 | 250 | 251 | 252 | Domain name 253 | 254 | 255 | 256 | Filters 257 | 258 | 259 | 260 | Users filter 261 | 262 | 263 | 264 | Devices filter 265 | 266 | 267 | 268 | User groups filter 269 | 270 | 271 | 272 | Device groups filter 273 | 274 | 275 | 276 | Use location attribute of device 277 | 278 | 279 | 280 | Extract from hostname via regular expression 281 | 282 | 283 | 284 | Regular expression 285 | 286 | 287 | 288 | Query limit 289 | 290 | 291 | 292 | Entra ID configuration check 293 | 294 | 295 | 296 | An access token for Entra ID has been obtained successfully. 297 | 298 | 299 | 300 | Entra ID test failed 301 | 302 | 303 | 304 | Entra ID test successful 305 | 306 | 307 | 308 | %1 %2 have been queried successfully: 309 | 310 | %3 311 | S'ha preguntat amb èxit %1º %2: 312 | 313 | %3 314 | 315 | 316 | users 317 | usuaris 318 | 319 | 320 | Test access 321 | 322 | 323 | 324 | Entra ID access 325 | 326 | 327 | 328 | user groups 329 | grups d'usuaris 330 | 331 | 332 | device groups 333 | 334 | 335 | 336 | device locations 337 | 338 | 339 | 340 | Location mapping mode 341 | 342 | 343 | 344 | Could not query any %1. Please check the API permissions (%2) for the registered app in your Microsoft Entra admin center and the "%3" parameter on this page. 345 | 346 | 347 | 348 | Could not query any device locations. Please check the API permissions (%1) for the registered app in your Microsoft Entra admin center and the "%2", "%3" and "%4" parameters on this page. 349 | 350 | 351 | 352 | devices 353 | 354 | 355 | 356 | e.g. startsWith(displayName, 'PC') 357 | 358 | 359 | 360 | e.g. startsWith(displayName, 'Room') 361 | 362 | 363 | 364 | Locations 365 | Ubicacions 366 | 367 | 368 | Use device groups 369 | 370 | 371 | 372 | e.g. description 373 | 374 | 375 | 376 | Device group attribute to use as location name 377 | 378 | 379 | 380 | Client certificate path 381 | 382 | 383 | 384 | Client certificate file 385 | 386 | 387 | 388 | PEM files (*.pem) 389 | 390 | 391 | 392 | Could not obtain an access token for Entra ID. Please check the tenant ID, application (client) ID and the client secret or certificate path. 393 | 394 | 395 | 396 | Client certificate with private key file 397 | 398 | 399 | 400 | Specify path to client certificate file containing the private key. 401 | 402 | 403 | 404 | Client credential type 405 | 406 | 407 | 408 | Devices 409 | 410 | 411 | 412 | Hostname attribute 413 | 414 | 415 | 416 | MAC address attribute 417 | 418 | 419 | 420 | Hostname source 421 | 422 | 423 | 424 | Device name (default) 425 | 426 | 427 | 428 | Multicast DNS (device name + .local suffix) 429 | 430 | 431 | 432 | Open query console 433 | 434 | 435 | 436 | MAC address source 437 | 438 | 439 | 440 | MAC address attribute (default) 441 | 442 | 443 | 444 | Intune Ethernet MAC address 445 | 446 | 447 | 448 | Intune Wi-Fi MAC address 449 | 450 | 451 | 452 | Intune Ethernet or Wi-Fi MAC address 453 | 454 | 455 | 456 | Intune Wi-Fi or Ethernet MAC address 457 | 458 | 459 | 460 | Device location attribute 461 | 462 | 463 | 464 | 465 | EntraIdConnectorPlugin 466 | 467 | Network object directory providing users, groups and devices from Microsoft Entra ID 468 | 469 | 470 | 471 | Entra ID (read devices from Entra ID directory) 472 | 473 | 474 | 475 | Entra ID (read users and groups from Entra ID directory) 476 | 477 | 478 | 479 | 480 | EntraIdDirectory 481 | 482 | Unknown location 483 | 484 | 485 | 486 | Query timed out 487 | 488 | 489 | 490 | 491 | EntraIdQueryConsole 492 | 493 | Entra ID Query Console 494 | 495 | 496 | 497 | Query 498 | 499 | 500 | 501 | Resource or query URL: 502 | 503 | 504 | 505 | Run query 506 | 507 | 508 | 509 | Response 510 | 511 | 512 | 513 | 514 | FirewallConfigurationWidget 515 | 516 | e.g. 8080 517 | 518 | 519 | 520 | Custom 521 | 522 | 523 | 524 | 21 (FTP) 525 | 526 | 527 | 528 | 80/443 (HTTP/HTTPS) 529 | 530 | 531 | 532 | Block all outbound traffic to non-local subnets 533 | 534 | 535 | 536 | Exceptions 537 | 538 | 539 | 540 | e.g. 80 443 541 | 542 | 543 | 544 | e.g. 192.168.1.0/24 545 | 546 | 547 | 548 | Ports 549 | 550 | 551 | 552 | Networks 553 | 554 | 555 | 556 | Hosts 557 | 558 | 559 | 560 | e.g. docs.veyon.io 561 | 562 | 563 | 564 | Block traffic to (e.g. proxy or DNS) servers 565 | 566 | 567 | 568 | Server addresses 569 | 570 | 571 | 572 | e.g. 192.168.1.253 573 | 574 | 575 | 576 | Enable preconfigured firewall rule 577 | 578 | 579 | 580 | Name 581 | Nom 582 | 583 | 584 | Block all outbound traffic for TCP and UDP ports 585 | 586 | 587 | 588 | 589 | FirewallPlugin 590 | 591 | Block internet access via system firewall 592 | 593 | 594 | 595 | 596 | InternetAccessControlConfigurationPage 597 | 598 | Internet access control 599 | 600 | 601 | 602 | General settings 603 | 604 | 605 | 606 | Backend: 607 | Dorsal: 608 | 609 | 610 | Unblock Internet access on service start (e.g. after logoff or reboot) 611 | 612 | 613 | 614 | Backend settings 615 | 616 | 617 | 618 | 619 | InternetAccessControlPlugin 620 | 621 | Block Internet access 622 | 623 | 624 | 625 | Unblock Internet access 626 | 627 | 628 | 629 | Show help about command 630 | Mostra l'ajuda sobre l'ordre 631 | 632 | 633 | Internet access 634 | 635 | 636 | 637 | Block or unblock Internet access. 638 | 639 | 640 | 641 | Click this button to block Internet access. 642 | 643 | 644 | 645 | Click this button to unblock Internet access. 646 | 647 | 648 | 649 | Control access to the internet 650 | 651 | 652 | 653 | Commands for controlling access to the internet 654 | 655 | 656 | 657 | The Internet access is now blocked. Since you're using a demo version of this add-on, it will be unblocked in 5 minutes automatically. 658 | 659 | 660 | 661 | 662 | LdapProConfigurationPage 663 | 664 | LDAP Pro 665 | 666 | 667 | 668 | Instances 669 | 670 | 671 | 672 | Enter name 673 | 674 | 675 | 676 | Please enter a name for the instance (can't be changed later!): 677 | 678 | 679 | 680 | Remove instance 681 | 682 | 683 | 684 | Do you really want to remove instance "%1"? 685 | 686 | 687 | 688 | Configuration for instance "%1" 689 | 690 | 691 | 692 | 693 | LdapProPlugin 694 | 695 | Professional LDAP/AD integration for Veyon 696 | 697 | 698 | 699 | %1 (load computers and locations from LDAP/AD) 700 | %1 (carrega els ordinadors i les ubicacions des de LDAP/AD) 701 | 702 | 703 | %1 (load users and groups from LDAP/AD) 704 | %1 (carrega usuaris i grups des de LDAP/AD) 705 | 706 | 707 | 708 | LicensingConfigurationPage 709 | 710 | Licensing 711 | 712 | 713 | 714 | Information 715 | 716 | 717 | 718 | Installation ID 719 | 720 | 721 | 722 | Addons available for licensing 723 | 724 | 725 | 726 | Installed licenses 727 | 728 | 729 | 730 | Add license from file 731 | 732 | 733 | 734 | Remove selected license 735 | 736 | 737 | 738 | ID 739 | 740 | 741 | 742 | Add-on 743 | 744 | 745 | 746 | Valid until 747 | 748 | 749 | 750 | Sites 751 | 752 | 753 | 754 | Computers 755 | Ordinadors 756 | 757 | 758 | Licensee 759 | 760 | 761 | 762 | Browse license file 763 | 764 | 765 | 766 | Veyon license files (*.vlf) 767 | 768 | 769 | 770 | Remove license 771 | 772 | 773 | 774 | Do you really want to remove the selected license? 775 | 776 | 777 | 778 | Any 779 | 780 | 781 | 782 | <N/A> 783 | <N/D> 784 | 785 | 786 | invalid license 787 | 788 | 789 | 790 | unlimited 791 | 792 | 793 | 794 | Invalid license file 795 | 796 | 797 | 798 | Could not open the license file for reading! 799 | 800 | 801 | 802 | The selected license file does not contain valid data. 803 | 804 | 805 | 806 | The selected license file could not be verified. 807 | 808 | 809 | 810 | The selected license file is not valid for this installation. 811 | 812 | 813 | 814 | The selected license file is expired. 815 | 816 | 817 | 818 | The license is already installed. 819 | 820 | 821 | 822 | Feature 823 | 824 | 825 | 826 | 827 | LicensingHelper 828 | 829 | The %1 add-on is licensed for use with up to %2 computers only. Please reduce the number of computers displayed or upgrade your license. 830 | 831 | 832 | 833 | Please visit %1 for more information on how to upgrade your license for this add-on. 834 | 835 | 836 | 837 | Thank you for testing the %1 add-on. 838 | 839 | 840 | 841 | Please visit %1 for more information on how to obtain a license for this add-on. 842 | 843 | 844 | 845 | %1 demo 846 | 847 | 848 | 849 | 850 | LicensingPlugin 851 | 852 | Show help for specific command 853 | Mostra l'ajuda per a una ordre específica 854 | 855 | 856 | Show all installed licenses 857 | 858 | 859 | 860 | Add license file 861 | 862 | 863 | 864 | Remove installed license 865 | 866 | 867 | 868 | 869 | USAGE 870 | 871 | %1 add <LICENSE FILE> 872 | 873 | 874 | 875 | 876 | 877 | 878 | USAGE 879 | 880 | %1 remove <LICENSE ID> 881 | 882 | 883 | 884 | 885 | 886 | No certificate found with given ID 887 | 888 | 889 | 890 | Licensing management 891 | 892 | 893 | 894 | Commands for managing license keys 895 | 896 | 897 | 898 | 899 | NetworkDiscoveryConfigurationPage 900 | 901 | Network discovery 902 | 903 | 904 | 905 | Mode 906 | 907 | 908 | 909 | Scan all subnets of computer 910 | 911 | 912 | 913 | Test 914 | Prova 915 | 916 | 917 | Scan custom subnet 918 | 919 | 920 | 921 | Scan network ranges 922 | 923 | 924 | 925 | e.g. 192.168.1.0/24 926 | 927 | 928 | 929 | Network ranges 930 | 931 | 932 | 933 | Add new group 934 | 935 | 936 | 937 | Remove selected group 938 | 939 | 940 | 941 | Groups 942 | 943 | 944 | 945 | First address 946 | 947 | 948 | 949 | Last address 950 | 951 | 952 | 953 | Add new network range 954 | 955 | 956 | 957 | Remove selected network range 958 | 959 | 960 | 961 | Sessions 962 | 963 | 964 | 965 | Scan (e.g. remote desktop) sessions on all computers 966 | 967 | 968 | 969 | Exclude first (e.g. console) session 970 | 971 | 972 | 973 | Options 974 | Opcions 975 | 976 | 977 | ms 978 | ms 979 | 980 | 981 | New location 982 | Ubicació nova 983 | 984 | 985 | Session scan limit: 986 | 987 | 988 | 989 | IP address 990 | 991 | 992 | 993 | DNS name (reverse lookup) 994 | 995 | 996 | 997 | User login name 998 | 999 | 1000 | 1001 | Session client address 1002 | 1003 | 1004 | 1005 | Session client name 1006 | 1007 | 1008 | 1009 | Parallel scans: 1010 | 1011 | 1012 | 1013 | Scan timeout: 1014 | 1015 | 1016 | 1017 | Retain time: 1018 | 1019 | 1020 | 1021 | Hostname of session host 1022 | 1023 | 1024 | 1025 | Full name of user 1026 | 1027 | 1028 | 1029 | User groups filter expression: 1030 | 1031 | 1032 | 1033 | e.g. Class.* 1034 | 1035 | 1036 | 1037 | Computer names 1038 | 1039 | 1040 | 1041 | Optionally enter a regular expression with a capture to extract a part of the computer name and use it as the display name for the computer. 1042 | 1043 | Example: [^-]*-(PC[0-9]*) 1044 | 1045 | 1046 | 1047 | Locations 1048 | Ubicacions 1049 | 1050 | 1051 | Default / network range groups 1052 | 1053 | 1054 | 1055 | Extract from computer names 1056 | 1057 | 1058 | 1059 | Groups of logged-in users 1060 | 1061 | 1062 | 1063 | Data source: 1064 | 1065 | 1066 | 1067 | Data retrieval timeout: 1068 | 1069 | 1070 | 1071 | Expression for substring extraction: 1072 | 1073 | 1074 | 1075 | Environment variable 1076 | 1077 | 1078 | 1079 | Environment variable name: 1080 | 1081 | 1082 | 1083 | Registry key 1084 | 1085 | 1086 | 1087 | Registry key name: 1088 | 1089 | 1090 | 1091 | Property for generating persistent network object IDs: 1092 | 1093 | 1094 | 1095 | Default 1096 | 1097 | 1098 | 1099 | Host address 1100 | Adreça de l'amfitrió 1101 | 1102 | 1103 | Computer name 1104 | 1105 | 1106 | 1107 | Exclude computers whose names could not be resolved 1108 | 1109 | 1110 | 1111 | Enter a regular expression with a capture to parse the name of each computer and use a part of it as the location of the computer. 1112 | 1113 | Example: (R[0-9]*)-* 1114 | 1115 | 1116 | 1117 | 1118 | NetworkDiscoveryDirectory 1119 | 1120 | Discovered computers 1121 | 1122 | 1123 | 1124 | Scanning... 1125 | 1126 | 1127 | 1128 | 1129 | NetworkDiscoveryPlugin 1130 | 1131 | Show help for specific command 1132 | Mostra l'ajuda per a una ordre específica 1133 | 1134 | 1135 | Scan a subnet 1136 | 1137 | 1138 | 1139 | 1140 | USAGE 1141 | 1142 | %1 scan [<SUBNET>] 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | Network object directory which automatically discovers computers in the network 1149 | 1150 | 1151 | 1152 | Network discovery (scan network for Veyon clients) 1153 | 1154 | 1155 | 1156 | Commands for managing the network discovery directory 1157 | 1158 | 1159 | 1160 | Failed to initialize credentials 1161 | No s'han pogut inicialitzar les credencials 1162 | 1163 | 1164 | Name 1165 | Nom 1166 | 1167 | 1168 | Address 1169 | 1170 | 1171 | 1172 | Port 1173 | Port 1174 | 1175 | 1176 | Locations 1177 | Ubicacions 1178 | 1179 | 1180 | Query system settings key from the server 1181 | 1182 | 1183 | 1184 | Query user groups of logged in user from the server 1185 | 1186 | 1187 | 1188 | Query environment variable from the server 1189 | 1190 | 1191 | 1192 | 1193 | RoutingConfigurationWidget 1194 | 1195 | Remove default routes to block internet access 1196 | 1197 | 1198 | 1199 | Add custom route to block internet 1200 | 1201 | 1202 | 1203 | Destination 1204 | 1205 | 1206 | 1207 | Gateway 1208 | 1209 | 1210 | 1211 | 1212 | RoutingPlugin 1213 | 1214 | Block internet access by modifying routing table 1215 | 1216 | 1217 | 1218 | 1219 | ScreenRecorderConfigurationPage 1220 | 1221 | Screen recorder 1222 | 1223 | 1224 | 1225 | Output settings 1226 | 1227 | 1228 | 1229 | Use fixed resolution 1230 | 1231 | 1232 | 1233 | Keep aspect ratio 1234 | 1235 | 1236 | 1237 | frames per second 1238 | 1239 | 1240 | 1241 | Output directory 1242 | 1243 | 1244 | 1245 | x 1246 | x 1247 | 1248 | 1249 | Use fixed framerate 1250 | 1251 | 1252 | 1253 | Save to computer-specific subdirectories 1254 | 1255 | 1256 | 1257 | Encoding settings 1258 | 1259 | 1260 | 1261 | Encoder 1262 | 1263 | 1264 | 1265 | x264 preset 1266 | 1267 | 1268 | 1269 | kbps 1270 | 1271 | 1272 | 1273 | H.264 profile 1274 | 1275 | 1276 | 1277 | Bitrate 1278 | 1279 | 1280 | 1281 | Keyframe interval 1282 | 1283 | 1284 | 1285 | seconds 1286 | segons 1287 | 1288 | 1289 | Other settings 1290 | 1291 | 1292 | 1293 | Notify users when their screen is recorded 1294 | 1295 | 1296 | 1297 | 1298 | ScreenRecorderControlWidget 1299 | 1300 | Screen recorder 1301 | 1302 | 1303 | 1304 | Start recording 1305 | 1306 | 1307 | 1308 | Processing… 1309 | 1310 | 1311 | 1312 | Open folder with recordings 1313 | 1314 | 1315 | 1316 | Close 1317 | 1318 | 1319 | 1320 | Screen recording 1321 | 1322 | 1323 | 1324 | Starting recordings… 1325 | 1326 | 1327 | 1328 | Stop recording 1329 | 1330 | 1331 | 1332 | Finishing recordings… 1333 | 1334 | 1335 | 1336 | Recording finished (duration: %1) 1337 | 1338 | 1339 | 1340 | Recording duration: %1 1341 | 1342 | 1343 | 1344 | 1345 | ScreenRecorderEncodingWorker 1346 | 1347 | auto 1348 | 1349 | 1350 | 1351 | 1352 | ScreenRecorderPlugin 1353 | 1354 | Record 1355 | 1356 | 1357 | 1358 | Stop recording 1359 | 1360 | 1361 | 1362 | Click this button to record the screens of all users into video files. 1363 | 1364 | 1365 | 1366 | Screen recording 1367 | 1368 | 1369 | 1370 | The screen is now recorded in a video file on the teacher's computer. 1371 | 1372 | 1373 | 1374 | The screen recording on the teacher's computer has been stopped. 1375 | 1376 | 1377 | 1378 | Record screens to video files 1379 | 1380 | 1381 | 1382 | Screen recording has been stopped due to manual reload. Please restart the recording if required. 1383 | 1384 | 1385 | 1386 | Screen recording stopped 1387 | 1388 | 1389 | 1390 | 1391 | VeyonCore 1392 | 1393 | licensed for 1394 | 1395 | 1396 | 1397 | -------------------------------------------------------------------------------- /translations/addons_lt.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | AuvidusConfigurationPage 4 | 5 | Auvidus 6 | 7 | 8 | 9 | USB device control 10 | 11 | 12 | 13 | Block USB storage devices 14 | 15 | 16 | 17 | 18 | AuvidusPlugin 19 | 20 | Audio control 21 | 22 | 23 | 24 | Mute or unmute speakers, headsets and microphones. 25 | 26 | 27 | 28 | Mute audio outputs 29 | 30 | 31 | 32 | Click to mute speakers, headsets etc. 33 | 34 | 35 | 36 | Unmute audio outputs 37 | 38 | 39 | 40 | Mute microphones 41 | 42 | 43 | 44 | Click to mute microphones. 45 | 46 | 47 | 48 | Unmute microphones 49 | 50 | 51 | 52 | Device control 53 | 54 | 55 | 56 | Disable webcams 57 | 58 | 59 | 60 | Click to disable webcams. 61 | 62 | 63 | 64 | All speakers are now muted. 65 | 66 | 67 | 68 | All microphones are now muted. 69 | 70 | 71 | 72 | All webcams are now disabled. 73 | 74 | 75 | 76 | Since you're using a demo version of this add-on, the previous state will be restored in 3 minutes automatically. 77 | 78 | 79 | 80 | Manage access to audio, video and USB devices 81 | 82 | 83 | 84 | Control webcams and USB devices 85 | 86 | 87 | 88 | Unlock webcams 89 | 90 | 91 | 92 | Click to enable webcams again. 93 | 94 | 95 | 96 | Disable USB drives 97 | 98 | 99 | 100 | Unlock USB drives 101 | 102 | 103 | 104 | All USB drives are now disabled. 105 | 106 | 107 | 108 | Click to unmute microphones again. 109 | 110 | 111 | 112 | Click to disable USB storage devices. 113 | 114 | 115 | 116 | Click to enable USB storage devices again. 117 | 118 | 119 | 120 | Click to unmute speakers, headsets etc. again. 121 | 122 | 123 | 124 | 125 | ChatConfigurationPage 126 | 127 | Chat 128 | 129 | 130 | 131 | General settings 132 | Bendrieji nustatymai 133 | 134 | 135 | Allow plain text messages only 136 | 137 | 138 | 139 | Nicknames 140 | 141 | 142 | 143 | Login names of users 144 | 145 | 146 | 147 | Full names of users 148 | 149 | 150 | 151 | Allow users to change their nicknames 152 | 153 | 154 | 155 | 156 | ChatPlugin 157 | 158 | Chat 159 | 160 | 161 | 162 | Click this button to start a chat with all users. Then all users can write text messages in a common chat. 163 | 164 | 165 | 166 | %2 Chat 167 | 168 | 169 | 170 | Interactive chat with logged on users 171 | 172 | 173 | 174 | 175 | ChatWindow 176 | 177 | Veyon Chat 178 | 179 | 180 | 181 | Chat title 182 | 183 | 184 | 185 | Nickname 186 | 187 | 188 | 189 | Type a new message 190 | 191 | 192 | 193 | Close chat 194 | 195 | 196 | 197 | Change chat title 198 | 199 | 200 | 201 | Please enter a new title for the chat: 202 | 203 | 204 | 205 | Change nickname 206 | 207 | 208 | 209 | Please enter a new nickname: 210 | 211 | 212 | 213 | 214 | EntraIdConnectorConfigurationPage 215 | 216 | Entra ID Connector 217 | 218 | 219 | 220 | Basic settings 221 | Baziniai nustatymai 222 | 223 | 224 | Tenant ID 225 | 226 | 227 | 228 | Application (client) ID 229 | 230 | 231 | 232 | Client secret 233 | 234 | 235 | 236 | Authentication mechanism 237 | Autorizavimo mechanizmas 238 | 239 | 240 | Microsoft Authentication Library (MSAL) 241 | 242 | 243 | 244 | OAuth 2.0 245 | 246 | 247 | 248 | Request timeout 249 | 250 | 251 | 252 | Domain name 253 | 254 | 255 | 256 | Filters 257 | 258 | 259 | 260 | Users filter 261 | 262 | 263 | 264 | Devices filter 265 | 266 | 267 | 268 | User groups filter 269 | 270 | 271 | 272 | Device groups filter 273 | 274 | 275 | 276 | Use location attribute of device 277 | 278 | 279 | 280 | Extract from hostname via regular expression 281 | 282 | 283 | 284 | Regular expression 285 | 286 | 287 | 288 | Query limit 289 | 290 | 291 | 292 | Entra ID configuration check 293 | 294 | 295 | 296 | An access token for Entra ID has been obtained successfully. 297 | 298 | 299 | 300 | Entra ID test failed 301 | 302 | 303 | 304 | Entra ID test successful 305 | 306 | 307 | 308 | %1 %2 have been queried successfully: 309 | 310 | %3 311 | 312 | 313 | 314 | users 315 | naudotojai 316 | 317 | 318 | Test access 319 | 320 | 321 | 322 | Entra ID access 323 | 324 | 325 | 326 | user groups 327 | naudotojų grupės 328 | 329 | 330 | device groups 331 | 332 | 333 | 334 | device locations 335 | 336 | 337 | 338 | Location mapping mode 339 | 340 | 341 | 342 | Could not query any %1. Please check the API permissions (%2) for the registered app in your Microsoft Entra admin center and the "%3" parameter on this page. 343 | 344 | 345 | 346 | Could not query any device locations. Please check the API permissions (%1) for the registered app in your Microsoft Entra admin center and the "%2", "%3" and "%4" parameters on this page. 347 | 348 | 349 | 350 | devices 351 | 352 | 353 | 354 | e.g. startsWith(displayName, 'PC') 355 | 356 | 357 | 358 | e.g. startsWith(displayName, 'Room') 359 | 360 | 361 | 362 | Locations 363 | Vietos 364 | 365 | 366 | Use device groups 367 | 368 | 369 | 370 | e.g. description 371 | 372 | 373 | 374 | Device group attribute to use as location name 375 | 376 | 377 | 378 | Client certificate path 379 | 380 | 381 | 382 | Client certificate file 383 | 384 | 385 | 386 | PEM files (*.pem) 387 | 388 | 389 | 390 | Could not obtain an access token for Entra ID. Please check the tenant ID, application (client) ID and the client secret or certificate path. 391 | 392 | 393 | 394 | Client certificate with private key file 395 | 396 | 397 | 398 | Specify path to client certificate file containing the private key. 399 | 400 | 401 | 402 | Client credential type 403 | 404 | 405 | 406 | Devices 407 | 408 | 409 | 410 | Hostname attribute 411 | 412 | 413 | 414 | MAC address attribute 415 | 416 | 417 | 418 | Hostname source 419 | 420 | 421 | 422 | Device name (default) 423 | 424 | 425 | 426 | Multicast DNS (device name + .local suffix) 427 | 428 | 429 | 430 | Open query console 431 | 432 | 433 | 434 | MAC address source 435 | 436 | 437 | 438 | MAC address attribute (default) 439 | 440 | 441 | 442 | Intune Ethernet MAC address 443 | 444 | 445 | 446 | Intune Wi-Fi MAC address 447 | 448 | 449 | 450 | Intune Ethernet or Wi-Fi MAC address 451 | 452 | 453 | 454 | Intune Wi-Fi or Ethernet MAC address 455 | 456 | 457 | 458 | Device location attribute 459 | 460 | 461 | 462 | 463 | EntraIdConnectorPlugin 464 | 465 | Network object directory providing users, groups and devices from Microsoft Entra ID 466 | 467 | 468 | 469 | Entra ID (read devices from Entra ID directory) 470 | 471 | 472 | 473 | Entra ID (read users and groups from Entra ID directory) 474 | 475 | 476 | 477 | 478 | EntraIdDirectory 479 | 480 | Unknown location 481 | 482 | 483 | 484 | Query timed out 485 | 486 | 487 | 488 | 489 | EntraIdQueryConsole 490 | 491 | Entra ID Query Console 492 | 493 | 494 | 495 | Query 496 | 497 | 498 | 499 | Resource or query URL: 500 | 501 | 502 | 503 | Run query 504 | 505 | 506 | 507 | Response 508 | 509 | 510 | 511 | 512 | FirewallConfigurationWidget 513 | 514 | e.g. 8080 515 | 516 | 517 | 518 | Custom 519 | 520 | 521 | 522 | 21 (FTP) 523 | 524 | 525 | 526 | 80/443 (HTTP/HTTPS) 527 | 528 | 529 | 530 | Block all outbound traffic to non-local subnets 531 | 532 | 533 | 534 | Exceptions 535 | 536 | 537 | 538 | e.g. 80 443 539 | 540 | 541 | 542 | e.g. 192.168.1.0/24 543 | 544 | 545 | 546 | Ports 547 | 548 | 549 | 550 | Networks 551 | 552 | 553 | 554 | Hosts 555 | 556 | 557 | 558 | e.g. docs.veyon.io 559 | 560 | 561 | 562 | Block traffic to (e.g. proxy or DNS) servers 563 | 564 | 565 | 566 | Server addresses 567 | 568 | 569 | 570 | e.g. 192.168.1.253 571 | 572 | 573 | 574 | Enable preconfigured firewall rule 575 | 576 | 577 | 578 | Name 579 | Vardas 580 | 581 | 582 | Block all outbound traffic for TCP and UDP ports 583 | 584 | 585 | 586 | 587 | FirewallPlugin 588 | 589 | Block internet access via system firewall 590 | 591 | 592 | 593 | 594 | InternetAccessControlConfigurationPage 595 | 596 | Internet access control 597 | Interneto prieigos valdymas 598 | 599 | 600 | General settings 601 | Bendrieji nustatymai 602 | 603 | 604 | Backend: 605 | Sisteminė konfigūracija 606 | 607 | 608 | Unblock Internet access on service start (e.g. after logoff or reboot) 609 | 610 | 611 | 612 | Backend settings 613 | Sisteminiai nustatymai 614 | 615 | 616 | 617 | InternetAccessControlPlugin 618 | 619 | Block Internet access 620 | 621 | 622 | 623 | Unblock Internet access 624 | 625 | 626 | 627 | Show help about command 628 | Parodyti pagalbos komandą 629 | 630 | 631 | Internet access 632 | 633 | 634 | 635 | Block or unblock Internet access. 636 | 637 | 638 | 639 | Click this button to block Internet access. 640 | 641 | 642 | 643 | Click this button to unblock Internet access. 644 | 645 | 646 | 647 | Control access to the internet 648 | Valdyti prieigą prie interneto 649 | 650 | 651 | Commands for controlling access to the internet 652 | Komandos skirtos interneto prieigos valdymui 653 | 654 | 655 | The Internet access is now blocked. Since you're using a demo version of this add-on, it will be unblocked in 5 minutes automatically. 656 | 657 | 658 | 659 | 660 | LdapProConfigurationPage 661 | 662 | LDAP Pro 663 | LDAP Pro 664 | 665 | 666 | Instances 667 | 668 | 669 | 670 | Enter name 671 | Įveskite vardą 672 | 673 | 674 | Please enter a name for the instance (can't be changed later!): 675 | 676 | 677 | 678 | Remove instance 679 | 680 | 681 | 682 | Do you really want to remove instance "%1"? 683 | 684 | 685 | 686 | Configuration for instance "%1" 687 | 688 | 689 | 690 | 691 | LdapProPlugin 692 | 693 | Professional LDAP/AD integration for Veyon 694 | 695 | 696 | 697 | %1 (load computers and locations from LDAP/AD) 698 | 699 | 700 | 701 | %1 (load users and groups from LDAP/AD) 702 | 703 | 704 | 705 | 706 | LicensingConfigurationPage 707 | 708 | Licensing 709 | 710 | 711 | 712 | Information 713 | 714 | 715 | 716 | Installation ID 717 | 718 | 719 | 720 | Addons available for licensing 721 | 722 | 723 | 724 | Installed licenses 725 | 726 | 727 | 728 | Add license from file 729 | 730 | 731 | 732 | Remove selected license 733 | 734 | 735 | 736 | ID 737 | 738 | 739 | 740 | Add-on 741 | 742 | 743 | 744 | Valid until 745 | 746 | 747 | 748 | Sites 749 | 750 | 751 | 752 | Computers 753 | Kompiuteriai 754 | 755 | 756 | Licensee 757 | 758 | 759 | 760 | Browse license file 761 | 762 | 763 | 764 | Veyon license files (*.vlf) 765 | 766 | 767 | 768 | Remove license 769 | 770 | 771 | 772 | Do you really want to remove the selected license? 773 | 774 | 775 | 776 | Any 777 | 778 | 779 | 780 | <N/A> 781 | <N/A> 782 | 783 | 784 | invalid license 785 | 786 | 787 | 788 | unlimited 789 | 790 | 791 | 792 | Invalid license file 793 | 794 | 795 | 796 | Could not open the license file for reading! 797 | 798 | 799 | 800 | The selected license file does not contain valid data. 801 | 802 | 803 | 804 | The selected license file could not be verified. 805 | 806 | 807 | 808 | The selected license file is not valid for this installation. 809 | 810 | 811 | 812 | The selected license file is expired. 813 | 814 | 815 | 816 | The license is already installed. 817 | 818 | 819 | 820 | Feature 821 | 822 | 823 | 824 | 825 | LicensingHelper 826 | 827 | The %1 add-on is licensed for use with up to %2 computers only. Please reduce the number of computers displayed or upgrade your license. 828 | 829 | 830 | 831 | Please visit %1 for more information on how to upgrade your license for this add-on. 832 | 833 | 834 | 835 | Thank you for testing the %1 add-on. 836 | 837 | 838 | 839 | Please visit %1 for more information on how to obtain a license for this add-on. 840 | 841 | 842 | 843 | %1 demo 844 | 845 | 846 | 847 | 848 | LicensingPlugin 849 | 850 | Show help for specific command 851 | Parodyti specifinės komandos pagalbą 852 | 853 | 854 | Show all installed licenses 855 | 856 | 857 | 858 | Add license file 859 | 860 | 861 | 862 | Remove installed license 863 | 864 | 865 | 866 | 867 | USAGE 868 | 869 | %1 add <LICENSE FILE> 870 | 871 | 872 | 873 | 874 | 875 | 876 | USAGE 877 | 878 | %1 remove <LICENSE ID> 879 | 880 | 881 | 882 | 883 | 884 | No certificate found with given ID 885 | 886 | 887 | 888 | Licensing management 889 | 890 | 891 | 892 | Commands for managing license keys 893 | 894 | 895 | 896 | 897 | NetworkDiscoveryConfigurationPage 898 | 899 | Network discovery 900 | 901 | 902 | 903 | Mode 904 | 905 | 906 | 907 | Scan all subnets of computer 908 | 909 | 910 | 911 | Test 912 | Testuoti 913 | 914 | 915 | Scan custom subnet 916 | 917 | 918 | 919 | Scan network ranges 920 | 921 | 922 | 923 | e.g. 192.168.1.0/24 924 | 925 | 926 | 927 | Network ranges 928 | 929 | 930 | 931 | Add new group 932 | 933 | 934 | 935 | Remove selected group 936 | 937 | 938 | 939 | Groups 940 | 941 | 942 | 943 | First address 944 | 945 | 946 | 947 | Last address 948 | 949 | 950 | 951 | Add new network range 952 | 953 | 954 | 955 | Remove selected network range 956 | 957 | 958 | 959 | Sessions 960 | 961 | 962 | 963 | Scan (e.g. remote desktop) sessions on all computers 964 | 965 | 966 | 967 | Exclude first (e.g. console) session 968 | 969 | 970 | 971 | Options 972 | Nustatymai 973 | 974 | 975 | ms 976 | ms 977 | 978 | 979 | New location 980 | Nauja vieta 981 | 982 | 983 | Session scan limit: 984 | 985 | 986 | 987 | IP address 988 | 989 | 990 | 991 | DNS name (reverse lookup) 992 | 993 | 994 | 995 | User login name 996 | 997 | 998 | 999 | Session client address 1000 | 1001 | 1002 | 1003 | Session client name 1004 | 1005 | 1006 | 1007 | Parallel scans: 1008 | 1009 | 1010 | 1011 | Scan timeout: 1012 | 1013 | 1014 | 1015 | Retain time: 1016 | 1017 | 1018 | 1019 | Hostname of session host 1020 | 1021 | 1022 | 1023 | Full name of user 1024 | 1025 | 1026 | 1027 | User groups filter expression: 1028 | 1029 | 1030 | 1031 | e.g. Class.* 1032 | 1033 | 1034 | 1035 | Computer names 1036 | 1037 | 1038 | 1039 | Optionally enter a regular expression with a capture to extract a part of the computer name and use it as the display name for the computer. 1040 | 1041 | Example: [^-]*-(PC[0-9]*) 1042 | 1043 | 1044 | 1045 | Locations 1046 | Vietos 1047 | 1048 | 1049 | Default / network range groups 1050 | 1051 | 1052 | 1053 | Extract from computer names 1054 | 1055 | 1056 | 1057 | Groups of logged-in users 1058 | 1059 | 1060 | 1061 | Data source: 1062 | 1063 | 1064 | 1065 | Data retrieval timeout: 1066 | 1067 | 1068 | 1069 | Expression for substring extraction: 1070 | 1071 | 1072 | 1073 | Environment variable 1074 | 1075 | 1076 | 1077 | Environment variable name: 1078 | 1079 | 1080 | 1081 | Registry key 1082 | 1083 | 1084 | 1085 | Registry key name: 1086 | 1087 | 1088 | 1089 | Property for generating persistent network object IDs: 1090 | 1091 | 1092 | 1093 | Default 1094 | 1095 | 1096 | 1097 | Host address 1098 | Kompiuterio adresas 1099 | 1100 | 1101 | Computer name 1102 | 1103 | 1104 | 1105 | Exclude computers whose names could not be resolved 1106 | 1107 | 1108 | 1109 | Enter a regular expression with a capture to parse the name of each computer and use a part of it as the location of the computer. 1110 | 1111 | Example: (R[0-9]*)-* 1112 | 1113 | 1114 | 1115 | 1116 | NetworkDiscoveryDirectory 1117 | 1118 | Discovered computers 1119 | 1120 | 1121 | 1122 | Scanning... 1123 | 1124 | 1125 | 1126 | 1127 | NetworkDiscoveryPlugin 1128 | 1129 | Show help for specific command 1130 | Parodyti specifinės komandos pagalbą 1131 | 1132 | 1133 | Scan a subnet 1134 | 1135 | 1136 | 1137 | 1138 | USAGE 1139 | 1140 | %1 scan [<SUBNET>] 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | Network object directory which automatically discovers computers in the network 1147 | 1148 | 1149 | 1150 | Network discovery (scan network for Veyon clients) 1151 | 1152 | 1153 | 1154 | Commands for managing the network discovery directory 1155 | 1156 | 1157 | 1158 | Failed to initialize credentials 1159 | 1160 | 1161 | 1162 | Name 1163 | Vardas 1164 | 1165 | 1166 | Address 1167 | 1168 | 1169 | 1170 | Port 1171 | Prievadas 1172 | 1173 | 1174 | Locations 1175 | Vietos 1176 | 1177 | 1178 | Query system settings key from the server 1179 | 1180 | 1181 | 1182 | Query user groups of logged in user from the server 1183 | 1184 | 1185 | 1186 | Query environment variable from the server 1187 | 1188 | 1189 | 1190 | 1191 | RoutingConfigurationWidget 1192 | 1193 | Remove default routes to block internet access 1194 | 1195 | 1196 | 1197 | Add custom route to block internet 1198 | 1199 | 1200 | 1201 | Destination 1202 | Paskirties vieta 1203 | 1204 | 1205 | Gateway 1206 | Tinklų sąsaja 1207 | 1208 | 1209 | 1210 | RoutingPlugin 1211 | 1212 | Block internet access by modifying routing table 1213 | 1214 | 1215 | 1216 | 1217 | ScreenRecorderConfigurationPage 1218 | 1219 | Screen recorder 1220 | 1221 | 1222 | 1223 | Output settings 1224 | 1225 | 1226 | 1227 | Use fixed resolution 1228 | 1229 | 1230 | 1231 | Keep aspect ratio 1232 | 1233 | 1234 | 1235 | frames per second 1236 | 1237 | 1238 | 1239 | Output directory 1240 | 1241 | 1242 | 1243 | x 1244 | x 1245 | 1246 | 1247 | Use fixed framerate 1248 | 1249 | 1250 | 1251 | Save to computer-specific subdirectories 1252 | 1253 | 1254 | 1255 | Encoding settings 1256 | 1257 | 1258 | 1259 | Encoder 1260 | 1261 | 1262 | 1263 | x264 preset 1264 | 1265 | 1266 | 1267 | kbps 1268 | 1269 | 1270 | 1271 | H.264 profile 1272 | 1273 | 1274 | 1275 | Bitrate 1276 | 1277 | 1278 | 1279 | Keyframe interval 1280 | 1281 | 1282 | 1283 | seconds 1284 | sekundės 1285 | 1286 | 1287 | Other settings 1288 | 1289 | 1290 | 1291 | Notify users when their screen is recorded 1292 | 1293 | 1294 | 1295 | 1296 | ScreenRecorderControlWidget 1297 | 1298 | Screen recorder 1299 | 1300 | 1301 | 1302 | Start recording 1303 | 1304 | 1305 | 1306 | Processing… 1307 | 1308 | 1309 | 1310 | Open folder with recordings 1311 | 1312 | 1313 | 1314 | Close 1315 | 1316 | 1317 | 1318 | Screen recording 1319 | 1320 | 1321 | 1322 | Starting recordings… 1323 | 1324 | 1325 | 1326 | Stop recording 1327 | 1328 | 1329 | 1330 | Finishing recordings… 1331 | 1332 | 1333 | 1334 | Recording finished (duration: %1) 1335 | 1336 | 1337 | 1338 | Recording duration: %1 1339 | 1340 | 1341 | 1342 | 1343 | ScreenRecorderEncodingWorker 1344 | 1345 | auto 1346 | 1347 | 1348 | 1349 | 1350 | ScreenRecorderPlugin 1351 | 1352 | Record 1353 | 1354 | 1355 | 1356 | Stop recording 1357 | 1358 | 1359 | 1360 | Click this button to record the screens of all users into video files. 1361 | 1362 | 1363 | 1364 | Screen recording 1365 | 1366 | 1367 | 1368 | The screen is now recorded in a video file on the teacher's computer. 1369 | 1370 | 1371 | 1372 | The screen recording on the teacher's computer has been stopped. 1373 | 1374 | 1375 | 1376 | Record screens to video files 1377 | 1378 | 1379 | 1380 | Screen recording has been stopped due to manual reload. Please restart the recording if required. 1381 | 1382 | 1383 | 1384 | Screen recording stopped 1385 | 1386 | 1387 | 1388 | 1389 | VeyonCore 1390 | 1391 | licensed for 1392 | licencijuota 1393 | 1394 | 1395 | -------------------------------------------------------------------------------- /translations/addons_th.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | AuvidusConfigurationPage 4 | 5 | Auvidus 6 | 7 | 8 | 9 | USB device control 10 | 11 | 12 | 13 | Block USB storage devices 14 | 15 | 16 | 17 | 18 | AuvidusPlugin 19 | 20 | Audio control 21 | 22 | 23 | 24 | Mute or unmute speakers, headsets and microphones. 25 | 26 | 27 | 28 | Mute audio outputs 29 | 30 | 31 | 32 | Click to mute speakers, headsets etc. 33 | 34 | 35 | 36 | Unmute audio outputs 37 | 38 | 39 | 40 | Mute microphones 41 | 42 | 43 | 44 | Click to mute microphones. 45 | 46 | 47 | 48 | Unmute microphones 49 | 50 | 51 | 52 | Device control 53 | 54 | 55 | 56 | Disable webcams 57 | 58 | 59 | 60 | Click to disable webcams. 61 | 62 | 63 | 64 | All speakers are now muted. 65 | 66 | 67 | 68 | All microphones are now muted. 69 | 70 | 71 | 72 | All webcams are now disabled. 73 | 74 | 75 | 76 | Since you're using a demo version of this add-on, the previous state will be restored in 3 minutes automatically. 77 | 78 | 79 | 80 | Manage access to audio, video and USB devices 81 | 82 | 83 | 84 | Control webcams and USB devices 85 | 86 | 87 | 88 | Unlock webcams 89 | 90 | 91 | 92 | Click to enable webcams again. 93 | 94 | 95 | 96 | Disable USB drives 97 | 98 | 99 | 100 | Unlock USB drives 101 | 102 | 103 | 104 | All USB drives are now disabled. 105 | 106 | 107 | 108 | Click to unmute microphones again. 109 | 110 | 111 | 112 | Click to disable USB storage devices. 113 | 114 | 115 | 116 | Click to enable USB storage devices again. 117 | 118 | 119 | 120 | Click to unmute speakers, headsets etc. again. 121 | 122 | 123 | 124 | 125 | ChatConfigurationPage 126 | 127 | Chat 128 | 129 | 130 | 131 | General settings 132 | การตั้งค่าทั่วไป 133 | 134 | 135 | Allow plain text messages only 136 | 137 | 138 | 139 | Nicknames 140 | 141 | 142 | 143 | Login names of users 144 | 145 | 146 | 147 | Full names of users 148 | 149 | 150 | 151 | Allow users to change their nicknames 152 | 153 | 154 | 155 | 156 | ChatPlugin 157 | 158 | Chat 159 | 160 | 161 | 162 | Click this button to start a chat with all users. Then all users can write text messages in a common chat. 163 | 164 | 165 | 166 | %2 Chat 167 | 168 | 169 | 170 | Interactive chat with logged on users 171 | 172 | 173 | 174 | 175 | ChatWindow 176 | 177 | Veyon Chat 178 | 179 | 180 | 181 | Chat title 182 | 183 | 184 | 185 | Nickname 186 | 187 | 188 | 189 | Type a new message 190 | 191 | 192 | 193 | Close chat 194 | 195 | 196 | 197 | Change chat title 198 | 199 | 200 | 201 | Please enter a new title for the chat: 202 | 203 | 204 | 205 | Change nickname 206 | 207 | 208 | 209 | Please enter a new nickname: 210 | 211 | 212 | 213 | 214 | EntraIdConnectorConfigurationPage 215 | 216 | Entra ID Connector 217 | 218 | 219 | 220 | Basic settings 221 | การตั้งค่าพื้นฐาน 222 | 223 | 224 | Tenant ID 225 | 226 | 227 | 228 | Application (client) ID 229 | 230 | 231 | 232 | Client secret 233 | 234 | 235 | 236 | Authentication mechanism 237 | 238 | 239 | 240 | Microsoft Authentication Library (MSAL) 241 | 242 | 243 | 244 | OAuth 2.0 245 | 246 | 247 | 248 | Request timeout 249 | 250 | 251 | 252 | Domain name 253 | 254 | 255 | 256 | Filters 257 | 258 | 259 | 260 | Users filter 261 | 262 | 263 | 264 | Devices filter 265 | 266 | 267 | 268 | User groups filter 269 | 270 | 271 | 272 | Device groups filter 273 | 274 | 275 | 276 | Use location attribute of device 277 | 278 | 279 | 280 | Extract from hostname via regular expression 281 | 282 | 283 | 284 | Regular expression 285 | 286 | 287 | 288 | Query limit 289 | 290 | 291 | 292 | Entra ID configuration check 293 | 294 | 295 | 296 | An access token for Entra ID has been obtained successfully. 297 | 298 | 299 | 300 | Entra ID test failed 301 | 302 | 303 | 304 | Entra ID test successful 305 | 306 | 307 | 308 | %1 %2 have been queried successfully: 309 | 310 | %3 311 | 312 | 313 | 314 | users 315 | 316 | 317 | 318 | Test access 319 | 320 | 321 | 322 | Entra ID access 323 | 324 | 325 | 326 | user groups 327 | 328 | 329 | 330 | device groups 331 | 332 | 333 | 334 | device locations 335 | 336 | 337 | 338 | Location mapping mode 339 | 340 | 341 | 342 | Could not query any %1. Please check the API permissions (%2) for the registered app in your Microsoft Entra admin center and the "%3" parameter on this page. 343 | 344 | 345 | 346 | Could not query any device locations. Please check the API permissions (%1) for the registered app in your Microsoft Entra admin center and the "%2", "%3" and "%4" parameters on this page. 347 | 348 | 349 | 350 | devices 351 | 352 | 353 | 354 | e.g. startsWith(displayName, 'PC') 355 | 356 | 357 | 358 | e.g. startsWith(displayName, 'Room') 359 | 360 | 361 | 362 | Locations 363 | สถานที่ 364 | 365 | 366 | Use device groups 367 | 368 | 369 | 370 | e.g. description 371 | 372 | 373 | 374 | Device group attribute to use as location name 375 | 376 | 377 | 378 | Client certificate path 379 | 380 | 381 | 382 | Client certificate file 383 | 384 | 385 | 386 | PEM files (*.pem) 387 | 388 | 389 | 390 | Could not obtain an access token for Entra ID. Please check the tenant ID, application (client) ID and the client secret or certificate path. 391 | 392 | 393 | 394 | Client certificate with private key file 395 | 396 | 397 | 398 | Specify path to client certificate file containing the private key. 399 | 400 | 401 | 402 | Client credential type 403 | 404 | 405 | 406 | Devices 407 | 408 | 409 | 410 | Hostname attribute 411 | 412 | 413 | 414 | MAC address attribute 415 | 416 | 417 | 418 | Hostname source 419 | 420 | 421 | 422 | Device name (default) 423 | 424 | 425 | 426 | Multicast DNS (device name + .local suffix) 427 | 428 | 429 | 430 | Open query console 431 | 432 | 433 | 434 | MAC address source 435 | 436 | 437 | 438 | MAC address attribute (default) 439 | 440 | 441 | 442 | Intune Ethernet MAC address 443 | 444 | 445 | 446 | Intune Wi-Fi MAC address 447 | 448 | 449 | 450 | Intune Ethernet or Wi-Fi MAC address 451 | 452 | 453 | 454 | Intune Wi-Fi or Ethernet MAC address 455 | 456 | 457 | 458 | Device location attribute 459 | 460 | 461 | 462 | 463 | EntraIdConnectorPlugin 464 | 465 | Network object directory providing users, groups and devices from Microsoft Entra ID 466 | 467 | 468 | 469 | Entra ID (read devices from Entra ID directory) 470 | 471 | 472 | 473 | Entra ID (read users and groups from Entra ID directory) 474 | 475 | 476 | 477 | 478 | EntraIdDirectory 479 | 480 | Unknown location 481 | 482 | 483 | 484 | Query timed out 485 | 486 | 487 | 488 | 489 | EntraIdQueryConsole 490 | 491 | Entra ID Query Console 492 | 493 | 494 | 495 | Query 496 | 497 | 498 | 499 | Resource or query URL: 500 | 501 | 502 | 503 | Run query 504 | 505 | 506 | 507 | Response 508 | 509 | 510 | 511 | 512 | FirewallConfigurationWidget 513 | 514 | e.g. 8080 515 | เช่น 8080 516 | 517 | 518 | Custom 519 | กำหนดเอง 520 | 521 | 522 | 21 (FTP) 523 | 21 (FTP) 524 | 525 | 526 | 80/443 (HTTP/HTTPS) 527 | 80/443 (HTTP/HTTPS) 528 | 529 | 530 | Block all outbound traffic to non-local subnets 531 | 532 | 533 | 534 | Exceptions 535 | 536 | 537 | 538 | e.g. 80 443 539 | เช่น 80 443 540 | 541 | 542 | e.g. 192.168.1.0/24 543 | เช่น 192.168.1.0/24 544 | 545 | 546 | Ports 547 | 548 | 549 | 550 | Networks 551 | 552 | 553 | 554 | Hosts 555 | 556 | 557 | 558 | e.g. docs.veyon.io 559 | 560 | 561 | 562 | Block traffic to (e.g. proxy or DNS) servers 563 | 564 | 565 | 566 | Server addresses 567 | 568 | 569 | 570 | e.g. 192.168.1.253 571 | 572 | 573 | 574 | Enable preconfigured firewall rule 575 | 576 | 577 | 578 | Name 579 | ชื่อ 580 | 581 | 582 | Block all outbound traffic for TCP and UDP ports 583 | 584 | 585 | 586 | 587 | FirewallPlugin 588 | 589 | Block internet access via system firewall 590 | 591 | 592 | 593 | 594 | InternetAccessControlConfigurationPage 595 | 596 | Internet access control 597 | 598 | 599 | 600 | General settings 601 | การตั้งค่าทั่วไป 602 | 603 | 604 | Backend: 605 | 606 | 607 | 608 | Unblock Internet access on service start (e.g. after logoff or reboot) 609 | 610 | 611 | 612 | Backend settings 613 | 614 | 615 | 616 | 617 | InternetAccessControlPlugin 618 | 619 | Block Internet access 620 | บล็อกการเข้าถึงอินเทอร์เน็ต 621 | 622 | 623 | Unblock Internet access 624 | ปลดบล็อกการเข้าถึงอินเทอร์เน็ต 625 | 626 | 627 | Show help about command 628 | 629 | 630 | 631 | Internet access 632 | 633 | 634 | 635 | Block or unblock Internet access. 636 | 637 | 638 | 639 | Click this button to block Internet access. 640 | 641 | 642 | 643 | Click this button to unblock Internet access. 644 | 645 | 646 | 647 | Control access to the internet 648 | 649 | 650 | 651 | Commands for controlling access to the internet 652 | 653 | 654 | 655 | The Internet access is now blocked. Since you're using a demo version of this add-on, it will be unblocked in 5 minutes automatically. 656 | 657 | 658 | 659 | 660 | LdapProConfigurationPage 661 | 662 | LDAP Pro 663 | LDAP Pro 664 | 665 | 666 | Instances 667 | 668 | 669 | 670 | Enter name 671 | ใส่ชื่อ 672 | 673 | 674 | Please enter a name for the instance (can't be changed later!): 675 | 676 | 677 | 678 | Remove instance 679 | 680 | 681 | 682 | Do you really want to remove instance "%1"? 683 | 684 | 685 | 686 | Configuration for instance "%1" 687 | 688 | 689 | 690 | 691 | LdapProPlugin 692 | 693 | Professional LDAP/AD integration for Veyon 694 | 695 | 696 | 697 | %1 (load computers and locations from LDAP/AD) 698 | 699 | 700 | 701 | %1 (load users and groups from LDAP/AD) 702 | 703 | 704 | 705 | 706 | LicensingConfigurationPage 707 | 708 | Licensing 709 | 710 | 711 | 712 | Information 713 | 714 | 715 | 716 | Installation ID 717 | 718 | 719 | 720 | Addons available for licensing 721 | 722 | 723 | 724 | Installed licenses 725 | ใบอนุญาตที่ติดตั้งอยู่ 726 | 727 | 728 | Add license from file 729 | 730 | 731 | 732 | Remove selected license 733 | 734 | 735 | 736 | ID 737 | ID 738 | 739 | 740 | Add-on 741 | 742 | 743 | 744 | Valid until 745 | ใช้ได้จนถึง 746 | 747 | 748 | Sites 749 | 750 | 751 | 752 | Computers 753 | คอมพิวเตอร์ 754 | 755 | 756 | Licensee 757 | ผู้ขอรับใบอนุญาต 758 | 759 | 760 | Browse license file 761 | เปิดหาไฟล์ใบอนุญาต 762 | 763 | 764 | Veyon license files (*.vlf) 765 | ไฟล์ใบอนุญาต Veyon (*.vlf) 766 | 767 | 768 | Remove license 769 | ลบใบอนุญาต 770 | 771 | 772 | Do you really want to remove the selected license? 773 | 774 | 775 | 776 | Any 777 | 778 | 779 | 780 | <N/A> 781 | <N/A> 782 | 783 | 784 | invalid license 785 | 786 | 787 | 788 | unlimited 789 | 790 | 791 | 792 | Invalid license file 793 | 794 | 795 | 796 | Could not open the license file for reading! 797 | 798 | 799 | 800 | The selected license file does not contain valid data. 801 | 802 | 803 | 804 | The selected license file could not be verified. 805 | 806 | 807 | 808 | The selected license file is not valid for this installation. 809 | 810 | 811 | 812 | The selected license file is expired. 813 | 814 | 815 | 816 | The license is already installed. 817 | 818 | 819 | 820 | Feature 821 | ฟิเจอร์ 822 | 823 | 824 | 825 | LicensingHelper 826 | 827 | The %1 add-on is licensed for use with up to %2 computers only. Please reduce the number of computers displayed or upgrade your license. 828 | 829 | 830 | 831 | Please visit %1 for more information on how to upgrade your license for this add-on. 832 | 833 | 834 | 835 | Thank you for testing the %1 add-on. 836 | 837 | 838 | 839 | Please visit %1 for more information on how to obtain a license for this add-on. 840 | 841 | 842 | 843 | %1 demo 844 | 845 | 846 | 847 | 848 | LicensingPlugin 849 | 850 | Show help for specific command 851 | 852 | 853 | 854 | Show all installed licenses 855 | 856 | 857 | 858 | Add license file 859 | 860 | 861 | 862 | Remove installed license 863 | 864 | 865 | 866 | 867 | USAGE 868 | 869 | %1 add <LICENSE FILE> 870 | 871 | 872 | 873 | 874 | 875 | 876 | USAGE 877 | 878 | %1 remove <LICENSE ID> 879 | 880 | 881 | 882 | 883 | 884 | No certificate found with given ID 885 | 886 | 887 | 888 | Licensing management 889 | 890 | 891 | 892 | Commands for managing license keys 893 | 894 | 895 | 896 | 897 | NetworkDiscoveryConfigurationPage 898 | 899 | Network discovery 900 | การค้นพบเครือข่าย 901 | 902 | 903 | Mode 904 | โหมด 905 | 906 | 907 | Scan all subnets of computer 908 | 909 | 910 | 911 | Test 912 | ทดสอบ 913 | 914 | 915 | Scan custom subnet 916 | 917 | 918 | 919 | Scan network ranges 920 | สแกนระยะเครือข่าย 921 | 922 | 923 | e.g. 192.168.1.0/24 924 | เช่น 192.168.1.0/24 925 | 926 | 927 | Network ranges 928 | ระยะเครือข่าย 929 | 930 | 931 | Add new group 932 | เพิ่มกลุ่มใหม่ 933 | 934 | 935 | Remove selected group 936 | ลบกลุ่มที่เลือก 937 | 938 | 939 | Groups 940 | กลุ่ม 941 | 942 | 943 | First address 944 | ที่อยู่แรก 945 | 946 | 947 | Last address 948 | ที่อยู่สุดท้าย 949 | 950 | 951 | Add new network range 952 | 953 | 954 | 955 | Remove selected network range 956 | 957 | 958 | 959 | Sessions 960 | 961 | 962 | 963 | Scan (e.g. remote desktop) sessions on all computers 964 | 965 | 966 | 967 | Exclude first (e.g. console) session 968 | 969 | 970 | 971 | Options 972 | ตัวเลือก 973 | 974 | 975 | ms 976 | ms 977 | 978 | 979 | New location 980 | สถานที่ใหม่ 981 | 982 | 983 | Session scan limit: 984 | 985 | 986 | 987 | IP address 988 | 989 | 990 | 991 | DNS name (reverse lookup) 992 | 993 | 994 | 995 | User login name 996 | 997 | 998 | 999 | Session client address 1000 | 1001 | 1002 | 1003 | Session client name 1004 | 1005 | 1006 | 1007 | Parallel scans: 1008 | 1009 | 1010 | 1011 | Scan timeout: 1012 | 1013 | 1014 | 1015 | Retain time: 1016 | 1017 | 1018 | 1019 | Hostname of session host 1020 | 1021 | 1022 | 1023 | Full name of user 1024 | 1025 | 1026 | 1027 | User groups filter expression: 1028 | 1029 | 1030 | 1031 | e.g. Class.* 1032 | 1033 | 1034 | 1035 | Computer names 1036 | 1037 | 1038 | 1039 | Optionally enter a regular expression with a capture to extract a part of the computer name and use it as the display name for the computer. 1040 | 1041 | Example: [^-]*-(PC[0-9]*) 1042 | 1043 | 1044 | 1045 | Locations 1046 | สถานที่ 1047 | 1048 | 1049 | Default / network range groups 1050 | 1051 | 1052 | 1053 | Extract from computer names 1054 | 1055 | 1056 | 1057 | Groups of logged-in users 1058 | 1059 | 1060 | 1061 | Data source: 1062 | 1063 | 1064 | 1065 | Data retrieval timeout: 1066 | 1067 | 1068 | 1069 | Expression for substring extraction: 1070 | 1071 | 1072 | 1073 | Environment variable 1074 | 1075 | 1076 | 1077 | Environment variable name: 1078 | 1079 | 1080 | 1081 | Registry key 1082 | 1083 | 1084 | 1085 | Registry key name: 1086 | 1087 | 1088 | 1089 | Property for generating persistent network object IDs: 1090 | 1091 | 1092 | 1093 | Default 1094 | 1095 | 1096 | 1097 | Host address 1098 | โฮสแอดแดรส 1099 | 1100 | 1101 | Computer name 1102 | 1103 | 1104 | 1105 | Exclude computers whose names could not be resolved 1106 | 1107 | 1108 | 1109 | Enter a regular expression with a capture to parse the name of each computer and use a part of it as the location of the computer. 1110 | 1111 | Example: (R[0-9]*)-* 1112 | 1113 | 1114 | 1115 | 1116 | NetworkDiscoveryDirectory 1117 | 1118 | Discovered computers 1119 | คอมพิวเตอร์ที่พบ 1120 | 1121 | 1122 | Scanning... 1123 | กำลังสแกน... 1124 | 1125 | 1126 | 1127 | NetworkDiscoveryPlugin 1128 | 1129 | Show help for specific command 1130 | 1131 | 1132 | 1133 | Scan a subnet 1134 | 1135 | 1136 | 1137 | 1138 | USAGE 1139 | 1140 | %1 scan [<SUBNET>] 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | Network object directory which automatically discovers computers in the network 1147 | 1148 | 1149 | 1150 | Network discovery (scan network for Veyon clients) 1151 | 1152 | 1153 | 1154 | Commands for managing the network discovery directory 1155 | 1156 | 1157 | 1158 | Failed to initialize credentials 1159 | 1160 | 1161 | 1162 | Name 1163 | ชื่อ 1164 | 1165 | 1166 | Address 1167 | 1168 | 1169 | 1170 | Port 1171 | 1172 | 1173 | 1174 | Locations 1175 | สถานที่ 1176 | 1177 | 1178 | Query system settings key from the server 1179 | 1180 | 1181 | 1182 | Query user groups of logged in user from the server 1183 | 1184 | 1185 | 1186 | Query environment variable from the server 1187 | 1188 | 1189 | 1190 | 1191 | RoutingConfigurationWidget 1192 | 1193 | Remove default routes to block internet access 1194 | 1195 | 1196 | 1197 | Add custom route to block internet 1198 | ตั้งเส้นทางกำหนดเองเพื่อบล็อกอินเทอร์เน็ต 1199 | 1200 | 1201 | Destination 1202 | ปลายทาง 1203 | 1204 | 1205 | Gateway 1206 | เกตเวย์ 1207 | 1208 | 1209 | 1210 | RoutingPlugin 1211 | 1212 | Block internet access by modifying routing table 1213 | 1214 | 1215 | 1216 | 1217 | ScreenRecorderConfigurationPage 1218 | 1219 | Screen recorder 1220 | 1221 | 1222 | 1223 | Output settings 1224 | 1225 | 1226 | 1227 | Use fixed resolution 1228 | 1229 | 1230 | 1231 | Keep aspect ratio 1232 | 1233 | 1234 | 1235 | frames per second 1236 | 1237 | 1238 | 1239 | Output directory 1240 | 1241 | 1242 | 1243 | x 1244 | x 1245 | 1246 | 1247 | Use fixed framerate 1248 | 1249 | 1250 | 1251 | Save to computer-specific subdirectories 1252 | 1253 | 1254 | 1255 | Encoding settings 1256 | 1257 | 1258 | 1259 | Encoder 1260 | 1261 | 1262 | 1263 | x264 preset 1264 | 1265 | 1266 | 1267 | kbps 1268 | 1269 | 1270 | 1271 | H.264 profile 1272 | 1273 | 1274 | 1275 | Bitrate 1276 | 1277 | 1278 | 1279 | Keyframe interval 1280 | 1281 | 1282 | 1283 | seconds 1284 | วินาที 1285 | 1286 | 1287 | Other settings 1288 | 1289 | 1290 | 1291 | Notify users when their screen is recorded 1292 | 1293 | 1294 | 1295 | 1296 | ScreenRecorderControlWidget 1297 | 1298 | Screen recorder 1299 | 1300 | 1301 | 1302 | Start recording 1303 | 1304 | 1305 | 1306 | Processing… 1307 | 1308 | 1309 | 1310 | Open folder with recordings 1311 | 1312 | 1313 | 1314 | Close 1315 | 1316 | 1317 | 1318 | Screen recording 1319 | 1320 | 1321 | 1322 | Starting recordings… 1323 | 1324 | 1325 | 1326 | Stop recording 1327 | 1328 | 1329 | 1330 | Finishing recordings… 1331 | 1332 | 1333 | 1334 | Recording finished (duration: %1) 1335 | 1336 | 1337 | 1338 | Recording duration: %1 1339 | 1340 | 1341 | 1342 | 1343 | ScreenRecorderEncodingWorker 1344 | 1345 | auto 1346 | 1347 | 1348 | 1349 | 1350 | ScreenRecorderPlugin 1351 | 1352 | Record 1353 | 1354 | 1355 | 1356 | Stop recording 1357 | 1358 | 1359 | 1360 | Click this button to record the screens of all users into video files. 1361 | 1362 | 1363 | 1364 | Screen recording 1365 | 1366 | 1367 | 1368 | The screen is now recorded in a video file on the teacher's computer. 1369 | 1370 | 1371 | 1372 | The screen recording on the teacher's computer has been stopped. 1373 | 1374 | 1375 | 1376 | Record screens to video files 1377 | 1378 | 1379 | 1380 | Screen recording has been stopped due to manual reload. Please restart the recording if required. 1381 | 1382 | 1383 | 1384 | Screen recording stopped 1385 | 1386 | 1387 | 1388 | 1389 | VeyonCore 1390 | 1391 | licensed for 1392 | ได้รับอนุญาต สำหรับ 1393 | 1394 | 1395 | --------------------------------------------------------------------------------